diff --git a/.gitattributes b/.gitattributes index f63fc632..398d58e9 100644 --- a/.gitattributes +++ b/.gitattributes @@ -68,3 +68,4 @@ *.asset filter=lfs diff=lfs merge=lfs -text *.vrm filter=lfs diff=lfs merge=lfs -text *.bytes filter=lfs diff=lfs merge=lfs -text +*.skp filter=lfs diff=lfs merge=lfs -text diff --git a/Assets/External/NiloToonURP/Editor/ShaderGUI/NiloToonEnvironmentShaderGUI.cs b/Assets/External/NiloToonURP/Editor/ShaderGUI/NiloToonEnvironmentShaderGUI.cs index a529635d..42c9dbe1 100644 --- a/Assets/External/NiloToonURP/Editor/ShaderGUI/NiloToonEnvironmentShaderGUI.cs +++ b/Assets/External/NiloToonURP/Editor/ShaderGUI/NiloToonEnvironmentShaderGUI.cs @@ -17,8 +17,10 @@ namespace UnityEditor.Rendering.Universal.ShaderGUI //======================================================================= private LitSplatGUI.LitProperties litSplatProperties; private LitScreenSpaceOutlineGUI.LitProperties litScreenSpaceOutlineProperties; + private LitBillboardGUI.LitProperties litBillboardProperties; private SavedBool m_SplatInputsFolder; private SavedBool m_ScreenSpaceOutlineInputsFolder; + private SavedBool m_BillboardInputsFolder; //======================================================================= // NiloToon added (to support URP 12): @@ -31,6 +33,7 @@ namespace UnityEditor.Rendering.Universal.ShaderGUI //======================================================================= materialScopesList.RegisterHeaderScope(LitSplatGUI.Styles.splatInputs, Expandable.Details, _ => LitSplatGUI.DoSplatArea(litSplatProperties, materialEditor)); materialScopesList.RegisterHeaderScope(LitScreenSpaceOutlineGUI.Styles.outlineInputs, Expandable.Details, _ => LitScreenSpaceOutlineGUI.DoScreenSpaceOutlineArea(litScreenSpaceOutlineProperties, materialEditor)); + materialScopesList.RegisterHeaderScope(LitBillboardGUI.Styles.billboardInputs, Expandable.Details, _ => LitBillboardGUI.DoBillboardArea(litBillboardProperties, materialEditor)); //======================================================================= } //======================================================================= @@ -46,6 +49,7 @@ namespace UnityEditor.Rendering.Universal.ShaderGUI //======================================================================= litSplatProperties = new LitSplatGUI.LitProperties(properties); litScreenSpaceOutlineProperties = new LitScreenSpaceOutlineGUI.LitProperties(properties); + litBillboardProperties = new LitBillboardGUI.LitProperties(properties); //======================================================================= } @@ -533,6 +537,98 @@ namespace UnityEditor.Rendering.Universal.ShaderGUI */ } } + + internal class LitBillboardGUI + { + public static class Styles + { + public static readonly GUIContent billboardInputs = new GUIContent("Billboard Inputs", + "These settings let you enable billboard effect on the object."); + + public static readonly GUIContent billboardEnable = new GUIContent("Enable Billboard", + "Enable or disable the billboard effect that makes the object always face the camera."); + + public static readonly GUIContent unlitMode = new GUIContent("Unlit Mode", + "When enabled, the material ignores all lighting and uses only the base color."); + + public static readonly GUIContent brightnessMultiplier = new GUIContent("Brightness Multiplier", + "Controls the overall brightness of the material. Values above 1 make it brighter, below 1 make it darker."); + + public static readonly GUIContent billboardCullMode = new GUIContent("Billboard Cull Mode", + "Controls which faces to render. Off = Both sides, Back = Front faces only, Front = Back faces only."); + + public static readonly string[] cullModeNames = { "Off (Both Sides)", "Front", "Back" }; + } + + public struct LitProperties + { + public MaterialProperty billboardEnable; + public MaterialProperty unlitMode; + public MaterialProperty brightnessMultiplier; + public MaterialProperty billboardCullMode; + + public LitProperties(MaterialProperty[] properties) + { + billboardEnable = BaseShaderGUI.FindProperty("_BillboardEnable", properties, false); + unlitMode = BaseShaderGUI.FindProperty("_UnlitMode", properties, false); + brightnessMultiplier = BaseShaderGUI.FindProperty("_BrightnessMultiplier", properties, false); + billboardCullMode = BaseShaderGUI.FindProperty("_BillboardCullMode", properties, false); + } + } + + public static void DoBillboardArea(LitProperties properties, MaterialEditor materialEditor) + { + // Toggle for billboard enable/disable + if (properties.billboardEnable != null) + { + EditorGUI.BeginChangeCheck(); + EditorGUI.showMixedValue = properties.billboardEnable.hasMixedValue; + bool enabled = EditorGUILayout.Toggle(Styles.billboardEnable, properties.billboardEnable.floatValue > 0.5f); + if (EditorGUI.EndChangeCheck()) + properties.billboardEnable.floatValue = enabled ? 1.0f : 0.0f; + EditorGUI.showMixedValue = false; + } + + // Toggle for unlit mode + if (properties.unlitMode != null) + { + EditorGUI.BeginChangeCheck(); + EditorGUI.showMixedValue = properties.unlitMode.hasMixedValue; + bool unlitEnabled = EditorGUILayout.Toggle(Styles.unlitMode, properties.unlitMode.floatValue > 0.5f); + if (EditorGUI.EndChangeCheck()) + properties.unlitMode.floatValue = unlitEnabled ? 1.0f : 0.0f; + EditorGUI.showMixedValue = false; + } + + // Brightness multiplier slider + if (properties.brightnessMultiplier != null) + { + materialEditor.ShaderProperty(properties.brightnessMultiplier, Styles.brightnessMultiplier); + } + + // Billboard cull mode dropdown + if (properties.billboardCullMode != null) + { + EditorGUI.BeginChangeCheck(); + int cullMode = (int)properties.billboardCullMode.floatValue; + cullMode = EditorGUILayout.Popup(Styles.billboardCullMode, cullMode, Styles.cullModeNames); + if (EditorGUI.EndChangeCheck()) + { + properties.billboardCullMode.floatValue = cullMode; + // Update the main Cull property + foreach (Material mat in materialEditor.targets) + { + mat.SetInt("_Cull", cullMode); + } + } + } + } + + public static void SetMaterialKeywords(Material material) + { + // Currently no keywords needed for billboard functionality + } + } //===================================================================================================================================== // direct copy from URP10.5.1's LitDetailGUI.cs (no edit) diff --git a/Assets/External/NiloToonURP/Shaders/NiloToonEnvironment.shader b/Assets/External/NiloToonURP/Shaders/NiloToonEnvironment.shader index c9b891d4..22733ea8 100644 --- a/Assets/External/NiloToonURP/Shaders/NiloToonEnvironment.shader +++ b/Assets/External/NiloToonURP/Shaders/NiloToonEnvironment.shader @@ -114,6 +114,22 @@ Shader "Universal Render Pipeline/NiloToon/NiloToon_Environment" _ScreenSpaceOutlineIntensity("_ScreenSpaceOutlineIntensity", Range(0,1)) = 1 [HDR]_ScreenSpaceOutlineColor("_ScreenSpaceOutlineColor", Color) = (1,1,1,1) _ScreenSpaceOutlineWidth("_ScreenSpaceOutlineWidth", Float) = 1 + + //////////////////////////////////////////////////////////////////// + // Billboard + //////////////////////////////////////////////////////////////////// + [ToggleUI] _BillboardEnable("Enable Billboard", Float) = 0.0 + + //////////////////////////////////////////////////////////////////// + // Brightness Control + //////////////////////////////////////////////////////////////////// + [ToggleUI] _UnlitMode("Unlit Mode", Float) = 0.0 + _BrightnessMultiplier("Brightness Multiplier", Range(0.0, 5.0)) = 1.0 + + //////////////////////////////////////////////////////////////////// + // Billboard Cull Mode + //////////////////////////////////////////////////////////////////// + [Enum(UnityEngine.Rendering.CullMode)] _BillboardCullMode("Billboard Cull Mode", Float) = 0 //========================================================================== // Blending state diff --git a/Assets/External/NiloToonURP/Shaders/NiloToonEnvironment_HLSL/NiloToonEnvironment_ExtendFunctionsForUserCustomLogic.hlsl b/Assets/External/NiloToonURP/Shaders/NiloToonEnvironment_HLSL/NiloToonEnvironment_ExtendFunctionsForUserCustomLogic.hlsl index 4a28bd58..c13163d9 100644 --- a/Assets/External/NiloToonURP/Shaders/NiloToonEnvironment_HLSL/NiloToonEnvironment_ExtendFunctionsForUserCustomLogic.hlsl +++ b/Assets/External/NiloToonURP/Shaders/NiloToonEnvironment_HLSL/NiloToonEnvironment_ExtendFunctionsForUserCustomLogic.hlsl @@ -26,6 +26,27 @@ // sampler2D _YourLocalTexture; // float _YourLocalUniform; // will break SRP batching, because it is not inside CBUFFER_START(UnityPerMaterial) +// Billboard transformation functions (Y-axis constrained) +float3x3 CreateYAxisBillboardMatrix(float3 objectWorldPos) +{ + // Calculate distance vector from object to camera + float3 dist = _WorldSpaceCameraPos - objectWorldPos; + + // Calculate rotation angle around Y-axis only (cylindrical billboard) + float angle = atan2(dist.x, dist.z); + + // Create Y-axis rotation matrix + float cosinus = cos(angle); + float sinus = sin(angle); + + float3x3 rotMatrix; + rotMatrix[0] = float3(cosinus, 0, sinus); // Right vector + rotMatrix[1] = float3(0, 1, 0); // Up vector (Y-axis fixed) + rotMatrix[2] = float3(-sinus, 0, cosinus); // Forward vector + + return rotMatrix; +} + void ApplyCustomUserLogicToVertexAttributeAtVertexShaderStart(inout Attributes attribute) { // edit vertex Attributes by your custom logic here @@ -36,6 +57,25 @@ void ApplyCustomUserLogicToVertexAttributeAtVertexShaderStart(inout Attributes a // - (Object Space) Tangent //attribute.positionOS *= 0.5; // example code, make environment mesh smaller + + // Billboard transformation (Y-axis constrained) + if (_BillboardEnable > 0.5) + { + // Get object's world position (pivot point) + float3 objectWorldPos = mul(unity_ObjectToWorld, float4(0, 0, 0, 1)).xyz; + + // Create Y-axis constrained billboard rotation matrix + float3x3 billboardMatrix = CreateYAxisBillboardMatrix(objectWorldPos); + + // Apply billboard rotation to vertex position + attribute.positionOS.xyz = mul(billboardMatrix, attribute.positionOS.xyz); + + // Transform normal to face the camera (Y-axis constrained) + attribute.normalOS = mul(billboardMatrix, attribute.normalOS); + + // Transform tangent (Y-axis constrained) + attribute.tangentOS.xyz = mul(billboardMatrix, attribute.tangentOS.xyz); + } } void ApplyCustomUserLogicToVertexShaderOutputAtVertexShaderEnd(inout Varyings output, Attributes attribute) diff --git a/Assets/External/NiloToonURP/Shaders/NiloToonEnvironment_HLSL/NiloToonEnvironment_LitForwardPass.hlsl b/Assets/External/NiloToonURP/Shaders/NiloToonEnvironment_HLSL/NiloToonEnvironment_LitForwardPass.hlsl index 722bdc71..deaaee93 100644 --- a/Assets/External/NiloToonURP/Shaders/NiloToonEnvironment_HLSL/NiloToonEnvironment_LitForwardPass.hlsl +++ b/Assets/External/NiloToonURP/Shaders/NiloToonEnvironment_HLSL/NiloToonEnvironment_LitForwardPass.hlsl @@ -505,7 +505,19 @@ void LitPassFragment( inputData.bakedGI = lerp(inputData.bakedGI, _NiloToonGlobalEnviGIOverride.rgb, _NiloToonGlobalEnviGIOverride.a); //========================================================================================================================================================== - half4 color = UniversalFragmentPBR(inputData, surfaceData); + half4 color; + + //[NiloToon] add: Unlit mode check + if(_UnlitMode > 0.5) + { + // Unlit mode: just use albedo with brightness multiplier + color = half4(surfaceData.albedo * _BrightnessMultiplier, surfaceData.alpha); + } + else + { + // Normal lit mode + color = UniversalFragmentPBR(inputData, surfaceData); + } //[NiloToon] add: //========================================================================================================================================================== @@ -614,6 +626,12 @@ void LitPassFragment( color.a = OutputAlpha(color.a, _Surface); #endif + //[NiloToon] add: Brightness control for lit mode only + if(_UnlitMode <= 0.5) + { + color.rgb *= _BrightnessMultiplier; + } + outColor = color; #ifdef _WRITE_RENDERING_LAYERS diff --git a/Assets/External/NiloToonURP/Shaders/NiloToonEnvironment_HLSL/NiloToonEnvironment_LitInput.hlsl b/Assets/External/NiloToonURP/Shaders/NiloToonEnvironment_HLSL/NiloToonEnvironment_LitInput.hlsl index 2a1a9551..544f1d4a 100644 --- a/Assets/External/NiloToonURP/Shaders/NiloToonEnvironment_HLSL/NiloToonEnvironment_LitInput.hlsl +++ b/Assets/External/NiloToonURP/Shaders/NiloToonEnvironment_HLSL/NiloToonEnvironment_LitInput.hlsl @@ -85,6 +85,22 @@ float _ScreenSpaceOutlineIntensity; half3 _ScreenSpaceOutlineColor; float _ScreenSpaceOutlineWidth; + +/////////////////////////////// +// Billboard +/////////////////////////////// +float _BillboardEnable; + +/////////////////////////////// +// Brightness Control +/////////////////////////////// +float _UnlitMode; +half _BrightnessMultiplier; + +/////////////////////////////// +// Billboard Cull Mode +/////////////////////////////// +float _BillboardCullMode; //======================================== CBUFFER_END diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경.meta new file mode 100644 index 00000000..b70b59bf --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 095631cbd7bbbce4ea4911613b716371 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene.meta new file mode 100644 index 00000000..52238218 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7dd28437789858541b30c2e786cecfae +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경.meta new file mode 100644 index 00000000..55a8e0e5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 163a8deb64a99454bb5a72a9941aff9b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경.unity b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경.unity new file mode 100644 index 00000000..c7e10c01 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경.unity @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49aa15c75f2fda788607a090ebd57efe38850068c1a1f50295cd22f1a3263867 +size 6948236 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경.unity.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경.unity.meta new file mode 100644 index 00000000..014ec246 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 7b11bc82d57efe84ea0d5bbf885c0911 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경/Global Volume Profile.asset b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경/Global Volume Profile.asset new file mode 100644 index 00000000..4d72cc06 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경/Global Volume Profile.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc916a5b4ea590e366ad81a7d4fdaa3317a1f4708a933e757c0510bd00a5f95e +size 27742 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경/Global Volume Profile.asset.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경/Global Volume Profile.asset.meta new file mode 100644 index 00000000..20861b93 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경/Global Volume Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0221208ff7799054b93001fe5ad445f7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경/New Lighting Settings.lighting b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경/New Lighting Settings.lighting new file mode 100644 index 00000000..695b55fa --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경/New Lighting Settings.lighting @@ -0,0 +1,63 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!850595691 &4890085278179872738 +LightingSettings: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: New Lighting Settings + serializedVersion: 9 + m_EnableBakedLightmaps: 0 + m_EnableRealtimeLightmaps: 0 + m_RealtimeEnvironmentLighting: 1 + m_BounceScale: 1 + m_AlbedoBoost: 1 + m_IndirectOutputScale: 1 + m_UsingShadowmask: 1 + m_BakeBackend: 1 + m_LightmapMaxSize: 1024 + m_LightmapSizeFixed: 0 + m_UseMipmapLimits: 1 + m_BakeResolution: 40 + m_Padding: 2 + m_LightmapCompression: 3 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAO: 0 + m_MixedBakeMode: 2 + m_LightmapsBakeMode: 1 + m_FilterMode: 1 + m_LightmapParameters: {fileID: 15204, guid: 0000000000000000f000000000000000, type: 0} + m_ExportTrainingData: 0 + m_EnableWorkerProcessBaking: 1 + m_TrainingDataDestination: TrainingData + m_RealtimeResolution: 2 + m_ForceWhiteAlbedo: 0 + m_ForceUpdates: 0 + m_PVRCulling: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 512 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_LightProbeSampleCountMultiplier: 4 + m_PVRBounces: 2 + m_PVRMinBounces: 2 + m_PVREnvironmentImportanceSampling: 0 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 1 + m_PVRFilteringGaussRadiusAO: 1 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_RespectSceneVisibilityWhenBakingGI: 0 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경/New Lighting Settings.lighting.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경/New Lighting Settings.lighting.meta new file mode 100644 index 00000000..66ce8970 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경/New Lighting Settings.lighting.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 07cc2bac4813d7448b587ca39913ee1b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 4890085278179872738 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경/[아이시아]영재학교 배경 Baking Set.asset b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경/[아이시아]영재학교 배경 Baking Set.asset new file mode 100644 index 00000000..be2f25f7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경/[아이시아]영재학교 배경 Baking Set.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50dd0ed03115a5e0af4da5c6230d9002ae89163e082cfeb0c54482da3dc4f1ac +size 3446 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경/[아이시아]영재학교 배경 Baking Set.asset.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경/[아이시아]영재학교 배경 Baking Set.asset.meta new file mode 100644 index 00000000..f0875b20 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/scene/[아이시아]영재학교 배경/[아이시아]영재학교 배경 Baking Set.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 36ac9f9ca8644ac41acdef587c363941 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp.meta new file mode 100644 index 00000000..fe601110 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c628dde3e4ce3c94c868220e0687afc7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material.meta new file mode 100644 index 00000000..3a68bb2b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 78d3685e1949ded4388e5c23e26665da +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/02.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/02.mat new file mode 100644 index 00000000..f45cd2de --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/02.mat @@ -0,0 +1,222 @@ +%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: 02 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: a5caac5ea579cf64b8d53b77d0295e08, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: a5caac5ea579cf64b8d53b77d0295e08, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &7874484991424336125 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/02.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/02.mat.meta new file mode 100644 index 00000000..c3c17c26 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/02.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6b37ec06a524848469fbec3a426d31c3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/3333231Material64.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/3333231Material64.mat new file mode 100644 index 00000000..0a99025f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/3333231Material64.mat @@ -0,0 +1,222 @@ +%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: 3333231Material64 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.56427705, g: 0.56427705, b: 0.56427705, a: 1} + - _Color: {r: 0.564277, g: 0.564277, b: 0.564277, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5885033346554880348 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/3333231Material64.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/3333231Material64.mat.meta new file mode 100644 index 00000000..31f610fe --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/3333231Material64.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 143f9eef98573f14fbc90d9d6b5a27ef +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/4342Material51.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/4342Material51.mat new file mode 100644 index 00000000..25e3b1e2 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/4342Material51.mat @@ -0,0 +1,222 @@ +%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: 4342Material51 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.5059692, g: 0.54190874, b: 0.5714868, a: 1} + - _Color: {r: 0.5059692, g: 0.5419087, b: 0.5714868, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4976030386773733850 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/4342Material51.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/4342Material51.mat.meta new file mode 100644 index 00000000..4bd85308 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/4342Material51.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e25b6125a5db12847b345030e9d92e6d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Carrera13 Marble.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Carrera13 Marble.mat new file mode 100644 index 00000000..10fed92a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Carrera13 Marble.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4428997446590337576 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Carrera13 Marble + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: a637e151fc1a78244baf63a057af8519, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: a637e151fc1a78244baf63a057af8519, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Carrera13 Marble.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Carrera13 Marble.mat.meta new file mode 100644 index 00000000..922851fa --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Carrera13 Marble.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a9042dba098a67440a5131ac869ccf2e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Boot_Sole_3.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Boot_Sole_3.mat new file mode 100644 index 00000000..9c8e6ba8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Boot_Sole_3.mat @@ -0,0 +1,222 @@ +%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: Lisanne_Boot_Sole_3 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.8205323, g: 0.76185256, b: 0.6379926, a: 1} + - _Color: {r: 0.8205323, g: 0.76185256, b: 0.6379926, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5425562621328421128 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Boot_Sole_3.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Boot_Sole_3.mat.meta new file mode 100644 index 00000000..f6bcf130 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Boot_Sole_3.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1b028e75b81ba2e41b2cb86a8096a075 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Boots1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Boots1.mat new file mode 100644 index 00000000..317977b0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Boots1.mat @@ -0,0 +1,222 @@ +%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: Lisanne_Boots1 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.95560306, g: 0.9592555, b: 0.94824237, a: 1} + - _Color: {r: 0.95560306, g: 0.9592555, b: 0.94824237, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &592683860069651193 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Boots1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Boots1.mat.meta new file mode 100644 index 00000000..14e6f8ca --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Boots1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8adc655047f7920419346c2be2c0c968 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Bracelet.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Bracelet.mat new file mode 100644 index 00000000..b7844e6d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Bracelet.mat @@ -0,0 +1,222 @@ +%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: Lisanne_Bracelet + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.63174355, g: 0.5924486, b: 0.5924486, a: 1} + - _Color: {r: 0.63174355, g: 0.5924486, b: 0.5924486, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4741160140053458566 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Bracelet.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Bracelet.mat.meta new file mode 100644 index 00000000..3129dc0e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Bracelet.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c59f7cd6406cab743afedfcc3b102a13 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Bracelet2.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Bracelet2.mat new file mode 100644 index 00000000..3a49395b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Bracelet2.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5865936268497524692 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Lisanne_Bracelet2 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.5341862, g: 0.5341862, b: 0.5341862, a: 1} + - _Color: {r: 0.5341861, g: 0.5341861, b: 0.5341861, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Bracelet2.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Bracelet2.mat.meta new file mode 100644 index 00000000..88445c55 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Bracelet2.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eb0d6a4c9bafb2344b4777b20aac4914 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Caulk.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Caulk.mat new file mode 100644 index 00000000..da02aea0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Caulk.mat @@ -0,0 +1,222 @@ +%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: Lisanne_Caulk + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.97368413, g: 0.9718961, b: 0.7812595, a: 1} + - _Color: {r: 0.97368413, g: 0.9718961, b: 0.7812595, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2260202574970202415 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Caulk.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Caulk.mat.meta new file mode 100644 index 00000000..fd24d095 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Caulk.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4cf9eb6e4e13bce4792371cde65e98b1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Caulk1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Caulk1.mat new file mode 100644 index 00000000..642598e6 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Caulk1.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6456801043469129436 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Lisanne_Caulk1 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Caulk1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Caulk1.mat.meta new file mode 100644 index 00000000..6f5b0baa --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Caulk1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3275844428d58124d98555dfdb80ee3c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Hammer.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Hammer.mat new file mode 100644 index 00000000..66462ba7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Hammer.mat @@ -0,0 +1,222 @@ +%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: Lisanne_Hammer + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.51830053, g: 0.5341862, b: 0.56062776, a: 1} + - _Color: {r: 0.51830053, g: 0.5341861, b: 0.56062776, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8232153152492793149 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Hammer.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Hammer.mat.meta new file mode 100644 index 00000000..730692df --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Hammer.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 53cd8137a17b55940b0a137bb6fbdb75 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Hammer1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Hammer1.mat new file mode 100644 index 00000000..a76ab6cc --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Hammer1.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3526046293370130199 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Lisanne_Hammer1 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.46182454, g: 0.46647656, b: 0.42747068, a: 1} + - _Color: {r: 0.46182448, g: 0.46647656, b: 0.42747065, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Hammer1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Hammer1.mat.meta new file mode 100644 index 00000000..88ee1422 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Hammer1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fe54e91d34b00e0449b43cb5629e3465 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Metal.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Metal.mat new file mode 100644 index 00000000..d4e5a03d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Metal.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-239581470825619779 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Lisanne_Metal + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.8884273, g: 0.8884273, b: 0.8884273, a: 1} + - _Color: {r: 0.8884273, g: 0.8884273, b: 0.8884273, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Metal.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Metal.mat.meta new file mode 100644 index 00000000..602d89f7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Metal.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b7aaa0ab5d8e1604697bda172e30b805 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Overalls.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Overalls.mat new file mode 100644 index 00000000..295a58bb --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Overalls.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4918860865780274821 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Lisanne_Overalls + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.9023934, g: 0.9023934, b: 0.89444804, a: 1} + - _Color: {r: 0.9023934, g: 0.9023934, b: 0.89444804, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Overalls.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Overalls.mat.meta new file mode 100644 index 00000000..e8519337 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Overalls.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e9eb8f39e62b85842972551550761786 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Tool_Bag_01.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Tool_Bag_01.mat new file mode 100644 index 00000000..198ac872 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Tool_Bag_01.mat @@ -0,0 +1,222 @@ +%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: Lisanne_Tool_Bag_01 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.33910808, g: 0.33910808, b: 0.36525205, a: 1} + - _Color: {r: 0.33910805, g: 0.33910805, b: 0.36525202, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1633233673908602710 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Tool_Bag_01.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Tool_Bag_01.mat.meta new file mode 100644 index 00000000..eae21ca3 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Lisanne_Tool_Bag_01.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 38e621a5fd12b154198fcd015af363ab +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Ma23333terial12.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Ma23333terial12.mat new file mode 100644 index 00000000..92411dfd --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Ma23333terial12.mat @@ -0,0 +1,222 @@ +%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: Ma23333terial12 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.49753284, g: 0.46647656, b: 0.46647656, a: 1} + - _Color: {r: 0.49753284, g: 0.46647656, b: 0.46647656, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4647316224782658390 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Ma23333terial12.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Ma23333terial12.mat.meta new file mode 100644 index 00000000..ce23f77f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Ma23333terial12.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7437ce5e037601040a4a786eac3ed34f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Ma3331124terial12.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Ma3331124terial12.mat new file mode 100644 index 00000000..16debb3c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Ma3331124terial12.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2047977228762320497 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Ma3331124terial12 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 4478e132ddf0f464890797c2e03d7f3f, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 4478e132ddf0f464890797c2e03d7f3f, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Ma3331124terial12.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Ma3331124terial12.mat.meta new file mode 100644 index 00000000..9c7195f8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Ma3331124terial12.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8906c088acaee5d4f86a286bb24f7393 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Matedsfrial11.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Matedsfrial11.mat new file mode 100644 index 00000000..4171c9d9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Matedsfrial11.mat @@ -0,0 +1,222 @@ +%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: Matedsfrial11 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: b1a24f22ffe0db344bdb338bb2e5acdb, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: b1a24f22ffe0db344bdb338bb2e5acdb, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1719024622346026485 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Matedsfrial11.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Matedsfrial11.mat.meta new file mode 100644 index 00000000..2f81914f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Matedsfrial11.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e2c05566fd0df14409304ae81e7b7d85 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material196.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material196.mat new file mode 100644 index 00000000..6941fe22 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material196.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3245214736774173573 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Material196 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.5341862, g: 0.5341862, b: 0.5341862, a: 1} + - _Color: {r: 0.5341861, g: 0.5341861, b: 0.5341861, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material196.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material196.mat.meta new file mode 100644 index 00000000..4c68598c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material196.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0fd4b2963f84140468f3baf792d050f4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material2144441.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material2144441.mat new file mode 100644 index 00000000..ca040311 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material2144441.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-488705813724393969 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Material2144441 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.8864084, g: 0.88438344, b: 0.8782715, a: 1} + - _Color: {r: 0.8864084, g: 0.88438344, b: 0.8782715, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material2144441.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material2144441.mat.meta new file mode 100644 index 00000000..932277c8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material2144441.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 17db1646c98cab948bc31f15b385d613 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material28.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material28.mat new file mode 100644 index 00000000..f7cdf014 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material28.mat @@ -0,0 +1,226 @@ +%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: Material28 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 0.69934684, g: 0.76920515, b: 0.86795866, a: 0.44} + - _Color: {r: 0.69934684, g: 0.76920515, b: 0.86795866, a: 0.44} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &7036072668680152980 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material28.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material28.mat.meta new file mode 100644 index 00000000..ed39df53 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material28.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ec146e3187856844d8e5e648bc98eab8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material8.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material8.mat new file mode 100644 index 00000000..c0069b6e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material8.mat @@ -0,0 +1,222 @@ +%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: Material8 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.7314692, g: 0.7314692, b: 0.7314692, a: 1} + - _Color: {r: 0.7314692, g: 0.7314692, b: 0.7314692, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4313335548878701461 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material8.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material8.mat.meta new file mode 100644 index 00000000..214275fd --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Material8.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 82e3551a5498e904d8c941d77b448ad5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Materiasdffsl12.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Materiasdffsl12.mat new file mode 100644 index 00000000..f9f7916b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Materiasdffsl12.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1060713388930035884 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Materiasdffsl12 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 023549903801b974592bc39c2238af2a, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 023549903801b974592bc39c2238af2a, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Materiasdffsl12.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Materiasdffsl12.mat.meta new file mode 100644 index 00000000..c27fb512 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Materiasdffsl12.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1fd9bfa74b950524d88e009df93a77d5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Stacy_Shirt1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Stacy_Shirt1.mat new file mode 100644 index 00000000..700524f4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Stacy_Shirt1.mat @@ -0,0 +1,222 @@ +%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: Stacy_Shirt1 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.8762218, g: 0.81378174, b: 0.80236465, a: 1} + - _Color: {r: 0.8762218, g: 0.81378174, b: 0.80236465, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3192888973888359256 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Stacy_Shirt1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Stacy_Shirt1.mat.meta new file mode 100644 index 00000000..5a04c319 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Stacy_Shirt1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b0e261b44bd04994e9c0db2bbf8ac7cb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Stacy_Shoe1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Stacy_Shoe1.mat new file mode 100644 index 00000000..c67e4a03 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Stacy_Shoe1.mat @@ -0,0 +1,222 @@ +%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: Stacy_Shoe1 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.90436536, g: 0.6025818, b: 0.6025818, a: 1} + - _Color: {r: 0.90436536, g: 0.6025818, b: 0.6025818, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8469162478142595223 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Stacy_Shoe1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Stacy_Shoe1.mat.meta new file mode 100644 index 00000000..fccc6564 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/Stacy_Shoe1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cbce2b825cfdf984fbd5c2e2cef7f3ae +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0009_Linen].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0009_Linen].mat new file mode 100644 index 00000000..e2fa6aa8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0009_Linen].mat @@ -0,0 +1,222 @@ +%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: '[0009_Linen]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.98958486, g: 0.9718961, b: 0.95560306, a: 1} + - _Color: {r: 0.98958486, g: 0.9718961, b: 0.95560306, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4234130110615268279 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0009_Linen].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0009_Linen].mat.meta new file mode 100644 index 00000000..9c9b5fc1 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0009_Linen].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dcb2ddf025a5b394590562407f451826 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0018_Brown].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0018_Brown].mat new file mode 100644 index 00000000..3eb6dd08 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0018_Brown].mat @@ -0,0 +1,222 @@ +%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: '[0018_Brown]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.82499254, g: 0.44260097, b: 0.44260097, a: 1} + - _Color: {r: 0.82499254, g: 0.44260094, b: 0.44260094, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4358980790001726836 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0018_Brown].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0018_Brown].mat.meta new file mode 100644 index 00000000..d6a241cc --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0018_Brown].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 99d3718274f950843a519610fc1a7919 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0020_Red].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0020_Red].mat new file mode 100644 index 00000000..f30e5b1b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0020_Red].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6155987197949576840 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[0020_Red]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 0, b: 0, a: 1} + - _Color: {r: 1, g: 0, b: 0, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0020_Red].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0020_Red].mat.meta new file mode 100644 index 00000000..81e59e38 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0020_Red].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4356202bc31d1ac4ab7182f6c73e6952 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0023_FireBrick].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0023_FireBrick].mat new file mode 100644 index 00000000..437dadfa --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0023_FireBrick].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8012707534604059085 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[0023_FireBrick]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.8511141, g: 0.39503002, b: 0.39503002, a: 1} + - _Color: {r: 0.8511141, g: 0.39503, b: 0.39503, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0023_FireBrick].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0023_FireBrick].mat.meta new file mode 100644 index 00000000..baf0f8be --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0023_FireBrick].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e9a717d3b1ed0eb4eb95aa9f965de739 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0041_Chocolate].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0041_Chocolate].mat new file mode 100644 index 00000000..7d2090af --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0041_Chocolate].mat @@ -0,0 +1,222 @@ +%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: '[0041_Chocolate]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.91607994, g: 0.67393625, b: 0.36525205, a: 1} + - _Color: {r: 0.91607994, g: 0.67393625, b: 0.36525202, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &7863910199449685728 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0041_Chocolate].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0041_Chocolate].mat.meta new file mode 100644 index 00000000..60f5399a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0041_Chocolate].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7926ba4ae98d05345be57c6557d91e7b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0043_SaddleBrown].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0043_SaddleBrown].mat new file mode 100644 index 00000000..2ceff037 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0043_SaddleBrown].mat @@ -0,0 +1,222 @@ +%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: '[0043_SaddleBrown]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.76185256, g: 0.5532369, b: 0.30255374, a: 1} + - _Color: {r: 0.76185256, g: 0.5532369, b: 0.3025537, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1113017084588297755 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0043_SaddleBrown].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0043_SaddleBrown].mat.meta new file mode 100644 index 00000000..47967290 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0043_SaddleBrown].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8d659e590026f9a48bbecf5f4f2ae65b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0047_Khaki].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0047_Khaki].mat new file mode 100644 index 00000000..52ae4a44 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0047_Khaki].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-459858538144407739 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[0047_Khaki]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.9718961, g: 0.95560306, b: 0.7667645, a: 1} + - _Color: {r: 0.9718961, g: 0.95560306, b: 0.7667645, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0047_Khaki].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0047_Khaki].mat.meta new file mode 100644 index 00000000..6af8405e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0047_Khaki].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d4ea3a8dfa68ad645b6ef05d6fb4d7b1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0050_LemonChiffon].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0050_LemonChiffon].mat new file mode 100644 index 00000000..627fee42 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0050_LemonChiffon].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6273320093381134185 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[0050_LemonChiffon]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 0.98958486, b: 0.9082924, a: 1} + - _Color: {r: 1, g: 0.98958486, b: 0.9082924, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0050_LemonChiffon].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0050_LemonChiffon].mat.meta new file mode 100644 index 00000000..ea32efd0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0050_LemonChiffon].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3225bb18c65e29d47997c8f5559a7135 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0057_DarkKhaki].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0057_DarkKhaki].mat new file mode 100644 index 00000000..a35fe34d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0057_DarkKhaki].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4223654962223962713 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[0057_DarkKhaki]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.93139815, g: 0.9275999, b: 0.8884273, a: 1} + - _Color: {r: 0.93139815, g: 0.9275999, b: 0.8884273, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0057_DarkKhaki].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0057_DarkKhaki].mat.meta new file mode 100644 index 00000000..b471f414 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0057_DarkKhaki].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6ddb94413dc5ef04f946e08d6106cbdd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0060_GrassGreen].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0060_GrassGreen].mat new file mode 100644 index 00000000..efdad310 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0060_GrassGreen].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7986591801782476389 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[0060_GrassGreen]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.5263194, g: 0.63174355, b: 0.15000519, a: 1} + - _Color: {r: 0.5263194, g: 0.63174355, b: 0.15000516, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0060_GrassGreen].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0060_GrassGreen].mat.meta new file mode 100644 index 00000000..dc2d86fb --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0060_GrassGreen].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 096f48b26f56f6747b8235d675d233d4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0075_ForestGreen].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0075_ForestGreen].mat new file mode 100644 index 00000000..ba6eb86d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0075_ForestGreen].mat @@ -0,0 +1,222 @@ +%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: '[0075_ForestGreen]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.7183117, g: 0.82942134, b: 0.7183117, a: 1} + - _Color: {r: 0.7183117, g: 0.82942134, b: 0.7183117, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &9222130788672904616 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0075_ForestGreen].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0075_ForestGreen].mat.meta new file mode 100644 index 00000000..22ab028a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0075_ForestGreen].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 278a8a1d1d5a0ff4782466cbe60fe341 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0075_ForestGreen]1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0075_ForestGreen]1.mat new file mode 100644 index 00000000..b6d3c3f5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0075_ForestGreen]1.mat @@ -0,0 +1,222 @@ +%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: '[0075_ForestGreen]1' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.85959065, g: 0.92378104, b: 0.8115152, a: 1} + - _Color: {r: 0.85959065, g: 0.92378104, b: 0.8115152, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6018972991578512351 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0075_ForestGreen]1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0075_ForestGreen]1.mat.meta new file mode 100644 index 00000000..6ad4c423 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0075_ForestGreen]1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2019110b14b30da4da4ae79d07f9fb4a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0078_DarkSlateGray].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0078_DarkSlateGray].mat new file mode 100644 index 00000000..3c440b51 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0078_DarkSlateGray].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3144168001796231017 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[0078_DarkSlateGray]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.46647656, g: 0.5924486, b: 0.5924486, a: 1} + - _Color: {r: 0.46647656, g: 0.5924486, b: 0.5924486, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0078_DarkSlateGray].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0078_DarkSlateGray].mat.meta new file mode 100644 index 00000000..e35a79c3 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0078_DarkSlateGray].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 93518c5cfcfbdd14688ce421cb2259d2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0100_SteelBlue]1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0100_SteelBlue]1.mat new file mode 100644 index 00000000..b4f1d64e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0100_SteelBlue]1.mat @@ -0,0 +1,226 @@ +%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: '[0100_SteelBlue]1' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 0.84897757, g: 0.8904402, b: 0.9082924, a: 0.58} + - _Color: {r: 0.84897757, g: 0.8904402, b: 0.9082924, a: 0.58} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3462603634467075037 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0100_SteelBlue]1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0100_SteelBlue]1.mat.meta new file mode 100644 index 00000000..f1208c0a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0100_SteelBlue]1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5debe4e058f7dd241932932f6047c98a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0104_MediumBlue].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0104_MediumBlue].mat new file mode 100644 index 00000000..2da1625d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0104_MediumBlue].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6263871021941468692 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[0104_MediumBlue]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.36525205, g: 0.44260097, b: 0.8092402, a: 1} + - _Color: {r: 0.36525202, g: 0.44260094, b: 0.8092402, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0104_MediumBlue].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0104_MediumBlue].mat.meta new file mode 100644 index 00000000..5ae36436 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0104_MediumBlue].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5ed76c72f48269245b0532c4251c613a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0111_SlateGray].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0111_SlateGray].mat new file mode 100644 index 00000000..e015e2ce --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0111_SlateGray].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-14663443844103721 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[0111_SlateGray]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.6938041, g: 0.73664695, b: 0.7764671, a: 1} + - _Color: {r: 0.6938041, g: 0.73664695, b: 0.7764671, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0111_SlateGray].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0111_SlateGray].mat.meta new file mode 100644 index 00000000..f77f7434 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0111_SlateGray].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fab3a29dc80af904e82991a25f6c3ab5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0111_SlateGray]1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0111_SlateGray]1.mat new file mode 100644 index 00000000..95985dd4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0111_SlateGray]1.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-670120148649709802 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[0111_SlateGray]1' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.5059692, g: 0.54190874, b: 0.5714868, a: 1} + - _Color: {r: 0.5059692, g: 0.5419087, b: 0.5714868, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0111_SlateGray]1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0111_SlateGray]1.mat.meta new file mode 100644 index 00000000..63c396c6 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0111_SlateGray]1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c694eb09737a7c046aedc2c71ad0d7f5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0111_SlateGray]2.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0111_SlateGray]2.mat new file mode 100644 index 00000000..ee30ed5f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0111_SlateGray]2.mat @@ -0,0 +1,222 @@ +%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: '[0111_SlateGray]2' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.65327984, g: 0.7183117, b: 0.7764671, a: 1} + - _Color: {r: 0.65327984, g: 0.7183117, b: 0.7764671, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1269874626551638779 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0111_SlateGray]2.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0111_SlateGray]2.mat.meta new file mode 100644 index 00000000..bc15ddd9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0111_SlateGray]2.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4ddebb5db28d9bb4cb8b1e7f7cb02508 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver].mat new file mode 100644 index 00000000..8f4aba38 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver].mat @@ -0,0 +1,222 @@ +%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: '[0131_Silver]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 122317f7a93611d43a915af7a2509a8b, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 122317f7a93611d43a915af7a2509a8b, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2015506722308934605 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver].mat.meta new file mode 100644 index 00000000..b4062ee9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 80c0e7ba9f53db84b97462df8df09acb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver]1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver]1.mat new file mode 100644 index 00000000..6c834aa7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver]1.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4907935154732394894 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[0131_Silver]1' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.66223466, g: 0.6710356, b: 0.6796897, a: 1} + - _Color: {r: 0.66223466, g: 0.6710356, b: 0.6796897, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver]1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver]1.mat.meta new file mode 100644 index 00000000..926e3c68 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver]1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8bf429455fd334f42a6237c72774946a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver]2.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver]2.mat new file mode 100644 index 00000000..141a29da --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver]2.mat @@ -0,0 +1,222 @@ +%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: '[0131_Silver]2' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.88235235, g: 0.88235235, b: 0.88235235, a: 1} + - _Color: {r: 0.88235235, g: 0.88235235, b: 0.88235235, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8195212560821510730 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver]2.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver]2.mat.meta new file mode 100644 index 00000000..ecf20d7c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver]2.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aa88d3576a7148941bc7f3b4838f0410 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver]3.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver]3.mat new file mode 100644 index 00000000..7e8d9387 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver]3.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4106002766533200504 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[0131_Silver]3' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.9082924, g: 0.9082924, b: 0.9082924, a: 1} + - _Color: {r: 0.9082924, g: 0.9082924, b: 0.9082924, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver]3.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver]3.mat.meta new file mode 100644 index 00000000..f2bd4cc1 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0131_Silver]3.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dbbf8a96ad1f1a749877ef0687c726e0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0132_LightGray].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0132_LightGray].mat new file mode 100644 index 00000000..15a0bd7e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0132_LightGray].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-686422754046631533 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[0132_LightGray]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.8316242, g: 0.8316242, b: 0.8316242, a: 1} + - _Color: {r: 0.8316242, g: 0.8316242, b: 0.8316242, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0132_LightGray].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0132_LightGray].mat.meta new file mode 100644 index 00000000..a7db6d5b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0132_LightGray].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 62141be9e37426e45a9d663d3392967f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0134_DimGray].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0134_DimGray].mat new file mode 100644 index 00000000..4e18541b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0134_DimGray].mat @@ -0,0 +1,222 @@ +%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: '[0134_DimGray]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.71295995, g: 0.7183117, b: 0.7183117, a: 1} + - _Color: {r: 0.71295995, g: 0.7183117, b: 0.7183117, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4491318697960078186 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0134_DimGray].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0134_DimGray].mat.meta new file mode 100644 index 00000000..03da7a44 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0134_DimGray].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4d0bbe08311b51c4297f38f3421fa20c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0135_DarkGray].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0135_DarkGray].mat new file mode 100644 index 00000000..44298790 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0135_DarkGray].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6373380906769601111 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[0135_DarkGray]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.59585094, g: 0.59585094, b: 0.59585094, a: 1} + - _Color: {r: 0.59585094, g: 0.59585094, b: 0.59585094, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0135_DarkGray].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0135_DarkGray].mat.meta new file mode 100644 index 00000000..2bacdd0f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0135_DarkGray].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: df1d2020187c12c4ca03d40e964a4cac +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0135_DarkGray]1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0135_DarkGray]1.mat new file mode 100644 index 00000000..ce5ba7ea --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0135_DarkGray]1.mat @@ -0,0 +1,222 @@ +%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: '[0135_DarkGray]1' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.49753284, g: 0.49753284, b: 0.49753284, a: 1} + - _Color: {r: 0.49753284, g: 0.49753284, b: 0.49753284, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &939789025442334643 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0135_DarkGray]1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0135_DarkGray]1.mat.meta new file mode 100644 index 00000000..d1089b45 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[0135_DarkGray]1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dece2a6fb832183489c6e8253663c48c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Antique 01]1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Antique 01]1.mat new file mode 100644 index 00000000..958b0973 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Antique 01]1.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1867928854395312083 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Brick Antique 01]1' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: f258db5daeaf3c04295e5b0406ac55b3, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: f258db5daeaf3c04295e5b0406ac55b3, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Antique 01]1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Antique 01]1.mat.meta new file mode 100644 index 00000000..12a45ac5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Antique 01]1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 56afa637ad270404db1b84bcb105c2ef +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Tumbled].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Tumbled].mat new file mode 100644 index 00000000..9385bba6 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Tumbled].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-125386447991491639 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Brick Tumbled]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: c4bda7f2ad558c540bf0104facf4ed74, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: c4bda7f2ad558c540bf0104facf4ed74, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Tumbled].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Tumbled].mat.meta new file mode 100644 index 00000000..2cf8d3fb --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Tumbled].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c9460d7595a5ca847946eca655d53f2a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Tumbled]1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Tumbled]1.mat new file mode 100644 index 00000000..d01cfbd5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Tumbled]1.mat @@ -0,0 +1,222 @@ +%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: '[Brick Tumbled]1' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 4a535c43a61ef094dba78b0bf0c92c1a, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 4a535c43a61ef094dba78b0bf0c92c1a, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &973226903989974197 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Tumbled]1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Tumbled]1.mat.meta new file mode 100644 index 00000000..9775a18c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Tumbled]1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8a97c5fdab0051149bd4d78761b769de +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Tumbled]3.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Tumbled]3.mat new file mode 100644 index 00000000..4e3ef2bb --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Tumbled]3.mat @@ -0,0 +1,222 @@ +%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: '[Brick Tumbled]3' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 99200d885ea62274b883fdc44a9b6a56, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 99200d885ea62274b883fdc44a9b6a56, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4851026537650634978 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Tumbled]3.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Tumbled]3.mat.meta new file mode 100644 index 00000000..0fd3ac85 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Brick Tumbled]3.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ff02870ff12c25544a6de1a83ef9f037 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Carrera Marble].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Carrera Marble].mat new file mode 100644 index 00000000..f8ac4e91 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Carrera Marble].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7735013190690239028 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Carrera Marble]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: a637e151fc1a78244baf63a057af8519, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: a637e151fc1a78244baf63a057af8519, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Carrera Marble].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Carrera Marble].mat.meta new file mode 100644 index 00000000..08abe8a3 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Carrera Marble].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 390d32d7c3dc8ab4ea343f4b9dbe8f91 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Carrera Marble]1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Carrera Marble]1.mat new file mode 100644 index 00000000..b6f45a04 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Carrera Marble]1.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6708803990816947188 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Carrera Marble]1' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: a637e151fc1a78244baf63a057af8519, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: a637e151fc1a78244baf63a057af8519, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Carrera Marble]1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Carrera Marble]1.mat.meta new file mode 100644 index 00000000..97d511da --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Carrera Marble]1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b3166de2d7c69274b9fe48f2aaf7aab6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Cladding Stucco White]3.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Cladding Stucco White]3.mat new file mode 100644 index 00000000..69ded816 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Cladding Stucco White]3.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5078059448986275718 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Cladding Stucco White]3' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: d24797941b58e9b4f9bf8724f62bac4a, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: d24797941b58e9b4f9bf8724f62bac4a, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Cladding Stucco White]3.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Cladding Stucco White]3.mat.meta new file mode 100644 index 00000000..3cf85935 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Cladding Stucco White]3.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c23359d08f3f2134d9e40f14e841ba3a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color A07].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color A07].mat new file mode 100644 index 00000000..2438421d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color A07].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2370315731572208016 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Color A07]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.79773766, g: 0, b: 0, a: 1} + - _Color: {r: 0.79773766, g: 0, b: 0, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color A07].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color A07].mat.meta new file mode 100644 index 00000000..920b32cb --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color A07].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 73fe4ed6f74b4e54f9777f10d790da6d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color B06]1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color B06]1.mat new file mode 100644 index 00000000..34be1ba3 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color B06]1.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5537845772745795622 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Color B06]1' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.8616927, g: 0.5263194, b: 0.3177795, a: 1} + - _Color: {r: 0.8616927, g: 0.5263194, b: 0.31777948, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color B06]1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color B06]1.mat.meta new file mode 100644 index 00000000..389d5950 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color B06]1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 926966b8f1fa5874c816d4c440fe964e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color B07].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color B07].mat new file mode 100644 index 00000000..9d402ef0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color B07].mat @@ -0,0 +1,222 @@ +%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: '[Color B07]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.79773766, g: 0.422277, b: 0, a: 1} + - _Color: {r: 0.79773766, g: 0.42227697, b: 0, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6276457734727214585 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color B07].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color B07].mat.meta new file mode 100644 index 00000000..aed3dc95 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color B07].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0004bc245027129448471caf5fa79bbe +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color C06].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color C06].mat new file mode 100644 index 00000000..443aeae6 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color C06].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7275884179617043641 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Color C06]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.60921764, g: 0.5457181, b: 0.46647656, a: 1} + - _Color: {r: 0.60921764, g: 0.5457181, b: 0.46647656, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color C06].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color C06].mat.meta new file mode 100644 index 00000000..0531dd4e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color C06].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0d0004f5d61941f4f9a37f8792917b2a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color D04].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color D04].mat new file mode 100644 index 00000000..78760c6e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color D04].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1586103916106466208 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Color D04]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 0.9063317, b: 0.4800958, a: 1} + - _Color: {r: 1, g: 0.9063317, b: 0.48009574, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color D04].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color D04].mat.meta new file mode 100644 index 00000000..04bd56b2 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color D04].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 218db00e57737e44bb45a29aa4ef31aa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color H08].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color H08].mat new file mode 100644 index 00000000..16ec3f75 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color H08].mat @@ -0,0 +1,226 @@ +%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: '[Color H08]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 0.21864906, g: 0.63174355, b: 0.5457181, a: 0.83} + - _Color: {r: 0.21864903, g: 0.63174355, b: 0.5457181, a: 0.83} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5360606969061241551 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color H08].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color H08].mat.meta new file mode 100644 index 00000000..6ba60081 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color H08].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dae04db4aa53d4b4da8664a7ab9bf91e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M04].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M04].mat new file mode 100644 index 00000000..29965a4b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M04].mat @@ -0,0 +1,222 @@ +%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: '[Color M04]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 2a23c1bf4f6488d458238c99c16b14b3, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 2a23c1bf4f6488d458238c99c16b14b3, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2631437230407714358 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M04].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M04].mat.meta new file mode 100644 index 00000000..38c1f5d3 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M04].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5973c684b4047a545a6ef766f33fd6d2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M05].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M05].mat new file mode 100644 index 00000000..44bdc940 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M05].mat @@ -0,0 +1,222 @@ +%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: '[Color M05]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.69934684, g: 0.69934684, b: 0.69934684, a: 1} + - _Color: {r: 0.69934684, g: 0.69934684, b: 0.69934684, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &130703267061311407 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M05].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M05].mat.meta new file mode 100644 index 00000000..7db9881d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M05].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5eea87afdd849aa4c9f879dac70aa9b7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M07].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M07].mat new file mode 100644 index 00000000..562f3d31 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M07].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8502082312908481760 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Color M07]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.5142316, g: 0.5142316, b: 0.5142316, a: 1} + - _Color: {r: 0.5142316, g: 0.5142316, b: 0.5142316, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M07].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M07].mat.meta new file mode 100644 index 00000000..c8b14a71 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M07].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b51f457dfa2e8bb419788eed7c5d90d4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M07]1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M07]1.mat new file mode 100644 index 00000000..fe3a0f01 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M07]1.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1245851362316548091 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Color M07]1' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.5059692, g: 0.5059692, b: 0.5059692, a: 1} + - _Color: {r: 0.5059692, g: 0.5059692, b: 0.5059692, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M07]1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M07]1.mat.meta new file mode 100644 index 00000000..e6ea5698 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color M07]1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1be436a54824d4344988242625b1f365 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color_000].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color_000].mat new file mode 100644 index 00000000..d476b2f9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color_000].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7075681045052788784 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Color_000]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color_000].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color_000].mat.meta new file mode 100644 index 00000000..e2b3546c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Color_000].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b6ce582c2eeb8554b82b42cbc993e25c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Concrete Block 8x8 Gray].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Concrete Block 8x8 Gray].mat new file mode 100644 index 00000000..3d20afce --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Concrete Block 8x8 Gray].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3655768600443697761 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Concrete Block 8x8 Gray]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 752a267bf323d1b4787299ad56be610b, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 752a267bf323d1b4787299ad56be610b, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Concrete Block 8x8 Gray].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Concrete Block 8x8 Gray].mat.meta new file mode 100644 index 00000000..966753fd --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Concrete Block 8x8 Gray].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a50e90a32dfa67c478c54fb3ae4a0f58 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Concrete Block 8x8 Gray]2.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Concrete Block 8x8 Gray]2.mat new file mode 100644 index 00000000..b73006cc --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Concrete Block 8x8 Gray]2.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8374804069182779591 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Concrete Block 8x8 Gray]2' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 01df62548e82e964e9a74cf55c4e7d63, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 01df62548e82e964e9a74cf55c4e7d63, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Concrete Block 8x8 Gray]2.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Concrete Block 8x8 Gray]2.mat.meta new file mode 100644 index 00000000..6ea7f994 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Concrete Block 8x8 Gray]2.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1b252e4ec86a3a7418d373d98df1affe +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Fencing Chain Link]1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Fencing Chain Link]1.mat new file mode 100644 index 00000000..b362c523 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Fencing Chain Link]1.mat @@ -0,0 +1,226 @@ +%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: '[Fencing Chain Link]1' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: cac77f3385185ce4995f50f5ed4c5394, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: cac77f3385185ce4995f50f5ed4c5394, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &43123155223721263 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Fencing Chain Link]1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Fencing Chain Link]1.mat.meta new file mode 100644 index 00000000..9c19cc2b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Fencing Chain Link]1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0477207aaf3515344aef1e46939c5ded +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Granite Light Gray]1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Granite Light Gray]1.mat new file mode 100644 index 00000000..d1cb1556 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Granite Light Gray]1.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-9112168901760003291 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Granite Light Gray]1' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 582b83cb985ede44e8db661c0fe79251, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 582b83cb985ede44e8db661c0fe79251, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Granite Light Gray]1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Granite Light Gray]1.mat.meta new file mode 100644 index 00000000..cbafbd14 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Granite Light Gray]1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0ec50307372e3a14eb705167258750b6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Grass Dark Green].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Grass Dark Green].mat new file mode 100644 index 00000000..62bae20f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Grass Dark Green].mat @@ -0,0 +1,222 @@ +%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: '[Grass Dark Green]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.6965826, g: 0.82942134, b: 0.54190874, a: 1} + - _Color: {r: 0.6965826, g: 0.82942134, b: 0.5419087, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1278852347517179929 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Grass Dark Green].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Grass Dark Green].mat.meta new file mode 100644 index 00000000..c5fdc112 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Grass Dark Green].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 00b60651c1c6296409ff68b8ad123056 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Groundcover Brick Crushed].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Groundcover Brick Crushed].mat new file mode 100644 index 00000000..bf6e2558 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Groundcover Brick Crushed].mat @@ -0,0 +1,222 @@ +%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: '[Groundcover Brick Crushed]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.81378174, g: 0.62541395, b: 0.5714868, a: 1} + - _Color: {r: 0.81378174, g: 0.62541395, b: 0.5714868, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6462355672976005491 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Groundcover Brick Crushed].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Groundcover Brick Crushed].mat.meta new file mode 100644 index 00000000..91523616 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Groundcover Brick Crushed].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 863fe77580e55584da6f5226b8da0762 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Corrugated Shiny].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Corrugated Shiny].mat new file mode 100644 index 00000000..095bb4fc --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Corrugated Shiny].mat @@ -0,0 +1,222 @@ +%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: '[Metal Corrugated Shiny]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 8f47c773dda5a1b49a1b763845f20905, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 8f47c773dda5a1b49a1b763845f20905, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3672546328831768575 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Corrugated Shiny].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Corrugated Shiny].mat.meta new file mode 100644 index 00000000..d02a5629 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Corrugated Shiny].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a128495839bc49d4dad3c4c2ab289361 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Corrugated Shiny]2.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Corrugated Shiny]2.mat new file mode 100644 index 00000000..17f2d98c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Corrugated Shiny]2.mat @@ -0,0 +1,222 @@ +%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: '[Metal Corrugated Shiny]2' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: f4e97d7804acd6b4f8f09005ae657bb5, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: f4e97d7804acd6b4f8f09005ae657bb5, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &285049925273520116 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Corrugated Shiny]2.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Corrugated Shiny]2.mat.meta new file mode 100644 index 00000000..c9dd3d51 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Corrugated Shiny]2.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2d82a186a893507438eb350838f5035a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Corrugated Shiny]3.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Corrugated Shiny]3.mat new file mode 100644 index 00000000..ce5507cc --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Corrugated Shiny]3.mat @@ -0,0 +1,222 @@ +%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: '[Metal Corrugated Shiny]3' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.92569304, g: 0.93139815, b: 0.76431364, a: 1} + - _Color: {r: 0.92569304, g: 0.93139815, b: 0.76431364, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &449157734732850952 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Corrugated Shiny]3.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Corrugated Shiny]3.mat.meta new file mode 100644 index 00000000..4a3d1adf --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Corrugated Shiny]3.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b488fe07c38f6e24cb63e6ea66151d80 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Seamed].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Seamed].mat new file mode 100644 index 00000000..414d84ee --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Seamed].mat @@ -0,0 +1,222 @@ +%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: '[Metal Seamed]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.5855679, g: 0.5890211, b: 0.5750484, a: 1} + - _Color: {r: 0.5855679, g: 0.589021, b: 0.5750484, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &184909945548358824 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Seamed].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Seamed].mat.meta new file mode 100644 index 00000000..9a8aa628 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Seamed].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 33ec2a06c9610b74fb93a40b66b7a62d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Silver].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Silver].mat new file mode 100644 index 00000000..e649a8a9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Silver].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1660182361762838126 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Metal Silver]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 718d9864e2767e548a87750901ea3f82, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 718d9864e2767e548a87750901ea3f82, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Silver].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Silver].mat.meta new file mode 100644 index 00000000..e2972394 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal Silver].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f121254dab890a446a362cd7dc4ba25b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal_Corrogated_Shiny].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal_Corrogated_Shiny].mat new file mode 100644 index 00000000..e75d0c19 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal_Corrogated_Shiny].mat @@ -0,0 +1,222 @@ +%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: '[Metal_Corrogated_Shiny]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 9feb0bd0e213e204994cd5764263ac40, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 9feb0bd0e213e204994cd5764263ac40, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3940922141306026430 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal_Corrogated_Shiny].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal_Corrogated_Shiny].mat.meta new file mode 100644 index 00000000..a1fa9c61 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Metal_Corrogated_Shiny].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 87db91f2f7c732c4ebec876068b21158 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Mirror 01]2.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Mirror 01]2.mat new file mode 100644 index 00000000..0b9691fd --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Mirror 01]2.mat @@ -0,0 +1,222 @@ +%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: '[Mirror 01]2' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 0da09411a91339044a6f9eb98ca129be, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 0da09411a91339044a6f9eb98ca129be, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5345102329635125690 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Mirror 01]2.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Mirror 01]2.mat.meta new file mode 100644 index 00000000..74f14d4e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Mirror 01]2.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1427aa22da2fe264e91addd80f7925a5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old].mat new file mode 100644 index 00000000..6f65279b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6389453478344941495 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Polished Concrete Old]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.8553662, g: 0.8553662, b: 0.83818704, a: 1} + - _Color: {r: 0.8553662, g: 0.8553662, b: 0.83818704, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old].mat.meta new file mode 100644 index 00000000..507a3dfe --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3ff5e3a4336fbe24cba902e342da9eb3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]1.mat new file mode 100644 index 00000000..b4dc8f1e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]1.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8577567635231544654 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Polished Concrete Old]1' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.88031507, g: 0.88031507, b: 0.88031507, a: 1} + - _Color: {r: 0.88031507, g: 0.88031507, b: 0.88031507, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]1.mat.meta new file mode 100644 index 00000000..ed034e61 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1de2b827c7c1634408981609380b8146 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]2.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]2.mat new file mode 100644 index 00000000..f1496a24 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]2.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-9035285991729109326 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Polished Concrete Old]2' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: ff2a1f6fcd1ac9642a5f5169000439e6, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: ff2a1f6fcd1ac9642a5f5169000439e6, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]2.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]2.mat.meta new file mode 100644 index 00000000..ed4ebd08 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]2.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f41e9d5e0b623a9468d86cc951715b26 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]3.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]3.mat new file mode 100644 index 00000000..a0b24094 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]3.mat @@ -0,0 +1,222 @@ +%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: '[Polished Concrete Old]3' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 6b68d26f91c95ba4c8b0fc07b7481c6a, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 6b68d26f91c95ba4c8b0fc07b7481c6a, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6824831683329694097 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]3.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]3.mat.meta new file mode 100644 index 00000000..a7e3bfe8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]3.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 950ed8747b79ffb48a50f400a1549bb1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]4.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]4.mat new file mode 100644 index 00000000..f762940c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]4.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8938458911006185441 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Polished Concrete Old]4' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 0eb231df0fd1bb2438d9a0b931e9c50c, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 0eb231df0fd1bb2438d9a0b931e9c50c, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]4.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]4.mat.meta new file mode 100644 index 00000000..66f380d5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]4.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8d733c92223f40d4e89299029947c51b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]5.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]5.mat new file mode 100644 index 00000000..0419fc7f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]5.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4917368256471035343 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Polished Concrete Old]5' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 746314b13ca46e8468892b45213b0a44, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 746314b13ca46e8468892b45213b0a44, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]5.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]5.mat.meta new file mode 100644 index 00000000..8d0efd23 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]5.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4a121bc010583044ba9dbf8e20748c13 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]7.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]7.mat new file mode 100644 index 00000000..d09047dc --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]7.mat @@ -0,0 +1,222 @@ +%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: '[Polished Concrete Old]7' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.8721031, g: 0.8721031, b: 0.85748184, a: 1} + - _Color: {r: 0.8721031, g: 0.8721031, b: 0.85748184, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8542534743701708932 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]7.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]7.mat.meta new file mode 100644 index 00000000..ad9f9666 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]7.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 673ea4b961493194ca7e8ce5a87490f3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]8.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]8.mat new file mode 100644 index 00000000..9b5fe149 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]8.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-9120303510418619083 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Polished Concrete Old]8' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.8782715, g: 0.8782715, b: 0.8616927, a: 1} + - _Color: {r: 0.8782715, g: 0.8782715, b: 0.8616927, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]8.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]8.mat.meta new file mode 100644 index 00000000..a0eaf882 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Polished Concrete Old]8.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f54fa0120134a5f49b04bfc9dc6bc1bd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Quartz Light Grey]1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Quartz Light Grey]1.mat new file mode 100644 index 00000000..20ecd2a0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Quartz Light Grey]1.mat @@ -0,0 +1,222 @@ +%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: '[Quartz Light Grey]1' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: fbd87c922444d8245b7f44ee2765fa8b, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: fbd87c922444d8245b7f44ee2765fa8b, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2325459894226851342 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Quartz Light Grey]1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Quartz Light Grey]1.mat.meta new file mode 100644 index 00000000..533ca3b8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Quartz Light Grey]1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7f0c770be4cd022418a264961345cb89 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Rough Square Concrete Block]3.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Rough Square Concrete Block]3.mat new file mode 100644 index 00000000..43e00518 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Rough Square Concrete Block]3.mat @@ -0,0 +1,222 @@ +%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: '[Rough Square Concrete Block]3' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: e1a0db01a073c954986dfb97857ac2d2, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: e1a0db01a073c954986dfb97857ac2d2, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3106309357233174741 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Rough Square Concrete Block]3.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Rough Square Concrete Block]3.mat.meta new file mode 100644 index 00000000..cf9851b7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Rough Square Concrete Block]3.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4d92ac0e1120d074cbcef48b1b16326f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Slate Light Tile].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Slate Light Tile].mat new file mode 100644 index 00000000..0f331c6a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Slate Light Tile].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5290012701274153771 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Slate Light Tile]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 26cf5946bb28cb8488de46f40dc04fde, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 26cf5946bb28cb8488de46f40dc04fde, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Slate Light Tile].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Slate Light Tile].mat.meta new file mode 100644 index 00000000..efd32c2b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Slate Light Tile].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e4ece09ab758fb6418a4dd4940f28cb5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Stone Marble].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Stone Marble].mat new file mode 100644 index 00000000..c84f50b2 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Stone Marble].mat @@ -0,0 +1,222 @@ +%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: '[Stone Marble]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 8992354a5eccaa74889f5a0d644b34fa, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 8992354a5eccaa74889f5a0d644b34fa, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5293993469350834866 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Stone Marble].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Stone Marble].mat.meta new file mode 100644 index 00000000..10641acb --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Stone Marble].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 05d79d7fb4b0bc846908082aaa12013f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Stone Vein Gray].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Stone Vein Gray].mat new file mode 100644 index 00000000..5a05acbe --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Stone Vein Gray].mat @@ -0,0 +1,222 @@ +%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: '[Stone Vein Gray]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: b5a616eadd5637f4d83f3ef6ebf1f041, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: b5a616eadd5637f4d83f3ef6ebf1f041, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5962741425160217431 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Stone Vein Gray].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Stone Vein Gray].mat.meta new file mode 100644 index 00000000..de554252 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Stone Vein Gray].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cb49c350d1ec5434eb7dc93d31d5bfca +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Terrazzo Tile Light]1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Terrazzo Tile Light]1.mat new file mode 100644 index 00000000..7de75685 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Terrazzo Tile Light]1.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8974557703399326347 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Terrazzo Tile Light]1' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 929172db153b12a428363d700f7dff0f, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 929172db153b12a428363d700f7dff0f, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Terrazzo Tile Light]1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Terrazzo Tile Light]1.mat.meta new file mode 100644 index 00000000..49184ced --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Terrazzo Tile Light]1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9ed185f2865ead24f947f6b9e9616cdb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Tile Ceramic Natural].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Tile Ceramic Natural].mat new file mode 100644 index 00000000..bc711635 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Tile Ceramic Natural].mat @@ -0,0 +1,222 @@ +%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: '[Tile Ceramic Natural]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 81fe31de65a3fdd4a80d58598bcf5c3b, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 81fe31de65a3fdd4a80d58598bcf5c3b, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4088897365288066922 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Tile Ceramic Natural].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Tile Ceramic Natural].mat.meta new file mode 100644 index 00000000..8f15fee0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Tile Ceramic Natural].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aa5d6ae63f159b84787e2aba213071a9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Blue].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Blue].mat new file mode 100644 index 00000000..7a896415 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Blue].mat @@ -0,0 +1,222 @@ +%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: '[Translucent Glass Blue]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 1 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2886602419212933094 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Blue].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Blue].mat.meta new file mode 100644 index 00000000..63cb3c12 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Blue].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a269f2b010c9e1a4a955b594536d7d95 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Blue]1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Blue]1.mat new file mode 100644 index 00000000..b0d959da --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Blue]1.mat @@ -0,0 +1,222 @@ +%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: '[Translucent Glass Blue]1' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.84897757, g: 0.8782715, b: 0.9082924, a: 1} + - _Color: {r: 0.84897757, g: 0.8782715, b: 0.9082924, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3733355320408570271 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Blue]1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Blue]1.mat.meta new file mode 100644 index 00000000..45f34eb5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Blue]1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aa76b730146e7ac499aa7667a8a49e09 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Blue]3.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Blue]3.mat new file mode 100644 index 00000000..945f55fe --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Blue]3.mat @@ -0,0 +1,226 @@ +%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: '[Translucent Glass Blue]3' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 7a12d4f3640cfcc42bb09a406ffde7e4, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 7a12d4f3640cfcc42bb09a406ffde7e4, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3114799034321779851 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Blue]3.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Blue]3.mat.meta new file mode 100644 index 00000000..c2470e61 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Blue]3.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8c2a06e67899e2447939918a3f627292 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Gray].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Gray].mat new file mode 100644 index 00000000..bef641bf --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Gray].mat @@ -0,0 +1,226 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6073595258818884487 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Translucent Glass Gray]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 0.78} + - _Color: {r: 1, g: 1, b: 1, a: 0.78} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Gray].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Gray].mat.meta new file mode 100644 index 00000000..03c0c1a6 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Gray].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1b0eab1619194b2419a948386c4237d2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Gray]1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Gray]1.mat new file mode 100644 index 00000000..6b4bf5c8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Gray]1.mat @@ -0,0 +1,226 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1998019204565702147 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Translucent Glass Gray]1' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 0.73664695, g: 0.73664695, b: 0.73664695, a: 0.19} + - _Color: {r: 0.73664695, g: 0.73664695, b: 0.73664695, a: 0.19} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Gray]1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Gray]1.mat.meta new file mode 100644 index 00000000..4b615c3b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Translucent Glass Gray]1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 297ab6702d4e76040b39cbb1249c1d30 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Wood Lumber ButtJoined].mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Wood Lumber ButtJoined].mat new file mode 100644 index 00000000..508498e2 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Wood Lumber ButtJoined].mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6091960949699602457 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: '[Wood Lumber ButtJoined]' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 87174b6aaf8ff734c955e3227aaa5baa, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 87174b6aaf8ff734c955e3227aaa5baa, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Wood Lumber ButtJoined].mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Wood Lumber ButtJoined].mat.meta new file mode 100644 index 00000000..08202762 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Wood Lumber ButtJoined].mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 354e725f02e0ef54c82a242493cd69e4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Wood Lumber ButtJoined]1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Wood Lumber ButtJoined]1.mat new file mode 100644 index 00000000..26230965 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Wood Lumber ButtJoined]1.mat @@ -0,0 +1,222 @@ +%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: '[Wood Lumber ButtJoined]1' + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: a68b5aa8ab7926849a4fe8af6369f579, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: a68b5aa8ab7926849a4fe8af6369f579, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2338498235779821561 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Wood Lumber ButtJoined]1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Wood Lumber ButtJoined]1.mat.meta new file mode 100644 index 00000000..e73a55d9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/[Wood Lumber ButtJoined]1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f0033e1ac0cda574184fc2af161f109f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_.mat new file mode 100644 index 00000000..fe51b031 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_.mat @@ -0,0 +1,225 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6218780665444533572 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _ + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHATEST_ON + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 2450 + stringTagMap: + RenderType: TransparentCutout + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: ff6ef5a3a411b1d41b34bbc758f60fef, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: ff6ef5a3a411b1d41b34bbc758f60fef, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 1 + - _AlphaToMask: 1 + - _BillboardEnable: 1 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BrightnessMultiplier: 1 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.726 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _UnlitMode: 1 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_.mat.meta new file mode 100644 index 00000000..f6eb65a0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8ce892926e7290742b4f5ce784de274e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_1.mat new file mode 100644 index 00000000..fac6dcdf --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_1.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5011030470086914369 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _1 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: c868ff3813bdbfb4ea1ae4d0b66c6b1e, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: c868ff3813bdbfb4ea1ae4d0b66c6b1e, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_1.mat.meta new file mode 100644 index 00000000..497cfc7d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 44fc4005760195e449a14dbd4eb5c28b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_101.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_101.mat new file mode 100644 index 00000000..97b945b9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_101.mat @@ -0,0 +1,226 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4284436264530042198 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _101 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 0.9332896, g: 0.93139815, b: 0.92569304, a: 0.99} + - _Color: {r: 0.9332896, g: 0.93139815, b: 0.92569304, a: 0.99} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_101.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_101.mat.meta new file mode 100644 index 00000000..8f02e08d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_101.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 46eb15da97a1665459142dfc0f501a4d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_105.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_105.mat new file mode 100644 index 00000000..c966aebf --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_105.mat @@ -0,0 +1,222 @@ +%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: _105 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 0dee4d92a7bb72947a670417f78dd4d7, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 0dee4d92a7bb72947a670417f78dd4d7, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5913328077473978524 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_105.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_105.mat.meta new file mode 100644 index 00000000..e9fbd9ad --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_105.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5f7ffaec99ac96d4e8554b07c647384e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_106.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_106.mat new file mode 100644 index 00000000..3607248d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_106.mat @@ -0,0 +1,222 @@ +%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: _106 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: f52b991f05eec9147a7c377839ca7ef1, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: f52b991f05eec9147a7c377839ca7ef1, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &117578821110204627 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_106.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_106.mat.meta new file mode 100644 index 00000000..aecb91a4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_106.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 263a741e5d87719488f855b1c489ce63 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_107.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_107.mat new file mode 100644 index 00000000..7ab5684d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_107.mat @@ -0,0 +1,222 @@ +%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: _107 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: b3c42acd6359a774bb3d7c39b3124ff7, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: b3c42acd6359a774bb3d7c39b3124ff7, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1513544992011611868 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_107.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_107.mat.meta new file mode 100644 index 00000000..fe40a85e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_107.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 557b37d41acac104096437d759e97dd4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_108.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_108.mat new file mode 100644 index 00000000..c3bca409 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_108.mat @@ -0,0 +1,222 @@ +%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: _108 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: b5a84d239e9658547a3247a41f9dbd71, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: b5a84d239e9658547a3247a41f9dbd71, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4626317760006994225 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_108.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_108.mat.meta new file mode 100644 index 00000000..fd9f3a07 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_108.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 27247cfc205769e4a8f72ec06cc1172d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_109.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_109.mat new file mode 100644 index 00000000..f3de3fa6 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_109.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3442833536786660630 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _109 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: f148290fc1e59074f8de1d3a9e9b019d, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: f148290fc1e59074f8de1d3a9e9b019d, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_109.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_109.mat.meta new file mode 100644 index 00000000..971adb23 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_109.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c964a23cf6ae2434a833d160cb2c6190 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_110.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_110.mat new file mode 100644 index 00000000..4fed551a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_110.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7108195890003423027 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _110 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: b372da515487569449c2ff027000e9e3, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: b372da515487569449c2ff027000e9e3, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_110.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_110.mat.meta new file mode 100644 index 00000000..12b22f72 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_110.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d3627bf0e5cd7e44785e24b3a0679313 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_113.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_113.mat new file mode 100644 index 00000000..f33923f7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_113.mat @@ -0,0 +1,222 @@ +%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: _113 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3479564268661521729 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_113.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_113.mat.meta new file mode 100644 index 00000000..30edc6c5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_113.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c452f0b3eb3ddd4478444310e8827296 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_114.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_114.mat new file mode 100644 index 00000000..5fe23e1e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_114.mat @@ -0,0 +1,222 @@ +%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: _114 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: e4727c66222cc794db155497b133f9f6, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: e4727c66222cc794db155497b133f9f6, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1462242677636874229 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_114.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_114.mat.meta new file mode 100644 index 00000000..72783d2a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_114.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 42359b366bfdbee40aca42629820804e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_115.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_115.mat new file mode 100644 index 00000000..ae59fa0a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_115.mat @@ -0,0 +1,222 @@ +%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: _115 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 94d20566d74d1dd47bb1f80ba231d3f8, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 94d20566d74d1dd47bb1f80ba231d3f8, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2897035245090547807 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_115.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_115.mat.meta new file mode 100644 index 00000000..60beaf8e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_115.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fb5cc48ca2b403c4f948f6c778cee1c0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_116.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_116.mat new file mode 100644 index 00000000..3ea7cd57 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_116.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6085757040539770919 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _116 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.63174355, g: 0.70483303, b: 0.7930753, a: 1} + - _Color: {r: 0.63174355, g: 0.70483303, b: 0.7930753, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_116.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_116.mat.meta new file mode 100644 index 00000000..ee975134 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_116.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 56313d9fe03dd604b907996a13fa65b7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_117.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_117.mat new file mode 100644 index 00000000..c042daf8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_117.mat @@ -0,0 +1,222 @@ +%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: _117 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 5e674f5fe018c4948bf47ce4e40af4ea, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 5e674f5fe018c4948bf47ce4e40af4ea, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &7113676421727500293 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_117.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_117.mat.meta new file mode 100644 index 00000000..55f7c2fd --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_117.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8fbec63d53a2ae846b796b74296992c8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_118.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_118.mat new file mode 100644 index 00000000..4c524864 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_118.mat @@ -0,0 +1,222 @@ +%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: _118 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: d40e3ee1b1628184cba1eecc19ab027e, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: d40e3ee1b1628184cba1eecc19ab027e, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3864759287587822464 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_118.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_118.mat.meta new file mode 100644 index 00000000..79c34eb8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_118.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: daa62ba6772a40244ae8146539eb50dc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_119.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_119.mat new file mode 100644 index 00000000..11193471 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_119.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2119062266448662366 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _119 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 75c4e7820331ce943989f676d8efdffa, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 75c4e7820331ce943989f676d8efdffa, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_119.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_119.mat.meta new file mode 100644 index 00000000..1a061249 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_119.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8be484ca1f750bd4bac3379beee917de +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_120.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_120.mat new file mode 100644 index 00000000..8873023e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_120.mat @@ -0,0 +1,222 @@ +%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: _120 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 7e13ebb981afa0747b5ea482f35cda08, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 7e13ebb981afa0747b5ea482f35cda08, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &7275016380193577149 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_120.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_120.mat.meta new file mode 100644 index 00000000..bd2ebc98 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_120.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e6a572b5410d39a43a20d595b94e5f93 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_121.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_121.mat new file mode 100644 index 00000000..8aa84b37 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_121.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8575043875540886867 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _121 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 2980b604bd6ea8345a1d52f4d34f3dac, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 2980b604bd6ea8345a1d52f4d34f3dac, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_121.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_121.mat.meta new file mode 100644 index 00000000..28931a08 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_121.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c5b128d797e6b3f46ae2d5d3f0ab6b4d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_122.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_122.mat new file mode 100644 index 00000000..32d15edf --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_122.mat @@ -0,0 +1,222 @@ +%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: _122 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: b18bda2755f89de4ab820de57baf1b58, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: b18bda2755f89de4ab820de57baf1b58, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1339435240565929558 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_122.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_122.mat.meta new file mode 100644 index 00000000..407eb14a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_122.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 652ba04f19cb98b4fbc1b73b37dd74b4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_123.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_123.mat new file mode 100644 index 00000000..5796da01 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_123.mat @@ -0,0 +1,222 @@ +%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: _123 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.9023934, g: 0.7883768, b: 0.49753284, a: 1} + - _Color: {r: 0.9023934, g: 0.7883768, b: 0.49753284, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6405078147104369608 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_123.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_123.mat.meta new file mode 100644 index 00000000..452a38c5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_123.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d282eca9aabf21642b7789e6fa6588d5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_126.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_126.mat new file mode 100644 index 00000000..ac28ad5f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_126.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4092269101361726791 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _126 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 514ec5807737b134d8c127f49aef5adb, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 514ec5807737b134d8c127f49aef5adb, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_126.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_126.mat.meta new file mode 100644 index 00000000..817bddd5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_126.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9882104bfa006c7469fd436ea147a8d0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_13.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_13.mat new file mode 100644 index 00000000..6d88b42e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_13.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6404858939331381940 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _13 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 33b69ca475030b44ea68a3931581e346, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 33b69ca475030b44ea68a3931581e346, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_13.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_13.mat.meta new file mode 100644 index 00000000..ef2ad505 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_13.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b0934c8869d74334fa2ac79aed199eb3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_135.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_135.mat new file mode 100644 index 00000000..996f108d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_135.mat @@ -0,0 +1,222 @@ +%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: _135 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 9125ba382957cc34bb07d342cd92f4b5, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 9125ba382957cc34bb07d342cd92f4b5, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2598089704734198957 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_135.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_135.mat.meta new file mode 100644 index 00000000..7777b6c8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_135.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9e566ad0c5c34d147aa0819327e27801 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_137.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_137.mat new file mode 100644 index 00000000..77e46d42 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_137.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7365673660978025696 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _137 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 89b7528a39de10f4ab1346640494cba0, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 89b7528a39de10f4ab1346640494cba0, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_137.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_137.mat.meta new file mode 100644 index 00000000..80a12f4a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_137.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 845e3dd78d4fbe442a9fe5ee946a2ddb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_138.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_138.mat new file mode 100644 index 00000000..aee481b4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_138.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8429178505245921234 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _138 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.62221795, g: 0.6157619, b: 0.60921764, a: 1} + - _Color: {r: 0.62221795, g: 0.6157619, b: 0.60921764, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_138.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_138.mat.meta new file mode 100644 index 00000000..a66c7b40 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_138.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 20e18ad23d021264cbf693a02e620034 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_139.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_139.mat new file mode 100644 index 00000000..bf98a778 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_139.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2778702762898136947 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _139 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 172d10c0faf611e46a0349c6797af044, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 172d10c0faf611e46a0349c6797af044, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_139.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_139.mat.meta new file mode 100644 index 00000000..f8e12902 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_139.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 583d7f2457fa5ba45a4c20e1ca4702ed +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_140.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_140.mat new file mode 100644 index 00000000..117a3648 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_140.mat @@ -0,0 +1,222 @@ +%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: _140 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 787ba7e9654110940b723639a1e210b4, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 787ba7e9654110940b723639a1e210b4, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8763291001563074739 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_140.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_140.mat.meta new file mode 100644 index 00000000..ab70c418 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_140.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cb1283d8c87374445a61328910f17ffa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_141.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_141.mat new file mode 100644 index 00000000..971f5a17 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_141.mat @@ -0,0 +1,222 @@ +%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: _141 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3638557208479091073 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_141.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_141.mat.meta new file mode 100644 index 00000000..7ee7bb8c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_141.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0cb8c309fd8943a41864709d8c60f66a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_148.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_148.mat new file mode 100644 index 00000000..47e59586 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_148.mat @@ -0,0 +1,222 @@ +%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: _148 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 7d15fffa25fa98f42834a0e6ef581d5d, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 7d15fffa25fa98f42834a0e6ef581d5d, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5247035433290140879 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_148.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_148.mat.meta new file mode 100644 index 00000000..34cd9ca9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_148.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 656ca359de8aea348960cbdeeeeb6877 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_149.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_149.mat new file mode 100644 index 00000000..13642f7e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_149.mat @@ -0,0 +1,222 @@ +%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: _149 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.7183117, g: 0.73664695, b: 0.73664695, a: 1} + - _Color: {r: 0.7183117, g: 0.73664695, b: 0.73664695, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5929347713516617027 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_149.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_149.mat.meta new file mode 100644 index 00000000..6abdf69a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_149.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4974b3db3ed8e65479c6939331d8e65c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_150.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_150.mat new file mode 100644 index 00000000..469ff960 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_150.mat @@ -0,0 +1,222 @@ +%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: _150 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: de434b35a0a472d42872ba147c089e3b, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: de434b35a0a472d42872ba147c089e3b, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3234821976049229324 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_150.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_150.mat.meta new file mode 100644 index 00000000..0bc6aed1 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_150.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fe2d7c03624864e40b7dc55fb9fd66ca +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_152.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_152.mat new file mode 100644 index 00000000..93336db7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_152.mat @@ -0,0 +1,222 @@ +%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: _152 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.89444804, g: 0.89444804, b: 0.89444804, a: 1} + - _Color: {r: 0.89444804, g: 0.89444804, b: 0.89444804, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &7666673585139054688 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_152.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_152.mat.meta new file mode 100644 index 00000000..ef700c50 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_152.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cad393d61bc4951409dc6d408d9aa805 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_154.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_154.mat new file mode 100644 index 00000000..b7fb1d6d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_154.mat @@ -0,0 +1,222 @@ +%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: _154 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.86378795, g: 0.8553662, b: 0.8227664, a: 1} + - _Color: {r: 0.86378795, g: 0.8553662, b: 0.8227664, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1508706434887296313 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_154.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_154.mat.meta new file mode 100644 index 00000000..f943e841 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_154.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 417794614c591624abd3bc7a13801c35 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_157.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_157.mat new file mode 100644 index 00000000..2b7483db --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_157.mat @@ -0,0 +1,226 @@ +%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: _157 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 79747f08b85ee884f9eaf8b56241bec9, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 79747f08b85ee884f9eaf8b56241bec9, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8332873090857130516 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_157.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_157.mat.meta new file mode 100644 index 00000000..26bbd7cc --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_157.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dd80b52d912927a4f97e6fd539d93b25 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_158.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_158.mat new file mode 100644 index 00000000..bcb41784 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_158.mat @@ -0,0 +1,222 @@ +%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: _158 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 64003d53e978ebb4190728be97502aab, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 64003d53e978ebb4190728be97502aab, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &7793542339120978648 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_158.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_158.mat.meta new file mode 100644 index 00000000..d011d549 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_158.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dc0094e33d0a2414ab945e66b58843ab +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_159.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_159.mat new file mode 100644 index 00000000..38c12d76 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_159.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3179727028633774769 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _159 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 172d10c0faf611e46a0349c6797af044, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 172d10c0faf611e46a0349c6797af044, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_159.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_159.mat.meta new file mode 100644 index 00000000..bfe4edaf --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_159.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3730cd5d259d1084eb7c27b16329e301 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_161.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_161.mat new file mode 100644 index 00000000..9c96a1d4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_161.mat @@ -0,0 +1,226 @@ +%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: _161 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 9622857d0f79fed4b893f0b9397c2fcb, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 9622857d0f79fed4b893f0b9397c2fcb, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5513560816217129938 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_161.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_161.mat.meta new file mode 100644 index 00000000..fb4e2516 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_161.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9d8706a0b42508840a236609a693e68b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_162.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_162.mat new file mode 100644 index 00000000..347f68e7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_162.mat @@ -0,0 +1,222 @@ +%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: _162 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 795ecbd772390a54591badfbae5ced93, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 795ecbd772390a54591badfbae5ced93, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5368436236270586390 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_162.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_162.mat.meta new file mode 100644 index 00000000..3350bdef --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_162.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 66ccaeb4acd95334e8c4672e7284f000 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_164.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_164.mat new file mode 100644 index 00000000..c9d55e0e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_164.mat @@ -0,0 +1,222 @@ +%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: _164 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: bc1464af83ed1414f8158104872b53c9, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: bc1464af83ed1414f8158104872b53c9, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &866540500879339772 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_164.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_164.mat.meta new file mode 100644 index 00000000..97419d5b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_164.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ddd01ba2a49d1e34890b591d59597fbb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_165.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_165.mat new file mode 100644 index 00000000..41ddd21f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_165.mat @@ -0,0 +1,222 @@ +%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: _165 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 8676f3fa67106b948af1d436d3ca8115, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 8676f3fa67106b948af1d436d3ca8115, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2882632238736394874 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_165.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_165.mat.meta new file mode 100644 index 00000000..df649400 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_165.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4d34c6dbc0097394fa0e5e7027230439 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_166.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_166.mat new file mode 100644 index 00000000..44df844e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_166.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6532587609793614191 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _166 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.55694795, g: 0.56062776, b: 0.58208835, a: 1} + - _Color: {r: 0.5569479, g: 0.56062776, b: 0.58208835, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_166.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_166.mat.meta new file mode 100644 index 00000000..263e7167 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_166.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 546170482eed6944a963cd419bc310b1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_167.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_167.mat new file mode 100644 index 00000000..d2898711 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_167.mat @@ -0,0 +1,222 @@ +%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: _167 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.91024756, g: 0.7236121, b: 0.56427705, a: 1} + - _Color: {r: 0.91024756, g: 0.7236121, b: 0.564277, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1493906461531104408 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_167.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_167.mat.meta new file mode 100644 index 00000000..c445917f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_167.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 560d192bdeb1dbf4289818adcbdfe402 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_17.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_17.mat new file mode 100644 index 00000000..e24e67df --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_17.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4545862774201635307 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _17 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: e1b85657d6908d6419e74d26954eac82, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: e1b85657d6908d6419e74d26954eac82, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_17.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_17.mat.meta new file mode 100644 index 00000000..98371820 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_17.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 90c23868dd63d3a4e9ecd2b9587d558d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_172.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_172.mat new file mode 100644 index 00000000..b56d687b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_172.mat @@ -0,0 +1,222 @@ +%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: _172 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 3791e2cf2e6a1d7468ce57cb432638b2, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3791e2cf2e6a1d7468ce57cb432638b2, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8786310740898557409 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_172.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_172.mat.meta new file mode 100644 index 00000000..2cc1a906 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_172.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7578707d7c2e73f4a8144c06b4c09fe3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_173.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_173.mat new file mode 100644 index 00000000..e8e6b17e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_173.mat @@ -0,0 +1,222 @@ +%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: _173 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: c4a380cc309f6784aa0359aa7c997c70, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: c4a380cc309f6784aa0359aa7c997c70, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3324888923858701959 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_173.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_173.mat.meta new file mode 100644 index 00000000..0562d32b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_173.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6a45c629335e0994fbbb5551c664a8e1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_174.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_174.mat new file mode 100644 index 00000000..11e80c46 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_174.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8333554263049761054 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _174 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: dc99bd8aac8e12d438fb24aaae2273a5, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: dc99bd8aac8e12d438fb24aaae2273a5, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_174.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_174.mat.meta new file mode 100644 index 00000000..5ec5b8e0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_174.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bb7652c52290f6b42ad2b65f1e831b46 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_181.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_181.mat new file mode 100644 index 00000000..24767114 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_181.mat @@ -0,0 +1,222 @@ +%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: _181 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.47107118, g: 0.47561032, b: 0.5142316, a: 1} + - _Color: {r: 0.47107112, g: 0.47561026, b: 0.5142316, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4308845847851264024 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_181.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_181.mat.meta new file mode 100644 index 00000000..31e4a0ee --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_181.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1d794c0d328fbc1428a73f31b8e8d781 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_182.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_182.mat new file mode 100644 index 00000000..3b4fa03e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_182.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-104657043720086252 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _182 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: bdb71d47483b5804783b4706a25faed1, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: bdb71d47483b5804783b4706a25faed1, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_182.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_182.mat.meta new file mode 100644 index 00000000..2854b9f5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_182.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d74c3f29a8d1f2b4791ed377c2c1b8be +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_183.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_183.mat new file mode 100644 index 00000000..13a433e4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_183.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7838515126106794000 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _183 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: f80925aec6242a046b2ea89e091d2f2e, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: f80925aec6242a046b2ea89e091d2f2e, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_183.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_183.mat.meta new file mode 100644 index 00000000..86732a9c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_183.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ffc2bf1291910954e8ed949ee3a66d5e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_184.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_184.mat new file mode 100644 index 00000000..6818452b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_184.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1536717825201330647 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _184 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: f57eb1fedcb8e29469ee952431d3933e, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: f57eb1fedcb8e29469ee952431d3933e, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_184.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_184.mat.meta new file mode 100644 index 00000000..345719bd --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_184.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 78562118d4464d742bcbf5ba3a738138 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_189.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_189.mat new file mode 100644 index 00000000..3d794098 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_189.mat @@ -0,0 +1,222 @@ +%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: _189 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.8984323, g: 0.9218637, b: 0.8984323, a: 1} + - _Color: {r: 0.8984323, g: 0.9218637, b: 0.8984323, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6555572494860103564 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_189.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_189.mat.meta new file mode 100644 index 00000000..4d783f41 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_189.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1ed06350dc6d94a4c95acaecb62c8b1a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_19.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_19.mat new file mode 100644 index 00000000..e1d31b14 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_19.mat @@ -0,0 +1,222 @@ +%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: _19 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 4179bb9606206154a964dbab861c7079, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 4179bb9606206154a964dbab861c7079, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6325445560733070616 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_19.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_19.mat.meta new file mode 100644 index 00000000..02d4e7f0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_19.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9d0b773e2ba21704daa10cefab4999c7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_190.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_190.mat new file mode 100644 index 00000000..1375c059 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_190.mat @@ -0,0 +1,222 @@ +%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: _190 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 554cd73fe010f274594fd014ed6bc35a, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 554cd73fe010f274594fd014ed6bc35a, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &7189989089223907683 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_190.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_190.mat.meta new file mode 100644 index 00000000..cad7c4d9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_190.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6948ec1d066f4fa4788e50356f8ea8ff +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_191.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_191.mat new file mode 100644 index 00000000..1be60f3a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_191.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2089686655231146150 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _191 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.8782715, g: 0.8884273, b: 0.87003416, a: 1} + - _Color: {r: 0.8782715, g: 0.8884273, b: 0.87003416, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_191.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_191.mat.meta new file mode 100644 index 00000000..c5bcecd3 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_191.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 33fdd711184e9e547be8c7c4ba66d3c9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_192.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_192.mat new file mode 100644 index 00000000..ee1f2361 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_192.mat @@ -0,0 +1,226 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-423182804280970031 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _192 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 4646f3c50c610c64aba863ac31325a0b, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 4646f3c50c610c64aba863ac31325a0b, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_192.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_192.mat.meta new file mode 100644 index 00000000..5a0a3ac6 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_192.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 470739275d9a9e04a9fa654b66bc69e6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_193.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_193.mat new file mode 100644 index 00000000..a1e3143c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_193.mat @@ -0,0 +1,226 @@ +%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: _193 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 0.69934684, g: 0.76920515, b: 0.86795866, a: 0.17} + - _Color: {r: 0.69934684, g: 0.76920515, b: 0.86795866, a: 0.17} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2827009326147661000 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_193.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_193.mat.meta new file mode 100644 index 00000000..7c0a7251 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_193.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 75039a6a80f82564184a9b45b536bfe8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_195.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_195.mat new file mode 100644 index 00000000..7b3483d1 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_195.mat @@ -0,0 +1,222 @@ +%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: _195 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: fef6eab3ba5262d489d354cf33072b8d, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: fef6eab3ba5262d489d354cf33072b8d, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6679843750528929588 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_195.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_195.mat.meta new file mode 100644 index 00000000..745c5843 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_195.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 49b7c886fabac7e468c3b26cd84646ad +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_197.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_197.mat new file mode 100644 index 00000000..c6b509af --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_197.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1527202628755624093 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _197 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 35e4168791728a3439b5fb7235a2bdd5, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 35e4168791728a3439b5fb7235a2bdd5, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_197.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_197.mat.meta new file mode 100644 index 00000000..c1fbc9f1 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_197.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fcd0bb7cac2007244b3a7da986907250 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_198.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_198.mat new file mode 100644 index 00000000..a0718501 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_198.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1034642812524134226 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _198 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: a3b8d3d6c18ad8c4d9e2b73895d860f3, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: a3b8d3d6c18ad8c4d9e2b73895d860f3, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_198.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_198.mat.meta new file mode 100644 index 00000000..c2aba3ae --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_198.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ee39cb1d016246d48b6dd92bdd194377 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_199.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_199.mat new file mode 100644 index 00000000..b2d75962 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_199.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4097254632958906088 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _199 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: cde63a9a8c808044489144f81c5da635, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: cde63a9a8c808044489144f81c5da635, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_199.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_199.mat.meta new file mode 100644 index 00000000..6a7869e3 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_199.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e8f53059756416945b718edc64b4c599 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_200.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_200.mat new file mode 100644 index 00000000..fc75de05 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_200.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-9087830254959987518 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _200 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: a73867c7c5f9575418dc69f535bf4932, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: a73867c7c5f9575418dc69f535bf4932, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_200.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_200.mat.meta new file mode 100644 index 00000000..3b1d0c01 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_200.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1770e6539c938a043943c6cc8812cb87 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_201.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_201.mat new file mode 100644 index 00000000..d4a754ea --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_201.mat @@ -0,0 +1,222 @@ +%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: _201 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: b9e83091291e1da49ab76aed68c40d41, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: b9e83091291e1da49ab76aed68c40d41, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &9156603693020135581 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_201.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_201.mat.meta new file mode 100644 index 00000000..b601b4e9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_201.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9f414c3d6ced84047a19f06cca104909 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_202.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_202.mat new file mode 100644 index 00000000..592eb3fc --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_202.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-517890941380473942 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _202 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: effa3fb888d985441b84f6cb1ffce77c, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: effa3fb888d985441b84f6cb1ffce77c, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_202.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_202.mat.meta new file mode 100644 index 00000000..7a5a5742 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_202.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 55599e9e0e335ea4f93c7b09fb8f83ca +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_203.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_203.mat new file mode 100644 index 00000000..7420eb80 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_203.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3886644321346086687 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _203 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 09de09c7b3d572e48983a8122e6bfee5, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 09de09c7b3d572e48983a8122e6bfee5, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_203.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_203.mat.meta new file mode 100644 index 00000000..880b5b36 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_203.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0e58b9a505b492640bec8c8f1a0535d6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_204.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_204.mat new file mode 100644 index 00000000..da89042a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_204.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5627550433620545780 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _204 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: cdba1e0461ed7fe4dbad00d806b86e99, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: cdba1e0461ed7fe4dbad00d806b86e99, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_204.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_204.mat.meta new file mode 100644 index 00000000..1e050fa6 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_204.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 55ba96ed522278e46a094957a0a8340f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_205.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_205.mat new file mode 100644 index 00000000..9152c276 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_205.mat @@ -0,0 +1,222 @@ +%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: _205 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 3899efab197b037499f0510e57f54da4, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3899efab197b037499f0510e57f54da4, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3985571511035872081 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_205.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_205.mat.meta new file mode 100644 index 00000000..24ec9e22 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_205.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6049652b19be73e48b9a410cc4df3add +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_206.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_206.mat new file mode 100644 index 00000000..45e4b51f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_206.mat @@ -0,0 +1,222 @@ +%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: _206 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: c4fa8fa281013b14bbd4f23cefabe242, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: c4fa8fa281013b14bbd4f23cefabe242, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2196685471241698422 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_206.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_206.mat.meta new file mode 100644 index 00000000..b1003641 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_206.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6a6f0a53e9ec8004182ff419aac20259 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_209.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_209.mat new file mode 100644 index 00000000..e8825636 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_209.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3653933879864309998 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _209 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: e32b3c024bf20a7428ac88548a78cbd6, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: e32b3c024bf20a7428ac88548a78cbd6, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_209.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_209.mat.meta new file mode 100644 index 00000000..6de205d9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_209.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ee4218a0c1ca037408edac8620ee6432 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_21.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_21.mat new file mode 100644 index 00000000..c18d5ccb --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_21.mat @@ -0,0 +1,222 @@ +%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: _21 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.8762218, g: 0.8762218, b: 0.8616927, a: 1} + - _Color: {r: 0.8762218, g: 0.8762218, b: 0.8616927, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6488487925994465623 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_21.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_21.mat.meta new file mode 100644 index 00000000..d86d7472 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_21.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5bb169c6542d9ce4888988950eb55947 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_210.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_210.mat new file mode 100644 index 00000000..8861aeb4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_210.mat @@ -0,0 +1,224 @@ +%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: _210 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 1a222a55684a5c74fa615440eca8e0ba, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1a222a55684a5c74fa615440eca8e0ba, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BrightnessMultiplier: 1 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _UnlitMode: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5539078675721381296 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_210.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_210.mat.meta new file mode 100644 index 00000000..e272fa4c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_210.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c35bde7e9ddc678458cc12f2e8e5af7e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_214.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_214.mat new file mode 100644 index 00000000..939d0df1 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_214.mat @@ -0,0 +1,222 @@ +%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: _214 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: f0b9085eb7dab894c8ccbf96f18210e5, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: f0b9085eb7dab894c8ccbf96f18210e5, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1435869832780233302 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_214.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_214.mat.meta new file mode 100644 index 00000000..5daf352e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_214.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a985132fcc4bebe4eac1b3e149545031 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_215.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_215.mat new file mode 100644 index 00000000..3839da32 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_215.mat @@ -0,0 +1,222 @@ +%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: _215 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 0655ed354067c0a468d6566cc0ba263a, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 0655ed354067c0a468d6566cc0ba263a, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3597979589349311263 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_215.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_215.mat.meta new file mode 100644 index 00000000..bde30b97 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_215.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 154b18f6c2cb3bd40bff91c427ab8db2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_216.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_216.mat new file mode 100644 index 00000000..df6745c4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_216.mat @@ -0,0 +1,226 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2654970041264244995 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _216 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 558cc5ed845b0a34a8e0a6a24391514a, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 558cc5ed845b0a34a8e0a6a24391514a, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_216.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_216.mat.meta new file mode 100644 index 00000000..cee1d7ac --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_216.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ace03f82586406348a5a6a37a835d453 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_217.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_217.mat new file mode 100644 index 00000000..b5d151e6 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_217.mat @@ -0,0 +1,226 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8049100132837405777 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _217 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 79d773b34ba53974b94b42e5596ed742, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 79d773b34ba53974b94b42e5596ed742, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_217.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_217.mat.meta new file mode 100644 index 00000000..43cff542 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_217.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1a1e9549bbec8384e8cdbbf0cb5030fe +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_218.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_218.mat new file mode 100644 index 00000000..43c12652 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_218.mat @@ -0,0 +1,222 @@ +%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: _218 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 85f034aa5f2241740ad5c45f1570aaad, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 85f034aa5f2241740ad5c45f1570aaad, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &317264889520195912 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_218.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_218.mat.meta new file mode 100644 index 00000000..f2b8c68f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_218.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 77f589ec73205454cacf71b5348c5757 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_219.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_219.mat new file mode 100644 index 00000000..5e34b23f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_219.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3656985434593450783 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _219 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.62858903, g: 0.6059114, b: 0.5855679, a: 1} + - _Color: {r: 0.62858903, g: 0.6059114, b: 0.5855679, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_219.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_219.mat.meta new file mode 100644 index 00000000..d93acae0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_219.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b6fcc9f5570880146913830219c07b21 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_22.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_22.mat new file mode 100644 index 00000000..527f354e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_22.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3527296463450358834 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _22 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 488f627fc1207414abf3beffa01a6c99, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 488f627fc1207414abf3beffa01a6c99, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_22.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_22.mat.meta new file mode 100644 index 00000000..ed169844 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_22.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3f5335ae9efd70f4aa36d06fa11520e1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_221.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_221.mat new file mode 100644 index 00000000..9fbc4f65 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_221.mat @@ -0,0 +1,222 @@ +%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: _221 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: b7d50f2e31862ab40bd74708f5c1e645, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: b7d50f2e31862ab40bd74708f5c1e645, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4050785468186049370 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_221.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_221.mat.meta new file mode 100644 index 00000000..27d55ccb --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_221.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0c3325e1b76ecfb4f9bf8149adf2fb4e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_222.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_222.mat new file mode 100644 index 00000000..56433292 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_222.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1214293147934544144 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _222 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 67ee3c7da8cbe9042938279220e7f2f8, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 67ee3c7da8cbe9042938279220e7f2f8, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_222.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_222.mat.meta new file mode 100644 index 00000000..2baa91ea --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_222.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9baed78966d4c0c4188f9ad8e3f71b9e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_223.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_223.mat new file mode 100644 index 00000000..47375d84 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_223.mat @@ -0,0 +1,222 @@ +%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: _223 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 1b9149e59711d5c4ba9f197bdc61c44c, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1b9149e59711d5c4ba9f197bdc61c44c, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8723421928046259411 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_223.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_223.mat.meta new file mode 100644 index 00000000..57f41099 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_223.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 23c5841318c7ae547b18aadea69c7bb7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_224.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_224.mat new file mode 100644 index 00000000..333ac978 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_224.mat @@ -0,0 +1,222 @@ +%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: _224 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 70dceec448aadc84394032407b4e1f0e, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 70dceec448aadc84394032407b4e1f0e, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5274078611025496947 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_224.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_224.mat.meta new file mode 100644 index 00000000..5584385c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_224.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f20dbdb05eed5ad4e83eccc2b9194062 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_225.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_225.mat new file mode 100644 index 00000000..44603045 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_225.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-365320598449489103 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _225 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 964f62427e2c44149a70c81d2128366f, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 964f62427e2c44149a70c81d2128366f, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_225.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_225.mat.meta new file mode 100644 index 00000000..d591ee26 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_225.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a9d74646c7bd08d41a84152dc55cd26a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_226.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_226.mat new file mode 100644 index 00000000..317ad283 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_226.mat @@ -0,0 +1,226 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4076796164763897415 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _226 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 0.8272109, g: 0.9063317, b: 0.89244705, a: 0.34} + - _Color: {r: 0.8272109, g: 0.9063317, b: 0.89244705, a: 0.34} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_226.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_226.mat.meta new file mode 100644 index 00000000..e5141e63 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_226.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3b5bc99b926dca541be6bcb530b829e3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_23.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_23.mat new file mode 100644 index 00000000..f620f4ea --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_23.mat @@ -0,0 +1,225 @@ +%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: _23 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHATEST_ON + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 2450 + stringTagMap: + RenderType: TransparentCutout + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: c57b5dc9f8613b64d8c7ef3930cf6e9a, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: c57b5dc9f8613b64d8c7ef3930cf6e9a, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 1 + - _AlphaToMask: 1 + - _BillboardEnable: 1 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BrightnessMultiplier: 1 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.756 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _UnlitMode: 1 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5043023798443098576 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_23.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_23.mat.meta new file mode 100644 index 00000000..e95b40d7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_23.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0e1229668914d74488cd65ae26389cf7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_234.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_234.mat new file mode 100644 index 00000000..ddfa9d98 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_234.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-629292549704028116 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _234 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: d18cd61fbacd5a445a6559aff25e0bc1, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: d18cd61fbacd5a445a6559aff25e0bc1, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_234.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_234.mat.meta new file mode 100644 index 00000000..33180cc5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_234.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2776def879eca9c40a47a0946a604de1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_235.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_235.mat new file mode 100644 index 00000000..4d38e95d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_235.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5489019554331868991 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _235 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 2c58170ad3aafda4588218e55615d6b6, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 2c58170ad3aafda4588218e55615d6b6, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_235.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_235.mat.meta new file mode 100644 index 00000000..eb10facc --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_235.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fd6e4efb3116bcc47ac7ee703211bbea +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_24.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_24.mat new file mode 100644 index 00000000..351fb316 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_24.mat @@ -0,0 +1,222 @@ +%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: _24 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 81df47f78f71c7c418d30541369249eb, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 81df47f78f71c7c418d30541369249eb, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &7813114539373576452 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_24.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_24.mat.meta new file mode 100644 index 00000000..98d041d3 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_24.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e7ad13126b16b474d9181045de3f1b3c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_240.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_240.mat new file mode 100644 index 00000000..ac324815 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_240.mat @@ -0,0 +1,222 @@ +%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: _240 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 58f7afb83a7363e4499beb7662553523, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 58f7afb83a7363e4499beb7662553523, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5171518521237589842 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_240.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_240.mat.meta new file mode 100644 index 00000000..7095804b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_240.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e1db389276a230041ab3e960ba82b4c7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_242.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_242.mat new file mode 100644 index 00000000..b40e5874 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_242.mat @@ -0,0 +1,222 @@ +%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: _242 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 450405106bf14534094376c800d57c30, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 450405106bf14534094376c800d57c30, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &394129726264024350 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_242.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_242.mat.meta new file mode 100644 index 00000000..3b3c0117 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_242.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a18757f10ba8c704fad020b77c5eb0f3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_244.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_244.mat new file mode 100644 index 00000000..f562bc3f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_244.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5294163193868098072 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _244 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: a1871560990622a4588bddc198fc1d8c, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: a1871560990622a4588bddc198fc1d8c, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_244.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_244.mat.meta new file mode 100644 index 00000000..5f7077fd --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_244.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6c6fe7ffb58efea4282b2dee0ff76d35 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_245.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_245.mat new file mode 100644 index 00000000..ae0671c3 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_245.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2248918030822724994 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _245 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 2d0df06e68daf5248825d05645a131aa, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 2d0df06e68daf5248825d05645a131aa, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_245.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_245.mat.meta new file mode 100644 index 00000000..84f3c3a7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_245.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dbcc14d2ef19c204a8c5dc33725dc148 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_246.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_246.mat new file mode 100644 index 00000000..87f3f278 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_246.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-650059390391822649 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _246 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 8011233cfff5c6e419de0b70f5aa0071, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 8011233cfff5c6e419de0b70f5aa0071, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_246.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_246.mat.meta new file mode 100644 index 00000000..ed37e3b8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_246.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 381f479d896d8b1438389b50b310f047 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_247.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_247.mat new file mode 100644 index 00000000..15c14560 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_247.mat @@ -0,0 +1,222 @@ +%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: _247 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 5cec7b34cd84b4340aee20a327f397e2, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 5cec7b34cd84b4340aee20a327f397e2, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1877304974767185634 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_247.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_247.mat.meta new file mode 100644 index 00000000..12db1122 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_247.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9d299a313f14ebc46af3da1c57a1967c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_249.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_249.mat new file mode 100644 index 00000000..7138ceee --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_249.mat @@ -0,0 +1,222 @@ +%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: _249 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.91024756, g: 0.8658766, b: 0.65628237, a: 1} + - _Color: {r: 0.91024756, g: 0.8658766, b: 0.6562823, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4705784008008203365 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_249.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_249.mat.meta new file mode 100644 index 00000000..571bdf96 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_249.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c230f18f98c90204f9846f22488c235e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_250.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_250.mat new file mode 100644 index 00000000..6998cf05 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_250.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6468020699732308238 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _250 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.83818704, g: 0.8782715, b: 0.8984323, a: 1} + - _Color: {r: 0.83818704, g: 0.8782715, b: 0.8984323, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_250.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_250.mat.meta new file mode 100644 index 00000000..985cc268 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_250.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c4cdfd7e3c3121f4385fd77963bfa787 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_251.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_251.mat new file mode 100644 index 00000000..a45d66fa --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_251.mat @@ -0,0 +1,222 @@ +%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: _251 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.804665, g: 0.8782715, b: 0.79773766, a: 1} + - _Color: {r: 0.804665, g: 0.8782715, b: 0.79773766, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1126176004850803783 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_251.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_251.mat.meta new file mode 100644 index 00000000..8efc68b3 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_251.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: edac82d9c5fb1b748b7ca9fa0dff187a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_252.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_252.mat new file mode 100644 index 00000000..a37b771e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_252.mat @@ -0,0 +1,222 @@ +%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: _252 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.66518503, g: 0.66518503, b: 0.66518503, a: 1} + - _Color: {r: 0.66518503, g: 0.66518503, b: 0.66518503, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3733525713016382744 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_252.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_252.mat.meta new file mode 100644 index 00000000..c3a4e667 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_252.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2b00f55f836d19a4582fa44c888f1ecc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_253.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_253.mat new file mode 100644 index 00000000..7668b15c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_253.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4602905824185552687 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _253 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.88438344, g: 0.88438344, b: 0.88438344, a: 1} + - _Color: {r: 0.88438344, g: 0.88438344, b: 0.88438344, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_253.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_253.mat.meta new file mode 100644 index 00000000..33c01b8e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_253.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 40bffa739db1efb4aade1cf35f69c485 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_255.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_255.mat new file mode 100644 index 00000000..25f998ee --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_255.mat @@ -0,0 +1,222 @@ +%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: _255 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 8cba01dc5e5174f4eb1654000486bd08, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 8cba01dc5e5174f4eb1654000486bd08, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4896068567255320145 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_255.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_255.mat.meta new file mode 100644 index 00000000..20a4a7b5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_255.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6edada84a0b8ed147b07a461975f3088 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_256.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_256.mat new file mode 100644 index 00000000..bec11813 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_256.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6637907534816918222 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _256 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: af31e3faab34b5c4db65ba7f9b8a5e43, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: af31e3faab34b5c4db65ba7f9b8a5e43, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_256.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_256.mat.meta new file mode 100644 index 00000000..f02f6c11 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_256.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f38136e0a90990d479ac23ea0540040e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_257.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_257.mat new file mode 100644 index 00000000..d9337592 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_257.mat @@ -0,0 +1,222 @@ +%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: _257 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 30b5840a1484c50409aa8aed77a3116a, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 30b5840a1484c50409aa8aed77a3116a, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8524078984816661130 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_257.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_257.mat.meta new file mode 100644 index 00000000..282feed1 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_257.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d195598352b506e4aa284f2749a61bc1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_258.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_258.mat new file mode 100644 index 00000000..7b4e1401 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_258.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6629411359373002717 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _258 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.9718961, g: 0.97368413, b: 0.9807934, a: 1} + - _Color: {r: 0.9718961, g: 0.97368413, b: 0.9807934, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_258.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_258.mat.meta new file mode 100644 index 00000000..c546adc8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_258.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2dc797406fadaa44aa6b20fc331de357 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_259.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_259.mat new file mode 100644 index 00000000..6feb24ad --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_259.mat @@ -0,0 +1,222 @@ +%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: _259 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.81829023, g: 0.81829023, b: 0.8316242, a: 1} + - _Color: {r: 0.81829023, g: 0.81829023, b: 0.8316242, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3888591977502599920 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_259.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_259.mat.meta new file mode 100644 index 00000000..5d3911f9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_259.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6d597a10e6b465c4e9cbc7f74409d6b9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_26.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_26.mat new file mode 100644 index 00000000..50cd7e03 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_26.mat @@ -0,0 +1,222 @@ +%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: _26 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 60c120d4b51014649bb77bcf27485a4b, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 60c120d4b51014649bb77bcf27485a4b, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2321187642993097713 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_26.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_26.mat.meta new file mode 100644 index 00000000..3b71a90b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_26.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9d90ec90ee9209145a1bdcad9c205afd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_260.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_260.mat new file mode 100644 index 00000000..06aaa61b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_260.mat @@ -0,0 +1,222 @@ +%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: _260 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.63174355, g: 0.63174355, b: 0.63174355, a: 1} + - _Color: {r: 0.63174355, g: 0.63174355, b: 0.63174355, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5058639573295552941 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_260.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_260.mat.meta new file mode 100644 index 00000000..80830e24 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_260.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 66f3e27f00c4f4842b31e3e23ccd7cc6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_261.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_261.mat new file mode 100644 index 00000000..805ae0f3 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_261.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2548966396850761793 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _261 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.7667645, g: 0.7667645, b: 0.7667645, a: 1} + - _Color: {r: 0.7667645, g: 0.7667645, b: 0.7667645, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_261.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_261.mat.meta new file mode 100644 index 00000000..276b453d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_261.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 93e4bfab77624304eb257a83ce78c05a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_262.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_262.mat new file mode 100644 index 00000000..8c9f7a82 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_262.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5702753208111827174 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _262 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.6768209, g: 0.6768209, b: 0.6938041, a: 1} + - _Color: {r: 0.6768209, g: 0.6768209, b: 0.6938041, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_262.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_262.mat.meta new file mode 100644 index 00000000..1b05d84b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_262.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3cc92a6db1cc3fb499181374ea2c9723 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_263.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_263.mat new file mode 100644 index 00000000..e5826aa0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_263.mat @@ -0,0 +1,222 @@ +%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: _263 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 02ef2878843c6da46942e036343eec5f, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 02ef2878843c6da46942e036343eec5f, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6839112953943980653 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_263.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_263.mat.meta new file mode 100644 index 00000000..591dc23a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_263.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 99cce5b60d7d0dc49bdd0210e4bf3f81 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_265.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_265.mat new file mode 100644 index 00000000..6fc25957 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_265.mat @@ -0,0 +1,222 @@ +%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: _265 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.75440603, g: 0.75440603, b: 0.75440603, a: 1} + - _Color: {r: 0.75440603, g: 0.75440603, b: 0.75440603, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6155096042585760897 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_265.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_265.mat.meta new file mode 100644 index 00000000..83e82d7f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_265.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 60c90e11dcd589a4596ea24858a695f6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_267.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_267.mat new file mode 100644 index 00000000..48184465 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_267.mat @@ -0,0 +1,222 @@ +%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: _267 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 45ac4018aa8fde241b2d53aea3ff2350, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 45ac4018aa8fde241b2d53aea3ff2350, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6904591122365385512 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_267.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_267.mat.meta new file mode 100644 index 00000000..01bd63b8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_267.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 07d69bf0bfdea524bae8465872761aa8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_268.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_268.mat new file mode 100644 index 00000000..18aeeef9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_268.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8990371718499437029 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _268 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.9141413, g: 0.9180132, b: 0.9180132, a: 1} + - _Color: {r: 0.9141413, g: 0.9180132, b: 0.9180132, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_268.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_268.mat.meta new file mode 100644 index 00000000..cb895533 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_268.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 93698d77a5ff18c45b2193633b8dd5ea +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_269.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_269.mat new file mode 100644 index 00000000..85d7c28e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_269.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2845430163240178730 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _269 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.7236121, g: 0.67393625, b: 0.67393625, a: 1} + - _Color: {r: 0.7236121, g: 0.67393625, b: 0.67393625, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_269.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_269.mat.meta new file mode 100644 index 00000000..73c2f6ff --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_269.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f494d60126385f5419d1e98d8b05821d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_270.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_270.mat new file mode 100644 index 00000000..31382f60 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_270.mat @@ -0,0 +1,222 @@ +%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: _270 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.5532369, g: 0.5532369, b: 0.5532369, a: 1} + - _Color: {r: 0.5532369, g: 0.5532369, b: 0.5532369, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8215634750476593789 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_270.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_270.mat.meta new file mode 100644 index 00000000..45769234 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_270.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 48212fe665346ed419e6b65c6c930d38 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_271.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_271.mat new file mode 100644 index 00000000..6cc5e68d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_271.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3331930542749652352 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _271 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 08eee0f861e24f04db9b9ac6e0f7ef9e, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 08eee0f861e24f04db9b9ac6e0f7ef9e, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_271.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_271.mat.meta new file mode 100644 index 00000000..0fb10e14 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_271.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: db808f4c5e9fecc4d8f60fd1fca9adca +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_272.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_272.mat new file mode 100644 index 00000000..0534fe08 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_272.mat @@ -0,0 +1,222 @@ +%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: _272 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.60921764, g: 0.6059114, b: 0.6059114, a: 1} + - _Color: {r: 0.60921764, g: 0.6059114, b: 0.6059114, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6830127093547762037 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_272.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_272.mat.meta new file mode 100644 index 00000000..bdb9691f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_272.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c44488a36a41e454b896743df54687f0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_273.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_273.mat new file mode 100644 index 00000000..153898e2 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_273.mat @@ -0,0 +1,222 @@ +%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: _273 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.9004158, g: 0.8468339, b: 0.8468339, a: 1} + - _Color: {r: 0.9004158, g: 0.8468339, b: 0.8468339, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &9079391627198217870 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_273.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_273.mat.meta new file mode 100644 index 00000000..f226e8d3 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_273.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 68ca5e336ed5a054980abc5511d57488 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_274.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_274.mat new file mode 100644 index 00000000..4ba1fc0a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_274.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3565682295270235890 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _274 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 1ead2fc79a7cacd40a1f7204ec8a27e5, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1ead2fc79a7cacd40a1f7204ec8a27e5, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_274.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_274.mat.meta new file mode 100644 index 00000000..87e4dec4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_274.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 831db7233d6dea14bb58a3afbafa71d7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_275.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_275.mat new file mode 100644 index 00000000..0e5850ff --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_275.mat @@ -0,0 +1,222 @@ +%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: _275 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.7788681, g: 0.7788681, b: 0.7788681, a: 1} + - _Color: {r: 0.7788681, g: 0.7788681, b: 0.7788681, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6782698146405549379 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_275.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_275.mat.meta new file mode 100644 index 00000000..82873d11 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_275.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a7ea777d804f5f4499741f448ba6aaa5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_276.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_276.mat new file mode 100644 index 00000000..818f3a6d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_276.mat @@ -0,0 +1,222 @@ +%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: _276 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.82499254, g: 0.87003416, b: 0.85748184, a: 1} + - _Color: {r: 0.82499254, g: 0.87003416, b: 0.85748184, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1020395741678616764 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_276.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_276.mat.meta new file mode 100644 index 00000000..c84afdaf --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_276.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a64422b0b4ffa8048988d8c674d7abb5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_277.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_277.mat new file mode 100644 index 00000000..8a153299 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_277.mat @@ -0,0 +1,222 @@ +%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: _277 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.6410877, g: 0.6410877, b: 0.6410877, a: 1} + - _Color: {r: 0.6410877, g: 0.6410877, b: 0.6410877, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4491658165136208859 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_277.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_277.mat.meta new file mode 100644 index 00000000..8c2f9bab --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_277.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 49e38d94e4ab75b47b1bab555c44466c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_278.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_278.mat new file mode 100644 index 00000000..0ad6a45c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_278.mat @@ -0,0 +1,222 @@ +%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: _278 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: b14905d006e825448a21a87220afea99, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: b14905d006e825448a21a87220afea99, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8398298578490762109 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_278.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_278.mat.meta new file mode 100644 index 00000000..3534bd08 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_278.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ca8d189af53888144988ebd569ecee72 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_279.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_279.mat new file mode 100644 index 00000000..23a977fb --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_279.mat @@ -0,0 +1,222 @@ +%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: _279 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.89444804, g: 0.7883768, b: 0.7468624, a: 1} + - _Color: {r: 0.89444804, g: 0.7883768, b: 0.7468624, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4870129208636391010 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_279.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_279.mat.meta new file mode 100644 index 00000000..637e4925 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_279.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2539c99edfb67b44387d8047ebd75040 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_280.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_280.mat new file mode 100644 index 00000000..8612cb9a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_280.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5478037862596429793 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _280 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.6472208, g: 0.6472208, b: 0.6472208, a: 1} + - _Color: {r: 0.6472208, g: 0.6472208, b: 0.6472208, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_280.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_280.mat.meta new file mode 100644 index 00000000..53173ffe --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_280.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f14498c0a84c944438a411a688c6a2d3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_281.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_281.mat new file mode 100644 index 00000000..61b6e07c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_281.mat @@ -0,0 +1,222 @@ +%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: _281 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 0aa65130fd3df5a4989a6b972af068f8, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 0aa65130fd3df5a4989a6b972af068f8, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4487601952070319529 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_281.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_281.mat.meta new file mode 100644 index 00000000..1fe32698 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_281.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 94a1fc5e8b96f9c439eac8f2cfc7e70e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_282.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_282.mat new file mode 100644 index 00000000..5d0dc0cd --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_282.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7265342173328809420 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _282 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 460b9c1eebe199d4a8642ade601819dd, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 460b9c1eebe199d4a8642ade601819dd, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_282.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_282.mat.meta new file mode 100644 index 00000000..75e23414 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_282.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 840723e689aac89468db982d9902f1a6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_284.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_284.mat new file mode 100644 index 00000000..c8020743 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_284.mat @@ -0,0 +1,222 @@ +%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: _284 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: a066ff850ba71444cba4fa5b958c0e62, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: a066ff850ba71444cba4fa5b958c0e62, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &209190801306283868 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_284.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_284.mat.meta new file mode 100644 index 00000000..b2c88d4a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_284.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8e1dbee6791a73c41bb47a711ee1678a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_285.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_285.mat new file mode 100644 index 00000000..df7dd44c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_285.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3836350251338620849 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _285 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.8511141, g: 0.8160401, b: 0.7764671, a: 1} + - _Color: {r: 0.8511141, g: 0.8160401, b: 0.7764671, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_285.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_285.mat.meta new file mode 100644 index 00000000..576bbdcd --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_285.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d702c3d601cd02448a3b67a482856888 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_286.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_286.mat new file mode 100644 index 00000000..cb0740c7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_286.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6736484164825979259 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _286 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.6157619, g: 0.6157619, b: 0.6157619, a: 1} + - _Color: {r: 0.6157619, g: 0.6157619, b: 0.6157619, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_286.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_286.mat.meta new file mode 100644 index 00000000..f5c55193 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_286.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8808366e341356149b4c9ed9892f2bce +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_287.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_287.mat new file mode 100644 index 00000000..7a727f22 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_287.mat @@ -0,0 +1,222 @@ +%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: _287 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.76431364, g: 0.7716357, b: 0.7812595, a: 1} + - _Color: {r: 0.76431364, g: 0.7716357, b: 0.7812595, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2243946434226967457 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_287.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_287.mat.meta new file mode 100644 index 00000000..74a11a97 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_287.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 23b78b6b421148e4a89142258405d01b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_288.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_288.mat new file mode 100644 index 00000000..9f99db62 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_288.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6553425983284733324 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _288 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.93705744, g: 0.93893385, b: 0.9408053, a: 1} + - _Color: {r: 0.93705744, g: 0.93893385, b: 0.9408053, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_288.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_288.mat.meta new file mode 100644 index 00000000..7f321924 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_288.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 67202a7f33e7d42478d76a6e8bd0a811 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_289.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_289.mat new file mode 100644 index 00000000..7ff258ae --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_289.mat @@ -0,0 +1,226 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4956244836395146527 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _289 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 0.9295016, g: 0.9295016, b: 0.9295016, a: 0.89} + - _Color: {r: 0.9295016, g: 0.9295016, b: 0.9295016, a: 0.89} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_289.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_289.mat.meta new file mode 100644 index 00000000..2ef113a9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_289.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6c0be0f07a98bc5449003d185864e8fd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_29.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_29.mat new file mode 100644 index 00000000..7c261370 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_29.mat @@ -0,0 +1,226 @@ +%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: _29 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 0.9628895, g: 0.9628895, b: 0.9628895, a: 0.76} + - _Color: {r: 0.9628895, g: 0.9628895, b: 0.9628895, a: 0.76} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4428264348405410423 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_29.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_29.mat.meta new file mode 100644 index 00000000..e0010cae --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_29.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 920c7562d385a9b42a762ced4db9bfc7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_290.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_290.mat new file mode 100644 index 00000000..1eeb97bc --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_290.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6623808993311798387 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _290 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.7183117, g: 0.7209682, b: 0.7236121, a: 1} + - _Color: {r: 0.7183117, g: 0.7209682, b: 0.7236121, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_290.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_290.mat.meta new file mode 100644 index 00000000..8ecc4cfc --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_290.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a66bbae87f1244543b3e19dfbe18f4ca +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_291.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_291.mat new file mode 100644 index 00000000..c9f1108e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_291.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4193384305752039380 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _291 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.8468339, g: 0.8468339, b: 0.84897757, a: 1} + - _Color: {r: 0.8468339, g: 0.8468339, b: 0.84897757, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_291.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_291.mat.meta new file mode 100644 index 00000000..79e71ebf --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_291.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eed341610196d0342b97a42532033e7b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_292.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_292.mat new file mode 100644 index 00000000..7a5eeeb5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_292.mat @@ -0,0 +1,222 @@ +%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: _292 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 2fa6f2d178c78124b96913441b14853f, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 2fa6f2d178c78124b96913441b14853f, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8479422581914879913 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_292.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_292.mat.meta new file mode 100644 index 00000000..edff6d3f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_292.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4b6827106ca5af844b65f269fcbfb5bf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_293.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_293.mat new file mode 100644 index 00000000..a4897115 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_293.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7435268071404979200 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _293 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.76431364, g: 0.79773766, b: 0.8272109, a: 1} + - _Color: {r: 0.76431364, g: 0.79773766, b: 0.8272109, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_293.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_293.mat.meta new file mode 100644 index 00000000..8cde8d79 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_293.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 312c6a4d09656d642af51877f41a6e0a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_294.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_294.mat new file mode 100644 index 00000000..4022dc48 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_294.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-9211074455083393856 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _294 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.6796897, g: 0.6796897, b: 0.6796897, a: 1} + - _Color: {r: 0.6796897, g: 0.6796897, b: 0.6796897, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_294.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_294.mat.meta new file mode 100644 index 00000000..4783b68c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_294.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1a8b812af12fb6d458bb951715fa4e3d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_295.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_295.mat new file mode 100644 index 00000000..caef7fee --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_295.mat @@ -0,0 +1,222 @@ +%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: _295 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: d24797941b58e9b4f9bf8724f62bac4a, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: d24797941b58e9b4f9bf8724f62bac4a, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1283595300285636271 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_295.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_295.mat.meta new file mode 100644 index 00000000..9da99654 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_295.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 28d5921ffa0f6e646a1172f8ab3c9a6e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_296.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_296.mat new file mode 100644 index 00000000..ae1786a8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_296.mat @@ -0,0 +1,222 @@ +%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: _296 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 17e45bade01ad2e4d9aa8f5623a7c2d8, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 17e45bade01ad2e4d9aa8f5623a7c2d8, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1063398958501147719 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_296.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_296.mat.meta new file mode 100644 index 00000000..1e647994 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_296.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 203dad4505663f342a3e74141a3326fc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_297.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_297.mat new file mode 100644 index 00000000..fc578fcb --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_297.mat @@ -0,0 +1,222 @@ +%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: _297 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.85748184, g: 0.86378795, b: 0.87003416, a: 1} + - _Color: {r: 0.85748184, g: 0.86378795, b: 0.87003416, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3039388814195707135 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_297.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_297.mat.meta new file mode 100644 index 00000000..3a0a5d83 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_297.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cf645831b502ee942b32bb22265e62a1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_298.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_298.mat new file mode 100644 index 00000000..ab9e5f9b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_298.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6264579124717580872 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _298 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.8616927, g: 0.86378795, b: 0.8864084, a: 1} + - _Color: {r: 0.8616927, g: 0.86378795, b: 0.8864084, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_298.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_298.mat.meta new file mode 100644 index 00000000..48dd8c53 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_298.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f0f63dabd6d808b4d9c8be89caadf28f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_299.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_299.mat new file mode 100644 index 00000000..bce5eff8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_299.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1158350114440780906 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _299 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: fe0baf6f05652c6468d3ee00c9a22ed0, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: fe0baf6f05652c6468d3ee00c9a22ed0, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_299.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_299.mat.meta new file mode 100644 index 00000000..a20e5c48 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_299.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c3dfc0a23e3c50742a2ccd85372e25ae +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_3.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_3.mat new file mode 100644 index 00000000..76c4ded0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_3.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6493878621191135703 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _3 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.60921764, g: 0.60921764, b: 0.6059114, a: 1} + - _Color: {r: 0.60921764, g: 0.60921764, b: 0.6059114, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_3.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_3.mat.meta new file mode 100644 index 00000000..24aac433 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_3.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6d903ebfb8b8f51429de746e9ab9a2a1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_30.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_30.mat new file mode 100644 index 00000000..2eb90790 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_30.mat @@ -0,0 +1,226 @@ +%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: _30 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 0.74432564, g: 0.8511141, b: 0.9082924, a: 0.53} + - _Color: {r: 0.74432564, g: 0.8511141, b: 0.9082924, a: 0.53} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3865783889283982613 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_30.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_30.mat.meta new file mode 100644 index 00000000..b78093b5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_30.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ad0602ac1eca4014c9a101d448144398 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_300.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_300.mat new file mode 100644 index 00000000..a7400fba --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_300.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-351724336416593573 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _300 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 461a87ace6d311f41a04c29a95d06342, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 461a87ace6d311f41a04c29a95d06342, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_300.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_300.mat.meta new file mode 100644 index 00000000..d5191897 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_300.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 33cd5cdda39495d4693d9941b2ad3f81 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_301.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_301.mat new file mode 100644 index 00000000..bb6b55ce --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_301.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-954968601361724544 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _301 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.88031507, g: 0.8658766, b: 0.89444804, a: 1} + - _Color: {r: 0.88031507, g: 0.8658766, b: 0.89444804, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_301.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_301.mat.meta new file mode 100644 index 00000000..d9027d4c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_301.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1c9589c8bffee364695e2509d0d8eccf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_302.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_302.mat new file mode 100644 index 00000000..f99ed61f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_302.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-771819921859901841 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _302 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.65327984, g: 0.7183117, b: 0.7764671, a: 1} + - _Color: {r: 0.65327984, g: 0.7183117, b: 0.7764671, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_302.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_302.mat.meta new file mode 100644 index 00000000..2572f9f0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_302.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: acc5342a636eb3d48aa14f2e770a8ca5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_303.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_303.mat new file mode 100644 index 00000000..d6d92283 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_303.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4207783906925140203 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _303 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.76185256, g: 0.75440603, b: 0.5924486, a: 1} + - _Color: {r: 0.76185256, g: 0.75440603, b: 0.5924486, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_303.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_303.mat.meta new file mode 100644 index 00000000..bfb4ef37 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_303.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3fe4a5ebc34d4d248a64709a91a3bc42 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_304.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_304.mat new file mode 100644 index 00000000..dfd4bd16 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_304.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2547280711438962617 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _304 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.76185256, g: 0.62541395, b: 0.5924486, a: 1} + - _Color: {r: 0.76185256, g: 0.62541395, b: 0.5924486, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_304.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_304.mat.meta new file mode 100644 index 00000000..16f559d9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_304.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d91c579377c89414aa70033444bab1ea +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_305.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_305.mat new file mode 100644 index 00000000..02e1de70 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_305.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7134590741742242201 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _305 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.739218, g: 0.82942134, b: 0.73664695, a: 1} + - _Color: {r: 0.73921794, g: 0.82942134, b: 0.73664695, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_305.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_305.mat.meta new file mode 100644 index 00000000..abc24835 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_305.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ea964453db65ca742bf758a24bd9b4c2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_31.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_31.mat new file mode 100644 index 00000000..4fef6d6a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_31.mat @@ -0,0 +1,226 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-297812228715856544 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _31 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 0.75938094, g: 0.81378174, b: 0.8864084, a: 0.44} + - _Color: {r: 0.75938094, g: 0.81378174, b: 0.8864084, a: 0.44} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_31.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_31.mat.meta new file mode 100644 index 00000000..b10dc6b6 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_31.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 53b7cd95c36e35d4ca25321a12f9ec1e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_312.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_312.mat new file mode 100644 index 00000000..1a38766d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_312.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-367883983174485769 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _312 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.94824237, g: 0.95193213, b: 0.94639033, a: 1} + - _Color: {r: 0.94824237, g: 0.95193213, b: 0.94639033, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_312.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_312.mat.meta new file mode 100644 index 00000000..b07c6734 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_312.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eb75159c780433347b354034f9c9455c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_313.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_313.mat new file mode 100644 index 00000000..1e348be8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_313.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-121209009579175659 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _313 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.63174355, g: 0.7568988, b: 0.48891217, a: 1} + - _Color: {r: 0.63174355, g: 0.75689876, b: 0.48891217, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_313.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_313.mat.meta new file mode 100644 index 00000000..0262ff92 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_313.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ed1635979a6526d4a9acac501a5f3f2d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_32.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_32.mat new file mode 100644 index 00000000..d349fd41 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_32.mat @@ -0,0 +1,222 @@ +%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: _32 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 1cfdf0fa017a90a418a39f8c1184cb0e, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1cfdf0fa017a90a418a39f8c1184cb0e, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5797562640210388444 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_32.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_32.mat.meta new file mode 100644 index 00000000..1caafc4f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_32.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 38acbcddcdb24f344a71d0ed41dd7f97 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_33.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_33.mat new file mode 100644 index 00000000..01e27ba4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_33.mat @@ -0,0 +1,222 @@ +%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: _33 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: aae7ae9fac0e2a54892070deabed721c, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: aae7ae9fac0e2a54892070deabed721c, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4788548630502239546 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_33.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_33.mat.meta new file mode 100644 index 00000000..5b0bbbfc --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_33.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ac45b8e2ed183604bb61cf4f6c252cfe +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_34.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_34.mat new file mode 100644 index 00000000..c61745e4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_34.mat @@ -0,0 +1,222 @@ +%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: _34 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: a3bbbb37c4b31684e896f47138ba6aca, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: a3bbbb37c4b31684e896f47138ba6aca, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2695928048246181661 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_34.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_34.mat.meta new file mode 100644 index 00000000..65b36150 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_34.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e9565d57af8986948b0a46855d86538a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_35.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_35.mat new file mode 100644 index 00000000..b5377360 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_35.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4614089528660436717 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _35 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.68538064, g: 0.7075555, b: 0.74177754, a: 1} + - _Color: {r: 0.68538064, g: 0.7075555, b: 0.74177754, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_35.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_35.mat.meta new file mode 100644 index 00000000..e94bc1b4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_35.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 77f8822c7390931438339179a801c6b4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_36.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_36.mat new file mode 100644 index 00000000..d54a590d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_36.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7664770260963657740 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _36 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: daa25aa33e5a3e1479c3d05c73795441, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: daa25aa33e5a3e1479c3d05c73795441, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_36.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_36.mat.meta new file mode 100644 index 00000000..d2539fab --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_36.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5d8d17c4d8dd82b4794b80d39ef02496 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_37.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_37.mat new file mode 100644 index 00000000..ea935fa4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_37.mat @@ -0,0 +1,226 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1757635242511096454 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _37 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: c843e3d67dbab7e459962eabfd5a659f, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: c843e3d67dbab7e459962eabfd5a659f, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_37.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_37.mat.meta new file mode 100644 index 00000000..3bd36be8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_37.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d1be596e68a99ec44971a323c9c6e887 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_38.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_38.mat new file mode 100644 index 00000000..a5a775f7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_38.mat @@ -0,0 +1,222 @@ +%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: _38 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 8f47c773dda5a1b49a1b763845f20905, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 8f47c773dda5a1b49a1b763845f20905, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2810070506837735572 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_38.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_38.mat.meta new file mode 100644 index 00000000..c88b75e4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_38.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 98a5cd8c7c4072a43848eef029a8aebe +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_39.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_39.mat new file mode 100644 index 00000000..8c7af346 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_39.mat @@ -0,0 +1,222 @@ +%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: _39 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.7764671, g: 0.804665, b: 0.82499254, a: 1} + - _Color: {r: 0.7764671, g: 0.804665, b: 0.82499254, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5527867410518396037 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_39.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_39.mat.meta new file mode 100644 index 00000000..1eb07a07 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_39.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bd3df716f21ff7348acc20398684f852 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_4.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_4.mat new file mode 100644 index 00000000..a6e8a604 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_4.mat @@ -0,0 +1,222 @@ +%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: _4 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.88235235, g: 0.88235235, b: 0.8658766, a: 1} + - _Color: {r: 0.88235235, g: 0.88235235, b: 0.8658766, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6531148702142684147 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_4.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_4.mat.meta new file mode 100644 index 00000000..933538e2 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_4.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4c3e1b8998a820b42b174e8694910bd1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_40.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_40.mat new file mode 100644 index 00000000..70591d3c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_40.mat @@ -0,0 +1,222 @@ +%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: _40 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: a1ad9af37d29b3346a1c888007fe02a0, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: a1ad9af37d29b3346a1c888007fe02a0, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1383109250951889265 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_40.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_40.mat.meta new file mode 100644 index 00000000..354442e6 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_40.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b4436bf2e79715a40926a7676cc3e914 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_42.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_42.mat new file mode 100644 index 00000000..41d93a66 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_42.mat @@ -0,0 +1,222 @@ +%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: _42 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 54c2977b941a5874c95e9d69f7dbcaac, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 54c2977b941a5874c95e9d69f7dbcaac, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1014616656778684731 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_42.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_42.mat.meta new file mode 100644 index 00000000..8c856be9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_42.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d02a63ff981fce24ab3736236d28ff63 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_43.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_43.mat new file mode 100644 index 00000000..a29f81e9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_43.mat @@ -0,0 +1,224 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1565161803213825635 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _43 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 60c08b127426e904b942b9f5c771a164, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 60c08b127426e904b942b9f5c771a164, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BrightnessMultiplier: 1 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _UnlitMode: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_43.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_43.mat.meta new file mode 100644 index 00000000..79fe2c4d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_43.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c65b5bdfafd5c96438ae65bd675a27b4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_44.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_44.mat new file mode 100644 index 00000000..281c4a11 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_44.mat @@ -0,0 +1,222 @@ +%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: _44 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 86f7838fccfffd54a93d11be7a7da562, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 86f7838fccfffd54a93d11be7a7da562, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &7342161600468717097 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_44.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_44.mat.meta new file mode 100644 index 00000000..ba0abe40 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_44.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cae404b95dc7d474c9b0283456806784 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_47.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_47.mat new file mode 100644 index 00000000..832eebb3 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_47.mat @@ -0,0 +1,222 @@ +%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: _47 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 40f4773ee72ff0d4791659e19a2bc9b2, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 40f4773ee72ff0d4791659e19a2bc9b2, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6435203920409944879 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_47.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_47.mat.meta new file mode 100644 index 00000000..d8098584 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_47.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 95c88331d56221b40a70dcbc697553ef +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_48.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_48.mat new file mode 100644 index 00000000..d197c548 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_48.mat @@ -0,0 +1,222 @@ +%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: _48 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: fef6eab3ba5262d489d354cf33072b8d, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: fef6eab3ba5262d489d354cf33072b8d, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2781121059311246421 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_48.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_48.mat.meta new file mode 100644 index 00000000..6ed5f0d1 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_48.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9884edce783d9fb41a6e3587b224ab2a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_49.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_49.mat new file mode 100644 index 00000000..d5bf8794 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_49.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8459037525539085788 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _49 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.9275999, g: 0.5855679, b: 0.5532369, a: 1} + - _Color: {r: 0.9275999, g: 0.5855679, b: 0.5532369, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_49.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_49.mat.meta new file mode 100644 index 00000000..0fd4358e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_49.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1c15dacf9a3b4a04d8edccfff8f2e094 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_51.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_51.mat new file mode 100644 index 00000000..5ad6a6eb --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_51.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8599483329317857894 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _51 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 49c369211bb719a4cad6dd5aa900ac15, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 49c369211bb719a4cad6dd5aa900ac15, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_51.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_51.mat.meta new file mode 100644 index 00000000..51f14581 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_51.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1171bf9e171424f4cafa4f9bdf16b841 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_53.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_53.mat new file mode 100644 index 00000000..c6c3c839 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_53.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7631477663429029783 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _53 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 514ec5807737b134d8c127f49aef5adb, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 514ec5807737b134d8c127f49aef5adb, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_53.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_53.mat.meta new file mode 100644 index 00000000..8bbd95a7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_53.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1f8caab57f5319e4da09d52b1f7bf1bb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_54.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_54.mat new file mode 100644 index 00000000..15a71385 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_54.mat @@ -0,0 +1,226 @@ +%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: _54 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 0.35247368, g: 0.9592555, b: 0.9592555, a: 0.23} + - _Color: {r: 0.35247365, g: 0.9592555, b: 0.9592555, a: 0.23} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3281539869185427272 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_54.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_54.mat.meta new file mode 100644 index 00000000..a01aa676 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_54.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 48a8e23edc0509742857bf183d40134b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_58.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_58.mat new file mode 100644 index 00000000..f51b0835 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_58.mat @@ -0,0 +1,222 @@ +%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: _58 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 48108ccaeb6658942a621e7f1b9e8a4a, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 48108ccaeb6658942a621e7f1b9e8a4a, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3258469087059630630 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_58.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_58.mat.meta new file mode 100644 index 00000000..69b397f3 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_58.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 23bd1bfe5ef31ae4e93af1cecfef1b7a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_6.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_6.mat new file mode 100644 index 00000000..322aa1a5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_6.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8292765668975454073 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _6 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.93705744, g: 0.93139815, b: 0.9218637, a: 1} + - _Color: {r: 0.93705744, g: 0.93139815, b: 0.9218637, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_6.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_6.mat.meta new file mode 100644 index 00000000..9310cec8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_6.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 83878c06b517d0845bf778be96f0da15 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_60.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_60.mat new file mode 100644 index 00000000..05858a9d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_60.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8223243761782671744 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _60 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 545e0946497d3074f90b98e7ed29a0ab, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 545e0946497d3074f90b98e7ed29a0ab, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_60.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_60.mat.meta new file mode 100644 index 00000000..c5cc869f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_60.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d450843c69cfb094e9b01507a4e7b8ba +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_61.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_61.mat new file mode 100644 index 00000000..71d1371a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_61.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4230984296329575976 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _61 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: d734e8983ba2bf14a847cbc30b290332, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: d734e8983ba2bf14a847cbc30b290332, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_61.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_61.mat.meta new file mode 100644 index 00000000..1cb67833 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_61.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0b49ce90492e66e4f87a236667693f34 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_62.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_62.mat new file mode 100644 index 00000000..d5b537c2 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_62.mat @@ -0,0 +1,222 @@ +%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: _62 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: a1389c0f8d8aa2f44980627b74275ca1, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: a1389c0f8d8aa2f44980627b74275ca1, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &231707482202199634 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_62.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_62.mat.meta new file mode 100644 index 00000000..2b2f1481 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_62.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 818ac86c5ae608a4ba2a15c0fb577542 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_63.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_63.mat new file mode 100644 index 00000000..08c3e4ef --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_63.mat @@ -0,0 +1,226 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1984139309143087317 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _63 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 216ca26b493125e4f976e088cf4db39e, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 216ca26b493125e4f976e088cf4db39e, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_63.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_63.mat.meta new file mode 100644 index 00000000..7d8b1600 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_63.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3bfa13816c478fb4285de25a55779bd9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_64.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_64.mat new file mode 100644 index 00000000..055f4e76 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_64.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7760061003951920083 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _64 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.7075555, g: 0, b: 0, a: 1} + - _Color: {r: 0.7075555, g: 0, b: 0, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_64.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_64.mat.meta new file mode 100644 index 00000000..24e6ca8b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_64.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fdd57137d89ff5643a44600409348a9d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_65.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_65.mat new file mode 100644 index 00000000..7f67092c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_65.mat @@ -0,0 +1,222 @@ +%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: _65 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.6379926, g: 0.6592671, b: 0.68538064, a: 1} + - _Color: {r: 0.6379926, g: 0.6592671, b: 0.68538064, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &618628480296872988 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_65.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_65.mat.meta new file mode 100644 index 00000000..ab51a9a9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_65.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1ba5e86218230984ca6313cd0bcbe4bd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_66.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_66.mat new file mode 100644 index 00000000..ffe9a29f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_66.mat @@ -0,0 +1,226 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-409995927403896492 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _66 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 48202eec9c2c8c048a03da65b80042ce, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 48202eec9c2c8c048a03da65b80042ce, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_66.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_66.mat.meta new file mode 100644 index 00000000..b8fc534b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_66.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 47e69d0c22f6f48488e4b69b6c86f2ff +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_7.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_7.mat new file mode 100644 index 00000000..1e86035e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_7.mat @@ -0,0 +1,222 @@ +%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: _7 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.9332896, g: 0.9332896, b: 0.9332896, a: 1} + - _Color: {r: 0.9332896, g: 0.9332896, b: 0.9332896, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8141660669240263177 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_7.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_7.mat.meta new file mode 100644 index 00000000..870c70b8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_7.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0f00a8370f50d244ca77620227c7113f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_73.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_73.mat new file mode 100644 index 00000000..dad2bae1 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_73.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8448409731395781341 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _73 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: c7942435d771f394e929244b8c72354c, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: c7942435d771f394e929244b8c72354c, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_73.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_73.mat.meta new file mode 100644 index 00000000..f3ce690b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_73.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 78c85c28c3d6c99429476315865ad710 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_79.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_79.mat new file mode 100644 index 00000000..bd9a7e7f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_79.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8512982656006108476 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _79 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: d36313a440cd796448b2d62444f398c3, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: d36313a440cd796448b2d62444f398c3, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_79.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_79.mat.meta new file mode 100644 index 00000000..d1a6fbe8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_79.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dd9f0940f2f28084a93afe7365134a36 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_80.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_80.mat new file mode 100644 index 00000000..3b33135d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_80.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7819951144981965045 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _80 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 9ef8bcb30a0a4d3499ad44b7f5cf02bd, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 9ef8bcb30a0a4d3499ad44b7f5cf02bd, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_80.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_80.mat.meta new file mode 100644 index 00000000..c3dec313 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_80.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f2a9b7768cff89f4cba72606d316b477 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_81.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_81.mat new file mode 100644 index 00000000..c3a48796 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_81.mat @@ -0,0 +1,222 @@ +%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: _81 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 787ba7e9654110940b723639a1e210b4, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 787ba7e9654110940b723639a1e210b4, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3310813251584941556 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_81.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_81.mat.meta new file mode 100644 index 00000000..76b3e451 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_81.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 08594544614337940a04fe7ed2cd4700 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_82.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_82.mat new file mode 100644 index 00000000..fd5ca763 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_82.mat @@ -0,0 +1,222 @@ +%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: _82 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 2a58cd93cce711a419b3c24740f0282a, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 2a58cd93cce711a419b3c24740f0282a, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1788765826881814399 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_82.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_82.mat.meta new file mode 100644 index 00000000..ee11af82 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_82.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bb9605d7c0344e546adf1eeaa2a8b319 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_86.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_86.mat new file mode 100644 index 00000000..d359b347 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_86.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-812804021517268006 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _86 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.8160401, g: 0.8316242, b: 0.8160401, a: 1} + - _Color: {r: 0.8160401, g: 0.8316242, b: 0.8160401, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_86.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_86.mat.meta new file mode 100644 index 00000000..583c5757 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_86.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 189d0f556cf9b5549865ab81c13f5d74 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_89.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_89.mat new file mode 100644 index 00000000..a51101ba --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_89.mat @@ -0,0 +1,226 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-295205085931240171 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _89 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 0.9295016, g: 0.95008963, b: 0.95008963, a: 0.34} + - _Color: {r: 0.9295016, g: 0.95008963, b: 0.95008963, a: 0.34} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_89.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_89.mat.meta new file mode 100644 index 00000000..e166106c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_89.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9f3bc03cbe871824593d13e7ecaa96a4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_90.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_90.mat new file mode 100644 index 00000000..1879a44f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_90.mat @@ -0,0 +1,226 @@ +%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: _90 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 0.9082924, g: 0.90436536, b: 0.89244705, a: 0.86} + - _Color: {r: 0.9082924, g: 0.90436536, b: 0.89244705, a: 0.86} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8537258325962475599 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_90.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_90.mat.meta new file mode 100644 index 00000000..b6f2e2d7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_90.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 296c6d375731b6641b31adc9ef4b37d3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_91.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_91.mat new file mode 100644 index 00000000..cdb4b61d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_91.mat @@ -0,0 +1,222 @@ +%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: _91 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.9082924, g: 0.9180132, b: 0.92569304, a: 1} + - _Color: {r: 0.9082924, g: 0.9180132, b: 0.92569304, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5355372243657683894 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_91.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_91.mat.meta new file mode 100644 index 00000000..ccc0e794 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_91.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ffa99aa5165fbf048a5be6ae474d897f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_94.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_94.mat new file mode 100644 index 00000000..eb1d4bae --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_94.mat @@ -0,0 +1,222 @@ +%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: _94 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 40f4773ee72ff0d4791659e19a2bc9b2, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 40f4773ee72ff0d4791659e19a2bc9b2, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2868360789323651022 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_94.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_94.mat.meta new file mode 100644 index 00000000..8d2794c1 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_94.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7b0a0ac268c093f4aa43f4b3014dfbcb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_95.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_95.mat new file mode 100644 index 00000000..9010131a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_95.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8085693290986969145 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _95 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 183a04209cf89654c861a3676c8030c2, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 183a04209cf89654c861a3676c8030c2, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_95.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_95.mat.meta new file mode 100644 index 00000000..411fd223 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_95.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: db601c509210c85488d88780242d80b0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_97.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_97.mat new file mode 100644 index 00000000..565d65da --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_97.mat @@ -0,0 +1,222 @@ +%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: _97 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 3fcab8767e718b443aa5422869e6e479, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 3fcab8767e718b443aa5422869e6e479, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &7931703844550508768 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_97.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_97.mat.meta new file mode 100644 index 00000000..d64354ac --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_97.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7f78c3859c6e0c543a60431f243222ea +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_1.mat new file mode 100644 index 00000000..19abdc57 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_1.mat @@ -0,0 +1,222 @@ +%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: _CorrogateShiny_1 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 4c589c469a6ae5f419c092116a756b92, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 4c589c469a6ae5f419c092116a756b92, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4546358341513505781 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_1.mat.meta new file mode 100644 index 00000000..037da009 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c458fcd82140778418d4bee6a653d8a8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_2.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_2.mat new file mode 100644 index 00000000..3a1f1e44 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_2.mat @@ -0,0 +1,222 @@ +%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: _CorrogateShiny_2 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 8a7f2209cb1c767469eed7765287264e, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 8a7f2209cb1c767469eed7765287264e, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &89595583754616245 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_2.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_2.mat.meta new file mode 100644 index 00000000..f616e1e4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_2.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dc8c64c467d882841896e04b5cd19dcb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_3.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_3.mat new file mode 100644 index 00000000..2753cbda --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_3.mat @@ -0,0 +1,222 @@ +%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: _CorrogateShiny_3 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 1dc0859fb14ab4145a109852e00aadc9, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 1dc0859fb14ab4145a109852e00aadc9, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4460166441465817603 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_3.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_3.mat.meta new file mode 100644 index 00000000..a881ed32 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_3.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 933e75cfb99eef842b6afa248772f3d3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_4.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_4.mat new file mode 100644 index 00000000..2d89aa5a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_4.mat @@ -0,0 +1,222 @@ +%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: _CorrogateShiny_4 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 5d52ac0578484c246b545b3e65845f4f, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 5d52ac0578484c246b545b3e65845f4f, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8576749742410099545 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_4.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_4.mat.meta new file mode 100644 index 00000000..f2a965c3 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_CorrogateShiny_4.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7fcd319de34209c49aaa18b3deb2da5b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_auto_.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_auto_.mat new file mode 100644 index 00000000..d5d06265 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_auto_.mat @@ -0,0 +1,222 @@ +%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: _auto_ + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8990931654225708102 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_auto_.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_auto_.mat.meta new file mode 100644 index 00000000..976980df --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_auto_.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 863e0032aaccd5642a1128b8e0a0df08 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_defaultMat.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_defaultMat.mat new file mode 100644 index 00000000..d6201f18 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_defaultMat.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2117687579966992541 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: _defaultMat + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_defaultMat.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_defaultMat.mat.meta new file mode 100644 index 00000000..12944137 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/_defaultMat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fafe938e23865574db42eb6e01ca0f17 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/ffffMaterial53.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/ffffMaterial53.mat new file mode 100644 index 00000000..af7e26cb --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/ffffMaterial53.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5760245955095999658 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: ffffMaterial53 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 0ecc1e5364824a84aa8aa0d8a6166764, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 0ecc1e5364824a84aa8aa0d8a6166764, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/ffffMaterial53.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/ffffMaterial53.mat.meta new file mode 100644 index 00000000..4146bfe7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/ffffMaterial53.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b3dc973689dda4b4a857122149f47988 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/sdfff.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/sdfff.mat new file mode 100644 index 00000000..1c4c3c26 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/sdfff.mat @@ -0,0 +1,222 @@ +%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: sdfff + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.91024756, g: 0.91994107, b: 0.9180132, a: 1} + - _Color: {r: 0.91024756, g: 0.91994107, b: 0.9180132, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1952585172145099784 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/sdfff.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/sdfff.mat.meta new file mode 100644 index 00000000..e7b82caa --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/sdfff.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e61bb47ade2cbf643babb1de91a33d90 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/sdfff1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/sdfff1.mat new file mode 100644 index 00000000..946b5922 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/sdfff1.mat @@ -0,0 +1,226 @@ +%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: sdfff1 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 0.8984323, g: 0.91024756, b: 0.9082924, a: 0.95} + - _Color: {r: 0.8984323, g: 0.91024756, b: 0.9082924, a: 0.95} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1236893765411513215 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/sdfff1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/sdfff1.mat.meta new file mode 100644 index 00000000..3d682297 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/sdfff1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e07cfdf4896e12842bf13bb170566834 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/sfffsdvcMaterial13.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/sfffsdvcMaterial13.mat new file mode 100644 index 00000000..40e93ee9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/sfffsdvcMaterial13.mat @@ -0,0 +1,222 @@ +%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: sfffsdvcMaterial13 + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 368d80592a7bbff40a26882f98852b8d, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 368d80592a7bbff40a26882f98852b8d, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6918954292139370005 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/sfffsdvcMaterial13.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/sfffsdvcMaterial13.mat.meta new file mode 100644 index 00000000..ff71db6e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/sfffsdvcMaterial13.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2bdc6a53dc09ae74b84d9367106d72e9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/ㄴㅇ리ㅡ.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/ㄴㅇ리ㅡ.mat new file mode 100644 index 00000000..168b8f6f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/ㄴㅇ리ㅡ.mat @@ -0,0 +1,222 @@ +%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: "\u3134\u3147\uB9AC\u3161" + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 2a58cd93cce711a419b3c24740f0282a, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 2a58cd93cce711a419b3c24740f0282a, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3363505263561315489 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/ㄴㅇ리ㅡ.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/ㄴㅇ리ㅡ.mat.meta new file mode 100644 index 00000000..4e176dc8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/ㄴㅇ리ㅡ.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ac2c2f20aaf9f0f4d92d758d170ee0e4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/간판큰거.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/간판큰거.mat new file mode 100644 index 00000000..9d3506c4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/간판큰거.mat @@ -0,0 +1,222 @@ +%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: "\uAC04\uD310\uD070\uAC70" + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 787ba7e9654110940b723639a1e210b4, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 787ba7e9654110940b723639a1e210b4, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3653866631679416408 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/간판큰거.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/간판큰거.mat.meta new file mode 100644 index 00000000..be1b699e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/간판큰거.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 362d7dfb47b94ce4cb201d10c81b49fc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/관목4.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/관목4.mat new file mode 100644 index 00000000..542fa630 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/관목4.mat @@ -0,0 +1,225 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1739895482392993722 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\uAD00\uBAA94" + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHATEST_ON + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 2450 + stringTagMap: + RenderType: TransparentCutout + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 51d573bd0871cd74e9099357d8161f08, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 51d573bd0871cd74e9099357d8161f08, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 1 + - _AlphaToMask: 1 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BrightnessMultiplier: 1 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _UnlitMode: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/관목4.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/관목4.mat.meta new file mode 100644 index 00000000..2a0048a5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/관목4.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 24eda726df8dc6048a3471896bcaace9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/나난나무.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/나난나무.mat new file mode 100644 index 00000000..87741209 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/나난나무.mat @@ -0,0 +1,225 @@ +%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: "\uB098\uB09C\uB098\uBB34" + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHATEST_ON + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2450 + stringTagMap: + RenderType: TransparentCutout + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 8ee17ca9c4278484fa34cdd2ce4152c8, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 8ee17ca9c4278484fa34cdd2ce4152c8, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 1 + - _AlphaToMask: 1 + - _BillboardEnable: 1 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BrightnessMultiplier: 0.8 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.881 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _UnlitMode: 1 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4127474981435431203 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/나난나무.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/나난나무.mat.meta new file mode 100644 index 00000000..fea01c15 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/나난나무.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2d139290b3ef8ea4dbc5ee94938d591a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/나무7.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/나무7.mat new file mode 100644 index 00000000..d4662fcf --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/나무7.mat @@ -0,0 +1,225 @@ +%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: "\uB098\uBB347" + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHATEST_ON + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2450 + stringTagMap: + RenderType: TransparentCutout + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 66dde50edbde7854991d2991b036f95f, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 66dde50edbde7854991d2991b036f95f, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 1 + - _AlphaToMask: 1 + - _BillboardEnable: 1 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BrightnessMultiplier: 1 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.875 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _UnlitMode: 1 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2814110918078659386 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/나무7.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/나무7.mat.meta new file mode 100644 index 00000000..49caed7f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/나무7.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2ac81a7609dd5aa43bc2dff9293174e9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/내가만든나무.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/내가만든나무.mat new file mode 100644 index 00000000..dfb09ef1 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/내가만든나무.mat @@ -0,0 +1,225 @@ +%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: "\uB0B4\uAC00\uB9CC\uB4E0\uB098\uBB34" + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHATEST_ON + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2450 + stringTagMap: + RenderType: TransparentCutout + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: c85c2d9b932f32944aa4bbfb858bc672, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: c85c2d9b932f32944aa4bbfb858bc672, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 1 + - _AlphaToMask: 1 + - _BillboardEnable: 1 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BrightnessMultiplier: 0.54 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.841 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _UnlitMode: 1 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2152439953227945446 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/내가만든나무.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/내가만든나무.mat.meta new file mode 100644 index 00000000..3d76149e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/내가만든나무.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8f694051cd524a14ba5cad9ce7cd9482 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/내가만든나무2.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/내가만든나무2.mat new file mode 100644 index 00000000..e23a879b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/내가만든나무2.mat @@ -0,0 +1,225 @@ +%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: "\uB0B4\uAC00\uB9CC\uB4E0\uB098\uBB342" + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHATEST_ON + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: 2450 + stringTagMap: + RenderType: TransparentCutout + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 8cda9bd045b35fd49b6a740901ce267c, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 8cda9bd045b35fd49b6a740901ce267c, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 1 + - _AlphaToMask: 1 + - _BillboardEnable: 1 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BrightnessMultiplier: 0.51 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.979 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _UnlitMode: 1 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8656219419660240191 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/내가만든나무2.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/내가만든나무2.mat.meta new file mode 100644 index 00000000..43b2a1a3 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/내가만든나무2.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d4fc45b8e6c43b8419e8ec3f278cb87e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/캐노피유리.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/캐노피유리.mat new file mode 100644 index 00000000..fb169c35 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/캐노피유리.mat @@ -0,0 +1,228 @@ +%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: "\uCE90\uB178\uD53C\uC720\uB9AC" + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHAPREMULTIPLY_ON + - _SURFACE_TYPE_TRANSPARENT + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 3000 + stringTagMap: + RenderType: Transparent + disabledShaderPasses: + - SHADOWCASTER + - DepthOnly + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BrightnessMultiplier: 1 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 10 + - _DstBlendAlpha: 10 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 1 + - _UVSec: 0 + - _UnlitMode: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 0 + m_Colors: + - _BaseColor: {r: 0.92378104, g: 0.94639033, b: 0.94639033, a: 0.34} + - _Color: {r: 0.92378104, g: 0.94639033, b: 0.94639033, a: 0.34} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8775477884190899537 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/캐노피유리.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/캐노피유리.mat.meta new file mode 100644 index 00000000..ee8936fa --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/캐노피유리.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 39e7036d16628f34fa469cd488acb70e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/캐노피유리옆면.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/캐노피유리옆면.mat new file mode 100644 index 00000000..507dc5fb --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/캐노피유리옆면.mat @@ -0,0 +1,224 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6440656360256226905 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\uCE90\uB178\uD53C\uC720\uB9AC\uC606\uBA74" + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BrightnessMultiplier: 1 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _UnlitMode: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 0.8000555, g: 0.88235235, b: 0.8000555, a: 1} + - _Color: {r: 0.8000555, g: 0.88235235, b: 0.8000555, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/캐노피유리옆면.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/캐노피유리옆면.mat.meta new file mode 100644 index 00000000..d8307042 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/캐노피유리옆면.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c8a3747fa6d7d5148b6367667ea08fd0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/펜스.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/펜스.mat new file mode 100644 index 00000000..a9f99bb6 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/펜스.mat @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-741044251477947314 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\uD39C\uC2A4" + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: -1 + stringTagMap: + RenderType: Opaque + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 68e58eb003da88c43a165e75b3a12761, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 68e58eb003da88c43a165e75b3a12761, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaToMask: 0 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/펜스.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/펜스.mat.meta new file mode 100644 index 00000000..3816dc06 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/펜스.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cbd7e09b1416aa04c8dd8bd5620f9e5f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/풀1.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/풀1.mat new file mode 100644 index 00000000..1f69319b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/풀1.mat @@ -0,0 +1,225 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5804314204325260224 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: "\uD4801" + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHATEST_ON + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 2450 + stringTagMap: + RenderType: TransparentCutout + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: 8323ac4e5c63ff14593b1b0583f75ab6, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 8323ac4e5c63ff14593b1b0583f75ab6, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 1 + - _AlphaToMask: 1 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BrightnessMultiplier: 1 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _UnlitMode: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/풀1.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/풀1.mat.meta new file mode 100644 index 00000000..4f584d58 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/풀1.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b713974adfa0e2f4cbd4cf0dd65e77e8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/풀2.mat b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/풀2.mat new file mode 100644 index 00000000..ce3d6a53 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/풀2.mat @@ -0,0 +1,225 @@ +%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: "\uD4802" + m_Shader: {fileID: 4800000, guid: 50e19b7c9fbe3324e978246ad9789e96, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _ALPHATEST_ON + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 1 + m_CustomRenderQueue: 2450 + stringTagMap: + RenderType: TransparentCutout + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 2800000, guid: ba376170b980ad944b7e7f35e92e145c, 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} + - _ClearCoatMap: + 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} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: ba376170b980ad944b7e7f35e92e145c, type: 3} + 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} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatAlbedoMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatMaskMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatNormalMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapA: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapB: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapG: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SplatPackedDataMapR: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 1 + - _AlphaToMask: 1 + - _BillboardEnable: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BlendOp: 0 + - _BrightnessMultiplier: 1 + - _BumpScale: 1 + - _ClearCoat: 0 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 0 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 3 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _ScreenSpaceOutlineIntensity: 1 + - _ScreenSpaceOutlineWidth: 1 + - _Smoothness: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SplatAlbedoMapATiling: 1 + - _SplatAlbedoMapBTiling: 1 + - _SplatAlbedoMapGTiling: 1 + - _SplatAlbedoMapRTiling: 1 + - _SplatHeightMultiplierA: 1 + - _SplatHeightMultiplierB: 1 + - _SplatHeightMultiplierG: 1 + - _SplatHeightMultiplierR: 1 + - _SplatMapFeatureOnOff: 0 + - _SplatMaskBlendingSoftness: 0.5 + - _SplatNormalMapIntensityA: 1 + - _SplatNormalMapIntensityB: 1 + - _SplatNormalMapIntensityG: 1 + - _SplatNormalMapIntensityR: 1 + - _SplatSmoothnessMultiplierA: 1 + - _SplatSmoothnessMultiplierB: 1 + - _SplatSmoothnessMultiplierG: 1 + - _SplatSmoothnessMultiplierR: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _UnlitMode: 0 + - _WorkflowMode: 1 + - _XRMotionVectorsPass: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _ScreenSpaceOutlineColor: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + - _SplatAlbedoMapATintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapBTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapGTintColor: {r: 1, g: 1, b: 1, a: 1} + - _SplatAlbedoMapRTintColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &7265599633197267305 +MonoBehaviour: + m_ObjectHideFlags: 11 + 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: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} + m_Name: + m_EditorClassIdentifier: + version: 10 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/풀2.mat.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/풀2.mat.meta new file mode 100644 index 00000000..89c93dd4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Material/풀2.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bc223087fa2bd4047a912843072db159 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture.meta new file mode 100644 index 00000000..4c139514 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1bdbd445620c77b4b93bc359624c9744 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/060a5925fa6e5ae907b2327d90abe216_tint0x414652FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/060a5925fa6e5ae907b2327d90abe216_tint0x414652FF.jpg new file mode 100644 index 00000000..344449e6 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/060a5925fa6e5ae907b2327d90abe216_tint0x414652FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f886922449b93a4c0f8cf8aa46557beca53022f66ebab65d861acfe152cd86 +size 208794 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/060a5925fa6e5ae907b2327d90abe216_tint0x414652FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/060a5925fa6e5ae907b2327d90abe216_tint0x414652FF.jpg.meta new file mode 100644 index 00000000..8684fc6e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/060a5925fa6e5ae907b2327d90abe216_tint0x414652FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 4179bb9606206154a964dbab861c7079 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/0611cc2bfc8d0e7c1938da5cef558e34.png b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/0611cc2bfc8d0e7c1938da5cef558e34.png new file mode 100644 index 00000000..b7e85f2d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/0611cc2bfc8d0e7c1938da5cef558e34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a20b75be21a88ee6f656229bd3249713fb09b491b08b2420cdae50e78d46084 +size 170534 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/0611cc2bfc8d0e7c1938da5cef558e34.png.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/0611cc2bfc8d0e7c1938da5cef558e34.png.meta new file mode 100644 index 00000000..396e76f0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/0611cc2bfc8d0e7c1938da5cef558e34.png.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: c57b5dc9f8613b64d8c7ef3930cf6e9a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/0ad8e6451692b77c9f202e1b94e82615_tint0xD1D1D1FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/0ad8e6451692b77c9f202e1b94e82615_tint0xD1D1D1FF.jpg new file mode 100644 index 00000000..98c05df5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/0ad8e6451692b77c9f202e1b94e82615_tint0xD1D1D1FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc801536e25ca6ac534eb76719a36ad69ae186ffde6d8da8be68a4c8cb611378 +size 7614 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/0ad8e6451692b77c9f202e1b94e82615_tint0xD1D1D1FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/0ad8e6451692b77c9f202e1b94e82615_tint0xD1D1D1FF.jpg.meta new file mode 100644 index 00000000..32bb3f33 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/0ad8e6451692b77c9f202e1b94e82615_tint0xD1D1D1FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 99200d885ea62274b883fdc44a9b6a56 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1186b74ebf96a1639a5cd133df6347ec.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1186b74ebf96a1639a5cd133df6347ec.jpg new file mode 100644 index 00000000..727f9d5b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1186b74ebf96a1639a5cd133df6347ec.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f0ff79610b7ae07c891ebf0decec318a7ddf88061c5753f1f3e12d53864ddd0 +size 24426 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1186b74ebf96a1639a5cd133df6347ec.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1186b74ebf96a1639a5cd133df6347ec.jpg.meta new file mode 100644 index 00000000..6f8b0f6f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1186b74ebf96a1639a5cd133df6347ec.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 368d80592a7bbff40a26882f98852b8d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/123_tint0xB6AD9AFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/123_tint0xB6AD9AFF.jpg new file mode 100644 index 00000000..e11b5949 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/123_tint0xB6AD9AFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b11b619ef843698d93bdc5ee79c75a2efcdb0f03776a620283656e6d7547c9a2 +size 1022 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/123_tint0xB6AD9AFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/123_tint0xB6AD9AFF.jpg.meta new file mode 100644 index 00000000..359e574c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/123_tint0xB6AD9AFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 64003d53e978ebb4190728be97502aab +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/15b1e78a5d6d1e85bbaaa82dd875053c.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/15b1e78a5d6d1e85bbaaa82dd875053c.jpg new file mode 100644 index 00000000..a1044e68 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/15b1e78a5d6d1e85bbaaa82dd875053c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e289ff5a4504f65ab8a3cfed6406d9c90d4dbad72938a6ed9875efe66274ca7d +size 22515 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/15b1e78a5d6d1e85bbaaa82dd875053c.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/15b1e78a5d6d1e85bbaaa82dd875053c.jpg.meta new file mode 100644 index 00000000..a446e70e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/15b1e78a5d6d1e85bbaaa82dd875053c.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 929172db153b12a428363d700f7dff0f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1df08e7ecf2c84dd9d94881d1948323f.png b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1df08e7ecf2c84dd9d94881d1948323f.png new file mode 100644 index 00000000..c53d2e64 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1df08e7ecf2c84dd9d94881d1948323f.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:697064eac61831605a31c57b3066a73739bdda771722c56d0066c0cde537f9a8 +size 1713273 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1df08e7ecf2c84dd9d94881d1948323f.png.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1df08e7ecf2c84dd9d94881d1948323f.png.meta new file mode 100644 index 00000000..4294987e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1df08e7ecf2c84dd9d94881d1948323f.png.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: c843e3d67dbab7e459962eabfd5a659f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1f4623f9a9c8fcd28a462d933ee4b162.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1f4623f9a9c8fcd28a462d933ee4b162.jpg new file mode 100644 index 00000000..16ba575a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1f4623f9a9c8fcd28a462d933ee4b162.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b3c80de6603c33103a02143888865019f888da1ab53c3faa54c00c6962d0e5c +size 18658 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1f4623f9a9c8fcd28a462d933ee4b162.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1f4623f9a9c8fcd28a462d933ee4b162.jpg.meta new file mode 100644 index 00000000..81b7889e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1f4623f9a9c8fcd28a462d933ee4b162.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 4478e132ddf0f464890797c2e03d7f3f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1f464434223ab9f5f62c0c282fea3ce8.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1f464434223ab9f5f62c0c282fea3ce8.jpg new file mode 100644 index 00000000..9620f629 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1f464434223ab9f5f62c0c282fea3ce8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84ea2b7a56b1501cdc11776638350b0890e8c003a040bc2f54c25d55901b56d4 +size 11223 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1f464434223ab9f5f62c0c282fea3ce8.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1f464434223ab9f5f62c0c282fea3ce8.jpg.meta new file mode 100644 index 00000000..6cca746c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/1f464434223ab9f5f62c0c282fea3ce8.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 0da09411a91339044a6f9eb98ca129be +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2123_tint0xBABABAFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2123_tint0xBABABAFF.jpg new file mode 100644 index 00000000..49fbb7ef --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2123_tint0xBABABAFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d76b66f37f2d9b2ec94a9b7082aff96acebd7a186f5a836eca8b44c16c98056a +size 148151 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2123_tint0xBABABAFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2123_tint0xBABABAFF.jpg.meta new file mode 100644 index 00000000..95022762 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2123_tint0xBABABAFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: f57eb1fedcb8e29469ee952431d3933e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/21a6ed7c6f1381f7afa75a3abb64373e.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/21a6ed7c6f1381f7afa75a3abb64373e.jpg new file mode 100644 index 00000000..d5d4be3a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/21a6ed7c6f1381f7afa75a3abb64373e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:718f2001f2df0d7d6d24035ee34c6770470d8d05747542438e106ea7f4dcdddb +size 1460 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/21a6ed7c6f1381f7afa75a3abb64373e.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/21a6ed7c6f1381f7afa75a3abb64373e.jpg.meta new file mode 100644 index 00000000..71278da7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/21a6ed7c6f1381f7afa75a3abb64373e.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: d40e3ee1b1628184cba1eecc19ab027e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/223b30aecee188ba34e159a9797bbddf.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/223b30aecee188ba34e159a9797bbddf.jpg new file mode 100644 index 00000000..89795d5d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/223b30aecee188ba34e159a9797bbddf.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce573a3806de3355f5da327c040053e4f9c0a78f10b7e57658cb24140645fa41 +size 14176 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/223b30aecee188ba34e159a9797bbddf.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/223b30aecee188ba34e159a9797bbddf.jpg.meta new file mode 100644 index 00000000..b59718ac --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/223b30aecee188ba34e159a9797bbddf.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 2980b604bd6ea8345a1d52f4d34f3dac +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2331aaeb8997b116480a4fc83eec1877.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2331aaeb8997b116480a4fc83eec1877.jpg new file mode 100644 index 00000000..a0266973 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2331aaeb8997b116480a4fc83eec1877.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b57544b70d067ab48bb322a2b40cd6497988377cdaf52114e75fa79c6184e76 +size 14904 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2331aaeb8997b116480a4fc83eec1877.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2331aaeb8997b116480a4fc83eec1877.jpg.meta new file mode 100644 index 00000000..ac05bc6b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2331aaeb8997b116480a4fc83eec1877.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: f258db5daeaf3c04295e5b0406ac55b3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/27512d14cb52d64c98a4684abfc41fd8.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/27512d14cb52d64c98a4684abfc41fd8.jpg new file mode 100644 index 00000000..dbab5f36 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/27512d14cb52d64c98a4684abfc41fd8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be3554e85d627b4cc0c4e734a193fff6e4c0b5fda68d3103ddeb63aa2caa054e +size 29431 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/27512d14cb52d64c98a4684abfc41fd8.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/27512d14cb52d64c98a4684abfc41fd8.jpg.meta new file mode 100644 index 00000000..7b61927c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/27512d14cb52d64c98a4684abfc41fd8.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 8992354a5eccaa74889f5a0d644b34fa +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/287256c849702a9b78a25be087ea3207.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/287256c849702a9b78a25be087ea3207.jpg new file mode 100644 index 00000000..234fdeb8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/287256c849702a9b78a25be087ea3207.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9868aaed86c3c7a3613dc148bba5dfeb63bd55979a7467371f44e696a834cfe +size 10808 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/287256c849702a9b78a25be087ea3207.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/287256c849702a9b78a25be087ea3207.jpg.meta new file mode 100644 index 00000000..7b9111c3 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/287256c849702a9b78a25be087ea3207.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 7e13ebb981afa0747b5ea482f35cda08 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2_tint0x7EA9A691.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2_tint0x7EA9A691.jpg new file mode 100644 index 00000000..4a95e3dc --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2_tint0x7EA9A691.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:672a2ed561fd2dd21da05e1fa2ded28d50e399c773f887ecc2085a60567eff67 +size 38463 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2_tint0x7EA9A691.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2_tint0x7EA9A691.jpg.meta new file mode 100644 index 00000000..dd4ac025 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2_tint0x7EA9A691.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 79747f08b85ee884f9eaf8b56241bec9 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2_tint0xA9C5C3FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2_tint0xA9C5C3FF.jpg new file mode 100644 index 00000000..41e570ea --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2_tint0xA9C5C3FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9765f99d49d4a44f4184089b030bd4382bea85deeb42c3c0cd0fbfe2f177cbd +size 36994 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2_tint0xA9C5C3FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2_tint0xA9C5C3FF.jpg.meta new file mode 100644 index 00000000..0b527c3d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2_tint0xA9C5C3FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: bdb71d47483b5804783b4706a25faed1 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2dfc3005487a6981f5a793cfc20108e8.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2dfc3005487a6981f5a793cfc20108e8.jpg new file mode 100644 index 00000000..9c240331 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2dfc3005487a6981f5a793cfc20108e8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d00521b852f3db2450cdb53032cb9421605d95e8fbae2c0555aa8dc5279f0ca +size 18908 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2dfc3005487a6981f5a793cfc20108e8.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2dfc3005487a6981f5a793cfc20108e8.jpg.meta new file mode 100644 index 00000000..48217f05 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/2dfc3005487a6981f5a793cfc20108e8.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 54c2977b941a5874c95e9d69f7dbcaac +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/32094e411da209e5a94c1215d234e911.png b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/32094e411da209e5a94c1215d234e911.png new file mode 100644 index 00000000..04fc6493 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/32094e411da209e5a94c1215d234e911.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b98904d44f1299d73e39d5d0edb7e7c375274463990479b5cff73415a2e72810 +size 2204599 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/32094e411da209e5a94c1215d234e911.png.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/32094e411da209e5a94c1215d234e911.png.meta new file mode 100644 index 00000000..6e3d2a28 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/32094e411da209e5a94c1215d234e911.png.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 216ca26b493125e4f976e088cf4db39e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/36d70c74a9e3e6c22c65b72813ba93fe.png b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/36d70c74a9e3e6c22c65b72813ba93fe.png new file mode 100644 index 00000000..25fff937 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/36d70c74a9e3e6c22c65b72813ba93fe.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ca3b3cf31e0cbba500bbe92fed89d57301f0504b32dc8d7571588626a62fa61 +size 35588 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/36d70c74a9e3e6c22c65b72813ba93fe.png.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/36d70c74a9e3e6c22c65b72813ba93fe.png.meta new file mode 100644 index 00000000..2e79024a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/36d70c74a9e3e6c22c65b72813ba93fe.png.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 51d573bd0871cd74e9099357d8161f08 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/37605e9c82c8ee95e19bd63b6c813032.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/37605e9c82c8ee95e19bd63b6c813032.jpg new file mode 100644 index 00000000..6b401935 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/37605e9c82c8ee95e19bd63b6c813032.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b53922c28d6c3f60cefb504f004bd8117c993ea89a88dafc876121cea57c608c +size 16527 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/37605e9c82c8ee95e19bd63b6c813032.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/37605e9c82c8ee95e19bd63b6c813032.jpg.meta new file mode 100644 index 00000000..b436f43a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/37605e9c82c8ee95e19bd63b6c813032.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 87174b6aaf8ff734c955e3227aaa5baa +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/3a6e622cb2b00cec46a001c308cbf13d.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/3a6e622cb2b00cec46a001c308cbf13d.jpg new file mode 100644 index 00000000..75597507 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/3a6e622cb2b00cec46a001c308cbf13d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04da639325f40da6d0faa55a0788582d1742a39e96c9e9100d4c3796033b59b6 +size 25297 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/3a6e622cb2b00cec46a001c308cbf13d.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/3a6e622cb2b00cec46a001c308cbf13d.jpg.meta new file mode 100644 index 00000000..dd5b49d7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/3a6e622cb2b00cec46a001c308cbf13d.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: a5caac5ea579cf64b8d53b77d0295e08 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/3af12cc6c1d71c941de18362e7133c99.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/3af12cc6c1d71c941de18362e7133c99.jpg new file mode 100644 index 00000000..9201c875 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/3af12cc6c1d71c941de18362e7133c99.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b754c7a8c116ad85bbc2ee0f6bf73287658b2615cfd58af02f2f2b817bb2773b +size 9037 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/3af12cc6c1d71c941de18362e7133c99.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/3af12cc6c1d71c941de18362e7133c99.jpg.meta new file mode 100644 index 00000000..ed58023d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/3af12cc6c1d71c941de18362e7133c99.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: a68b5aa8ab7926849a4fe8af6369f579 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/48e2ba6078141ab94df186c299e6621d.png b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/48e2ba6078141ab94df186c299e6621d.png new file mode 100644 index 00000000..43a32272 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/48e2ba6078141ab94df186c299e6621d.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9862408bcaf74436786ed42ee79e38c4de16256e063d905dd675a7ff52c612d +size 1342 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/48e2ba6078141ab94df186c299e6621d.png.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/48e2ba6078141ab94df186c299e6621d.png.meta new file mode 100644 index 00000000..402b060d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/48e2ba6078141ab94df186c299e6621d.png.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: cac77f3385185ce4995f50f5ed4c5394 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5099c2b4dce2d17b5ae03ca42085b5f5.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5099c2b4dce2d17b5ae03ca42085b5f5.jpg new file mode 100644 index 00000000..00a1ba93 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5099c2b4dce2d17b5ae03ca42085b5f5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0fc082a5c5081c59cf65f6669ca346676166676b2277ff136b8a9d9bbdbeed6 +size 34577 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5099c2b4dce2d17b5ae03ca42085b5f5.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5099c2b4dce2d17b5ae03ca42085b5f5.jpg.meta new file mode 100644 index 00000000..5ba38849 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5099c2b4dce2d17b5ae03ca42085b5f5.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: a637e151fc1a78244baf63a057af8519 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/546f0f9a41d63180330454fb10f63e0d.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/546f0f9a41d63180330454fb10f63e0d.jpg new file mode 100644 index 00000000..4a32d895 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/546f0f9a41d63180330454fb10f63e0d.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47e2ac6dbe1c30d92d619a53a803978acb34b9f2e976f282fdcf8cbd54935b17 +size 41932 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/546f0f9a41d63180330454fb10f63e0d.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/546f0f9a41d63180330454fb10f63e0d.jpg.meta new file mode 100644 index 00000000..8632e774 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/546f0f9a41d63180330454fb10f63e0d.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 122317f7a93611d43a915af7a2509a8b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5ce47790dc54774a712c266b6c33c2d6_tint0x779C39FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5ce47790dc54774a712c266b6c33c2d6_tint0x779C39FF.jpg new file mode 100644 index 00000000..885e4481 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5ce47790dc54774a712c266b6c33c2d6_tint0x779C39FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e35f4042de1801a682b4eadea1e62d0dd1c8faab863cadd76044f1a4491149b +size 12392 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5ce47790dc54774a712c266b6c33c2d6_tint0x779C39FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5ce47790dc54774a712c266b6c33c2d6_tint0x779C39FF.jpg.meta new file mode 100644 index 00000000..792c4d0d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5ce47790dc54774a712c266b6c33c2d6_tint0x779C39FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: c7942435d771f394e929244b8c72354c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5d224454fed36c671e204808bb8ae8f5.png b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5d224454fed36c671e204808bb8ae8f5.png new file mode 100644 index 00000000..1acad1b6 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5d224454fed36c671e204808bb8ae8f5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e65eec10246e39dfab75f1b5b671f7909503e82173d72e44d179348300d9a1 +size 2822112 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5d224454fed36c671e204808bb8ae8f5.png.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5d224454fed36c671e204808bb8ae8f5.png.meta new file mode 100644 index 00000000..921c6d10 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5d224454fed36c671e204808bb8ae8f5.png.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 66dde50edbde7854991d2991b036f95f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5f8ae9a2991b9c556538f713e1c8b8d4.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5f8ae9a2991b9c556538f713e1c8b8d4.jpg new file mode 100644 index 00000000..ec32293a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5f8ae9a2991b9c556538f713e1c8b8d4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:953f9e329dd40e648eab23f62eeabc70f7a608da4593987c984ebc6d51019836 +size 34425 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5f8ae9a2991b9c556538f713e1c8b8d4.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5f8ae9a2991b9c556538f713e1c8b8d4.jpg.meta new file mode 100644 index 00000000..fbd87ca0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5f8ae9a2991b9c556538f713e1c8b8d4.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 6b68d26f91c95ba4c8b0fc07b7481c6a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5fc9f8d5deae8b912550bd0321b08cf6.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5fc9f8d5deae8b912550bd0321b08cf6.jpg new file mode 100644 index 00000000..41e2545f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5fc9f8d5deae8b912550bd0321b08cf6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b7054c4ad3f6ac798299b3b866e76005a0a5db24f8738d3d46d30b8bb31e44 +size 60986 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5fc9f8d5deae8b912550bd0321b08cf6.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5fc9f8d5deae8b912550bd0321b08cf6.jpg.meta new file mode 100644 index 00000000..9ca5bf98 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/5fc9f8d5deae8b912550bd0321b08cf6.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: b1a24f22ffe0db344bdb338bb2e5acdb +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/64d25adb9e51fa759263f63f65eaa7ee.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/64d25adb9e51fa759263f63f65eaa7ee.jpg new file mode 100644 index 00000000..cb8ee216 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/64d25adb9e51fa759263f63f65eaa7ee.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd996501d69df2f2eebb69ae6cf937c4d63a937623e0374a2e1be5680eab2abc +size 15371 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/64d25adb9e51fa759263f63f65eaa7ee.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/64d25adb9e51fa759263f63f65eaa7ee.jpg.meta new file mode 100644 index 00000000..cbd91f07 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/64d25adb9e51fa759263f63f65eaa7ee.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 023549903801b974592bc39c2238af2a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/657cc513908fa9fe4a31aff99f552a73.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/657cc513908fa9fe4a31aff99f552a73.jpg new file mode 100644 index 00000000..98623301 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/657cc513908fa9fe4a31aff99f552a73.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2b66b89f14bc460a17a2fbdaddabf3576bf9b5ac78d247489ec9c66ab1dc7bb +size 23728 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/657cc513908fa9fe4a31aff99f552a73.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/657cc513908fa9fe4a31aff99f552a73.jpg.meta new file mode 100644 index 00000000..4400a137 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/657cc513908fa9fe4a31aff99f552a73.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 60c120d4b51014649bb77bcf27485a4b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/65a669438303df8c11f6f05493f81184.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/65a669438303df8c11f6f05493f81184.jpg new file mode 100644 index 00000000..087557fe --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/65a669438303df8c11f6f05493f81184.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7dc12c36d15e6b9fe95653482f8bf6a2598a3aaae69489bbee0400276333ce4 +size 112424 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/65a669438303df8c11f6f05493f81184.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/65a669438303df8c11f6f05493f81184.jpg.meta new file mode 100644 index 00000000..26645e0e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/65a669438303df8c11f6f05493f81184.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 514ec5807737b134d8c127f49aef5adb +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/6846bbc0f1619215da5ac24d85159295_tint0xBCD3D6FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/6846bbc0f1619215da5ac24d85159295_tint0xBCD3D6FF.jpg new file mode 100644 index 00000000..67f4d613 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/6846bbc0f1619215da5ac24d85159295_tint0xBCD3D6FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2724a370f3deeb03cd0b402472061299d89ecb029e37230668e8bcb418c91b7f +size 213861 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/6846bbc0f1619215da5ac24d85159295_tint0xBCD3D6FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/6846bbc0f1619215da5ac24d85159295_tint0xBCD3D6FF.jpg.meta new file mode 100644 index 00000000..b9f7e218 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/6846bbc0f1619215da5ac24d85159295_tint0xBCD3D6FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 9125ba382957cc34bb07d342cd92f4b5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/6846bbc0f1619215da5ac24d85159295_tint0xD6C2BCFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/6846bbc0f1619215da5ac24d85159295_tint0xD6C2BCFF.jpg new file mode 100644 index 00000000..27021a0e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/6846bbc0f1619215da5ac24d85159295_tint0xD6C2BCFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1e7aa66dc49dbeea7bebe098a74adb610fa2ff7bef1961b332920d7f44ad130 +size 221043 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/6846bbc0f1619215da5ac24d85159295_tint0xD6C2BCFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/6846bbc0f1619215da5ac24d85159295_tint0xD6C2BCFF.jpg.meta new file mode 100644 index 00000000..9fb7f656 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/6846bbc0f1619215da5ac24d85159295_tint0xD6C2BCFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: cdba1e0461ed7fe4dbad00d806b86e99 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/73a9ad63ce8824e881968a06ae35cbbb.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/73a9ad63ce8824e881968a06ae35cbbb.jpg new file mode 100644 index 00000000..9ecc27e5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/73a9ad63ce8824e881968a06ae35cbbb.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d206f1f65287c319b71a6b32d1a4cb37571bb9ad8357fa72a8cfda4593f1a0c3 +size 70857 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/73a9ad63ce8824e881968a06ae35cbbb.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/73a9ad63ce8824e881968a06ae35cbbb.jpg.meta new file mode 100644 index 00000000..093956d0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/73a9ad63ce8824e881968a06ae35cbbb.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 2a23c1bf4f6488d458238c99c16b14b3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/79e89909ffaae125c662f0ce87df5176.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/79e89909ffaae125c662f0ce87df5176.jpg new file mode 100644 index 00000000..67291b4d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/79e89909ffaae125c662f0ce87df5176.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02d06fb240471ebe185a1e7e416f5a68d615c19dbbf13c275b473a2c4c031e2f +size 23503 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/79e89909ffaae125c662f0ce87df5176.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/79e89909ffaae125c662f0ce87df5176.jpg.meta new file mode 100644 index 00000000..8b72f35d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/79e89909ffaae125c662f0ce87df5176.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: b18bda2755f89de4ab820de57baf1b58 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/7b0e2e1555a23dc07ca325711f448533.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/7b0e2e1555a23dc07ca325711f448533.jpg new file mode 100644 index 00000000..79b162d0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/7b0e2e1555a23dc07ca325711f448533.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5a7881d26bfe5645e8eb6141512656a320324c39ad9947753de609b6fee15cf +size 17291 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/7b0e2e1555a23dc07ca325711f448533.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/7b0e2e1555a23dc07ca325711f448533.jpg.meta new file mode 100644 index 00000000..a6ce4a6d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/7b0e2e1555a23dc07ca325711f448533.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 7a12d4f3640cfcc42bb09a406ffde7e4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/7c4983dbe5b43c9147e7bf09ccf9937c.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/7c4983dbe5b43c9147e7bf09ccf9937c.jpg new file mode 100644 index 00000000..4f75cd1f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/7c4983dbe5b43c9147e7bf09ccf9937c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70b9bbc59444a8c23af381bf0e351210914e3812ba390913dd06cb85016fec2a +size 26468 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/7c4983dbe5b43c9147e7bf09ccf9937c.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/7c4983dbe5b43c9147e7bf09ccf9937c.jpg.meta new file mode 100644 index 00000000..af329a4d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/7c4983dbe5b43c9147e7bf09ccf9937c.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 26cf5946bb28cb8488de46f40dc04fde +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/7df74dcba818888cfa8fe134c20cb8d4.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/7df74dcba818888cfa8fe134c20cb8d4.jpg new file mode 100644 index 00000000..102f15d6 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/7df74dcba818888cfa8fe134c20cb8d4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb4c5beffa10e36ff975d59e98cadf47723f74b812da1780d0cb1f133e59ad3d +size 33692 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/7df74dcba818888cfa8fe134c20cb8d4.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/7df74dcba818888cfa8fe134c20cb8d4.jpg.meta new file mode 100644 index 00000000..6990455e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/7df74dcba818888cfa8fe134c20cb8d4.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: daa25aa33e5a3e1479c3d05c73795441 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/800170d91fd6ae70c888aa87b72b8f69.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/800170d91fd6ae70c888aa87b72b8f69.jpg new file mode 100644 index 00000000..63cd9bee --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/800170d91fd6ae70c888aa87b72b8f69.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95ef4826c309e3ea7612aa5dc2f66ccc5b8a6db2acbff242a923585fafa0fecd +size 98931 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/800170d91fd6ae70c888aa87b72b8f69.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/800170d91fd6ae70c888aa87b72b8f69.jpg.meta new file mode 100644 index 00000000..109f2d99 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/800170d91fd6ae70c888aa87b72b8f69.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: aae7ae9fac0e2a54892070deabed721c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/8a4c9353c380edaa3125919213f11c09.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/8a4c9353c380edaa3125919213f11c09.jpg new file mode 100644 index 00000000..98792c3c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/8a4c9353c380edaa3125919213f11c09.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01628be8300b703f124bdbcfa4849de9f7276bf82fb08e319e3ae480929b4911 +size 24787 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/8a4c9353c380edaa3125919213f11c09.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/8a4c9353c380edaa3125919213f11c09.jpg.meta new file mode 100644 index 00000000..93b98511 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/8a4c9353c380edaa3125919213f11c09.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: a1389c0f8d8aa2f44980627b74275ca1 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/8edcc2c2f041f446629e3fe0c7c27283.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/8edcc2c2f041f446629e3fe0c7c27283.jpg new file mode 100644 index 00000000..0bc5ba3a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/8edcc2c2f041f446629e3fe0c7c27283.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b3fe464d9d76d4c735497f1edc7d5e947ab9445d4671477dae5a350fdf5605f +size 6898 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/8edcc2c2f041f446629e3fe0c7c27283.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/8edcc2c2f041f446629e3fe0c7c27283.jpg.meta new file mode 100644 index 00000000..398a241b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/8edcc2c2f041f446629e3fe0c7c27283.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 752a267bf323d1b4787299ad56be610b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/93bdfffafe1f86fb2261d401bff73a0c.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/93bdfffafe1f86fb2261d401bff73a0c.jpg new file mode 100644 index 00000000..275d6830 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/93bdfffafe1f86fb2261d401bff73a0c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f21598df1e00df782763e02ac9cc23e1154161cf31d6bcd3019b601dbd5f597 +size 24821 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/93bdfffafe1f86fb2261d401bff73a0c.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/93bdfffafe1f86fb2261d401bff73a0c.jpg.meta new file mode 100644 index 00000000..5a3099de --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/93bdfffafe1f86fb2261d401bff73a0c.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: d734e8983ba2bf14a847cbc30b290332 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/95d619e84976f5cf57dbca6c4bfee003.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/95d619e84976f5cf57dbca6c4bfee003.jpg new file mode 100644 index 00000000..24da8fbc --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/95d619e84976f5cf57dbca6c4bfee003.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca46cd4a01cc4b758aa6b60597693bfb28cbdf92c4a9f60ecfad931eb76f6924 +size 67967 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/95d619e84976f5cf57dbca6c4bfee003.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/95d619e84976f5cf57dbca6c4bfee003.jpg.meta new file mode 100644 index 00000000..ce968288 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/95d619e84976f5cf57dbca6c4bfee003.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 48108ccaeb6658942a621e7f1b9e8a4a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/972984a150a206187b676524678a746a.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/972984a150a206187b676524678a746a.jpg new file mode 100644 index 00000000..3e0fa10f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/972984a150a206187b676524678a746a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfb4a12952f60432fb952ac69b64df46f687676645bce66f6052462efe6829c1 +size 27455 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/972984a150a206187b676524678a746a.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/972984a150a206187b676524678a746a.jpg.meta new file mode 100644 index 00000000..a343ea89 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/972984a150a206187b676524678a746a.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 582b83cb985ede44e8db661c0fe79251 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/98977987_tint0x626773FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/98977987_tint0x626773FF.jpg new file mode 100644 index 00000000..03068834 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/98977987_tint0x626773FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af749629f2f4e1560f76902cc8757850a311f7d42f76334007a8489563f7c447 +size 62783 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/98977987_tint0x626773FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/98977987_tint0x626773FF.jpg.meta new file mode 100644 index 00000000..a779941a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/98977987_tint0x626773FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 1b9149e59711d5c4ba9f197bdc61c44c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/98977987_tint0xE7E6E3FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/98977987_tint0xE7E6E3FF.jpg new file mode 100644 index 00000000..022302b0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/98977987_tint0xE7E6E3FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1439e45b44934ca69cef870396b576bc7026d67506650cc650fc1f8b29ff1706 +size 62455 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/98977987_tint0xE7E6E3FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/98977987_tint0xE7E6E3FF.jpg.meta new file mode 100644 index 00000000..3db6ebd6 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/98977987_tint0xE7E6E3FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 2d0df06e68daf5248825d05645a131aa +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x655A51FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x655A51FF.jpg new file mode 100644 index 00000000..477a8b03 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x655A51FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cf7e3956da7f2b983a1ce48d9fa8dc5481af47aa5fad50654441788ed51e49c +size 18595 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x655A51FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x655A51FF.jpg.meta new file mode 100644 index 00000000..316b6108 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x655A51FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 0ecc1e5364824a84aa8aa0d8a6166764 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x776454FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x776454FF.jpg new file mode 100644 index 00000000..49801b6e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x776454FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d07bc388c41bc81651dbae52e5dce07a7f43cdaa2734a56b2059014045159ac +size 18755 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x776454FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x776454FF.jpg.meta new file mode 100644 index 00000000..17f641e4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x776454FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: fe0baf6f05652c6468d3ee00c9a22ed0 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x8C8381FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x8C8381FF.jpg new file mode 100644 index 00000000..70dc4fb5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x8C8381FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02b1a43a1d2c56ccd05ddc596e7a9b10158065b5dcc4848a8bca442c927ab210 +size 19425 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x8C8381FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x8C8381FF.jpg.meta new file mode 100644 index 00000000..2cefbeaa --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x8C8381FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: b14905d006e825448a21a87220afea99 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x957D7CFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x957D7CFF.jpg new file mode 100644 index 00000000..5164d32c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x957D7CFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdfef85f79e7c3476672267392686a32d285772061e5179552b818534c52953b +size 19802 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x957D7CFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x957D7CFF.jpg.meta new file mode 100644 index 00000000..337aaf6d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0x957D7CFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 08eee0f861e24f04db9b9ac6e0f7ef9e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0xB2A9A1FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0xB2A9A1FF.jpg new file mode 100644 index 00000000..cc79e2cb --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0xB2A9A1FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dc7aa5ecbc62ab2bce5c7cf1a4588882e7b8558e9db9e12c6fc008b9c4180df +size 18924 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0xB2A9A1FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0xB2A9A1FF.jpg.meta new file mode 100644 index 00000000..5c15d48f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0xB2A9A1FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: af31e3faab34b5c4db65ba7f9b8a5e43 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0xC1C1C1FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0xC1C1C1FF.jpg new file mode 100644 index 00000000..7719e922 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0xC1C1C1FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29c31bb578dbb55f292339d6226afe2f62447d6455ae42f3fc36f92defc2257f +size 17112 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0xC1C1C1FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0xC1C1C1FF.jpg.meta new file mode 100644 index 00000000..b53af18c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0xC1C1C1FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 02ef2878843c6da46942e036343eec5f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0xCECBC9FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0xCECBC9FF.jpg new file mode 100644 index 00000000..6354ca2d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0xCECBC9FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa23abdc4ce2191aa7d4a59bb6811bacd0e0dfdf751d05195ad752ca72bd2c75 +size 18160 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0xCECBC9FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0xCECBC9FF.jpg.meta new file mode 100644 index 00000000..91f262e6 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Antique_tint0xCECBC9FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 2fa6f2d178c78124b96913441b14853f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Rough_Dark_tint0x947C79FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Rough_Dark_tint0x947C79FF.jpg new file mode 100644 index 00000000..42fdf5f4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Rough_Dark_tint0x947C79FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5fa1ca168f6232f4800887bf639125c7289e24a7355e3e42fb9aa9050511483 +size 6670 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Rough_Dark_tint0x947C79FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Rough_Dark_tint0x947C79FF.jpg.meta new file mode 100644 index 00000000..beb44f09 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Brick_Rough_Dark_tint0x947C79FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 45ac4018aa8fde241b2d53aea3ff2350 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Cladding_Stucco_White.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Cladding_Stucco_White.jpg new file mode 100644 index 00000000..f4f5aafe --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Cladding_Stucco_White.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb0a63bef633428d20e1f247ced5691ea52fad347bb9c25d1ccb86ff81ae1589 +size 15888 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Cladding_Stucco_White.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Cladding_Stucco_White.jpg.meta new file mode 100644 index 00000000..31b20118 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Cladding_Stucco_White.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: d24797941b58e9b4f9bf8724f62bac4a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Concrete_Block_8x8_Gray.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Concrete_Block_8x8_Gray.jpg new file mode 100644 index 00000000..0bc5ba3a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Concrete_Block_8x8_Gray.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b3fe464d9d76d4c735497f1edc7d5e947ab9445d4671477dae5a350fdf5605f +size 6898 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Concrete_Block_8x8_Gray.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Concrete_Block_8x8_Gray.jpg.meta new file mode 100644 index 00000000..6598fd4d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Concrete_Block_8x8_Gray.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 01df62548e82e964e9a74cf55c4e7d63 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0x989FA7FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0x989FA7FF.jpg new file mode 100644 index 00000000..b7d1ed79 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0x989FA7FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdea08016dcbdc6f1101ecac1d93008d9ce695c99326e66c3fec6a483babc7f5 +size 1644 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0x989FA7FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0x989FA7FF.jpg.meta new file mode 100644 index 00000000..7facb845 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0x989FA7FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 4c589c469a6ae5f419c092116a756b92 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xA0A0A0FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xA0A0A0FF.jpg new file mode 100644 index 00000000..99279e82 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xA0A0A0FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d10f768662c380963ceae4f7208a621ac695e9000deae125d5fbcecf0ecbbabe +size 1594 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xA0A0A0FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xA0A0A0FF.jpg.meta new file mode 100644 index 00000000..2a2401f4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xA0A0A0FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 8a7f2209cb1c767469eed7765287264e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xC3CDD4FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xC3CDD4FF.jpg new file mode 100644 index 00000000..3bd8b229 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xC3CDD4FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99d3a1e492bec515eb0909c083b9d46c14adb5b18f4f90bcbd1bbae8149886e7 +size 1693 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xC3CDD4FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xC3CDD4FF.jpg.meta new file mode 100644 index 00000000..2f4ef9a8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xC3CDD4FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 5d52ac0578484c246b545b3e65845f4f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xCECECEFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xCECECEFF.jpg new file mode 100644 index 00000000..6b63c537 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xCECECEFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8609dfd358832888646c61c6df0c76f127ed079d74f40a9315ff6afb6ccb91ae +size 36319 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xCECECEFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xCECECEFF.jpg.meta new file mode 100644 index 00000000..6ff0141e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xCECECEFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 183a04209cf89654c861a3676c8030c2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xDBDBDBFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xDBDBDBFF.jpg new file mode 100644 index 00000000..c0eb2a23 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xDBDBDBFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:572155b1e1b64e41f57054bf6067e287fdea3085e2da4c01723ac90a1bef0c25 +size 1566 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xDBDBDBFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xDBDBDBFF.jpg.meta new file mode 100644 index 00000000..b7a33bc6 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/CorrogateShiny_tint0xDBDBDBFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 1dc0859fb14ab4145a109852e00aadc9 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Fencing_Weathered_tint0x756B65FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Fencing_Weathered_tint0x756B65FF.jpg new file mode 100644 index 00000000..0e2064a1 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Fencing_Weathered_tint0x756B65FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7841ec6e483a7098edeff987bfb0a1c290a2dc3f3549157d889988920d98f691 +size 16520 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Fencing_Weathered_tint0x756B65FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Fencing_Weathered_tint0x756B65FF.jpg.meta new file mode 100644 index 00000000..727636dc --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Fencing_Weathered_tint0x756B65FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 17e45bade01ad2e4d9aa8f5623a7c2d8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal Silver.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal Silver.jpg new file mode 100644 index 00000000..4557f991 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal Silver.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7cde7bca724c7262362510aa522cfe5e19cba869028e8183672cd37931827a +size 15574 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal Silver.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal Silver.jpg.meta new file mode 100644 index 00000000..97f8d7f0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal Silver.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 718d9864e2767e548a87750901ea3f82 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal_Corrogated_Shiny_tint0xCECECEFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal_Corrogated_Shiny_tint0xCECECEFF.jpg new file mode 100644 index 00000000..3eafa42a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal_Corrogated_Shiny_tint0xCECECEFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11185068dddd550940dc77d349ea2cf3a88f4bb87e56a15cb7f0242a7cb4d7b2 +size 1596 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal_Corrogated_Shiny_tint0xCECECEFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal_Corrogated_Shiny_tint0xCECECEFF.jpg.meta new file mode 100644 index 00000000..6d6d7f39 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal_Corrogated_Shiny_tint0xCECECEFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 3fcab8767e718b443aa5422869e6e479 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal_Corrogated_Shiny_tint0xE8E8E8FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal_Corrogated_Shiny_tint0xE8E8E8FF.jpg new file mode 100644 index 00000000..b85d6cc9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal_Corrogated_Shiny_tint0xE8E8E8FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74e6fa85d61c73beb3fd8e25e258f9c37442c0da64332f1accdbb4ca2913b20c +size 1483 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal_Corrogated_Shiny_tint0xE8E8E8FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal_Corrogated_Shiny_tint0xE8E8E8FF.jpg.meta new file mode 100644 index 00000000..d1e564a2 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal_Corrogated_Shiny_tint0xE8E8E8FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: f4e97d7804acd6b4f8f09005ae657bb5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal_Corrogated_Shiny_tint0xEAEAEAFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal_Corrogated_Shiny_tint0xEAEAEAFF.jpg new file mode 100644 index 00000000..c9c98c44 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal_Corrogated_Shiny_tint0xEAEAEAFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de336374580644a538f0cac6a9e7dbd4448ca54b5dbb124d3761cd5bdf5008d5 +size 1473 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal_Corrogated_Shiny_tint0xEAEAEAFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal_Corrogated_Shiny_tint0xEAEAEAFF.jpg.meta new file mode 100644 index 00000000..97e17096 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Metal_Corrogated_Shiny_tint0xEAEAEAFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 9feb0bd0e213e204994cd5764263ac40 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Mirror_01_tint0x84B8DBC9.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Mirror_01_tint0x84B8DBC9.jpg new file mode 100644 index 00000000..f28b11d2 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Mirror_01_tint0x84B8DBC9.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9710792bf3edf3d13611cdea41059e7a3cc7d82a364d34076e2668219a48ed3 +size 13519 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Mirror_01_tint0x84B8DBC9.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Mirror_01_tint0x84B8DBC9.jpg.meta new file mode 100644 index 00000000..527ce918 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Mirror_01_tint0x84B8DBC9.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 4646f3c50c610c64aba863ac31325a0b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Polished Concrete Old(1)_tint0xE9E8E1FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Polished Concrete Old(1)_tint0xE9E8E1FF.jpg new file mode 100644 index 00000000..1d099906 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Polished Concrete Old(1)_tint0xE9E8E1FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b988de965581db86c0ac05525a1899908be5e4736f921f987858c829d040454 +size 41412 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Polished Concrete Old(1)_tint0xE9E8E1FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Polished Concrete Old(1)_tint0xE9E8E1FF.jpg.meta new file mode 100644 index 00000000..cbae4967 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Polished Concrete Old(1)_tint0xE9E8E1FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: ff2a1f6fcd1ac9642a5f5169000439e6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Roofing Scalloped_tint0x404349FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Roofing Scalloped_tint0x404349FF.jpg new file mode 100644 index 00000000..170b8038 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Roofing Scalloped_tint0x404349FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b4b5bd9f70a37441689da08a530177d4029275f3ceef6a6b8e185dc11bfbb2a +size 106103 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Roofing Scalloped_tint0x404349FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Roofing Scalloped_tint0x404349FF.jpg.meta new file mode 100644 index 00000000..aa013e66 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Roofing Scalloped_tint0x404349FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: f52b991f05eec9147a7c377839ca7ef1 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Roofing_Shingles_GAF_Estates_tint0x716968FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Roofing_Shingles_GAF_Estates_tint0x716968FF.jpg new file mode 100644 index 00000000..df370c35 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Roofing_Shingles_GAF_Estates_tint0x716968FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2b4c73b181d667c243d2c4c77b44ca71e2d6c250b9884d3e4b350f17998620e +size 4143 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Roofing_Shingles_GAF_Estates_tint0x716968FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Roofing_Shingles_GAF_Estates_tint0x716968FF.jpg.meta new file mode 100644 index 00000000..efdbfd8f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Roofing_Shingles_GAF_Estates_tint0x716968FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 30b5840a1484c50409aa8aed77a3116a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Roofing_Tile_Spanish_tint0x603E33FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Roofing_Tile_Spanish_tint0x603E33FF.jpg new file mode 100644 index 00000000..d01d4012 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Roofing_Tile_Spanish_tint0x603E33FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84b1403de6e3b76b71d5c7d1edd0ddfb572d73fcd8272dfaab79b4fb8b42ce82 +size 57638 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Roofing_Tile_Spanish_tint0x603E33FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Roofing_Tile_Spanish_tint0x603E33FF.jpg.meta new file mode 100644 index 00000000..f58a074f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Roofing_Tile_Spanish_tint0x603E33FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 461a87ace6d311f41a04c29a95d06342 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Rough Square Concrete Block_tint0xF0EFEFFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Rough Square Concrete Block_tint0xF0EFEFFF.jpg new file mode 100644 index 00000000..3516bae5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Rough Square Concrete Block_tint0xF0EFEFFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0ef62fc957090908e0c7aeb7d039363b23a0e4075b92eefe5706932a337644d +size 70800 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Rough Square Concrete Block_tint0xF0EFEFFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Rough Square Concrete Block_tint0xF0EFEFFF.jpg.meta new file mode 100644 index 00000000..314b7bce --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Rough Square Concrete Block_tint0xF0EFEFFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 1ead2fc79a7cacd40a1f7204ec8a27e5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile Limestone Large_tint0xBDACA2FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile Limestone Large_tint0xBDACA2FF.jpg new file mode 100644 index 00000000..13d88e1f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile Limestone Large_tint0xBDACA2FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da97f945e61c496af097e86a52aec9e5df5fe5ce960d1f1fe2298300fcf12990 +size 25491 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile Limestone Large_tint0xBDACA2FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile Limestone Large_tint0xBDACA2FF.jpg.meta new file mode 100644 index 00000000..5641a37f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile Limestone Large_tint0xBDACA2FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 0aa65130fd3df5a4989a6b972af068f8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile Limestone Large_tint0xEDE7E7FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile Limestone Large_tint0xEDE7E7FF.jpg new file mode 100644 index 00000000..8ae76df4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile Limestone Large_tint0xEDE7E7FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9890f735a7a88ff272e76220838b0b178962185175e87e4d87653f945e97355 +size 18871 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile Limestone Large_tint0xEDE7E7FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile Limestone Large_tint0xEDE7E7FF.jpg.meta new file mode 100644 index 00000000..ed48057b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile Limestone Large_tint0xEDE7E7FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 460b9c1eebe199d4a8642ade601819dd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile Limestone Large_tint0xF0F0F0FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile Limestone Large_tint0xF0F0F0FF.jpg new file mode 100644 index 00000000..0d1b91cc --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile Limestone Large_tint0xF0F0F0FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77fb2886d7c4a96b6e2f2e53d3a234525dc5af9cfa22a68724602bd286ba290c +size 19077 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile Limestone Large_tint0xF0F0F0FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile Limestone Large_tint0xF0F0F0FF.jpg.meta new file mode 100644 index 00000000..7246f935 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile Limestone Large_tint0xF0F0F0FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: a066ff850ba71444cba4fa5b958c0e62 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile_Ceramic_Natural_tint0xD3D3D3FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile_Ceramic_Natural_tint0xD3D3D3FF.jpg new file mode 100644 index 00000000..ceb8019c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile_Ceramic_Natural_tint0xD3D3D3FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f4a9d98acd94542a79014309fe8ec93bd19a74f80776e7393ef2a98f54de23e +size 5540 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile_Ceramic_Natural_tint0xD3D3D3FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile_Ceramic_Natural_tint0xD3D3D3FF.jpg.meta new file mode 100644 index 00000000..fd7cf9df --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Tile_Ceramic_Natural_tint0xD3D3D3FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 81fe31de65a3fdd4a80d58598bcf5c3b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-1.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-1.jpg new file mode 100644 index 00000000..c9b8508b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff59a834a061f03f236cc50e7ec6131a449adee4d0aec7b8c446327bf9135250 +size 323657 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-1.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-1.jpg.meta new file mode 100644 index 00000000..2e888b68 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-1.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 787ba7e9654110940b723639a1e210b4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-2_tint0xB8A79DFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-2_tint0xB8A79DFF.jpg new file mode 100644 index 00000000..e74eb4b8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-2_tint0xB8A79DFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e05e6d8579ea9c739781556277729dfbd090748727272afbfd7d8005c2ebd11 +size 269082 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-2_tint0xB8A79DFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-2_tint0xB8A79DFF.jpg.meta new file mode 100644 index 00000000..a137580c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-2_tint0xB8A79DFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 795ecbd772390a54591badfbae5ced93 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-2_tint0xD8D0C9FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-2_tint0xD8D0C9FF.jpg new file mode 100644 index 00000000..2c5c7eba --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-2_tint0xD8D0C9FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f62db79d76aa1503371a5965fc3f35bcb9840b8ff432287a98bb5cbd42f94e41 +size 263489 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-2_tint0xD8D0C9FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-2_tint0xD8D0C9FF.jpg.meta new file mode 100644 index 00000000..803c36f9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-2_tint0xD8D0C9FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: e32b3c024bf20a7428ac88548a78cbd6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xA7A5A3FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xA7A5A3FF.jpg new file mode 100644 index 00000000..ddfa8046 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xA7A5A3FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0b4b501ec96f467c18acad849aa9a51ff922c03d252cc387625c3ac25ae8203 +size 22429 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xA7A5A3FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xA7A5A3FF.jpg.meta new file mode 100644 index 00000000..47c99996 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xA7A5A3FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 488f627fc1207414abf3beffa01a6c99 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xAEB7BBFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xAEB7BBFF.jpg new file mode 100644 index 00000000..4c9d8cd0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xAEB7BBFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94360b518f8188e92d07fb8fd1ea9f6a976cfb9141d36bf74791d143443f8b8e +size 22401 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xAEB7BBFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xAEB7BBFF.jpg.meta new file mode 100644 index 00000000..c8f1dbff --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xAEB7BBFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: d18cd61fbacd5a445a6559aff25e0bc1 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xD0CDCCFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xD0CDCCFF.jpg new file mode 100644 index 00000000..3feedf81 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xD0CDCCFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66602b6de577ae33da0f4bbf060f2c03344ea90d5bb137f084e8e36449fd0d84 +size 22402 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xD0CDCCFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xD0CDCCFF.jpg.meta new file mode 100644 index 00000000..bfab7601 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xD0CDCCFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 8011233cfff5c6e419de0b70f5aa0071 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xD5D9DCFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xD5D9DCFF.jpg new file mode 100644 index 00000000..550effd7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xD5D9DCFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:465e8dda19e9a777f89bd2c4ea7d5139a125332e8e4ad6736ca78388b02881a1 +size 22489 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xD5D9DCFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xD5D9DCFF.jpg.meta new file mode 100644 index 00000000..a26ecaaf --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/Untitled-4_tint0xD5D9DCFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 2c58170ad3aafda4588218e55615d6b6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a2fbc7982d5c8cff38cf130a727dc0fd.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a2fbc7982d5c8cff38cf130a727dc0fd.jpg new file mode 100644 index 00000000..533c92e7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a2fbc7982d5c8cff38cf130a727dc0fd.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e978395e5c39a1fbb970a5f7b0e8bd1098f9b3388b75778ef9379a47370c9334 +size 15756 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a2fbc7982d5c8cff38cf130a727dc0fd.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a2fbc7982d5c8cff38cf130a727dc0fd.jpg.meta new file mode 100644 index 00000000..f1d2532d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a2fbc7982d5c8cff38cf130a727dc0fd.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: a1ad9af37d29b3346a1c888007fe02a0 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a42d7ddbf66534b7cf0f15670666d181.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a42d7ddbf66534b7cf0f15670666d181.jpg new file mode 100644 index 00000000..99279e82 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a42d7ddbf66534b7cf0f15670666d181.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d10f768662c380963ceae4f7208a621ac695e9000deae125d5fbcecf0ecbbabe +size 1594 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a42d7ddbf66534b7cf0f15670666d181.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a42d7ddbf66534b7cf0f15670666d181.jpg.meta new file mode 100644 index 00000000..5ed2b561 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a42d7ddbf66534b7cf0f15670666d181.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: a3bbbb37c4b31684e896f47138ba6aca +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a47c4bc8ec21b4862e6667cc9c04a709.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a47c4bc8ec21b4862e6667cc9c04a709.jpg new file mode 100644 index 00000000..8c4b4386 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a47c4bc8ec21b4862e6667cc9c04a709.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b77dabbcc6a85b597a9aa6c59ae6a9bcef108a1ad97cd5b8dd54b4df02734c6 +size 20196 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a47c4bc8ec21b4862e6667cc9c04a709.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a47c4bc8ec21b4862e6667cc9c04a709.jpg.meta new file mode 100644 index 00000000..fb053acf --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a47c4bc8ec21b4862e6667cc9c04a709.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 2a58cd93cce711a419b3c24740f0282a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a584793c0abd82895e652b4cf2516cf7.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a584793c0abd82895e652b4cf2516cf7.jpg new file mode 100644 index 00000000..0a2feb39 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a584793c0abd82895e652b4cf2516cf7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3926e696bc20f9fa688aaa2f6c0dd5320a86a591080bc741b8148131f2247690 +size 81191 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a584793c0abd82895e652b4cf2516cf7.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a584793c0abd82895e652b4cf2516cf7.jpg.meta new file mode 100644 index 00000000..2926e14d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a584793c0abd82895e652b4cf2516cf7.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: e1a0db01a073c954986dfb97857ac2d2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a6258b854a796365a332ca3f2abc0867.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a6258b854a796365a332ca3f2abc0867.jpg new file mode 100644 index 00000000..38fc475d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a6258b854a796365a332ca3f2abc0867.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:822a5218b51c05613c8ec40ae56f1fa9c3cfca2564277d9b478ad95f5ac4cb7f +size 43098 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a6258b854a796365a332ca3f2abc0867.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a6258b854a796365a332ca3f2abc0867.jpg.meta new file mode 100644 index 00000000..86db47f3 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/a6258b854a796365a332ca3f2abc0867.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: e4727c66222cc794db155497b133f9f6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/aa.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/aa.jpg new file mode 100644 index 00000000..ed4114c9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/aa.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12d8c895d7d34749dd9729f87496b322469c308959c5f56a6c2b037feee67711 +size 142332 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/aa.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/aa.jpg.meta new file mode 100644 index 00000000..865bb052 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/aa.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 0655ed354067c0a468d6566cc0ba263a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/aa_tint0x709045FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/aa_tint0x709045FF.jpg new file mode 100644 index 00000000..59229dc4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/aa_tint0x709045FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c6001969313b0a54c849ddab760805c32a7499f3d69b026dc3b6e79b742708f +size 18236 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/aa_tint0x709045FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/aa_tint0x709045FF.jpg.meta new file mode 100644 index 00000000..c1e18c19 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/aa_tint0x709045FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 8cba01dc5e5174f4eb1654000486bd08 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/b59a1a54a4ec36a375c16fb6f94e006e.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/b59a1a54a4ec36a375c16fb6f94e006e.jpg new file mode 100644 index 00000000..fde9fb38 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/b59a1a54a4ec36a375c16fb6f94e006e.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0461215d35d5b93fc17b1af294b8be253670d76a6766f25f0449fe0fa1da708c +size 16896 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/b59a1a54a4ec36a375c16fb6f94e006e.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/b59a1a54a4ec36a375c16fb6f94e006e.jpg.meta new file mode 100644 index 00000000..1555d937 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/b59a1a54a4ec36a375c16fb6f94e006e.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: d36313a440cd796448b2d62444f398c3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c118419eefb041b569fa9b23e06badf6.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c118419eefb041b569fa9b23e06badf6.jpg new file mode 100644 index 00000000..71c94ad3 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c118419eefb041b569fa9b23e06badf6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a127aee3d0397c60395069697dfc895c2b3a0fe78d647cf68bdde2051b42885 +size 35556 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c118419eefb041b569fa9b23e06badf6.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c118419eefb041b569fa9b23e06badf6.jpg.meta new file mode 100644 index 00000000..420ad1f4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c118419eefb041b569fa9b23e06badf6.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 0eb231df0fd1bb2438d9a0b931e9c50c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c32d0325517813db053f54fb6e952b1c.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c32d0325517813db053f54fb6e952b1c.jpg new file mode 100644 index 00000000..5a9c26f7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c32d0325517813db053f54fb6e952b1c.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba42efb74f357352a3623419f14231d14e3870a352bb0cca4399ffb512a80f0d +size 14760 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c32d0325517813db053f54fb6e952b1c.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c32d0325517813db053f54fb6e952b1c.jpg.meta new file mode 100644 index 00000000..246ebb7f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c32d0325517813db053f54fb6e952b1c.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 9ef8bcb30a0a4d3499ad44b7f5cf02bd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c61e32ff3d43fdd664f0f05218675a05.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c61e32ff3d43fdd664f0f05218675a05.jpg new file mode 100644 index 00000000..40e6e408 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c61e32ff3d43fdd664f0f05218675a05.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89c4347d513f9dafffe83c4dcbf681b356fd6cc8c67fdaf069ef4aee7ad6e0d6 +size 23763 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c61e32ff3d43fdd664f0f05218675a05.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c61e32ff3d43fdd664f0f05218675a05.jpg.meta new file mode 100644 index 00000000..ef117dac --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c61e32ff3d43fdd664f0f05218675a05.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: b5a616eadd5637f4d83f3ef6ebf1f041 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c8b96df20863fe794ce777242c584a23.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c8b96df20863fe794ce777242c584a23.jpg new file mode 100644 index 00000000..59643b3a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c8b96df20863fe794ce777242c584a23.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f30685ad12e964baab839d48f897a288024f0d7c33a82ccc786d2ce198133ca1 +size 3816 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c8b96df20863fe794ce777242c584a23.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c8b96df20863fe794ce777242c584a23.jpg.meta new file mode 100644 index 00000000..6c27acd5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c8b96df20863fe794ce777242c584a23.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 48202eec9c2c8c048a03da65b80042ce +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c914af6dc0db884084a0504254174913.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c914af6dc0db884084a0504254174913.jpg new file mode 100644 index 00000000..fa0db574 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c914af6dc0db884084a0504254174913.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43013ddf0da640ef27c0d6ec3540b78de36db90ea3c96af8efdb5c79c33f9b1f +size 5825 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c914af6dc0db884084a0504254174913.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c914af6dc0db884084a0504254174913.jpg.meta new file mode 100644 index 00000000..b060cda0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/c914af6dc0db884084a0504254174913.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: fbd87c922444d8245b7f44ee2765fa8b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/cc037c27da50910cf85be471779d6070.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/cc037c27da50910cf85be471779d6070.jpg new file mode 100644 index 00000000..3782a4f7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/cc037c27da50910cf85be471779d6070.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e5208b3ec9c0cb26bd96267d746d8ee3ec0297b48481499c491b8ee145a45f4 +size 1231806 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/cc037c27da50910cf85be471779d6070.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/cc037c27da50910cf85be471779d6070.jpg.meta new file mode 100644 index 00000000..79350761 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/cc037c27da50910cf85be471779d6070.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 94d20566d74d1dd47bb1f80ba231d3f8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d1cd0c47c719d3ee864532fa38f23ce2.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d1cd0c47c719d3ee864532fa38f23ce2.jpg new file mode 100644 index 00000000..aa324e10 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d1cd0c47c719d3ee864532fa38f23ce2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7449899dc6848aa25c26725fd6832277cc9e6289ccee59e74b5d92731a1106 +size 5557 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d1cd0c47c719d3ee864532fa38f23ce2.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d1cd0c47c719d3ee864532fa38f23ce2.jpg.meta new file mode 100644 index 00000000..30a1f924 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d1cd0c47c719d3ee864532fa38f23ce2.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 4a535c43a61ef094dba78b0bf0c92c1a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d517d94ff5864735c1abd843d12a5058.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d517d94ff5864735c1abd843d12a5058.jpg new file mode 100644 index 00000000..8efe5170 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d517d94ff5864735c1abd843d12a5058.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f7838c1171a6439c7b7b35a332a6d1ade61670862ed02dc86ea7b73492bd42 +size 37033 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d517d94ff5864735c1abd843d12a5058.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d517d94ff5864735c1abd843d12a5058.jpg.meta new file mode 100644 index 00000000..404c2e77 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d517d94ff5864735c1abd843d12a5058.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 68e58eb003da88c43a165e75b3a12761 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d6e8837e805b28c8fae757779abc6326.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d6e8837e805b28c8fae757779abc6326.jpg new file mode 100644 index 00000000..4c119f18 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d6e8837e805b28c8fae757779abc6326.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81f3b0880814ac4ab37b43b3f4fc6f18d7438cec7b103d8d95c85709ebd3a315 +size 53951 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d6e8837e805b28c8fae757779abc6326.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d6e8837e805b28c8fae757779abc6326.jpg.meta new file mode 100644 index 00000000..84121055 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d6e8837e805b28c8fae757779abc6326.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: de434b35a0a472d42872ba147c089e3b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d7c2be91662c34d5c4ca1496449dd9a4.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d7c2be91662c34d5c4ca1496449dd9a4.jpg new file mode 100644 index 00000000..b09976d1 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d7c2be91662c34d5c4ca1496449dd9a4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:938aa4360d8555136cd3f533d18719cdd1a8c38ad277b4d4871ebc471a901543 +size 58828 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d7c2be91662c34d5c4ca1496449dd9a4.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d7c2be91662c34d5c4ca1496449dd9a4.jpg.meta new file mode 100644 index 00000000..517f2cd0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d7c2be91662c34d5c4ca1496449dd9a4.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 49c369211bb719a4cad6dd5aa900ac15 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d81db103b1fe88956fc6d92fb9b3a961.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d81db103b1fe88956fc6d92fb9b3a961.jpg new file mode 100644 index 00000000..738dce19 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d81db103b1fe88956fc6d92fb9b3a961.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e351aee9e2e9aa329b5049ecfb3762c93d7a79ffb4dbe27a92949e8962eabef +size 42081 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d81db103b1fe88956fc6d92fb9b3a961.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d81db103b1fe88956fc6d92fb9b3a961.jpg.meta new file mode 100644 index 00000000..db4fa32a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/d81db103b1fe88956fc6d92fb9b3a961.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 746314b13ca46e8468892b45213b0a44 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/e252bfbe3a8b0cf37c4ffc326a2112c8.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/e252bfbe3a8b0cf37c4ffc326a2112c8.jpg new file mode 100644 index 00000000..c27ddc34 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/e252bfbe3a8b0cf37c4ffc326a2112c8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09670a270b37bc60ff45aa48b083ff2a6b84573f04643de8f18a8b9be9204a62 +size 39133 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/e252bfbe3a8b0cf37c4ffc326a2112c8.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/e252bfbe3a8b0cf37c4ffc326a2112c8.jpg.meta new file mode 100644 index 00000000..2d96a9c9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/e252bfbe3a8b0cf37c4ffc326a2112c8.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 5e674f5fe018c4948bf47ce4e40af4ea +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/e4339ec095d987872c902936d27a3e98.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/e4339ec095d987872c902936d27a3e98.jpg new file mode 100644 index 00000000..0a0c7ba8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/e4339ec095d987872c902936d27a3e98.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7302b128f3b31515bb2d5a4b26a08acb76e2d6173c1583d5f187ef7d8cbfef1a +size 15668 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/e4339ec095d987872c902936d27a3e98.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/e4339ec095d987872c902936d27a3e98.jpg.meta new file mode 100644 index 00000000..a852eb89 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/e4339ec095d987872c902936d27a3e98.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 1cfdf0fa017a90a418a39f8c1184cb0e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/e84c76b3b1078b35a01c9886e0999e9a.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/e84c76b3b1078b35a01c9886e0999e9a.jpg new file mode 100644 index 00000000..39c5c550 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/e84c76b3b1078b35a01c9886e0999e9a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea2473bfc38d414f5c14dee00125c8d3f78ad1f3b6fa2bd7e178536f3f1cab67 +size 21412 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/e84c76b3b1078b35a01c9886e0999e9a.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/e84c76b3b1078b35a01c9886e0999e9a.jpg.meta new file mode 100644 index 00000000..dc75fe56 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/e84c76b3b1078b35a01c9886e0999e9a.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 86f7838fccfffd54a93d11be7a7da562 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/f222751465d40967a07d7f1a6f744d5a.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/f222751465d40967a07d7f1a6f744d5a.jpg new file mode 100644 index 00000000..92d5e314 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/f222751465d40967a07d7f1a6f744d5a.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd069b62689298041dfd727b3d4043aad305dc5d2c5bbafdd76b2c37fa94e884 +size 93065 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/f222751465d40967a07d7f1a6f744d5a.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/f222751465d40967a07d7f1a6f744d5a.jpg.meta new file mode 100644 index 00000000..69251db7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/f222751465d40967a07d7f1a6f744d5a.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 545e0946497d3074f90b98e7ed29a0ab +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/f6db4f3d223b435f665c75f09224d2b6.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/f6db4f3d223b435f665c75f09224d2b6.jpg new file mode 100644 index 00000000..acc102ac --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/f6db4f3d223b435f665c75f09224d2b6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9334d76e18c0fdd62e492693b69ff127cddfb0291038717f88700338e14cdbe +size 1806 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/f6db4f3d223b435f665c75f09224d2b6.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/f6db4f3d223b435f665c75f09224d2b6.jpg.meta new file mode 100644 index 00000000..25e298af --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/f6db4f3d223b435f665c75f09224d2b6.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 8f47c773dda5a1b49a1b763845f20905 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/가로수보호판2.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/가로수보호판2.jpg new file mode 100644 index 00000000..73a04701 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/가로수보호판2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24a5ac565378c7b0b2d726dc505d0ce0402edc654db456c7559349943135c12a +size 377025 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/가로수보호판2.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/가로수보호판2.jpg.meta new file mode 100644 index 00000000..be216db4 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/가로수보호판2.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 85f034aa5f2241740ad5c45f1570aaad +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/관목4-실험_tint0x386B28FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/관목4-실험_tint0x386B28FF.jpg new file mode 100644 index 00000000..aafcd567 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/관목4-실험_tint0x386B28FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba399f90dc72374ad2fec7b63bb7736c5c7e2e95fc06108ec05a9945678036f6 +size 45484 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/관목4-실험_tint0x386B28FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/관목4-실험_tint0x386B28FF.jpg.meta new file mode 100644 index 00000000..b1ee906f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/관목4-실험_tint0x386B28FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: a73867c7c5f9575418dc69f535bf4932 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나난나무_tint0x515949FF.png b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나난나무_tint0x515949FF.png new file mode 100644 index 00000000..26b3aeae --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나난나무_tint0x515949FF.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c584f8be06b56c3875fb94047fe7deb4ba57a50fa4d3c7864becdc082f2e630c +size 200187 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나난나무_tint0x515949FF.png.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나난나무_tint0x515949FF.png.meta new file mode 100644 index 00000000..6d1eb197 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나난나무_tint0x515949FF.png.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 558cc5ed845b0a34a8e0a6a24391514a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나난나무_tint0x587934FF.png b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나난나무_tint0x587934FF.png new file mode 100644 index 00000000..6d76a361 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나난나무_tint0x587934FF.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7327d98971accc7f1c4312b575373398e54dc54111004ef3599d1f7d0d4ba81 +size 207989 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나난나무_tint0x587934FF.png.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나난나무_tint0x587934FF.png.meta new file mode 100644 index 00000000..b09dca9a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나난나무_tint0x587934FF.png.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 8ee17ca9c4278484fa34cdd2ce4152c8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나난나무_tint0x758965FF.png b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나난나무_tint0x758965FF.png new file mode 100644 index 00000000..dd2a56d2 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나난나무_tint0x758965FF.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b223e829578cb884ad51fe181411015e8949823f66e76cfdcfaed368bb1f0c39 +size 204734 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나난나무_tint0x758965FF.png.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나난나무_tint0x758965FF.png.meta new file mode 100644 index 00000000..ca247f75 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나난나무_tint0x758965FF.png.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 79d773b34ba53974b94b42e5596ed742 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나무11.png b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나무11.png new file mode 100644 index 00000000..291fd919 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나무11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c46b58eeb41a28be663675b8eb336d1ae3876019ab73337e2de44af5f2b3de8 +size 175582 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나무11.png.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나무11.png.meta new file mode 100644 index 00000000..646935f7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나무11.png.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: ff6ef5a3a411b1d41b34bbc758f60fef +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나무1ㅑㅑ_tint0x775539FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나무1ㅑㅑ_tint0x775539FF.jpg new file mode 100644 index 00000000..a7bd5a8c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나무1ㅑㅑ_tint0x775539FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bc628803e3a390697dc622e6cdd6bf1d677e22572108ca76db583c3e5270613 +size 70966 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나무1ㅑㅑ_tint0x775539FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나무1ㅑㅑ_tint0x775539FF.jpg.meta new file mode 100644 index 00000000..245f5891 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/나무1ㅑㅑ_tint0x775539FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: b9e83091291e1da49ab76aed68c40d41 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/내가만든나무2_tint0xADBEA3FF.png b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/내가만든나무2_tint0xADBEA3FF.png new file mode 100644 index 00000000..382aaaca --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/내가만든나무2_tint0xADBEA3FF.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22fa3489d3d3340e58ab3f9693ff1f2da3c2d92c7885c578812e29737716b261 +size 1194844 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/내가만든나무2_tint0xADBEA3FF.png.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/내가만든나무2_tint0xADBEA3FF.png.meta new file mode 100644 index 00000000..8c137167 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/내가만든나무2_tint0xADBEA3FF.png.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 8cda9bd045b35fd49b6a740901ce267c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/내가만든나무_tint0xBBC6B2FF.png b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/내가만든나무_tint0xBBC6B2FF.png new file mode 100644 index 00000000..1186f0be --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/내가만든나무_tint0xBBC6B2FF.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b4a16d0e260f8426ca55cb3921050228b64674bf34fb15e007e269b64f64ec3 +size 1048701 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/내가만든나무_tint0xBBC6B2FF.png.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/내가만든나무_tint0xBBC6B2FF.png.meta new file mode 100644 index 00000000..eb26110b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/내가만든나무_tint0xBBC6B2FF.png.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: c85c2d9b932f32944aa4bbfb858bc672 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/녹슨청동.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/녹슨청동.jpg new file mode 100644 index 00000000..dd245932 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/녹슨청동.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce273a165c84d9cba2e280b3894d8e33a9a35901a0c67aab6f34f6f32a855df6 +size 47709 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/녹슨청동.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/녹슨청동.jpg.meta new file mode 100644 index 00000000..6fe68ab2 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/녹슨청동.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: fef6eab3ba5262d489d354cf33072b8d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/맨홀뚜껑.png b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/맨홀뚜껑.png new file mode 100644 index 00000000..c3bf0292 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/맨홀뚜껑.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8d7f34c749af9ccafd68567e1f02494fd3a3273bc0598219111f3fdbfe4406e +size 117773 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/맨홀뚜껑.png.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/맨홀뚜껑.png.meta new file mode 100644 index 00000000..475d1e82 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/맨홀뚜껑.png.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 9622857d0f79fed4b893f0b9397c2fcb +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/문2_tint0xAD8E7FFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/문2_tint0xAD8E7FFF.jpg new file mode 100644 index 00000000..3fb4f37f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/문2_tint0xAD8E7FFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:085979036039f5b08dfe9f0e65e120860375031824539d624797f43762b07665 +size 25126 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/문2_tint0xAD8E7FFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/문2_tint0xAD8E7FFF.jpg.meta new file mode 100644 index 00000000..cae75d90 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/문2_tint0xAD8E7FFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 81df47f78f71c7c418d30541369249eb +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥2.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥2.jpg new file mode 100644 index 00000000..86d99949 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6a54b7a7f6176aa5a961ea422be260e8a3c1368b3c7e051efd76efcfbefa92b +size 62970 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥2.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥2.jpg.meta new file mode 100644 index 00000000..528a8415 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥2.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 964f62427e2c44149a70c81d2128366f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일2_tint0xE9E8E6FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일2_tint0xE9E8E6FF.jpg new file mode 100644 index 00000000..e88f5224 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일2_tint0xE9E8E6FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:308d5993a9dc8e9b6c705b0d0b2fc1a60400edd9756d2b3d38cf2ee59df3586f +size 9546 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일2_tint0xE9E8E6FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일2_tint0xE9E8E6FF.jpg.meta new file mode 100644 index 00000000..e2d061ef --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일2_tint0xE9E8E6FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 450405106bf14534094376c800d57c30 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일3_tint0xB9B4ABFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일3_tint0xB9B4ABFF.jpg new file mode 100644 index 00000000..516f33de --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일3_tint0xB9B4ABFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:047ef9f91003880bd03bfbe0102dd45e70d62413f5fb401272b6c07180d64ff4 +size 8074 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일3_tint0xB9B4ABFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일3_tint0xB9B4ABFF.jpg.meta new file mode 100644 index 00000000..4a162a9a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일3_tint0xB9B4ABFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: f0b9085eb7dab894c8ccbf96f18210e5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일3_tint0xC6C1C1FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일3_tint0xC6C1C1FF.jpg new file mode 100644 index 00000000..d4c88f43 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일3_tint0xC6C1C1FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96744c498ca7b3f687dd5c7508ff35fcffdd9d62d405f9b5603331bf01f622ee +size 8062 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일3_tint0xC6C1C1FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일3_tint0xC6C1C1FF.jpg.meta new file mode 100644 index 00000000..fdb74d42 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일3_tint0xC6C1C1FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: a1871560990622a4588bddc198fc1d8c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일3_tint0xEBEEEEFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일3_tint0xEBEEEEFF.jpg new file mode 100644 index 00000000..176f3307 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일3_tint0xEBEEEEFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6bb7cc461a36c478fb910dd3176233ad3e54383529852f7cec62f7c03faa60 +size 7895 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일3_tint0xEBEEEEFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일3_tint0xEBEEEEFF.jpg.meta new file mode 100644 index 00000000..5a8fde88 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/바닥타일3_tint0xEBEEEEFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 5cec7b34cd84b4340aee20a327f397e2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌'_tint0xC0C1BDFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌'_tint0xC0C1BDFF.jpg new file mode 100644 index 00000000..2adeba33 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌'_tint0xC0C1BDFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6f7cbb5ac57d791b82e70020f5029d0960dd1400408b78a2a7d2ced8ba3f596 +size 6797 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌'_tint0xC0C1BDFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌'_tint0xC0C1BDFF.jpg.meta new file mode 100644 index 00000000..3af2fd6e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌'_tint0xC0C1BDFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: b3c42acd6359a774bb3d7c39b3124ff7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌'_tint0xD6D7D4FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌'_tint0xD6D7D4FF.jpg new file mode 100644 index 00000000..be45be0c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌'_tint0xD6D7D4FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a768cc17a25fcfbce76eb2e4fab52905d44063edf4244a6ce503642a23236abb +size 6784 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌'_tint0xD6D7D4FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌'_tint0xD6D7D4FF.jpg.meta new file mode 100644 index 00000000..798aa497 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌'_tint0xD6D7D4FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: b5a84d239e9658547a3247a41f9dbd71 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌3_tint0xD2D2CFFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌3_tint0xD2D2CFFF.jpg new file mode 100644 index 00000000..e8cc1766 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌3_tint0xD2D2CFFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56b6d6a849ba3f59675cd8011e4fb455f7333d280fcd7876f4ee4e97a18cbc9 +size 441602 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌3_tint0xD2D2CFFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌3_tint0xD2D2CFFF.jpg.meta new file mode 100644 index 00000000..2e7335de --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌3_tint0xD2D2CFFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 0dee4d92a7bb72947a670417f78dd4d7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌4.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌4.jpg new file mode 100644 index 00000000..440b4ce5 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e615810d1eb160c7ac6b17154dc875a8ddf7c64bb4318b937eb9f806a646d545 +size 24474 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌4.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌4.jpg.meta new file mode 100644 index 00000000..8feb8695 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌4.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 40f4773ee72ff0d4791659e19a2bc9b2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌4_tint0xE5E4E0FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌4_tint0xE5E4E0FF.jpg new file mode 100644 index 00000000..15d21ade --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌4_tint0xE5E4E0FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7862872f7d6977e297bbb5774ea9644e5c2f1ad2f070d0a6af680501d7fde61 +size 14906 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌4_tint0xE5E4E0FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌4_tint0xE5E4E0FF.jpg.meta new file mode 100644 index 00000000..f179ecdc --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌4_tint0xE5E4E0FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: b7d50f2e31862ab40bd74708f5c1e645 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌벽2 (2).jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌벽2 (2).jpg new file mode 100644 index 00000000..200fd5e9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌벽2 (2).jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4d9a0f3c1e2f546316f9e038e1d1ec5642fb7f5ca909de08a1a535e70b1ee2c +size 144577 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌벽2 (2).jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌벽2 (2).jpg.meta new file mode 100644 index 00000000..1dcb454e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌벽2 (2).jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 35e4168791728a3439b5fb7235a2bdd5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌벽_tint0xCBCAC7FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌벽_tint0xCBCAC7FF.jpg new file mode 100644 index 00000000..da2bc55e --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌벽_tint0xCBCAC7FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f161f5333b9c1b6b63d944c306481f6f783d0ba0ee4f031665c5d30d5ff39eb7 +size 22870 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌벽_tint0xCBCAC7FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌벽_tint0xCBCAC7FF.jpg.meta new file mode 100644 index 00000000..ee366948 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌벽_tint0xCBCAC7FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: c868ff3813bdbfb4ea1ae4d0b66c6b1e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌벽실험2_tint0xD2D2CFFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌벽실험2_tint0xD2D2CFFF.jpg new file mode 100644 index 00000000..65f2948d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌벽실험2_tint0xD2D2CFFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4437efb1db1ae40cf9fff473474bbf46550c5ff062453eda8a07b95b9fe42e1 +size 37222 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌벽실험2_tint0xD2D2CFFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌벽실험2_tint0xD2D2CFFF.jpg.meta new file mode 100644 index 00000000..6deadd8a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/벽돌벽실험2_tint0xD2D2CFFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 60c08b127426e904b942b9f5c771a164 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/보도블럭2_tint0xD9E1DFFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/보도블럭2_tint0xD9E1DFFF.jpg new file mode 100644 index 00000000..4694f431 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/보도블럭2_tint0xD9E1DFFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af207f86a4fe699c4ee3b9d25a0c321b0b98a32942ca607a8f72c1da6f50e7b8 +size 97062 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/보도블럭2_tint0xD9E1DFFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/보도블럭2_tint0xD9E1DFFF.jpg.meta new file mode 100644 index 00000000..3aef213a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/보도블럭2_tint0xD9E1DFFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: cde63a9a8c808044489144f81c5da635 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/보도블럭2_tint0xE1D9D9FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/보도블럭2_tint0xE1D9D9FF.jpg new file mode 100644 index 00000000..c2540c68 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/보도블럭2_tint0xE1D9D9FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b644913959a29d6f44a3a654f4f95f2bb3c161f0d1f76ebf30de37ca98501d9 +size 101460 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/보도블럭2_tint0xE1D9D9FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/보도블럭2_tint0xE1D9D9FF.jpg.meta new file mode 100644 index 00000000..9d3c33f2 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/보도블럭2_tint0xE1D9D9FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: a3b8d3d6c18ad8c4d9e2b73895d860f3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/성문.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/성문.jpg new file mode 100644 index 00000000..e8e789c9 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/성문.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d08f8fa5a601b6bfb6196ddb346d89c3099e53d2fdf732715654936fa906347 +size 102244 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/성문.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/성문.jpg.meta new file mode 100644 index 00000000..3cb90840 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/성문.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 89b7528a39de10f4ab1346640494cba0 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/어두운대리석_tint0x262626FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/어두운대리석_tint0x262626FF.jpg new file mode 100644 index 00000000..e423ba7f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/어두운대리석_tint0x262626FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e546925186e7b69a46a5d5f35f3415eec0a128701978d46950a918f6594f6b38 +size 51369 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/어두운대리석_tint0x262626FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/어두운대리석_tint0x262626FF.jpg.meta new file mode 100644 index 00000000..da68314c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/어두운대리석_tint0x262626FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 3791e2cf2e6a1d7468ce57cb432638b2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/어두운대리석_tint0x50545DFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/어두운대리석_tint0x50545DFF.jpg new file mode 100644 index 00000000..80a92625 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/어두운대리석_tint0x50545DFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61ce28ec8867b5afbfc78c374543d8a065f647166d4a1173aaef85d1f73c9836 +size 50831 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/어두운대리석_tint0x50545DFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/어두운대리석_tint0x50545DFF.jpg.meta new file mode 100644 index 00000000..77b21964 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/어두운대리석_tint0x50545DFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 7d15fffa25fa98f42834a0e6ef581d5d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/어두운대리석_tint0x616F6FFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/어두운대리석_tint0x616F6FFF.jpg new file mode 100644 index 00000000..a2a668be --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/어두운대리석_tint0x616F6FFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce30c4e8c601c2e2c42f8fc622a75bc47b768217f009b6c4391c9a1473e07acd +size 55591 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/어두운대리석_tint0x616F6FFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/어두운대리석_tint0x616F6FFF.jpg.meta new file mode 100644 index 00000000..86b97b94 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/어두운대리석_tint0x616F6FFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: c4a380cc309f6784aa0359aa7c997c70 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩1_tint0xC2C0BCFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩1_tint0xC2C0BCFF.jpg new file mode 100644 index 00000000..33da6ee8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩1_tint0xC2C0BCFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f69f519a76e6eb2d421f695d8a78c3f5dd6c1233d39115deb047c4ed135a166e +size 1249 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩1_tint0xC2C0BCFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩1_tint0xC2C0BCFF.jpg.meta new file mode 100644 index 00000000..7c64c66b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩1_tint0xC2C0BCFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 3899efab197b037499f0510e57f54da4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩1_tint0xD5D4D1FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩1_tint0xD5D4D1FF.jpg new file mode 100644 index 00000000..75bc25b8 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩1_tint0xD5D4D1FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a597c3d0999f4d8d9378605651472574e3addb20fc56c0e6ff9a424cd546dde +size 1253 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩1_tint0xD5D4D1FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩1_tint0xD5D4D1FF.jpg.meta new file mode 100644 index 00000000..4571a843 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩1_tint0xD5D4D1FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 75c4e7820331ce943989f676d8efdffa +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩1_tint0xECEEEEFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩1_tint0xECEEEEFF.jpg new file mode 100644 index 00000000..df94a309 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩1_tint0xECEEEEFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0af784d4b8352a68b83c69e27a30caf7c78dbfc585d844baccf470921337d7e1 +size 1195 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩1_tint0xECEEEEFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩1_tint0xECEEEEFF.jpg.meta new file mode 100644 index 00000000..172fc907 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩1_tint0xECEEEEFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: f80925aec6242a046b2ea89e091d2f2e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩2.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩2.jpg new file mode 100644 index 00000000..0f919bb2 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fc8b40c69a5ecc5add6f889ec4d911649d955d0f9964ad8f1530a06683ff16e +size 61868 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩2.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩2.jpg.meta new file mode 100644 index 00000000..9b3bbbf2 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/얼룩2.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: f148290fc1e59074f8de1d3a9e9b019d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/자갈_tint0xEDEDEDFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/자갈_tint0xEDEDEDFF.jpg new file mode 100644 index 00000000..5e398093 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/자갈_tint0xEDEDEDFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2db10e488855539db216d6ffeb7bc64d8e7ed83c6b66c9256173099612d4f4f9 +size 70327 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/자갈_tint0xEDEDEDFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/자갈_tint0xEDEDEDFF.jpg.meta new file mode 100644 index 00000000..e1005a3f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/자갈_tint0xEDEDEDFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: bc1464af83ed1414f8158104872b53c9 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/잔디1.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/잔디1.jpg new file mode 100644 index 00000000..75dbe6c1 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/잔디1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6829b57583aa0452bdbd35473e78bf1223526faa83244a5a3312e78938a80cb6 +size 97339 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/잔디1.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/잔디1.jpg.meta new file mode 100644 index 00000000..57c5e7db --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/잔디1.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 58f7afb83a7363e4499beb7662553523 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/잔디1_tint0x739738FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/잔디1_tint0x739738FF.jpg new file mode 100644 index 00000000..e726c2b2 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/잔디1_tint0x739738FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05c1ed3f31b14db528aacc8dea83857a99c53780dfa25b6b9bdaf379fd960eac +size 9827 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/잔디1_tint0x739738FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/잔디1_tint0x739738FF.jpg.meta new file mode 100644 index 00000000..c21e6e59 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/잔디1_tint0x739738FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: b372da515487569449c2ff027000e9e3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/잔디1_tint0x7B593BFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/잔디1_tint0x7B593BFF.jpg new file mode 100644 index 00000000..f0d7d60c --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/잔디1_tint0x7B593BFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8378ed34144b8e68535cadff66da61384b4074e8ebd22a01787e1dfa1dcaa2d4 +size 8719 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/잔디1_tint0x7B593BFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/잔디1_tint0x7B593BFF.jpg.meta new file mode 100644 index 00000000..944c18da --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/잔디1_tint0x7B593BFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: effa3fb888d985441b84f6cb1ffce77c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/장애인블럭_tint0xC8AA64FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/장애인블럭_tint0xC8AA64FF.jpg new file mode 100644 index 00000000..b8fb7c95 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/장애인블럭_tint0xC8AA64FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2446983d8ebc461685d2b39c43297ea015b94fc8d9e2266ad1ac0a5a16415cc0 +size 11098 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/장애인블럭_tint0xC8AA64FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/장애인블럭_tint0xC8AA64FF.jpg.meta new file mode 100644 index 00000000..5cbdc76f --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/장애인블럭_tint0xC8AA64FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 33b69ca475030b44ea68a3931581e346 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/초록_tint0xC1CACCFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/초록_tint0xC1CACCFF.jpg new file mode 100644 index 00000000..79dc5d0a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/초록_tint0xC1CACCFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59db07243527f1115e9b48d7b948505d6c4c5d28a41cac33b59695bde5db1711 +size 2741 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/초록_tint0xC1CACCFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/초록_tint0xC1CACCFF.jpg.meta new file mode 100644 index 00000000..36aee8d0 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/초록_tint0xC1CACCFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 8676f3fa67106b948af1d436d3ca8115 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/타일1_tint0x8C8F90FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/타일1_tint0x8C8F90FF.jpg new file mode 100644 index 00000000..a96b1635 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/타일1_tint0x8C8F90FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b87fb78a91374ef6a7357a82d97a07c914eaee336e39b3b9bcae3c93b654b030 +size 5819 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/타일1_tint0x8C8F90FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/타일1_tint0x8C8F90FF.jpg.meta new file mode 100644 index 00000000..01f0ebb6 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/타일1_tint0x8C8F90FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 67ee3c7da8cbe9042938279220e7f2f8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/타일1_tint0xC3C9CFFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/타일1_tint0xC3C9CFFF.jpg new file mode 100644 index 00000000..819adcd7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/타일1_tint0xC3C9CFFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5484b1ab43e5c9f0511da30e702ad387d564903adb7a58b919b537d8076e718b +size 5958 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/타일1_tint0xC3C9CFFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/타일1_tint0xC3C9CFFF.jpg.meta new file mode 100644 index 00000000..3cf10319 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/타일1_tint0xC3C9CFFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 09de09c7b3d572e48983a8122e6bfee5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/태양광패널_tint0x4E7CB5FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/태양광패널_tint0x4E7CB5FF.jpg new file mode 100644 index 00000000..92ee762a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/태양광패널_tint0x4E7CB5FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81850fbc82ade11243dad00ad1811b022bc5d5a4cee9fd77ff882cbed75b9cdd +size 2034 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/태양광패널_tint0x4E7CB5FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/태양광패널_tint0x4E7CB5FF.jpg.meta new file mode 100644 index 00000000..f9b59ed2 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/태양광패널_tint0x4E7CB5FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 554cd73fe010f274594fd014ed6bc35a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/페이빙1.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/페이빙1.jpg new file mode 100644 index 00000000..47b453bc --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/페이빙1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a3d864f0f5b53cb70dc2c1d3b092f8e8bcd6c4caa9c94b4888a93b15b58faa5 +size 44454 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/페이빙1.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/페이빙1.jpg.meta new file mode 100644 index 00000000..e0bb1f80 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/페이빙1.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: c4bda7f2ad558c540bf0104facf4ed74 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/페이빙3_tint0xDBD9D5FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/페이빙3_tint0xDBD9D5FF.jpg new file mode 100644 index 00000000..2b8feb07 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/페이빙3_tint0xDBD9D5FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f321daba8d65501de37e0255ab15d7796e16c0ad463c9c684f6ef9a0d3a8d92 +size 11402 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/페이빙3_tint0xDBD9D5FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/페이빙3_tint0xDBD9D5FF.jpg.meta new file mode 100644 index 00000000..45293e09 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/페이빙3_tint0xDBD9D5FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 1a222a55684a5c74fa615440eca8e0ba +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/포스터3.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/포스터3.jpg new file mode 100644 index 00000000..916ea26a --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/포스터3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dcbbe4d74f51486aa86bef963112b6924f51ff19a2c6550c5d205650e3e6f5f +size 24287 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/포스터3.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/포스터3.jpg.meta new file mode 100644 index 00000000..a2d65c72 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/포스터3.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: e1b85657d6908d6419e74d26954eac82 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/풀1_tint0x6BB742FF.png b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/풀1_tint0x6BB742FF.png new file mode 100644 index 00000000..54d63903 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/풀1_tint0x6BB742FF.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f29179e005fec7941c35cbcd44abdfaaa570bb900bdb039cae43ad32e6cef32 +size 58238 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/풀1_tint0x6BB742FF.png.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/풀1_tint0x6BB742FF.png.meta new file mode 100644 index 00000000..84382b2b --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/풀1_tint0x6BB742FF.png.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 8323ac4e5c63ff14593b1b0583f75ab6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/풀2_tint0x5CBF3FFF.png b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/풀2_tint0x5CBF3FFF.png new file mode 100644 index 00000000..659203bc --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/풀2_tint0x5CBF3FFF.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a49242aee3ef68d9a0b8df82c4ce62d97bb52a3eaf4962f21ee6fd482bfd566 +size 42802 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/풀2_tint0x5CBF3FFF.png.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/풀2_tint0x5CBF3FFF.png.meta new file mode 100644 index 00000000..40486812 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/풀2_tint0x5CBF3FFF.png.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: ba376170b980ad944b7e7f35e92e145c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/학교벽돌_tint0xDEAF81FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/학교벽돌_tint0xDEAF81FF.jpg new file mode 100644 index 00000000..3a57ba2d --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/학교벽돌_tint0xDEAF81FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6f97455d072b4dfda1a5419e7cf5c619090424a149f55167e4551bb10db6a17 +size 5041 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/학교벽돌_tint0xDEAF81FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/학교벽돌_tint0xDEAF81FF.jpg.meta new file mode 100644 index 00000000..e5ce2510 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/학교벽돌_tint0xDEAF81FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 70dceec448aadc84394032407b4e1f0e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/화강암1_tint0xBFBEBFFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/화강암1_tint0xBFBEBFFF.jpg new file mode 100644 index 00000000..fad577d7 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/화강암1_tint0xBFBEBFFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96f2620e32531767befce5ca44128d584bd5b69cd76708f3c0fa9fbaeefbea3b +size 75554 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/화강암1_tint0xBFBEBFFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/화강암1_tint0xBFBEBFFF.jpg.meta new file mode 100644 index 00000000..65c0e0a3 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/화강암1_tint0xBFBEBFFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 172d10c0faf611e46a0349c6797af044 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/화강암1_tint0xEAEAEAFF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/화강암1_tint0xEAEAEAFF.jpg new file mode 100644 index 00000000..3c7b79dd --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/화강암1_tint0xEAEAEAFF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82357e60461b4ace2eb467f96ec642b726498a81d53c9709b6a3a87efcd03364 +size 66918 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/화강암1_tint0xEAEAEAFF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/화강암1_tint0xEAEAEAFF.jpg.meta new file mode 100644 index 00000000..7a11b270 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/화강암1_tint0xEAEAEAFF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: dc99bd8aac8e12d438fb24aaae2273a5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/흙(용량적은거)_tint0xDCDBC0FF.jpg b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/흙(용량적은거)_tint0xDCDBC0FF.jpg new file mode 100644 index 00000000..4bf53e60 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/흙(용량적은거)_tint0xDCDBC0FF.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07d083f00d10946c5b8aacb459660f4648f42a51b069c466f0206160a72a6e4b +size 15487 diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/흙(용량적은거)_tint0xDCDBC0FF.jpg.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/흙(용량적은거)_tint0xDCDBC0FF.jpg.meta new file mode 100644 index 00000000..d3c4d688 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/Texture/흙(용량적은거)_tint0xDCDBC0FF.jpg.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: c4fa8fa281013b14bbd4f23cefabe242 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + 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: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/영재 학교 전경 School for the Talented and Gifted.skp b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/영재 학교 전경 School for the Talented and Gifted.skp new file mode 100644 index 00000000..e74d4dea Binary files /dev/null and b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/영재 학교 전경 School for the Talented and Gifted.skp differ diff --git a/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/영재 학교 전경 School for the Talented and Gifted.skp.meta b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/영재 학교 전경 School for the Talented and Gifted.skp.meta new file mode 100644 index 00000000..39dfc3a1 --- /dev/null +++ b/Assets/ResourcesData/Background/[아이시아]영재학교 배경/skp/영재 학교 전경 School for the Talented and Gifted.skp.meta @@ -0,0 +1,2524 @@ +fileFormatVersion: 2 +guid: c995d4d53c754cd4396c5996a62d0067 +SketchUpImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: 02 + second: {fileID: 2100000, guid: 6b37ec06a524848469fbec3a426d31c3, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: 3333231Material64 + second: {fileID: 2100000, guid: 143f9eef98573f14fbc90d9d6b5a27ef, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: 4342Material51 + second: {fileID: 2100000, guid: e25b6125a5db12847b345030e9d92e6d, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Carrera13 Marble + second: {fileID: 2100000, guid: a9042dba098a67440a5131ac869ccf2e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Lisanne_Boot_Sole_3 + second: {fileID: 2100000, guid: 1b028e75b81ba2e41b2cb86a8096a075, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Lisanne_Boots1 + second: {fileID: 2100000, guid: 8adc655047f7920419346c2be2c0c968, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Lisanne_Bracelet + second: {fileID: 2100000, guid: c59f7cd6406cab743afedfcc3b102a13, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Lisanne_Bracelet2 + second: {fileID: 2100000, guid: eb0d6a4c9bafb2344b4777b20aac4914, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Lisanne_Caulk + second: {fileID: 2100000, guid: 4cf9eb6e4e13bce4792371cde65e98b1, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Lisanne_Caulk1 + second: {fileID: 2100000, guid: 3275844428d58124d98555dfdb80ee3c, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Lisanne_Hammer + second: {fileID: 2100000, guid: 53cd8137a17b55940b0a137bb6fbdb75, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Lisanne_Hammer1 + second: {fileID: 2100000, guid: fe54e91d34b00e0449b43cb5629e3465, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Lisanne_Metal + second: {fileID: 2100000, guid: b7aaa0ab5d8e1604697bda172e30b805, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Lisanne_Overalls + second: {fileID: 2100000, guid: e9eb8f39e62b85842972551550761786, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Lisanne_Tool_Bag_01 + second: {fileID: 2100000, guid: 38e621a5fd12b154198fcd015af363ab, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Ma23333terial12 + second: {fileID: 2100000, guid: 7437ce5e037601040a4a786eac3ed34f, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Ma3331124terial12 + second: {fileID: 2100000, guid: 8906c088acaee5d4f86a286bb24f7393, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Matedsfrial11 + second: {fileID: 2100000, guid: e2c05566fd0df14409304ae81e7b7d85, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Material196 + second: {fileID: 2100000, guid: 0fd4b2963f84140468f3baf792d050f4, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Material2144441 + second: {fileID: 2100000, guid: 17db1646c98cab948bc31f15b385d613, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Material28 + second: {fileID: 2100000, guid: ec146e3187856844d8e5e648bc98eab8, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Material8 + second: {fileID: 2100000, guid: 82e3551a5498e904d8c941d77b448ad5, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Materiasdffsl12 + second: {fileID: 2100000, guid: 1fd9bfa74b950524d88e009df93a77d5, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Stacy_Shirt1 + second: {fileID: 2100000, guid: b0e261b44bd04994e9c0db2bbf8ac7cb, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Stacy_Shoe1 + second: {fileID: 2100000, guid: cbce2b825cfdf984fbd5c2e2cef7f3ae, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0009_Linen]' + second: {fileID: 2100000, guid: dcb2ddf025a5b394590562407f451826, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0018_Brown]' + second: {fileID: 2100000, guid: 99d3718274f950843a519610fc1a7919, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0020_Red]' + second: {fileID: 2100000, guid: 4356202bc31d1ac4ab7182f6c73e6952, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0023_FireBrick]' + second: {fileID: 2100000, guid: e9a717d3b1ed0eb4eb95aa9f965de739, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0041_Chocolate]' + second: {fileID: 2100000, guid: 7926ba4ae98d05345be57c6557d91e7b, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0043_SaddleBrown]' + second: {fileID: 2100000, guid: 8d659e590026f9a48bbecf5f4f2ae65b, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0047_Khaki]' + second: {fileID: 2100000, guid: d4ea3a8dfa68ad645b6ef05d6fb4d7b1, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0050_LemonChiffon]' + second: {fileID: 2100000, guid: 3225bb18c65e29d47997c8f5559a7135, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0057_DarkKhaki]' + second: {fileID: 2100000, guid: 6ddb94413dc5ef04f946e08d6106cbdd, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0060_GrassGreen]' + second: {fileID: 2100000, guid: 096f48b26f56f6747b8235d675d233d4, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0075_ForestGreen]' + second: {fileID: 2100000, guid: 278a8a1d1d5a0ff4782466cbe60fe341, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0075_ForestGreen]1' + second: {fileID: 2100000, guid: 2019110b14b30da4da4ae79d07f9fb4a, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0078_DarkSlateGray]' + second: {fileID: 2100000, guid: 93518c5cfcfbdd14688ce421cb2259d2, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0100_SteelBlue]1' + second: {fileID: 2100000, guid: 5debe4e058f7dd241932932f6047c98a, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0104_MediumBlue]' + second: {fileID: 2100000, guid: 5ed76c72f48269245b0532c4251c613a, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0111_SlateGray]' + second: {fileID: 2100000, guid: fab3a29dc80af904e82991a25f6c3ab5, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0111_SlateGray]1' + second: {fileID: 2100000, guid: c694eb09737a7c046aedc2c71ad0d7f5, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0111_SlateGray]2' + second: {fileID: 2100000, guid: 4ddebb5db28d9bb4cb8b1e7f7cb02508, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0131_Silver]' + second: {fileID: 2100000, guid: 80c0e7ba9f53db84b97462df8df09acb, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0131_Silver]1' + second: {fileID: 2100000, guid: 8bf429455fd334f42a6237c72774946a, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0131_Silver]2' + second: {fileID: 2100000, guid: aa88d3576a7148941bc7f3b4838f0410, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0131_Silver]3' + second: {fileID: 2100000, guid: dbbf8a96ad1f1a749877ef0687c726e0, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0132_LightGray]' + second: {fileID: 2100000, guid: 62141be9e37426e45a9d663d3392967f, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0134_DimGray]' + second: {fileID: 2100000, guid: 4d0bbe08311b51c4297f38f3421fa20c, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0135_DarkGray]' + second: {fileID: 2100000, guid: df1d2020187c12c4ca03d40e964a4cac, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[0135_DarkGray]1' + second: {fileID: 2100000, guid: dece2a6fb832183489c6e8253663c48c, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Brick Antique 01]1' + second: {fileID: 2100000, guid: 56afa637ad270404db1b84bcb105c2ef, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Brick Tumbled]' + second: {fileID: 2100000, guid: c9460d7595a5ca847946eca655d53f2a, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Brick Tumbled]1' + second: {fileID: 2100000, guid: 8a97c5fdab0051149bd4d78761b769de, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Brick Tumbled]3' + second: {fileID: 2100000, guid: ff02870ff12c25544a6de1a83ef9f037, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Carrera Marble]' + second: {fileID: 2100000, guid: 390d32d7c3dc8ab4ea343f4b9dbe8f91, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Carrera Marble]1' + second: {fileID: 2100000, guid: b3166de2d7c69274b9fe48f2aaf7aab6, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Cladding Stucco White]3' + second: {fileID: 2100000, guid: c23359d08f3f2134d9e40f14e841ba3a, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Color A07]' + second: {fileID: 2100000, guid: 73fe4ed6f74b4e54f9777f10d790da6d, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Color B06]1' + second: {fileID: 2100000, guid: 926966b8f1fa5874c816d4c440fe964e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Color B07]' + second: {fileID: 2100000, guid: 0004bc245027129448471caf5fa79bbe, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Color C06]' + second: {fileID: 2100000, guid: 0d0004f5d61941f4f9a37f8792917b2a, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Color D04]' + second: {fileID: 2100000, guid: 218db00e57737e44bb45a29aa4ef31aa, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Color H08]' + second: {fileID: 2100000, guid: dae04db4aa53d4b4da8664a7ab9bf91e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Color M04]' + second: {fileID: 2100000, guid: 5973c684b4047a545a6ef766f33fd6d2, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Color M05]' + second: {fileID: 2100000, guid: 5eea87afdd849aa4c9f879dac70aa9b7, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Color M07]' + second: {fileID: 2100000, guid: b51f457dfa2e8bb419788eed7c5d90d4, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Color M07]1' + second: {fileID: 2100000, guid: 1be436a54824d4344988242625b1f365, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Color_000]' + second: {fileID: 2100000, guid: b6ce582c2eeb8554b82b42cbc993e25c, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Concrete Block 8x8 Gray]' + second: {fileID: 2100000, guid: a50e90a32dfa67c478c54fb3ae4a0f58, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Concrete Block 8x8 Gray]2' + second: {fileID: 2100000, guid: 1b252e4ec86a3a7418d373d98df1affe, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Fencing Chain Link]1' + second: {fileID: 2100000, guid: 0477207aaf3515344aef1e46939c5ded, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Granite Light Gray]1' + second: {fileID: 2100000, guid: 0ec50307372e3a14eb705167258750b6, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Grass Dark Green]' + second: {fileID: 2100000, guid: 00b60651c1c6296409ff68b8ad123056, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Groundcover Brick Crushed]' + second: {fileID: 2100000, guid: 863fe77580e55584da6f5226b8da0762, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Metal Corrugated Shiny]' + second: {fileID: 2100000, guid: a128495839bc49d4dad3c4c2ab289361, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Metal Corrugated Shiny]2' + second: {fileID: 2100000, guid: 2d82a186a893507438eb350838f5035a, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Metal Corrugated Shiny]3' + second: {fileID: 2100000, guid: b488fe07c38f6e24cb63e6ea66151d80, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Metal Seamed]' + second: {fileID: 2100000, guid: 33ec2a06c9610b74fb93a40b66b7a62d, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Metal Silver]' + second: {fileID: 2100000, guid: f121254dab890a446a362cd7dc4ba25b, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Metal_Corrogated_Shiny]' + second: {fileID: 2100000, guid: 87db91f2f7c732c4ebec876068b21158, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Mirror 01]2' + second: {fileID: 2100000, guid: 1427aa22da2fe264e91addd80f7925a5, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Polished Concrete Old]' + second: {fileID: 2100000, guid: 3ff5e3a4336fbe24cba902e342da9eb3, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Polished Concrete Old]1' + second: {fileID: 2100000, guid: 1de2b827c7c1634408981609380b8146, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Polished Concrete Old]2' + second: {fileID: 2100000, guid: f41e9d5e0b623a9468d86cc951715b26, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Polished Concrete Old]3' + second: {fileID: 2100000, guid: 950ed8747b79ffb48a50f400a1549bb1, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Polished Concrete Old]4' + second: {fileID: 2100000, guid: 8d733c92223f40d4e89299029947c51b, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Polished Concrete Old]5' + second: {fileID: 2100000, guid: 4a121bc010583044ba9dbf8e20748c13, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Polished Concrete Old]7' + second: {fileID: 2100000, guid: 673ea4b961493194ca7e8ce5a87490f3, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Polished Concrete Old]8' + second: {fileID: 2100000, guid: f54fa0120134a5f49b04bfc9dc6bc1bd, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Quartz Light Grey]1' + second: {fileID: 2100000, guid: 7f0c770be4cd022418a264961345cb89, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Rough Square Concrete Block]3' + second: {fileID: 2100000, guid: 4d92ac0e1120d074cbcef48b1b16326f, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Slate Light Tile]' + second: {fileID: 2100000, guid: e4ece09ab758fb6418a4dd4940f28cb5, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Stone Marble]' + second: {fileID: 2100000, guid: 05d79d7fb4b0bc846908082aaa12013f, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Stone Vein Gray]' + second: {fileID: 2100000, guid: cb49c350d1ec5434eb7dc93d31d5bfca, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Terrazzo Tile Light]1' + second: {fileID: 2100000, guid: 9ed185f2865ead24f947f6b9e9616cdb, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Tile Ceramic Natural]' + second: {fileID: 2100000, guid: aa5d6ae63f159b84787e2aba213071a9, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Translucent Glass Blue]' + second: {fileID: 2100000, guid: a269f2b010c9e1a4a955b594536d7d95, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Translucent Glass Blue]1' + second: {fileID: 2100000, guid: aa76b730146e7ac499aa7667a8a49e09, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Translucent Glass Blue]3' + second: {fileID: 2100000, guid: 8c2a06e67899e2447939918a3f627292, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Translucent Glass Gray]' + second: {fileID: 2100000, guid: 1b0eab1619194b2419a948386c4237d2, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Translucent Glass Gray]1' + second: {fileID: 2100000, guid: 297ab6702d4e76040b39cbb1249c1d30, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Wood Lumber ButtJoined]' + second: {fileID: 2100000, guid: 354e725f02e0ef54c82a242493cd69e4, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: '[Wood Lumber ButtJoined]1' + second: {fileID: 2100000, guid: f0033e1ac0cda574184fc2af161f109f, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _ + second: {fileID: 2100000, guid: 8ce892926e7290742b4f5ce784de274e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _1 + second: {fileID: 2100000, guid: 44fc4005760195e449a14dbd4eb5c28b, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _101 + second: {fileID: 2100000, guid: 46eb15da97a1665459142dfc0f501a4d, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _105 + second: {fileID: 2100000, guid: 5f7ffaec99ac96d4e8554b07c647384e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _106 + second: {fileID: 2100000, guid: 263a741e5d87719488f855b1c489ce63, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _107 + second: {fileID: 2100000, guid: 557b37d41acac104096437d759e97dd4, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _108 + second: {fileID: 2100000, guid: 27247cfc205769e4a8f72ec06cc1172d, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _109 + second: {fileID: 2100000, guid: c964a23cf6ae2434a833d160cb2c6190, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _110 + second: {fileID: 2100000, guid: d3627bf0e5cd7e44785e24b3a0679313, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _113 + second: {fileID: 2100000, guid: c452f0b3eb3ddd4478444310e8827296, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _114 + second: {fileID: 2100000, guid: 42359b366bfdbee40aca42629820804e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _115 + second: {fileID: 2100000, guid: fb5cc48ca2b403c4f948f6c778cee1c0, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _116 + second: {fileID: 2100000, guid: 56313d9fe03dd604b907996a13fa65b7, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _117 + second: {fileID: 2100000, guid: 8fbec63d53a2ae846b796b74296992c8, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _118 + second: {fileID: 2100000, guid: daa62ba6772a40244ae8146539eb50dc, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _119 + second: {fileID: 2100000, guid: 8be484ca1f750bd4bac3379beee917de, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _120 + second: {fileID: 2100000, guid: e6a572b5410d39a43a20d595b94e5f93, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _121 + second: {fileID: 2100000, guid: c5b128d797e6b3f46ae2d5d3f0ab6b4d, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _122 + second: {fileID: 2100000, guid: 652ba04f19cb98b4fbc1b73b37dd74b4, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _123 + second: {fileID: 2100000, guid: d282eca9aabf21642b7789e6fa6588d5, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _126 + second: {fileID: 2100000, guid: 9882104bfa006c7469fd436ea147a8d0, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _13 + second: {fileID: 2100000, guid: b0934c8869d74334fa2ac79aed199eb3, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _135 + second: {fileID: 2100000, guid: 9e566ad0c5c34d147aa0819327e27801, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _137 + second: {fileID: 2100000, guid: 845e3dd78d4fbe442a9fe5ee946a2ddb, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _138 + second: {fileID: 2100000, guid: 20e18ad23d021264cbf693a02e620034, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _139 + second: {fileID: 2100000, guid: 583d7f2457fa5ba45a4c20e1ca4702ed, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _140 + second: {fileID: 2100000, guid: cb1283d8c87374445a61328910f17ffa, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _141 + second: {fileID: 2100000, guid: 0cb8c309fd8943a41864709d8c60f66a, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _148 + second: {fileID: 2100000, guid: 656ca359de8aea348960cbdeeeeb6877, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _149 + second: {fileID: 2100000, guid: 4974b3db3ed8e65479c6939331d8e65c, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _150 + second: {fileID: 2100000, guid: fe2d7c03624864e40b7dc55fb9fd66ca, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _152 + second: {fileID: 2100000, guid: cad393d61bc4951409dc6d408d9aa805, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _154 + second: {fileID: 2100000, guid: 417794614c591624abd3bc7a13801c35, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _157 + second: {fileID: 2100000, guid: dd80b52d912927a4f97e6fd539d93b25, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _158 + second: {fileID: 2100000, guid: dc0094e33d0a2414ab945e66b58843ab, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _159 + second: {fileID: 2100000, guid: 3730cd5d259d1084eb7c27b16329e301, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _161 + second: {fileID: 2100000, guid: 9d8706a0b42508840a236609a693e68b, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _162 + second: {fileID: 2100000, guid: 66ccaeb4acd95334e8c4672e7284f000, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _164 + second: {fileID: 2100000, guid: ddd01ba2a49d1e34890b591d59597fbb, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _165 + second: {fileID: 2100000, guid: 4d34c6dbc0097394fa0e5e7027230439, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _166 + second: {fileID: 2100000, guid: 546170482eed6944a963cd419bc310b1, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _167 + second: {fileID: 2100000, guid: 560d192bdeb1dbf4289818adcbdfe402, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _17 + second: {fileID: 2100000, guid: 90c23868dd63d3a4e9ecd2b9587d558d, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _172 + second: {fileID: 2100000, guid: 7578707d7c2e73f4a8144c06b4c09fe3, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _173 + second: {fileID: 2100000, guid: 6a45c629335e0994fbbb5551c664a8e1, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _174 + second: {fileID: 2100000, guid: bb7652c52290f6b42ad2b65f1e831b46, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _181 + second: {fileID: 2100000, guid: 1d794c0d328fbc1428a73f31b8e8d781, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _182 + second: {fileID: 2100000, guid: d74c3f29a8d1f2b4791ed377c2c1b8be, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _183 + second: {fileID: 2100000, guid: ffc2bf1291910954e8ed949ee3a66d5e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _184 + second: {fileID: 2100000, guid: 78562118d4464d742bcbf5ba3a738138, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _189 + second: {fileID: 2100000, guid: 1ed06350dc6d94a4c95acaecb62c8b1a, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _19 + second: {fileID: 2100000, guid: 9d0b773e2ba21704daa10cefab4999c7, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _190 + second: {fileID: 2100000, guid: 6948ec1d066f4fa4788e50356f8ea8ff, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _191 + second: {fileID: 2100000, guid: 33fdd711184e9e547be8c7c4ba66d3c9, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _192 + second: {fileID: 2100000, guid: 470739275d9a9e04a9fa654b66bc69e6, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _193 + second: {fileID: 2100000, guid: 75039a6a80f82564184a9b45b536bfe8, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _195 + second: {fileID: 2100000, guid: 49b7c886fabac7e468c3b26cd84646ad, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _197 + second: {fileID: 2100000, guid: fcd0bb7cac2007244b3a7da986907250, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _198 + second: {fileID: 2100000, guid: ee39cb1d016246d48b6dd92bdd194377, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _199 + second: {fileID: 2100000, guid: e8f53059756416945b718edc64b4c599, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _200 + second: {fileID: 2100000, guid: 1770e6539c938a043943c6cc8812cb87, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _201 + second: {fileID: 2100000, guid: 9f414c3d6ced84047a19f06cca104909, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _202 + second: {fileID: 2100000, guid: 55599e9e0e335ea4f93c7b09fb8f83ca, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _203 + second: {fileID: 2100000, guid: 0e58b9a505b492640bec8c8f1a0535d6, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _204 + second: {fileID: 2100000, guid: 55ba96ed522278e46a094957a0a8340f, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _205 + second: {fileID: 2100000, guid: 6049652b19be73e48b9a410cc4df3add, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _206 + second: {fileID: 2100000, guid: 6a6f0a53e9ec8004182ff419aac20259, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _209 + second: {fileID: 2100000, guid: ee4218a0c1ca037408edac8620ee6432, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _21 + second: {fileID: 2100000, guid: 5bb169c6542d9ce4888988950eb55947, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _210 + second: {fileID: 2100000, guid: c35bde7e9ddc678458cc12f2e8e5af7e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _214 + second: {fileID: 2100000, guid: a985132fcc4bebe4eac1b3e149545031, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _215 + second: {fileID: 2100000, guid: 154b18f6c2cb3bd40bff91c427ab8db2, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _216 + second: {fileID: 2100000, guid: ace03f82586406348a5a6a37a835d453, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _217 + second: {fileID: 2100000, guid: 1a1e9549bbec8384e8cdbbf0cb5030fe, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _218 + second: {fileID: 2100000, guid: 77f589ec73205454cacf71b5348c5757, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _219 + second: {fileID: 2100000, guid: b6fcc9f5570880146913830219c07b21, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _22 + second: {fileID: 2100000, guid: 3f5335ae9efd70f4aa36d06fa11520e1, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _221 + second: {fileID: 2100000, guid: 0c3325e1b76ecfb4f9bf8149adf2fb4e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _222 + second: {fileID: 2100000, guid: 9baed78966d4c0c4188f9ad8e3f71b9e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _223 + second: {fileID: 2100000, guid: 23c5841318c7ae547b18aadea69c7bb7, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _224 + second: {fileID: 2100000, guid: f20dbdb05eed5ad4e83eccc2b9194062, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _225 + second: {fileID: 2100000, guid: a9d74646c7bd08d41a84152dc55cd26a, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _226 + second: {fileID: 2100000, guid: 3b5bc99b926dca541be6bcb530b829e3, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _23 + second: {fileID: 2100000, guid: 0e1229668914d74488cd65ae26389cf7, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _234 + second: {fileID: 2100000, guid: 2776def879eca9c40a47a0946a604de1, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _235 + second: {fileID: 2100000, guid: fd6e4efb3116bcc47ac7ee703211bbea, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _24 + second: {fileID: 2100000, guid: e7ad13126b16b474d9181045de3f1b3c, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _240 + second: {fileID: 2100000, guid: e1db389276a230041ab3e960ba82b4c7, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _242 + second: {fileID: 2100000, guid: a18757f10ba8c704fad020b77c5eb0f3, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _244 + second: {fileID: 2100000, guid: 6c6fe7ffb58efea4282b2dee0ff76d35, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _245 + second: {fileID: 2100000, guid: dbcc14d2ef19c204a8c5dc33725dc148, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _246 + second: {fileID: 2100000, guid: 381f479d896d8b1438389b50b310f047, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _247 + second: {fileID: 2100000, guid: 9d299a313f14ebc46af3da1c57a1967c, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _249 + second: {fileID: 2100000, guid: c230f18f98c90204f9846f22488c235e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _250 + second: {fileID: 2100000, guid: c4cdfd7e3c3121f4385fd77963bfa787, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _251 + second: {fileID: 2100000, guid: edac82d9c5fb1b748b7ca9fa0dff187a, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _252 + second: {fileID: 2100000, guid: 2b00f55f836d19a4582fa44c888f1ecc, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _253 + second: {fileID: 2100000, guid: 40bffa739db1efb4aade1cf35f69c485, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _255 + second: {fileID: 2100000, guid: 6edada84a0b8ed147b07a461975f3088, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _256 + second: {fileID: 2100000, guid: f38136e0a90990d479ac23ea0540040e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _257 + second: {fileID: 2100000, guid: d195598352b506e4aa284f2749a61bc1, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _258 + second: {fileID: 2100000, guid: 2dc797406fadaa44aa6b20fc331de357, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _259 + second: {fileID: 2100000, guid: 6d597a10e6b465c4e9cbc7f74409d6b9, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _26 + second: {fileID: 2100000, guid: 9d90ec90ee9209145a1bdcad9c205afd, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _260 + second: {fileID: 2100000, guid: 66f3e27f00c4f4842b31e3e23ccd7cc6, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _261 + second: {fileID: 2100000, guid: 93e4bfab77624304eb257a83ce78c05a, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _262 + second: {fileID: 2100000, guid: 3cc92a6db1cc3fb499181374ea2c9723, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _263 + second: {fileID: 2100000, guid: 99cce5b60d7d0dc49bdd0210e4bf3f81, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _265 + second: {fileID: 2100000, guid: 60c90e11dcd589a4596ea24858a695f6, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _267 + second: {fileID: 2100000, guid: 07d69bf0bfdea524bae8465872761aa8, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _268 + second: {fileID: 2100000, guid: 93698d77a5ff18c45b2193633b8dd5ea, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _269 + second: {fileID: 2100000, guid: f494d60126385f5419d1e98d8b05821d, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _270 + second: {fileID: 2100000, guid: 48212fe665346ed419e6b65c6c930d38, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _271 + second: {fileID: 2100000, guid: db808f4c5e9fecc4d8f60fd1fca9adca, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _272 + second: {fileID: 2100000, guid: c44488a36a41e454b896743df54687f0, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _273 + second: {fileID: 2100000, guid: 68ca5e336ed5a054980abc5511d57488, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _274 + second: {fileID: 2100000, guid: 831db7233d6dea14bb58a3afbafa71d7, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _275 + second: {fileID: 2100000, guid: a7ea777d804f5f4499741f448ba6aaa5, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _276 + second: {fileID: 2100000, guid: a64422b0b4ffa8048988d8c674d7abb5, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _277 + second: {fileID: 2100000, guid: 49e38d94e4ab75b47b1bab555c44466c, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _278 + second: {fileID: 2100000, guid: ca8d189af53888144988ebd569ecee72, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _279 + second: {fileID: 2100000, guid: 2539c99edfb67b44387d8047ebd75040, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _280 + second: {fileID: 2100000, guid: f14498c0a84c944438a411a688c6a2d3, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _281 + second: {fileID: 2100000, guid: 94a1fc5e8b96f9c439eac8f2cfc7e70e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _282 + second: {fileID: 2100000, guid: 840723e689aac89468db982d9902f1a6, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _284 + second: {fileID: 2100000, guid: 8e1dbee6791a73c41bb47a711ee1678a, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _285 + second: {fileID: 2100000, guid: d702c3d601cd02448a3b67a482856888, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _286 + second: {fileID: 2100000, guid: 8808366e341356149b4c9ed9892f2bce, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _287 + second: {fileID: 2100000, guid: 23b78b6b421148e4a89142258405d01b, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _288 + second: {fileID: 2100000, guid: 67202a7f33e7d42478d76a6e8bd0a811, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _289 + second: {fileID: 2100000, guid: 6c0be0f07a98bc5449003d185864e8fd, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _29 + second: {fileID: 2100000, guid: 920c7562d385a9b42a762ced4db9bfc7, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _290 + second: {fileID: 2100000, guid: a66bbae87f1244543b3e19dfbe18f4ca, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _291 + second: {fileID: 2100000, guid: eed341610196d0342b97a42532033e7b, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _292 + second: {fileID: 2100000, guid: 4b6827106ca5af844b65f269fcbfb5bf, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _293 + second: {fileID: 2100000, guid: 312c6a4d09656d642af51877f41a6e0a, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _294 + second: {fileID: 2100000, guid: 1a8b812af12fb6d458bb951715fa4e3d, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _295 + second: {fileID: 2100000, guid: 28d5921ffa0f6e646a1172f8ab3c9a6e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _296 + second: {fileID: 2100000, guid: 203dad4505663f342a3e74141a3326fc, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _297 + second: {fileID: 2100000, guid: cf645831b502ee942b32bb22265e62a1, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _298 + second: {fileID: 2100000, guid: f0f63dabd6d808b4d9c8be89caadf28f, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _299 + second: {fileID: 2100000, guid: c3dfc0a23e3c50742a2ccd85372e25ae, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _3 + second: {fileID: 2100000, guid: 6d903ebfb8b8f51429de746e9ab9a2a1, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _30 + second: {fileID: 2100000, guid: ad0602ac1eca4014c9a101d448144398, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _300 + second: {fileID: 2100000, guid: 33cd5cdda39495d4693d9941b2ad3f81, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _301 + second: {fileID: 2100000, guid: 1c9589c8bffee364695e2509d0d8eccf, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _302 + second: {fileID: 2100000, guid: acc5342a636eb3d48aa14f2e770a8ca5, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _303 + second: {fileID: 2100000, guid: 3fe4a5ebc34d4d248a64709a91a3bc42, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _304 + second: {fileID: 2100000, guid: d91c579377c89414aa70033444bab1ea, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _305 + second: {fileID: 2100000, guid: ea964453db65ca742bf758a24bd9b4c2, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _31 + second: {fileID: 2100000, guid: 53b7cd95c36e35d4ca25321a12f9ec1e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _312 + second: {fileID: 2100000, guid: eb75159c780433347b354034f9c9455c, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _313 + second: {fileID: 2100000, guid: ed1635979a6526d4a9acac501a5f3f2d, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _32 + second: {fileID: 2100000, guid: 38acbcddcdb24f344a71d0ed41dd7f97, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _33 + second: {fileID: 2100000, guid: ac45b8e2ed183604bb61cf4f6c252cfe, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _34 + second: {fileID: 2100000, guid: e9565d57af8986948b0a46855d86538a, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _35 + second: {fileID: 2100000, guid: 77f8822c7390931438339179a801c6b4, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _36 + second: {fileID: 2100000, guid: 5d8d17c4d8dd82b4794b80d39ef02496, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _37 + second: {fileID: 2100000, guid: d1be596e68a99ec44971a323c9c6e887, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _38 + second: {fileID: 2100000, guid: 98a5cd8c7c4072a43848eef029a8aebe, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _39 + second: {fileID: 2100000, guid: bd3df716f21ff7348acc20398684f852, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _4 + second: {fileID: 2100000, guid: 4c3e1b8998a820b42b174e8694910bd1, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _40 + second: {fileID: 2100000, guid: b4436bf2e79715a40926a7676cc3e914, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _42 + second: {fileID: 2100000, guid: d02a63ff981fce24ab3736236d28ff63, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _43 + second: {fileID: 2100000, guid: c65b5bdfafd5c96438ae65bd675a27b4, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _44 + second: {fileID: 2100000, guid: cae404b95dc7d474c9b0283456806784, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _47 + second: {fileID: 2100000, guid: 95c88331d56221b40a70dcbc697553ef, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _48 + second: {fileID: 2100000, guid: 9884edce783d9fb41a6e3587b224ab2a, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _49 + second: {fileID: 2100000, guid: 1c15dacf9a3b4a04d8edccfff8f2e094, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _51 + second: {fileID: 2100000, guid: 1171bf9e171424f4cafa4f9bdf16b841, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _53 + second: {fileID: 2100000, guid: 1f8caab57f5319e4da09d52b1f7bf1bb, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _54 + second: {fileID: 2100000, guid: 48a8e23edc0509742857bf183d40134b, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _58 + second: {fileID: 2100000, guid: 23bd1bfe5ef31ae4e93af1cecfef1b7a, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _6 + second: {fileID: 2100000, guid: 83878c06b517d0845bf778be96f0da15, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _60 + second: {fileID: 2100000, guid: d450843c69cfb094e9b01507a4e7b8ba, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _61 + second: {fileID: 2100000, guid: 0b49ce90492e66e4f87a236667693f34, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _62 + second: {fileID: 2100000, guid: 818ac86c5ae608a4ba2a15c0fb577542, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _63 + second: {fileID: 2100000, guid: 3bfa13816c478fb4285de25a55779bd9, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _64 + second: {fileID: 2100000, guid: fdd57137d89ff5643a44600409348a9d, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _65 + second: {fileID: 2100000, guid: 1ba5e86218230984ca6313cd0bcbe4bd, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _66 + second: {fileID: 2100000, guid: 47e69d0c22f6f48488e4b69b6c86f2ff, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _7 + second: {fileID: 2100000, guid: 0f00a8370f50d244ca77620227c7113f, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _73 + second: {fileID: 2100000, guid: 78c85c28c3d6c99429476315865ad710, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _79 + second: {fileID: 2100000, guid: dd9f0940f2f28084a93afe7365134a36, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _80 + second: {fileID: 2100000, guid: f2a9b7768cff89f4cba72606d316b477, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _81 + second: {fileID: 2100000, guid: 08594544614337940a04fe7ed2cd4700, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _82 + second: {fileID: 2100000, guid: bb9605d7c0344e546adf1eeaa2a8b319, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _86 + second: {fileID: 2100000, guid: 189d0f556cf9b5549865ab81c13f5d74, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _89 + second: {fileID: 2100000, guid: 9f3bc03cbe871824593d13e7ecaa96a4, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _90 + second: {fileID: 2100000, guid: 296c6d375731b6641b31adc9ef4b37d3, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _91 + second: {fileID: 2100000, guid: ffa99aa5165fbf048a5be6ae474d897f, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _94 + second: {fileID: 2100000, guid: 7b0a0ac268c093f4aa43f4b3014dfbcb, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _95 + second: {fileID: 2100000, guid: db601c509210c85488d88780242d80b0, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _97 + second: {fileID: 2100000, guid: 7f78c3859c6e0c543a60431f243222ea, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _CorrogateShiny_1 + second: {fileID: 2100000, guid: c458fcd82140778418d4bee6a653d8a8, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _CorrogateShiny_2 + second: {fileID: 2100000, guid: dc8c64c467d882841896e04b5cd19dcb, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _CorrogateShiny_3 + second: {fileID: 2100000, guid: 933e75cfb99eef842b6afa248772f3d3, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _CorrogateShiny_4 + second: {fileID: 2100000, guid: 7fcd319de34209c49aaa18b3deb2da5b, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _auto_ + second: {fileID: 2100000, guid: 863e0032aaccd5642a1128b8e0a0df08, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: _defaultMat + second: {fileID: 2100000, guid: fafe938e23865574db42eb6e01ca0f17, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: ffffMaterial53 + second: {fileID: 2100000, guid: b3dc973689dda4b4a857122149f47988, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: sdfff + second: {fileID: 2100000, guid: e61bb47ade2cbf643babb1de91a33d90, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: sdfff1 + second: {fileID: 2100000, guid: e07cfdf4896e12842bf13bb170566834, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: sfffsdvcMaterial13 + second: {fileID: 2100000, guid: 2bdc6a53dc09ae74b84d9367106d72e9, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: "\u3134\u3147\uB9AC\u3161" + second: {fileID: 2100000, guid: ac2c2f20aaf9f0f4d92d758d170ee0e4, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: "\uAC04\uD310\uD070\uAC70" + second: {fileID: 2100000, guid: 362d7dfb47b94ce4cb201d10c81b49fc, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: "\uAD00\uBAA94" + second: {fileID: 2100000, guid: 24eda726df8dc6048a3471896bcaace9, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: "\uB098\uB09C\uB098\uBB34" + second: {fileID: 2100000, guid: 2d139290b3ef8ea4dbc5ee94938d591a, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: "\uB098\uBB347" + second: {fileID: 2100000, guid: 2ac81a7609dd5aa43bc2dff9293174e9, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: "\uB0B4\uAC00\uB9CC\uB4E0\uB098\uBB34" + second: {fileID: 2100000, guid: 8f694051cd524a14ba5cad9ce7cd9482, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: "\uB0B4\uAC00\uB9CC\uB4E0\uB098\uBB342" + second: {fileID: 2100000, guid: d4fc45b8e6c43b8419e8ec3f278cb87e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: "\uCE90\uB178\uD53C\uC720\uB9AC" + second: {fileID: 2100000, guid: 39e7036d16628f34fa469cd488acb70e, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: "\uCE90\uB178\uD53C\uC720\uB9AC\uC606\uBA74" + second: {fileID: 2100000, guid: c8a3747fa6d7d5148b6367667ea08fd0, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: "\uD39C\uC2A4" + second: {fileID: 2100000, guid: cbd7e09b1416aa04c8dd8bd5620f9e5f, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: "\uD4801" + second: {fileID: 2100000, guid: b713974adfa0e2f4cbd4cf0dd65e77e8, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: "\uD4802" + second: {fileID: 2100000, guid: bc223087fa2bd4047a912843072db159, type: 2} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 060a5925fa6e5ae907b2327d90abe216_tint0x414652FF + second: {fileID: 2800000, guid: 4179bb9606206154a964dbab861c7079, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 0611cc2bfc8d0e7c1938da5cef558e34 + second: {fileID: 2800000, guid: c57b5dc9f8613b64d8c7ef3930cf6e9a, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 0ad8e6451692b77c9f202e1b94e82615_tint0xD1D1D1FF + second: {fileID: 2800000, guid: 99200d885ea62274b883fdc44a9b6a56, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 1186b74ebf96a1639a5cd133df6347ec + second: {fileID: 2800000, guid: 368d80592a7bbff40a26882f98852b8d, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 123_tint0xB6AD9AFF + second: {fileID: 2800000, guid: 64003d53e978ebb4190728be97502aab, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 15b1e78a5d6d1e85bbaaa82dd875053c + second: {fileID: 2800000, guid: 929172db153b12a428363d700f7dff0f, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 1df08e7ecf2c84dd9d94881d1948323f + second: {fileID: 2800000, guid: c843e3d67dbab7e459962eabfd5a659f, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 1f4623f9a9c8fcd28a462d933ee4b162 + second: {fileID: 2800000, guid: 4478e132ddf0f464890797c2e03d7f3f, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 1f464434223ab9f5f62c0c282fea3ce8 + second: {fileID: 2800000, guid: 0da09411a91339044a6f9eb98ca129be, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 2123_tint0xBABABAFF + second: {fileID: 2800000, guid: f57eb1fedcb8e29469ee952431d3933e, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 21a6ed7c6f1381f7afa75a3abb64373e + second: {fileID: 2800000, guid: d40e3ee1b1628184cba1eecc19ab027e, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 223b30aecee188ba34e159a9797bbddf + second: {fileID: 2800000, guid: 2980b604bd6ea8345a1d52f4d34f3dac, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 2331aaeb8997b116480a4fc83eec1877 + second: {fileID: 2800000, guid: f258db5daeaf3c04295e5b0406ac55b3, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 27512d14cb52d64c98a4684abfc41fd8 + second: {fileID: 2800000, guid: 8992354a5eccaa74889f5a0d644b34fa, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 287256c849702a9b78a25be087ea3207 + second: {fileID: 2800000, guid: 7e13ebb981afa0747b5ea482f35cda08, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 2_tint0x7EA9A691 + second: {fileID: 2800000, guid: 79747f08b85ee884f9eaf8b56241bec9, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 2_tint0xA9C5C3FF + second: {fileID: 2800000, guid: bdb71d47483b5804783b4706a25faed1, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 2dfc3005487a6981f5a793cfc20108e8 + second: {fileID: 2800000, guid: 54c2977b941a5874c95e9d69f7dbcaac, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 32094e411da209e5a94c1215d234e911 + second: {fileID: 2800000, guid: 216ca26b493125e4f976e088cf4db39e, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 36d70c74a9e3e6c22c65b72813ba93fe + second: {fileID: 2800000, guid: 51d573bd0871cd74e9099357d8161f08, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 37605e9c82c8ee95e19bd63b6c813032 + second: {fileID: 2800000, guid: 87174b6aaf8ff734c955e3227aaa5baa, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 3a6e622cb2b00cec46a001c308cbf13d + second: {fileID: 2800000, guid: a5caac5ea579cf64b8d53b77d0295e08, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 3af12cc6c1d71c941de18362e7133c99 + second: {fileID: 2800000, guid: a68b5aa8ab7926849a4fe8af6369f579, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 48e2ba6078141ab94df186c299e6621d + second: {fileID: 2800000, guid: cac77f3385185ce4995f50f5ed4c5394, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 5099c2b4dce2d17b5ae03ca42085b5f5 + second: {fileID: 2800000, guid: a637e151fc1a78244baf63a057af8519, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 546f0f9a41d63180330454fb10f63e0d + second: {fileID: 2800000, guid: 122317f7a93611d43a915af7a2509a8b, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 5ce47790dc54774a712c266b6c33c2d6_tint0x779C39FF + second: {fileID: 2800000, guid: c7942435d771f394e929244b8c72354c, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 5d224454fed36c671e204808bb8ae8f5 + second: {fileID: 2800000, guid: 66dde50edbde7854991d2991b036f95f, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 5f8ae9a2991b9c556538f713e1c8b8d4 + second: {fileID: 2800000, guid: 6b68d26f91c95ba4c8b0fc07b7481c6a, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 5fc9f8d5deae8b912550bd0321b08cf6 + second: {fileID: 2800000, guid: b1a24f22ffe0db344bdb338bb2e5acdb, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 64d25adb9e51fa759263f63f65eaa7ee + second: {fileID: 2800000, guid: 023549903801b974592bc39c2238af2a, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 657cc513908fa9fe4a31aff99f552a73 + second: {fileID: 2800000, guid: 60c120d4b51014649bb77bcf27485a4b, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 65a669438303df8c11f6f05493f81184 + second: {fileID: 2800000, guid: 514ec5807737b134d8c127f49aef5adb, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 6846bbc0f1619215da5ac24d85159295_tint0xBCD3D6FF + second: {fileID: 2800000, guid: 9125ba382957cc34bb07d342cd92f4b5, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 6846bbc0f1619215da5ac24d85159295_tint0xD6C2BCFF + second: {fileID: 2800000, guid: cdba1e0461ed7fe4dbad00d806b86e99, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 73a9ad63ce8824e881968a06ae35cbbb + second: {fileID: 2800000, guid: 2a23c1bf4f6488d458238c99c16b14b3, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 79e89909ffaae125c662f0ce87df5176 + second: {fileID: 2800000, guid: b18bda2755f89de4ab820de57baf1b58, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 7b0e2e1555a23dc07ca325711f448533 + second: {fileID: 2800000, guid: 7a12d4f3640cfcc42bb09a406ffde7e4, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 7c4983dbe5b43c9147e7bf09ccf9937c + second: {fileID: 2800000, guid: 26cf5946bb28cb8488de46f40dc04fde, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 7df74dcba818888cfa8fe134c20cb8d4 + second: {fileID: 2800000, guid: daa25aa33e5a3e1479c3d05c73795441, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 800170d91fd6ae70c888aa87b72b8f69 + second: {fileID: 2800000, guid: aae7ae9fac0e2a54892070deabed721c, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 8a4c9353c380edaa3125919213f11c09 + second: {fileID: 2800000, guid: a1389c0f8d8aa2f44980627b74275ca1, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 8edcc2c2f041f446629e3fe0c7c27283 + second: {fileID: 2800000, guid: 752a267bf323d1b4787299ad56be610b, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 93bdfffafe1f86fb2261d401bff73a0c + second: {fileID: 2800000, guid: d734e8983ba2bf14a847cbc30b290332, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 95d619e84976f5cf57dbca6c4bfee003 + second: {fileID: 2800000, guid: 48108ccaeb6658942a621e7f1b9e8a4a, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 972984a150a206187b676524678a746a + second: {fileID: 2800000, guid: 582b83cb985ede44e8db661c0fe79251, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 98977987_tint0x626773FF + second: {fileID: 2800000, guid: 1b9149e59711d5c4ba9f197bdc61c44c, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: 98977987_tint0xE7E6E3FF + second: {fileID: 2800000, guid: 2d0df06e68daf5248825d05645a131aa, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Brick_Antique_tint0x655A51FF + second: {fileID: 2800000, guid: 0ecc1e5364824a84aa8aa0d8a6166764, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Brick_Antique_tint0x776454FF + second: {fileID: 2800000, guid: fe0baf6f05652c6468d3ee00c9a22ed0, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Brick_Antique_tint0x8C8381FF + second: {fileID: 2800000, guid: b14905d006e825448a21a87220afea99, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Brick_Antique_tint0x957D7CFF + second: {fileID: 2800000, guid: 08eee0f861e24f04db9b9ac6e0f7ef9e, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Brick_Antique_tint0xB2A9A1FF + second: {fileID: 2800000, guid: af31e3faab34b5c4db65ba7f9b8a5e43, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Brick_Antique_tint0xC1C1C1FF + second: {fileID: 2800000, guid: 02ef2878843c6da46942e036343eec5f, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Brick_Antique_tint0xCECBC9FF + second: {fileID: 2800000, guid: 2fa6f2d178c78124b96913441b14853f, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Brick_Rough_Dark_tint0x947C79FF + second: {fileID: 2800000, guid: 45ac4018aa8fde241b2d53aea3ff2350, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Cladding_Stucco_White + second: {fileID: 2800000, guid: d24797941b58e9b4f9bf8724f62bac4a, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Concrete_Block_8x8_Gray + second: {fileID: 2800000, guid: 01df62548e82e964e9a74cf55c4e7d63, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: CorrogateShiny_tint0x989FA7FF + second: {fileID: 2800000, guid: 4c589c469a6ae5f419c092116a756b92, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: CorrogateShiny_tint0xA0A0A0FF + second: {fileID: 2800000, guid: 8a7f2209cb1c767469eed7765287264e, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: CorrogateShiny_tint0xC3CDD4FF + second: {fileID: 2800000, guid: 5d52ac0578484c246b545b3e65845f4f, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: CorrogateShiny_tint0xCECECEFF + second: {fileID: 2800000, guid: 183a04209cf89654c861a3676c8030c2, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: CorrogateShiny_tint0xDBDBDBFF + second: {fileID: 2800000, guid: 1dc0859fb14ab4145a109852e00aadc9, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Fencing_Weathered_tint0x756B65FF + second: {fileID: 2800000, guid: 17e45bade01ad2e4d9aa8f5623a7c2d8, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Metal Silver + second: {fileID: 2800000, guid: 718d9864e2767e548a87750901ea3f82, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Metal_Corrogated_Shiny_tint0xCECECEFF + second: {fileID: 2800000, guid: 3fcab8767e718b443aa5422869e6e479, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Metal_Corrogated_Shiny_tint0xE8E8E8FF + second: {fileID: 2800000, guid: f4e97d7804acd6b4f8f09005ae657bb5, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Metal_Corrogated_Shiny_tint0xEAEAEAFF + second: {fileID: 2800000, guid: 9feb0bd0e213e204994cd5764263ac40, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Mirror_01_tint0x84B8DBC9 + second: {fileID: 2800000, guid: 4646f3c50c610c64aba863ac31325a0b, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Polished Concrete Old(1)_tint0xE9E8E1FF + second: {fileID: 2800000, guid: ff2a1f6fcd1ac9642a5f5169000439e6, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Roofing Scalloped_tint0x404349FF + second: {fileID: 2800000, guid: f52b991f05eec9147a7c377839ca7ef1, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Roofing_Shingles_GAF_Estates_tint0x716968FF + second: {fileID: 2800000, guid: 30b5840a1484c50409aa8aed77a3116a, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Roofing_Tile_Spanish_tint0x603E33FF + second: {fileID: 2800000, guid: 461a87ace6d311f41a04c29a95d06342, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Rough Square Concrete Block_tint0xF0EFEFFF + second: {fileID: 2800000, guid: 1ead2fc79a7cacd40a1f7204ec8a27e5, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Tile Limestone Large_tint0xBDACA2FF + second: {fileID: 2800000, guid: 0aa65130fd3df5a4989a6b972af068f8, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Tile Limestone Large_tint0xEDE7E7FF + second: {fileID: 2800000, guid: 460b9c1eebe199d4a8642ade601819dd, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Tile Limestone Large_tint0xF0F0F0FF + second: {fileID: 2800000, guid: a066ff850ba71444cba4fa5b958c0e62, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Tile_Ceramic_Natural_tint0xD3D3D3FF + second: {fileID: 2800000, guid: 81fe31de65a3fdd4a80d58598bcf5c3b, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Untitled-1 + second: {fileID: 2800000, guid: 787ba7e9654110940b723639a1e210b4, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Untitled-2_tint0xB8A79DFF + second: {fileID: 2800000, guid: 795ecbd772390a54591badfbae5ced93, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Untitled-2_tint0xD8D0C9FF + second: {fileID: 2800000, guid: e32b3c024bf20a7428ac88548a78cbd6, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Untitled-4_tint0xA7A5A3FF + second: {fileID: 2800000, guid: 488f627fc1207414abf3beffa01a6c99, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Untitled-4_tint0xAEB7BBFF + second: {fileID: 2800000, guid: d18cd61fbacd5a445a6559aff25e0bc1, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Untitled-4_tint0xD0CDCCFF + second: {fileID: 2800000, guid: 8011233cfff5c6e419de0b70f5aa0071, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: Untitled-4_tint0xD5D9DCFF + second: {fileID: 2800000, guid: 2c58170ad3aafda4588218e55615d6b6, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: a2fbc7982d5c8cff38cf130a727dc0fd + second: {fileID: 2800000, guid: a1ad9af37d29b3346a1c888007fe02a0, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: a42d7ddbf66534b7cf0f15670666d181 + second: {fileID: 2800000, guid: a3bbbb37c4b31684e896f47138ba6aca, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: a47c4bc8ec21b4862e6667cc9c04a709 + second: {fileID: 2800000, guid: 2a58cd93cce711a419b3c24740f0282a, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: a584793c0abd82895e652b4cf2516cf7 + second: {fileID: 2800000, guid: e1a0db01a073c954986dfb97857ac2d2, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: a6258b854a796365a332ca3f2abc0867 + second: {fileID: 2800000, guid: e4727c66222cc794db155497b133f9f6, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: aa + second: {fileID: 2800000, guid: 0655ed354067c0a468d6566cc0ba263a, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: aa_tint0x709045FF + second: {fileID: 2800000, guid: 8cba01dc5e5174f4eb1654000486bd08, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: b59a1a54a4ec36a375c16fb6f94e006e + second: {fileID: 2800000, guid: d36313a440cd796448b2d62444f398c3, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: c118419eefb041b569fa9b23e06badf6 + second: {fileID: 2800000, guid: 0eb231df0fd1bb2438d9a0b931e9c50c, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: c32d0325517813db053f54fb6e952b1c + second: {fileID: 2800000, guid: 9ef8bcb30a0a4d3499ad44b7f5cf02bd, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: c61e32ff3d43fdd664f0f05218675a05 + second: {fileID: 2800000, guid: b5a616eadd5637f4d83f3ef6ebf1f041, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: c8b96df20863fe794ce777242c584a23 + second: {fileID: 2800000, guid: 48202eec9c2c8c048a03da65b80042ce, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: c914af6dc0db884084a0504254174913 + second: {fileID: 2800000, guid: fbd87c922444d8245b7f44ee2765fa8b, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: cc037c27da50910cf85be471779d6070 + second: {fileID: 2800000, guid: 94d20566d74d1dd47bb1f80ba231d3f8, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: d1cd0c47c719d3ee864532fa38f23ce2 + second: {fileID: 2800000, guid: 4a535c43a61ef094dba78b0bf0c92c1a, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: d517d94ff5864735c1abd843d12a5058 + second: {fileID: 2800000, guid: 68e58eb003da88c43a165e75b3a12761, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: d6e8837e805b28c8fae757779abc6326 + second: {fileID: 2800000, guid: de434b35a0a472d42872ba147c089e3b, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: d7c2be91662c34d5c4ca1496449dd9a4 + second: {fileID: 2800000, guid: 49c369211bb719a4cad6dd5aa900ac15, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: d81db103b1fe88956fc6d92fb9b3a961 + second: {fileID: 2800000, guid: 746314b13ca46e8468892b45213b0a44, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: e252bfbe3a8b0cf37c4ffc326a2112c8 + second: {fileID: 2800000, guid: 5e674f5fe018c4948bf47ce4e40af4ea, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: e4339ec095d987872c902936d27a3e98 + second: {fileID: 2800000, guid: 1cfdf0fa017a90a418a39f8c1184cb0e, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: e84c76b3b1078b35a01c9886e0999e9a + second: {fileID: 2800000, guid: 86f7838fccfffd54a93d11be7a7da562, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: f222751465d40967a07d7f1a6f744d5a + second: {fileID: 2800000, guid: 545e0946497d3074f90b98e7ed29a0ab, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: f6db4f3d223b435f665c75f09224d2b6 + second: {fileID: 2800000, guid: 8f47c773dda5a1b49a1b763845f20905, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uAC00\uB85C\uC218\uBCF4\uD638\uD3102" + second: {fileID: 2800000, guid: 85f034aa5f2241740ad5c45f1570aaad, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uAD00\uBAA94-\uC2E4\uD5D8_tint0x386B28FF" + second: {fileID: 2800000, guid: a73867c7c5f9575418dc69f535bf4932, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uB098\uB09C\uB098\uBB34_tint0x515949FF" + second: {fileID: 2800000, guid: 558cc5ed845b0a34a8e0a6a24391514a, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uB098\uB09C\uB098\uBB34_tint0x587934FF" + second: {fileID: 2800000, guid: 8ee17ca9c4278484fa34cdd2ce4152c8, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uB098\uB09C\uB098\uBB34_tint0x758965FF" + second: {fileID: 2800000, guid: 79d773b34ba53974b94b42e5596ed742, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uB098\uBB3411" + second: {fileID: 2800000, guid: ff6ef5a3a411b1d41b34bbc758f60fef, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uB098\uBB341\u3151\u3151_tint0x775539FF" + second: {fileID: 2800000, guid: b9e83091291e1da49ab76aed68c40d41, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uB0B4\uAC00\uB9CC\uB4E0\uB098\uBB342_tint0xADBEA3FF" + second: {fileID: 2800000, guid: 8cda9bd045b35fd49b6a740901ce267c, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uB0B4\uAC00\uB9CC\uB4E0\uB098\uBB34_tint0xBBC6B2FF" + second: {fileID: 2800000, guid: c85c2d9b932f32944aa4bbfb858bc672, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uB179\uC2A8\uCCAD\uB3D9" + second: {fileID: 2800000, guid: fef6eab3ba5262d489d354cf33072b8d, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uB9E8\uD640\uB69C\uAED1" + second: {fileID: 2800000, guid: 9622857d0f79fed4b893f0b9397c2fcb, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uBB382_tint0xAD8E7FFF" + second: {fileID: 2800000, guid: 81df47f78f71c7c418d30541369249eb, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uBC14\uB2E52" + second: {fileID: 2800000, guid: 964f62427e2c44149a70c81d2128366f, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uBC14\uB2E5\uD0C0\uC77C2_tint0xE9E8E6FF" + second: {fileID: 2800000, guid: 450405106bf14534094376c800d57c30, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uBC14\uB2E5\uD0C0\uC77C3_tint0xB9B4ABFF" + second: {fileID: 2800000, guid: f0b9085eb7dab894c8ccbf96f18210e5, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uBC14\uB2E5\uD0C0\uC77C3_tint0xC6C1C1FF" + second: {fileID: 2800000, guid: a1871560990622a4588bddc198fc1d8c, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uBC14\uB2E5\uD0C0\uC77C3_tint0xEBEEEEFF" + second: {fileID: 2800000, guid: 5cec7b34cd84b4340aee20a327f397e2, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uBCBD\uB3CC'_tint0xC0C1BDFF" + second: {fileID: 2800000, guid: b3c42acd6359a774bb3d7c39b3124ff7, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uBCBD\uB3CC'_tint0xD6D7D4FF" + second: {fileID: 2800000, guid: b5a84d239e9658547a3247a41f9dbd71, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uBCBD\uB3CC3_tint0xD2D2CFFF" + second: {fileID: 2800000, guid: 0dee4d92a7bb72947a670417f78dd4d7, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uBCBD\uB3CC4" + second: {fileID: 2800000, guid: 40f4773ee72ff0d4791659e19a2bc9b2, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uBCBD\uB3CC4_tint0xE5E4E0FF" + second: {fileID: 2800000, guid: b7d50f2e31862ab40bd74708f5c1e645, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uBCBD\uB3CC\uBCBD2 (2)" + second: {fileID: 2800000, guid: 35e4168791728a3439b5fb7235a2bdd5, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uBCBD\uB3CC\uBCBD_tint0xCBCAC7FF" + second: {fileID: 2800000, guid: c868ff3813bdbfb4ea1ae4d0b66c6b1e, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uBCBD\uB3CC\uBCBD\uC2E4\uD5D82_tint0xD2D2CFFF" + second: {fileID: 2800000, guid: 60c08b127426e904b942b9f5c771a164, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uBCF4\uB3C4\uBE14\uB7ED2_tint0xD9E1DFFF" + second: {fileID: 2800000, guid: cde63a9a8c808044489144f81c5da635, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uBCF4\uB3C4\uBE14\uB7ED2_tint0xE1D9D9FF" + second: {fileID: 2800000, guid: a3b8d3d6c18ad8c4d9e2b73895d860f3, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uC131\uBB38" + second: {fileID: 2800000, guid: 89b7528a39de10f4ab1346640494cba0, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uC5B4\uB450\uC6B4\uB300\uB9AC\uC11D_tint0x262626FF" + second: {fileID: 2800000, guid: 3791e2cf2e6a1d7468ce57cb432638b2, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uC5B4\uB450\uC6B4\uB300\uB9AC\uC11D_tint0x50545DFF" + second: {fileID: 2800000, guid: 7d15fffa25fa98f42834a0e6ef581d5d, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uC5B4\uB450\uC6B4\uB300\uB9AC\uC11D_tint0x616F6FFF" + second: {fileID: 2800000, guid: c4a380cc309f6784aa0359aa7c997c70, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uC5BC\uB8E91_tint0xC2C0BCFF" + second: {fileID: 2800000, guid: 3899efab197b037499f0510e57f54da4, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uC5BC\uB8E91_tint0xD5D4D1FF" + second: {fileID: 2800000, guid: 75c4e7820331ce943989f676d8efdffa, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uC5BC\uB8E91_tint0xECEEEEFF" + second: {fileID: 2800000, guid: f80925aec6242a046b2ea89e091d2f2e, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uC5BC\uB8E92" + second: {fileID: 2800000, guid: f148290fc1e59074f8de1d3a9e9b019d, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uC790\uAC08_tint0xEDEDEDFF" + second: {fileID: 2800000, guid: bc1464af83ed1414f8158104872b53c9, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uC794\uB5141" + second: {fileID: 2800000, guid: 58f7afb83a7363e4499beb7662553523, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uC794\uB5141_tint0x739738FF" + second: {fileID: 2800000, guid: b372da515487569449c2ff027000e9e3, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uC794\uB5141_tint0x7B593BFF" + second: {fileID: 2800000, guid: effa3fb888d985441b84f6cb1ffce77c, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uC7A5\uC560\uC778\uBE14\uB7ED_tint0xC8AA64FF" + second: {fileID: 2800000, guid: 33b69ca475030b44ea68a3931581e346, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uCD08\uB85D_tint0xC1CACCFF" + second: {fileID: 2800000, guid: 8676f3fa67106b948af1d436d3ca8115, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uD0C0\uC77C1_tint0x8C8F90FF" + second: {fileID: 2800000, guid: 67ee3c7da8cbe9042938279220e7f2f8, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uD0C0\uC77C1_tint0xC3C9CFFF" + second: {fileID: 2800000, guid: 09de09c7b3d572e48983a8122e6bfee5, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uD0DC\uC591\uAD11\uD328\uB110_tint0x4E7CB5FF" + second: {fileID: 2800000, guid: 554cd73fe010f274594fd014ed6bc35a, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uD398\uC774\uBE591" + second: {fileID: 2800000, guid: c4bda7f2ad558c540bf0104facf4ed74, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uD398\uC774\uBE593_tint0xDBD9D5FF" + second: {fileID: 2800000, guid: 1a222a55684a5c74fa615440eca8e0ba, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uD3EC\uC2A4\uD1303" + second: {fileID: 2800000, guid: e1b85657d6908d6419e74d26954eac82, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uD4801_tint0x6BB742FF" + second: {fileID: 2800000, guid: 8323ac4e5c63ff14593b1b0583f75ab6, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uD4802_tint0x5CBF3FFF" + second: {fileID: 2800000, guid: ba376170b980ad944b7e7f35e92e145c, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uD559\uAD50\uBCBD\uB3CC_tint0xDEAF81FF" + second: {fileID: 2800000, guid: 70dceec448aadc84394032407b4e1f0e, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uD654\uAC15\uC5541_tint0xBFBEBFFF" + second: {fileID: 2800000, guid: 172d10c0faf611e46a0349c6797af044, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uD654\uAC15\uC5541_tint0xEAEAEAFF" + second: {fileID: 2800000, guid: dc99bd8aac8e12d438fb24aaae2273a5, type: 3} + - first: + type: UnityEngine:Texture2D + assembly: UnityEngine.CoreModule + name: "\uD759(\uC6A9\uB7C9\uC801\uC740\uAC70)_tint0xDCDBC0FF" + second: {fileID: 2800000, guid: c4fa8fa281013b14bbd4f23cefabe242, type: 3} + materials: + materialImportMode: 2 + materialName: 2 + materialSearch: 0 + 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: 1 + meshes: + lODScreenPercentages: [] + globalScale: 0.0254 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 0 + 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: 0 + 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: 0.0254 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 0 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: + generateBackFace: 0 + mergeCoplanarFaces: 0 + selectedNodes: 000000000100000002000000030000000400000005000000060000000700000008000000090000000a0000000b0000000c0000000d0000000e0000000f000000100000001100000012000000130000001400000015000000160000001700000018000000190000001a0000001b0000001c0000001d0000001e0000001f000000200000002100000022000000230000002400000025000000260000002700000028000000290000002a0000002b0000002c0000002d0000002e0000002f000000300000003100000032000000330000003400000035000000360000003700000038000000390000003a0000003b0000003c0000003d0000003e0000003f000000400000004100000042000000430000004400000045000000460000004700000048000000490000004a0000004b0000004c0000004d0000004e0000004f000000500000005100000052000000530000005400000055000000560000005700000058000000590000005a0000005b0000005c0000005d0000005e0000005f000000600000006100000062000000630000006400000065000000660000006700000068000000690000006a0000006b0000006c0000006d0000006e0000006f000000700000007100000072000000730000007400000075000000760000007700000078000000790000007a0000007b0000007c0000007d0000007e0000007f000000800000008100000082000000830000008400000085000000860000008700000088000000890000008a0000008b0000008c0000008d0000008e0000008f000000900000009100000092000000930000009400000095000000960000009700000098000000990000009a0000009b0000009c0000009d0000009e0000009f000000a0000000a1000000a2000000a3000000a4000000a5000000a6000000a7000000a8000000a9000000aa000000ab000000ac000000ad000000ae000000af000000b0000000b1000000b2000000b3000000b4000000b5000000b6000000b7000000b8000000b9000000ba000000bb000000bc000000bd000000be000000bf000000c0000000c1000000c2000000c3000000c4000000c5000000c6000000c7000000c8000000c9000000ca000000cb000000cc000000cd000000ce000000cf000000d0000000d1000000d2000000d3000000d4000000d5000000d6000000d7000000d8000000d9000000da000000db000000dc000000dd000000de000000df000000e0000000e1000000e2000000e3000000e4000000e5000000e6000000e7000000e8000000e9000000ea000000eb000000ec000000ed000000ee000000ef000000f0000000f1000000f2000000f3000000f4000000f5000000f6000000f7000000f8000000f9000000fa000000fb000000fc000000fd000000fe000000ff000000000100000101000002010000030100000401000005010000060100000701000008010000090100000a0100000b0100000c0100000d0100000e0100000f010000100100001101000012010000130100001401000015010000160100001701000018010000190100001a0100001b0100001c0100001d0100001e0100001f010000200100002101000022010000230100002401000025010000260100002701000028010000290100002a0100002b0100002c0100002d0100002e0100002f010000300100003101000032010000330100003401000035010000360100003701000038010000390100003a0100003b0100003c0100003d0100003e0100003f010000400100004101000042010000430100004401000045010000460100004701000048010000490100004a0100004b0100004c0100004d0100004e0100004f010000500100005101000052010000530100005401000055010000560100005701000058010000590100005a0100005b0100005c0100005d0100005e0100005f010000600100006101000062010000630100006401000065010000660100006701000068010000690100006a0100006b0100006c0100006d0100006e0100006f010000700100007101000072010000730100007401000075010000760100007701000078010000790100007a0100007b0100007c0100007d0100007e0100007f010000800100008101000082010000830100008401000085010000860100008701000088010000890100008a0100008b0100008c0100008d0100008e0100008f010000900100009101000092010000930100009401000095010000960100009701000098010000990100009a0100009b0100009c0100009d0100009e0100009f010000a0010000a1010000a2010000a3010000a4010000a5010000a6010000a7010000a8010000a9010000aa010000ab010000ac010000ad010000ae010000af010000b0010000b1010000b2010000b3010000b4010000b5010000b6010000b7010000b8010000b9010000ba010000bb010000bc010000bd010000be010000bf010000c0010000c1010000c2010000c3010000c4010000c5010000c6010000c7010000c8010000c9010000ca010000cb010000cc010000cd010000ce010000cf010000d0010000d1010000d2010000d3010000d4010000d5010000d6010000d7010000d8010000d9010000da010000db010000dc010000dd010000de010000df010000e0010000e1010000e2010000e3010000e4010000e5010000e6010000e7010000e8010000e9010000ea010000eb010000ec010000ed010000ee010000ef010000f0010000f1010000f2010000f3010000f4010000f5010000f6010000f7010000f8010000f9010000fa010000fb010000fc010000fd010000fe010000ff010000000200000102000002020000030200000402000005020000060200000702000008020000090200000a0200000b0200000c0200000d0200000e0200000f020000100200001102000012020000130200001402000015020000160200001702000018020000190200001a0200001b0200001c0200001d0200001e0200001f020000200200002102000022020000230200002402000025020000260200002702000028020000290200002a0200002b0200002c0200002d0200002e0200002f020000300200003102000032020000330200003402000035020000360200003702000038020000390200003a0200003b0200003c0200003d0200003e0200003f020000400200004102000042020000430200004402000045020000460200004702000048020000490200004a0200004b0200004c0200004d0200004e0200004f020000500200005102000052020000530200005402000055020000560200005702000058020000590200005a0200005b0200005c0200005d0200005e0200005f020000600200006102000062020000630200006402000065020000660200006702000068020000690200006a0200006b0200006c0200006d0200006e0200006f020000700200007102000072020000730200007402000075020000760200007702000078020000790200007a0200007b0200007c0200007d0200007e0200007f020000800200008102000082020000830200008402000085020000860200008702000088020000890200008a0200008b0200008c0200008d0200008e0200008f020000900200009102000092020000930200009402000095020000960200009702000098020000990200009a0200009b0200009c0200009d0200009e0200009f020000a0020000a1020000a2020000a3020000a4020000a5020000a6020000a7020000a8020000a9020000aa020000ab020000ac020000ad020000ae020000af020000b0020000b1020000b2020000b3020000b4020000b5020000b6020000b7020000b8020000b9020000ba020000bb020000bc020000bd020000be020000bf020000c0020000c1020000c2020000c3020000c4020000c5020000c6020000c7020000c8020000c9020000ca020000cb020000cc020000cd020000ce020000cf020000d0020000d1020000d2020000d3020000d4020000d5020000d6020000d7020000d8020000d9020000da020000db020000dc020000dd020000de020000df020000e0020000e1020000e2020000e3020000e4020000e5020000e6020000e7020000e8020000e9020000ea020000eb020000ec020000ed020000ee020000ef020000f0020000f1020000f2020000f3020000f4020000f5020000f6020000f7020000f8020000f9020000fa020000fb020000fc020000fd020000fe020000ff020000000300000103000002030000030300000403000005030000060300000703000008030000090300000a0300000b0300000c0300000d0300000e0300000f030000100300001103000012030000130300001403000015030000160300001703000018030000190300001a0300001b0300001c0300001d0300001e0300001f030000200300002103000022030000230300002403000025030000260300002703000028030000290300002a0300002b0300002c0300002d0300002e0300002f030000300300003103000032030000330300003403000035030000360300003703000038030000390300003a0300003b0300003c0300003d0300003e0300003f030000400300004103000042030000430300004403000045030000460300004703000048030000490300004a0300004b0300004c0300004d0300004e0300004f030000500300005103000052030000530300005403000055030000560300005703000058030000590300005a0300005b0300005c0300005d0300005e0300005f030000600300006103000062030000630300006403000065030000660300006703000068030000690300006a0300006b0300006c0300006d0300006e0300006f030000700300007103000072030000730300007403000075030000760300007703000078030000790300007a0300007b0300007c0300007d0300007e0300007f030000800300008103000082030000830300008403000085030000860300008703000088030000890300008a0300008b0300008c0300008d0300008e0300008f030000900300009103000092030000930300009403000095030000960300009703000098030000990300009a0300009b0300009c0300009d0300009e0300009f030000a0030000a1030000a2030000a3030000a4030000a5030000a6030000a7030000a8030000a9030000aa030000ab030000ac030000ad030000ae030000af030000b0030000b1030000b2030000b3030000b4030000b5030000b6030000b7030000b8030000b9030000ba030000bb030000bc030000bd030000be030000bf030000c0030000c1030000c2030000c3030000c4030000c5030000c6030000c7030000c8030000c9030000ca030000cb030000cc030000cd030000ce030000cf030000d0030000d1030000d2030000d3030000d4030000d5030000d6030000d7030000d8030000d9030000da030000db030000dc030000dd030000de030000df030000e0030000e1030000e2030000e3030000e4030000e5030000e6030000e7030000e8030000e9030000ea030000eb030000ec030000ed030000ee030000ef030000f0030000f1030000f2030000f3030000f4030000f5030000f6030000f7030000f8030000f9030000fa030000fb030000fc030000fd030000fe030000ff030000000400000104000002040000030400000404000005040000060400000704000008040000090400000a0400000b0400000c0400000d0400000e0400000f040000100400001104000012040000130400001404000015040000160400001704000018040000190400001a0400001b0400001c0400001d0400001e0400001f040000200400002104000022040000230400002404000025040000260400002704000028040000290400002a0400002b0400002c0400002d0400002e0400002f040000300400003104000032040000330400003404000035040000360400003704000038040000390400003a0400003b0400003c0400003d0400003e0400003f040000400400004104000042040000430400004404000045040000460400004704000048040000490400004a0400004b0400004c0400004d0400004e0400004f040000500400005104000052040000530400005404000055040000560400005704000058040000590400005a0400005b0400005c0400005d0400005e0400005f040000600400006104000062040000630400006404000065040000660400006704000068040000690400006a0400006b0400006c0400006d0400006e0400006f040000700400007104000072040000730400007404000075040000760400007704000078040000790400007a0400007b0400007c0400007d0400007e0400007f040000800400008104000082040000830400008404000085040000860400008704000088040000890400008a0400008b0400008c0400008d0400008e0400008f040000900400009104000092040000930400009404000095040000960400009704000098040000990400009a0400009b0400009c0400009d0400009e0400009f040000a0040000a1040000a2040000a3040000a4040000a5040000a6040000a7040000a8040000a9040000aa040000ab040000ac040000ad040000ae040000af040000b0040000b1040000b2040000b3040000b4040000b5040000b6040000b7040000b8040000b9040000ba040000bb040000bc040000bd040000be040000bf040000c0040000c1040000c2040000c3040000c4040000c5040000c6040000c7040000c8040000c9040000ca040000cb040000cc040000cd040000ce040000cf040000d0040000d1040000d2040000d3040000d4040000d5040000d6040000d7040000d8040000d9040000da040000db040000dc040000dd040000de040000df040000e0040000e1040000e2040000e3040000e4040000e5040000e6040000e7040000e8040000e9040000ea040000eb040000ec040000ed040000ee040000ef040000f0040000f1040000f2040000f3040000f4040000f5040000f6040000f7040000f8040000f9040000fa040000fb040000fc040000fd040000fe040000ff040000000500000105000002050000030500000405000005050000060500000705000008050000090500000a0500000b0500000c0500000d0500000e0500000f050000100500001105000012050000130500001405000015050000160500001705000018050000190500001a0500001b0500001c0500001d0500001e0500001f050000200500002105000022050000230500002405000025050000260500002705000028050000290500002a0500002b0500002c0500002d0500002e0500002f050000300500003105000032050000330500003405000035050000360500003705000038050000390500003a0500003b0500003c0500003d0500003e0500003f050000400500004105000042050000430500004405000045050000460500004705000048050000490500004a0500004b0500004c0500004d0500004e0500004f050000500500005105000052050000530500005405000055050000560500005705000058050000590500005a0500005b0500005c0500005d0500005e0500005f050000600500006105000062050000630500006405000065050000660500006705000068050000690500006a0500006b0500006c0500006d0500006e0500006f050000700500007105000072050000730500007405000075050000760500007705000078050000790500007a0500007b0500007c0500007d0500007e0500007f050000800500008105000082050000830500008405000085050000860500008705000088050000890500008a0500008b0500008c0500008d0500008e0500008f050000900500009105000092050000930500009405000095050000960500009705000098050000990500009a0500009b0500009c0500009d0500009e0500009f050000a0050000a1050000a2050000a3050000a4050000a5050000a6050000a7050000a8050000a9050000aa050000ab050000ac050000ad050000ae050000af050000b0050000b1050000b2050000b3050000b4050000b5050000b6050000b7050000b8050000b9050000ba050000bb050000bc050000bd050000be050000bf050000c0050000c1050000c2050000c3050000c4050000c5050000c6050000c7050000c8050000c9050000ca050000cb050000cc050000cd050000ce050000cf050000d0050000d1050000d2050000d3050000d4050000d5050000d6050000d7050000d8050000d9050000da050000db050000dc050000dd050000de050000df050000e0050000e1050000e2050000e3050000e4050000e5050000e6050000e7050000e8050000e9050000ea050000eb050000ec050000ed050000ee050000ef050000f0050000f1050000f2050000f3050000f4050000f5050000f6050000f7050000f8050000f9050000fa050000fb050000fc050000fd050000fe050000ff050000000600000106000002060000030600000406000005060000060600000706000008060000090600000a0600000b0600000c0600000d0600000e0600000f060000100600001106000012060000130600001406000015060000160600001706000018060000190600001a0600001b0600001c0600001d0600001e0600001f060000200600002106000022060000230600002406000025060000260600002706000028060000290600002a0600002b0600002c0600002d0600002e0600002f060000300600003106000032060000330600003406000035060000360600003706000038060000390600003a0600003b0600003c0600003d0600003e0600003f060000400600004106000042060000430600004406000045060000460600004706000048060000490600004a0600004b0600004c0600004d0600004e0600004f060000500600005106000052060000530600005406000055060000560600005706000058060000590600005a0600005b0600005c0600005d0600005e0600005f060000600600006106000062060000630600006406000065060000660600006706000068060000690600006a0600006b0600006c0600006d0600006e0600006f060000700600007106000072060000730600007406000075060000760600007706000078060000790600007a0600007b0600007c0600007d0600007e0600007f060000800600008106000082060000830600008406000085060000860600008706000088060000890600008a0600008b0600008c0600008d0600008e0600008f060000900600009106000092060000930600009406000095060000960600009706000098060000990600009a0600009b0600009c0600009d0600009e0600009f060000a0060000a1060000a2060000a3060000a4060000a5060000a6060000a7060000a8060000a9060000aa060000ab060000ac060000ad060000ae060000af060000b0060000b1060000b2060000b3060000b4060000b5060000b6060000b7060000b8060000b9060000ba060000bb060000bc060000bd060000be060000bf060000c0060000c1060000c2060000c3060000c4060000c5060000c6060000c7060000c8060000c9060000ca060000cb060000cc060000cd060000ce060000cf060000d0060000d1060000d2060000d3060000d4060000d5060000d6060000d7060000d8060000d9060000da060000db060000dc060000dd060000de060000df060000e0060000e1060000e2060000e3060000e4060000e5060000e6060000e7060000e8060000e9060000ea060000eb060000ec060000ed060000ee060000ef060000f0060000f1060000f2060000f3060000f4060000f5060000f6060000f7060000f8060000f9060000fa060000fb060000fc060000fd060000fe060000ff060000000700000107000002070000030700000407000005070000060700000707000008070000090700000a0700000b0700000c0700000d0700000e0700000f070000100700001107000012070000130700001407000015070000160700001707000018070000190700001a0700001b0700001c0700001d0700001e0700001f070000200700002107000022070000230700002407000025070000260700002707000028070000290700002a0700002b0700002c0700002d0700002e0700002f070000300700003107000032070000330700003407000035070000360700003707000038070000390700003a0700003b0700003c0700003d0700003e0700003f070000400700004107000042070000430700004407000045070000460700004707000048070000490700004a0700004b0700004c0700004d0700004e0700004f070000500700005107000052070000530700005407000055070000560700005707000058070000590700005a0700005b0700005c0700005d0700005e0700005f070000600700006107000062070000630700006407000065070000660700006707000068070000690700006a0700006b0700006c0700006d0700006e0700006f070000700700007107000072070000730700007407000075070000760700007707000078070000790700007a0700007b0700007c0700007d0700007e0700007f070000800700008107000082070000830700008407000085070000860700008707000088070000890700008a0700008b0700008c0700008d0700008e0700008f070000900700009107000092070000930700009407000095070000960700009707000098070000990700009a0700009b0700009c0700009d0700009e0700009f070000a0070000a1070000a2070000a3070000a4070000a5070000a6070000a7070000a8070000a9070000aa070000ab070000ac070000ad070000ae070000af070000b0070000b1070000b2070000b3070000b4070000b5070000b6070000b7070000b8070000b9070000ba070000bb070000bc070000bd070000be070000bf070000c0070000c1070000c2070000c3070000c4070000c5070000c6070000c7070000c8070000c9070000ca070000cb070000cc070000cd070000ce070000cf070000d0070000d1070000d2070000d3070000d4070000d5070000d6070000d7070000d8070000d9070000da070000db070000dc070000dd070000de070000df070000e0070000e1070000e2070000e3070000e4070000e5070000e6070000e7070000e8070000e9070000ea070000eb070000ec070000ed070000ee070000ef070000f0070000f1070000f2070000f3070000f4070000f5070000f6070000f7070000f8070000f9070000fa070000fb070000fc070000fd070000fe070000ff070000000800000108000002080000030800000408000005080000060800000708000008080000090800000a0800000b0800000c0800000d0800000e0800000f080000100800001108000012080000130800001408000015080000160800001708000018080000190800001a0800001b0800001c0800001d0800001e0800001f080000200800002108000022080000230800002408000025080000260800002708000028080000290800002a0800002b0800002c0800002d0800002e0800002f080000300800003108000032080000330800003408000035080000360800003708000038080000390800003a0800003b0800003c0800003d0800003e0800003f080000400800004108000042080000430800004408000045080000460800004708000048080000490800004a0800004b0800004c0800004d0800004e0800004f080000500800005108000052080000530800005408000055080000560800005708000058080000590800005a0800005b0800005c0800005d0800005e0800005f080000600800006108000062080000630800006408000065080000660800006708000068080000690800006a0800006b0800006c0800006d0800006e0800006f080000700800007108000072080000730800007408000075080000760800007708000078080000790800007a0800007b0800007c0800007d0800007e0800007f080000800800008108000082080000830800008408000085080000860800008708000088080000890800008a0800008b0800008c0800008d0800008e0800008f080000900800009108000092080000930800009408000095080000960800009708000098080000990800009a0800009b0800009c0800009d0800009e0800009f080000a0080000a1080000a2080000a3080000a4080000a5080000a6080000a7080000a8080000a9080000aa080000ab080000ac080000ad080000ae080000af080000b0080000b1080000b2080000b3080000b4080000b5080000b6080000b7080000b8080000b9080000ba080000bb080000bc080000bd080000be080000bf080000c0080000c1080000c2080000c3080000c4080000c5080000c6080000c7080000c8080000c9080000ca080000cb080000cc080000cd080000ce080000cf080000d0080000d1080000d2080000d3080000d4080000d5080000d6080000d7080000d8080000d9080000da080000db080000dc080000dd080000de080000df080000e0080000e1080000e2080000e3080000e4080000e5080000e6080000e7080000e8080000e9080000ea080000eb080000ec080000ed080000ee080000ef080000f0080000f1080000f2080000f3080000f4080000f5080000f6080000f7080000f8080000f9080000fa080000fb080000fc080000fd080000fe080000ff080000000900000109000002090000030900000409000005090000060900000709000008090000090900000a0900000b0900000c0900000d0900000e0900000f090000100900001109000012090000130900001409000015090000160900001709000018090000190900001a0900001b0900001c0900001d0900001e0900001f090000200900002109000022090000230900002409000025090000260900002709000028090000290900002a0900002b0900002c0900002d0900002e0900002f090000300900003109000032090000330900003409000035090000360900003709000038090000390900003a0900003b0900003c0900003d0900003e0900003f090000400900004109000042090000430900004409000045090000460900004709000048090000490900004a0900004b0900004c0900004d0900004e0900004f090000500900005109000052090000530900005409000055090000560900005709000058090000590900005a0900005b0900005c0900005d0900005e0900005f090000600900006109000062090000630900006409000065090000660900006709000068090000690900006a0900006b0900006c0900006d0900006e0900006f090000700900007109000072090000730900007409000075090000760900007709000078090000790900007a0900007b0900007c0900007d0900007e0900007f090000800900008109000082090000830900008409000085090000860900008709000088090000890900008a0900008b0900008c0900008d0900008e0900008f090000900900009109000092090000930900009409000095090000960900009709000098090000990900009a0900009b0900009c0900009d0900009e0900009f090000a0090000a1090000a2090000a3090000a4090000a5090000a6090000a7090000a8090000a9090000aa090000ab090000ac090000ad090000ae090000af090000b0090000b1090000b2090000b3090000b4090000b5090000b6090000b7090000b8090000b9090000ba090000bb090000bc090000bd090000be090000bf090000c0090000c1090000c2090000c3090000c4090000c5090000c6090000c7090000c8090000c9090000ca090000cb090000cc090000cd090000ce090000cf090000d0090000d1090000d2090000d3090000d4090000d5090000d6090000d7090000d8090000d9090000da090000db090000dc090000dd090000de090000df090000e0090000e1090000e2090000e3090000e4090000e5090000e6090000e7090000e8090000e9090000ea090000eb090000ec090000ed090000ee090000ef090000f0090000f1090000f2090000f3090000f4090000f5090000f6090000f7090000f8090000f9090000fa090000fb090000fc090000fd090000fe090000ff090000000a0000010a0000020a0000030a0000040a0000050a0000060a0000070a0000080a0000090a00000a0a00000b0a00000c0a00000d0a00000e0a00000f0a0000100a0000110a0000120a0000130a0000140a0000150a0000160a0000170a0000180a0000190a00001a0a00001b0a00001c0a00001d0a00001e0a00001f0a0000200a0000210a0000220a0000230a0000240a0000250a0000260a0000270a0000280a0000290a00002a0a00002b0a00002c0a00002d0a00002e0a00002f0a0000300a0000310a0000320a0000330a0000340a0000350a0000360a0000370a0000380a0000390a00003a0a00003b0a00003c0a00003d0a00003e0a00003f0a0000400a0000410a0000420a0000430a0000440a0000450a0000460a0000470a0000480a0000490a00004a0a00004b0a00004c0a00004d0a00004e0a00004f0a0000500a0000510a0000520a0000530a0000540a0000550a0000560a0000570a0000580a0000590a00005a0a00005b0a00005c0a00005d0a00005e0a00005f0a0000600a0000610a0000620a0000630a0000640a0000650a0000660a0000670a0000680a0000690a00006a0a00006b0a00006c0a00006d0a00006e0a00006f0a0000700a0000710a0000720a0000730a0000740a0000750a0000760a0000770a0000780a0000790a00007a0a00007b0a00007c0a00007d0a00007e0a00007f0a0000800a0000810a0000820a0000830a0000840a0000850a0000860a0000870a0000880a0000890a00008a0a00008b0a00008c0a00008d0a00008e0a00008f0a0000900a0000910a0000920a0000930a0000940a0000950a0000960a0000970a0000980a0000990a00009a0a00009b0a00009c0a00009d0a00009e0a00009f0a0000a00a0000a10a0000a20a0000a30a0000a40a0000a50a0000a60a0000a70a0000a80a0000a90a0000aa0a0000ab0a0000ac0a0000ad0a0000ae0a0000af0a0000b00a0000b10a0000b20a0000b30a0000b40a0000b50a0000b60a0000b70a0000b80a0000b90a0000ba0a0000bb0a0000bc0a0000bd0a0000be0a0000bf0a0000c00a0000c10a0000c20a0000c30a0000c40a0000c50a0000c60a0000c70a0000c80a0000c90a0000ca0a0000cb0a0000cc0a0000cd0a0000ce0a0000cf0a0000d00a0000d10a0000d20a0000d30a0000d40a0000d50a0000d60a0000d70a0000d80a0000d90a0000da0a0000db0a0000dc0a0000dd0a0000de0a0000df0a0000e00a0000e10a0000e20a0000e30a0000e40a0000e50a0000e60a0000e70a0000e80a0000e90a0000ea0a0000eb0a0000ec0a0000ed0a0000ee0a0000ef0a0000f00a0000f10a0000f20a0000f30a0000f40a0000f50a0000f60a0000f70a0000f80a0000f90a0000fa0a0000fb0a0000fc0a0000fd0a0000fe0a0000ff0a0000000b0000010b0000020b0000030b0000040b0000050b0000060b0000070b0000080b0000090b00000a0b00000b0b00000c0b00000d0b00000e0b00000f0b0000100b0000110b0000120b0000130b0000140b0000150b0000160b0000170b0000180b0000190b00001a0b00001b0b00001c0b00001d0b00001e0b00001f0b0000200b0000210b0000220b0000230b0000240b0000250b0000260b0000270b0000280b0000290b00002a0b00002b0b00002c0b00002d0b00002e0b00002f0b0000300b0000310b0000320b0000330b0000340b0000350b0000360b0000370b0000380b0000390b00003a0b00003b0b00003c0b00003d0b00003e0b00003f0b0000400b0000410b0000420b0000430b0000440b0000450b0000460b0000470b0000480b0000490b00004a0b00004b0b00004c0b00004d0b00004e0b00004f0b0000500b0000510b0000520b0000530b0000540b0000550b0000560b0000570b0000580b0000590b00005a0b00005b0b00005c0b00005d0b00005e0b00005f0b0000600b0000610b0000620b0000630b0000640b0000650b0000660b0000670b0000680b0000690b00006a0b00006b0b00006c0b00006d0b00006e0b00006f0b0000700b0000710b0000720b0000730b0000740b0000750b0000760b0000770b0000780b0000790b00007a0b00007b0b00007c0b00007d0b00007e0b00007f0b0000800b0000810b0000820b0000830b0000840b0000850b0000860b0000870b0000880b0000890b00008a0b00008b0b00008c0b00008d0b00008e0b00008f0b0000900b0000910b0000920b0000930b0000940b0000950b0000960b0000970b0000980b0000990b00009a0b00009b0b00009c0b00009d0b00009e0b00009f0b0000a00b0000a10b0000a20b0000a30b0000a40b0000a50b0000a60b0000a70b0000a80b0000a90b0000aa0b0000ab0b0000ac0b0000ad0b0000ae0b0000af0b0000b00b0000b10b0000b20b0000b30b0000b40b0000b50b0000b60b0000b70b0000b80b0000b90b0000ba0b0000bb0b0000bc0b0000bd0b0000be0b0000bf0b0000c00b0000c10b0000c20b0000c30b0000c40b0000c50b0000c60b0000c70b0000c80b0000c90b0000ca0b0000cb0b0000cc0b0000cd0b0000ce0b0000cf0b0000d00b0000d10b0000d20b0000d30b0000d40b0000d50b0000d60b0000d70b0000d80b0000d90b0000da0b0000db0b0000dc0b0000dd0b0000de0b0000df0b0000e00b0000e10b0000e20b0000e30b0000e40b0000e50b0000e60b0000e70b0000e80b0000e90b0000ea0b0000eb0b0000ec0b0000ed0b0000ee0b0000ef0b0000f00b0000f10b0000f20b0000f30b0000f40b0000f50b0000f60b0000f70b0000f80b0000f90b0000fa0b0000fb0b0000fc0b0000fd0b0000fe0b0000ff0b0000000c0000010c0000020c0000030c0000040c0000050c0000060c0000070c0000080c0000090c00000a0c00000b0c00000c0c00000d0c00000e0c00000f0c0000100c0000110c0000120c0000130c0000140c0000150c0000160c0000170c0000180c0000190c00001a0c00001b0c00001c0c00001d0c00001e0c00001f0c0000200c0000210c0000220c0000230c0000240c0000250c0000260c0000270c0000280c0000290c00002a0c00002b0c00002c0c00002d0c00002e0c00002f0c0000300c0000310c0000320c0000330c0000340c0000350c0000360c0000370c0000380c0000390c00003a0c00003b0c00003c0c00003d0c00003e0c00003f0c0000400c0000410c0000420c0000430c0000440c0000450c0000460c0000470c0000480c0000490c00004a0c00004b0c00004c0c00004d0c00004e0c00004f0c0000500c0000510c0000520c0000530c0000540c0000550c0000560c0000570c0000580c0000590c00005a0c00005b0c00005c0c00005d0c00005e0c00005f0c0000600c0000610c0000620c0000630c0000640c0000650c0000660c0000670c0000680c0000690c00006a0c00006b0c00006c0c00006d0c00006e0c00006f0c0000700c0000710c0000720c0000730c0000740c0000750c0000760c0000770c0000780c0000790c00007a0c00007b0c00007c0c00007d0c00007e0c00007f0c0000800c0000810c0000820c0000830c0000840c0000850c0000860c0000870c0000880c0000890c00008a0c00008b0c00008c0c00008d0c00008e0c00008f0c0000900c0000910c0000920c0000930c0000940c0000950c0000960c0000970c0000980c0000990c00009a0c00009b0c00009c0c00009d0c00009e0c00009f0c0000a00c0000a10c0000a20c0000a30c0000a40c0000a50c0000a60c0000a70c0000a80c0000a90c0000aa0c0000ab0c0000ac0c0000ad0c0000ae0c0000af0c0000b00c0000b10c0000b20c0000b30c0000b40c0000b50c0000b60c0000b70c0000b80c0000b90c0000ba0c0000bb0c0000bc0c0000bd0c0000be0c0000bf0c0000c00c0000c10c0000c20c0000c30c0000c40c0000c50c0000c60c0000c70c0000c80c0000c90c0000ca0c0000cb0c0000cc0c0000cd0c0000ce0c0000cf0c0000d00c0000d10c0000d20c0000d30c0000d40c0000d50c0000d60c0000d70c0000d80c0000d90c0000da0c0000db0c0000dc0c0000dd0c0000de0c0000df0c0000e00c0000e10c0000e20c0000e30c0000e40c0000e50c0000e60c0000e70c0000e80c0000e90c0000ea0c0000eb0c0000ec0c0000ed0c0000ee0c0000ef0c0000f00c0000f10c0000f20c0000f30c0000f40c0000f50c0000f60c0000f70c0000f80c0000f90c0000fa0c0000fb0c0000fc0c0000fd0c0000fe0c0000ff0c0000000d0000010d0000020d0000030d0000040d0000050d0000060d0000070d0000080d0000090d00000a0d00000b0d00000c0d00000d0d00000e0d00000f0d0000100d0000110d0000120d0000130d0000140d0000150d0000160d0000170d0000180d0000190d00001a0d00001b0d00001c0d00001d0d00001e0d00001f0d0000200d0000210d0000220d0000230d0000240d0000250d0000260d0000270d0000280d0000290d00002a0d00002b0d00002c0d00002d0d00002e0d00002f0d0000300d0000310d0000320d0000330d0000340d0000350d0000360d0000370d0000380d0000390d00003a0d00003b0d00003c0d00003d0d00003e0d00003f0d0000400d0000410d0000420d0000430d0000440d0000450d0000460d0000470d0000480d0000490d00004a0d00004b0d00004c0d00004d0d00004e0d00004f0d0000500d0000510d0000520d0000530d0000540d0000550d0000560d0000570d0000580d0000590d00005a0d00005b0d00005c0d00005d0d00005e0d00005f0d0000600d0000610d0000620d0000630d0000640d0000650d0000660d0000670d0000680d0000690d00006a0d00006b0d00006c0d00006d0d00006e0d00006f0d0000700d0000710d0000720d0000730d0000740d0000750d0000760d0000770d0000780d0000790d00007a0d00007b0d00007c0d00007d0d00007e0d00007f0d0000800d0000810d0000820d0000830d0000840d0000850d0000860d0000870d0000880d0000890d00008a0d00008b0d00008c0d00008d0d00008e0d00008f0d0000900d0000910d0000920d0000930d0000940d0000950d0000960d0000970d0000980d0000990d00009a0d00009b0d00009c0d00009d0d00009e0d00009f0d0000a00d0000a10d0000a20d0000a30d0000a40d0000a50d0000a60d0000a70d0000a80d0000a90d0000aa0d0000ab0d0000ac0d0000ad0d0000ae0d0000af0d0000b00d0000b10d0000b20d0000b30d0000b40d0000b50d0000b60d0000b70d0000b80d0000b90d0000ba0d0000bb0d0000bc0d0000bd0d0000be0d0000bf0d0000c00d0000c10d0000c20d0000c30d0000c40d0000c50d0000c60d0000c70d0000c80d0000c90d0000ca0d0000cb0d0000cc0d0000cd0d0000ce0d0000cf0d0000d00d0000d10d0000d20d0000d30d0000d40d0000d50d0000d60d0000d70d0000d80d0000d90d0000da0d0000db0d0000dc0d0000dd0d0000de0d0000df0d0000e00d0000e10d0000e20d0000e30d0000e40d0000e50d0000e60d0000e70d0000e80d0000e90d0000ea0d0000eb0d0000ec0d0000ed0d0000ee0d0000ef0d0000f00d0000f10d0000f20d0000f30d0000f40d0000f50d0000f60d0000f70d0000f80d0000f90d0000fa0d0000fb0d0000fc0d0000fd0d0000fe0d0000ff0d0000000e0000010e0000020e0000030e0000040e0000050e0000060e0000070e0000080e0000090e00000a0e00000b0e00000c0e00000d0e00000e0e00000f0e0000100e0000110e0000120e0000130e0000140e0000150e0000160e0000170e0000180e0000190e00001a0e00001b0e00001c0e00001d0e00001e0e00001f0e0000200e0000210e0000220e0000230e0000240e0000250e0000260e0000270e0000280e0000290e00002a0e00002b0e00002c0e00002d0e00002e0e00002f0e0000300e0000310e0000320e0000330e0000340e0000350e0000360e0000370e0000380e0000390e00003a0e00003b0e00003c0e00003d0e00003e0e00003f0e0000400e0000410e0000420e0000430e0000440e0000450e0000460e0000470e0000480e0000490e00004a0e00004b0e00004c0e00004d0e00004e0e00004f0e0000500e0000510e0000520e0000530e0000540e0000550e0000560e0000570e0000580e0000590e00005a0e00005b0e00005c0e00005d0e00005e0e00005f0e0000600e0000610e0000620e0000630e0000640e0000650e0000660e0000670e0000680e0000690e00006a0e00006b0e00006c0e00006d0e00006e0e00006f0e0000700e0000710e0000720e0000730e0000740e0000750e0000760e0000770e0000780e0000790e00007a0e00007b0e00007c0e00007d0e00007e0e00007f0e0000800e0000810e0000820e0000830e0000840e0000850e0000860e0000870e0000880e0000890e00008a0e00008b0e00008c0e00008d0e00008e0e00008f0e0000900e0000910e0000920e0000930e0000940e0000950e0000960e0000970e0000980e0000990e00009a0e00009b0e00009c0e00009d0e00009e0e00009f0e0000a00e0000a10e0000a20e0000a30e0000a40e0000a50e0000a60e0000a70e0000a80e0000a90e0000aa0e0000ab0e0000ac0e0000ad0e0000ae0e0000af0e0000b00e0000b10e0000b20e0000b30e0000b40e0000b50e0000b60e0000b70e0000b80e0000b90e0000ba0e0000bb0e0000bc0e0000bd0e0000be0e0000bf0e0000c00e0000c10e0000c20e0000c30e0000c40e0000c50e0000c60e0000c70e0000c80e0000c90e0000ca0e0000cb0e0000cc0e0000cd0e0000ce0e0000cf0e0000d00e0000d10e0000d20e0000d30e0000d40e0000d50e0000d60e0000d70e0000d80e0000d90e0000da0e0000db0e0000dc0e0000dd0e0000de0e0000df0e0000e00e0000e10e0000e20e0000e30e0000e40e0000e50e0000e60e0000e70e0000e80e0000e90e0000ea0e0000eb0e0000ec0e0000ed0e0000ee0e0000ef0e0000f00e0000f10e0000f20e0000f30e0000f40e0000f50e0000f60e0000f70e0000f80e0000f90e0000fa0e0000fb0e0000fc0e0000fd0e0000fe0e0000ff0e0000000f0000010f0000020f0000030f0000040f0000050f0000060f0000070f0000080f0000090f00000a0f00000b0f00000c0f00000d0f00000e0f00000f0f0000100f0000110f0000120f0000130f0000140f0000150f0000160f0000170f0000180f0000190f00001a0f00001b0f00001c0f00001d0f00001e0f00001f0f0000200f0000210f0000220f0000230f0000240f0000250f0000260f0000270f0000280f0000290f00002a0f00002b0f00002c0f00002d0f00002e0f00002f0f0000300f0000310f0000320f0000330f0000340f0000350f0000360f0000370f0000380f0000390f00003a0f00003b0f00003c0f00003d0f00003e0f00003f0f0000400f0000410f0000420f0000430f0000440f0000450f0000460f0000470f0000480f0000490f00004a0f00004b0f00004c0f00004d0f00004e0f00004f0f0000500f0000510f0000520f0000530f0000540f0000550f0000560f0000570f0000580f0000590f00005a0f00005b0f00005c0f00005d0f00005e0f00005f0f0000600f0000610f0000620f0000630f0000640f0000650f0000660f0000670f0000680f0000690f00006a0f00006b0f00006c0f00006d0f00006e0f00006f0f0000700f0000710f0000720f0000730f0000740f0000750f0000760f0000770f0000780f0000790f00007a0f00007b0f00007c0f00007d0f00007e0f00007f0f0000800f0000810f0000820f0000830f0000840f0000850f0000860f0000870f0000880f0000890f00008a0f00008b0f00008c0f00008d0f00008e0f00008f0f0000900f0000910f0000920f0000930f0000940f0000950f0000960f0000970f0000980f0000990f00009a0f00009b0f00009c0f00009d0f00009e0f00009f0f0000a00f0000a10f0000a20f0000a30f0000a40f0000a50f0000a60f0000a70f0000a80f0000a90f0000aa0f0000ab0f0000ac0f0000ad0f0000ae0f0000af0f0000b00f0000b10f0000b20f0000b30f0000b40f0000b50f0000b60f0000b70f0000b80f0000b90f0000ba0f0000bb0f0000bc0f0000bd0f0000be0f0000bf0f0000c00f0000c10f0000c20f0000c30f0000c40f0000c50f0000c60f0000c70f0000c80f0000c90f0000ca0f0000cb0f0000cc0f0000cd0f0000ce0f0000cf0f0000d00f0000d10f0000d20f0000d30f0000d40f0000d50f0000d60f0000d70f0000d80f0000d90f0000da0f0000db0f0000dc0f0000dd0f0000de0f0000df0f0000e00f0000e10f0000e20f0000e30f0000e40f0000e50f0000e60f0000e70f0000e80f0000e90f0000ea0f0000eb0f0000ec0f0000ed0f0000ee0f0000ef0f0000f00f0000f10f0000f20f0000f30f0000f40f0000f50f0000f60f0000f70f0000f80f0000f90f0000fa0f0000fb0f0000fc0f0000fd0f0000fe0f0000ff0f0000001000000110000002100000031000000410000005100000061000000710000008100000091000000a1000000b1000000c1000000d1000000e1000000f100000101000001110000012100000131000001410000015100000161000001710000018100000191000001a1000001b1000001c1000001d1000001e1000001f100000201000002110000022100000231000002410000025100000261000002710000028100000291000002a1000002b1000002c1000002d1000002e1000002f100000301000003110000032100000331000003410000035100000361000003710000038100000391000003a1000003b1000003c1000003d1000003e1000003f100000401000004110000042100000431000004410000045100000461000004710000048100000491000004a1000004b1000004c1000004d1000004e1000004f100000501000005110000052100000531000005410000055100000561000005710000058100000591000005a1000005b1000005c1000005d1000005e1000005f100000601000006110000062100000631000006410000065100000661000006710000068100000691000006a1000006b1000006c1000006d1000006e1000006f100000701000007110000072100000731000007410000075100000761000007710000078100000791000007a1000007b1000007c1000007d1000007e1000007f100000801000008110000082100000831000008410000085100000861000008710000088100000891000008a1000008b1000008c1000008d1000008e1000008f100000901000009110000092100000931000009410000095100000961000009710000098100000991000009a1000009b1000009c1000009d1000009e1000009f100000a0100000a1100000a2100000a3100000a4100000a5100000a6100000a7100000a8100000a9100000aa100000ab100000ac100000ad100000ae100000af100000b0100000b1100000b2100000b3100000b4100000b5100000b6100000b7100000b8100000b9100000ba100000bb100000bc100000bd100000be100000bf100000c0100000c1100000c2100000c3100000c4100000c5100000c6100000c7100000c8100000c9100000ca100000cb100000cc100000cd100000ce100000cf100000d0100000d1100000d2100000d3100000d4100000d5100000d6100000d7100000d8100000d9100000da100000db100000dc100000dd100000de100000df100000e0100000e1100000e2100000e3100000e4100000e5100000e6100000e7100000e8100000e9100000ea100000eb100000ec100000ed100000ee100000ef100000f0100000f1100000f2100000f3100000f4100000f5100000f6100000f7100000f8100000f9100000fa100000fb100000fc100000fd100000fe100000ff100000001100000111000002110000031100000411000005110000061100000711000008110000091100000a1100000b1100000c1100000d1100000e1100000f110000101100001111000012110000131100001411000015110000161100001711000018110000191100001a1100001b1100001c1100001d1100001e1100001f110000201100002111000022110000231100002411000025110000261100002711000028110000291100002a1100002b1100002c1100002d1100002e1100002f110000301100003111000032110000331100003411000035110000361100003711000038110000391100003a1100003b1100003c1100003d1100003e1100003f110000401100004111000042110000431100004411000045110000461100004711000048110000491100004a1100004b1100004c1100004d1100004e1100004f110000501100005111000052110000531100005411000055110000561100005711000058110000591100005a1100005b1100005c1100005d1100005e1100005f110000601100006111000062110000631100006411000065110000661100006711000068110000691100006a1100006b1100006c1100006d1100006e1100006f110000701100007111000072110000731100007411000075110000761100007711000078110000791100007a1100007b1100007c1100007d1100007e1100007f110000801100008111000082110000831100008411000085110000861100008711000088110000891100008a1100008b1100008c1100008d1100008e1100008f110000901100009111000092110000931100009411000095110000961100009711000098110000991100009a1100009b1100009c1100009d1100009e1100009f110000a0110000a1110000a2110000a3110000a4110000a5110000a6110000a7110000a8110000a9110000aa110000ab110000ac110000ad110000ae110000af110000b0110000b1110000b2110000b3110000b4110000b5110000b6110000b7110000b8110000b9110000ba110000bb110000bc110000bd110000be110000bf110000c0110000c1110000c2110000c3110000c4110000c5110000c6110000c7110000c8110000c9110000ca110000cb110000cc110000cd110000ce110000cf110000d0110000d1110000d2110000d3110000d4110000d5110000d6110000d7110000d8110000d9110000da110000db110000dc110000dd110000de110000df110000e0110000e1110000e2110000e3110000e4110000e5110000e6110000e7110000e8110000e9110000ea110000eb110000ec110000ed110000ee110000ef110000f0110000f1110000f2110000f3110000f4110000f5110000f6110000f7110000f8110000f9110000fa110000fb110000fc110000fd110000fe110000ff110000001200000112000002120000031200000412000005120000061200000712000008120000091200000a1200000b1200000c1200000d1200000e1200000f120000101200001112000012120000131200001412000015120000161200001712000018120000191200001a1200001b1200001c1200001d1200001e1200001f120000201200002112000022120000231200002412000025120000261200002712000028120000291200002a1200002b1200002c1200002d1200002e1200002f120000301200003112000032120000331200003412000035120000361200003712000038120000391200003a1200003b1200003c1200003d1200003e1200003f120000401200004112000042120000431200004412000045120000461200004712000048120000491200004a1200004b1200004c1200004d1200004e1200004f120000501200005112000052120000531200005412000055120000561200005712000058120000591200005a1200005b1200005c1200005d1200005e1200005f120000601200006112000062120000631200006412000065120000661200006712000068120000691200006a1200006b1200006c1200006d1200006e1200006f120000701200007112000072120000731200007412000075120000761200007712000078120000791200007a1200007b1200007c1200007d1200007e1200007f120000801200008112000082120000831200008412000085120000861200008712000088120000891200008a1200008b1200008c1200008d1200008e1200008f120000901200009112000092120000931200009412000095120000961200009712000098120000991200009a1200009b1200009c1200009d1200009e1200009f120000a0120000a1120000a2120000a3120000a4120000a5120000a6120000a7120000a8120000a9120000aa120000ab120000ac120000ad120000ae120000af120000b0120000b1120000b2120000b3120000b4120000b5120000b6120000b7120000b8120000b9120000ba120000bb120000bc120000bd120000be120000bf120000c0120000c1120000c2120000c3120000c4120000c5120000c6120000c7120000c8120000c9120000ca120000cb120000cc120000cd120000ce120000cf120000d0120000d1120000d2120000d3120000d4120000d5120000d6120000d7120000d8120000d9120000da120000db120000dc120000dd120000de120000df120000e0120000e1120000e2120000e3120000e4120000e5120000e6120000e7120000e8120000e9120000ea120000eb120000ec120000ed120000ee120000ef120000f0120000f1120000f2120000f3120000f4120000f5120000f6120000f7120000f8120000f9120000fa120000fb120000fc120000fd120000fe120000ff120000001300000113000002130000031300000413000005130000061300000713000008130000091300000a1300000b1300000c1300000d1300000e1300000f130000101300001113000012130000131300001413000015130000161300001713000018130000191300001a1300001b1300001c1300001d1300001e1300001f130000201300002113000022130000231300002413000025130000261300002713000028130000291300002a1300002b1300002c1300002d1300002e1300002f130000301300003113000032130000331300003413000035130000361300003713000038130000391300003a1300003b1300003c1300003d1300003e1300003f130000401300004113000042130000431300004413000045130000461300004713000048130000491300004a1300004b1300004c1300004d1300004e1300004f130000501300005113000052130000531300005413000055130000561300005713000058130000591300005a1300005b1300005c1300005d1300005e1300005f130000601300006113000062130000631300006413000065130000661300006713000068130000691300006a1300006b1300006c1300006d1300006e1300006f130000701300007113000072130000731300007413000075130000761300007713000078130000791300007a1300007b1300007c1300007d1300007e1300007f130000801300008113000082130000831300008413000085130000861300008713000088130000891300008a1300008b1300008c1300008d1300008e1300008f130000901300009113000092130000931300009413000095130000961300009713000098130000991300009a1300009b1300009c1300009d1300009e1300009f130000a0130000a1130000a2130000a3130000a4130000a5130000a6130000a7130000a8130000a9130000aa130000ab130000ac130000ad130000ae130000af130000b0130000b1130000b2130000b3130000b4130000b5130000b6130000b7130000b8130000b9130000ba130000bb130000bc130000bd130000be130000bf130000c0130000c1130000c2130000c3130000c4130000c5130000c6130000c7130000c8130000c9130000ca130000cb130000cc130000cd130000ce130000cf130000d0130000d1130000d2130000d3130000d4130000d5130000d6130000d7130000d8130000d9130000da130000db130000dc130000dd130000de130000df130000e0130000e1130000e2130000e3130000e4130000e5130000e6130000e7130000e8130000e9130000ea130000eb130000ec130000ed130000ee130000ef130000f0130000f1130000f2130000f3130000f4130000f5130000f6130000f7130000f8130000f9130000fa130000fb130000fc130000fd130000fe130000ff130000001400000114000002140000031400000414000005140000061400000714000008140000091400000a1400000b1400000c1400000d1400000e1400000f140000101400001114000012140000131400001414000015140000161400001714000018140000191400001a1400001b1400001c1400001d1400001e1400001f140000201400002114000022140000231400002414000025140000261400002714000028140000291400002a1400002b1400002c1400002d1400002e1400002f140000301400003114000032140000331400003414000035140000361400003714000038140000391400003a1400003b1400003c1400003d1400003e1400003f140000401400004114000042140000431400004414000045140000461400004714000048140000491400004a1400004b1400004c1400004d1400004e1400004f140000501400005114000052140000531400005414000055140000561400005714000058140000591400005a1400005b1400005c1400005d1400005e1400005f140000601400006114000062140000631400006414000065140000661400006714000068140000691400006a1400006b1400006c1400006d1400006e1400006f140000701400007114000072140000731400007414000075140000761400007714000078140000791400007a1400007b1400007c1400007d1400007e1400007f140000801400008114000082140000831400008414000085140000861400008714000088140000891400008a1400008b1400008c1400008d1400008e1400008f140000901400009114000092140000931400009414000095140000961400009714000098140000991400009a1400009b1400009c1400009d1400009e1400009f140000a0140000a1140000a2140000a3140000a4140000a5140000a6140000a7140000a8140000a9140000aa140000ab140000ac140000ad140000ae140000af140000b0140000b1140000b2140000b3140000b4140000b5140000b6140000b7140000b8140000b9140000ba140000bb140000bc140000bd140000be140000bf140000c0140000c1140000c2140000c3140000c4140000c5140000c6140000c7140000c8140000c9140000ca140000cb140000cc140000cd140000ce140000cf140000d0140000d1140000d2140000d3140000d4140000d5140000d6140000d7140000d8140000d9140000da140000db140000dc140000dd140000de140000df140000e0140000e1140000e2140000e3140000e4140000e5140000e6140000e7140000e8140000e9140000ea140000eb140000ec140000ed140000ee140000ef140000f0140000f1140000f2140000f3140000f4140000f5140000f6140000f7140000f8140000f9140000fa140000fb140000fc140000fd140000fe140000ff140000001500000115000002150000031500000415000005150000061500000715000008150000091500000a1500000b1500000c1500000d1500000e1500000f150000101500001115000012150000131500001415000015150000161500001715000018150000191500001a1500001b1500001c1500001d1500001e1500001f150000201500002115000022150000231500002415000025150000261500002715000028150000291500002a1500002b1500002c1500002d1500002e1500002f150000301500003115000032150000331500003415000035150000361500003715000038150000391500003a1500003b1500003c1500003d1500003e1500003f150000401500004115000042150000431500004415000045150000461500004715000048150000491500004a1500004b1500004c1500004d1500004e1500004f150000501500005115000052150000531500005415000055150000561500005715000058150000591500005a1500005b1500005c1500005d1500005e1500005f150000601500006115000062150000631500006415000065150000661500006715000068150000691500006a1500006b1500006c1500006d1500006e1500006f150000701500007115000072150000731500007415000075150000761500007715000078150000791500007a1500007b1500007c1500007d1500007e1500007f150000801500008115000082150000831500008415000085150000861500008715000088150000891500008a1500008b1500008c1500008d1500008e1500008f150000901500009115000092150000931500009415000095150000961500009715000098150000991500009a1500009b1500009c1500009d1500009e1500009f150000a0150000a1150000a2150000a3150000a4150000a5150000a6150000a7150000a8150000a9150000aa150000ab150000ac150000ad150000ae150000af150000b0150000b1150000b2150000b3150000b4150000b5150000b6150000b7150000b8150000b9150000ba150000bb150000bc150000bd150000be150000bf150000c0150000c1150000c2150000c3150000c4150000c5150000c6150000c7150000c8150000c9150000ca150000cb150000cc150000cd150000ce150000cf150000d0150000d1150000d2150000d3150000d4150000d5150000d6150000d7150000d8150000d9150000da150000db150000dc150000dd150000de150000df150000e0150000e1150000e2150000e3150000e4150000e5150000e6150000e7150000e8150000e9150000ea150000eb150000ec150000ed150000ee150000ef150000f0150000f1150000f2150000f3150000f4150000f5150000f6150000f7150000f8150000f9150000fa150000fb150000fc150000fd150000fe150000ff150000001600000116000002160000031600000416000005160000061600000716000008160000091600000a1600000b1600000c1600000d1600000e1600000f160000101600001116000012160000131600001416000015160000161600001716000018160000191600001a1600001b1600001c1600001d1600001e1600001f160000201600002116000022160000231600002416000025160000261600002716000028160000291600002a1600002b1600002c1600002d1600002e1600002f160000301600003116000032160000331600003416000035160000361600003716000038160000391600003a1600003b1600003c1600003d1600003e1600003f160000401600004116000042160000431600004416000045160000461600004716000048160000491600004a1600004b1600004c1600004d1600004e1600004f160000501600005116000052160000531600005416000055160000561600005716000058160000591600005a1600005b1600005c1600005d1600005e1600005f160000601600006116000062160000631600006416000065160000661600006716000068160000691600006a1600006b1600006c1600006d1600006e1600006f160000701600007116000072160000731600007416000075160000761600007716000078160000791600007a1600007b1600007c1600007d1600007e1600007f160000801600008116000082160000831600008416000085160000861600008716000088160000891600008a1600008b1600008c1600008d1600008e1600008f160000901600009116000092160000931600009416000095160000961600009716000098160000991600009a1600009b1600009c1600009d1600009e1600009f160000a0160000a1160000a2160000a3160000a4160000a5160000a6160000a7160000a8160000a9160000aa160000ab160000ac160000ad160000ae160000af160000b0160000b1160000b2160000b3160000b4160000b5160000b6160000b7160000b8160000b9160000ba160000bb160000bc160000bd160000be160000bf160000c0160000c1160000c2160000c3160000c4160000c5160000c6160000c7160000c8160000c9160000ca160000cb160000cc160000cd160000ce160000cf160000d0160000d1160000d2160000d3160000d4160000d5160000d6160000d7160000d8160000d9160000da160000db160000dc160000dd160000de160000df160000e0160000e1160000e2160000e3160000e4160000e5160000e6160000e7160000e8160000e9160000ea160000eb160000ec160000ed160000ee160000ef160000f0160000f1160000f2160000f3160000f4160000f5160000f6160000f7160000f8160000f9160000fa160000fb160000fc160000fd160000fe160000ff160000001700000117000002170000031700000417000005170000061700000717000008170000091700000a1700000b1700000c1700000d1700000e1700000f170000101700001117000012170000131700001417000015170000161700001717000018170000191700001a1700001b1700001c1700001d1700001e1700001f170000201700002117000022170000231700002417000025170000261700002717000028170000291700002a1700002b1700002c1700002d1700002e1700002f170000301700003117000032170000331700003417000035170000361700003717000038170000391700003a1700003b1700003c1700003d1700003e1700003f170000401700004117000042170000431700004417000045170000461700004717000048170000491700004a1700004b1700004c1700004d1700004e1700004f170000501700005117000052170000531700005417000055170000561700005717000058170000591700005a1700005b1700005c1700005d1700005e1700005f170000601700006117000062170000631700006417000065170000661700006717000068170000691700006a1700006b1700006c1700006d1700006e1700006f170000701700007117000072170000731700007417000075170000761700007717000078170000791700007a1700007b1700007c1700007d1700007e1700007f170000801700008117000082170000831700008417000085170000861700008717000088170000891700008a1700008b1700008c1700008d1700008e1700008f170000901700009117000092170000931700009417000095170000961700009717000098170000991700009a1700009b1700009c1700009d1700009e1700009f170000a0170000a1170000a2170000a3170000a4170000a5170000a6170000a7170000a8170000a9170000aa170000ab170000ac170000ad170000ae170000af170000b0170000b1170000b2170000b3170000b4170000b5170000b6170000b7170000b8170000b9170000ba170000bb170000bc170000bd170000be170000bf170000c0170000c1170000c2170000c3170000c4170000c5170000c6170000c7170000c8170000c9170000ca170000cb170000cc170000cd170000ce170000cf170000d0170000d1170000d2170000d3170000d4170000d5170000d6170000d7170000d8170000d9170000da170000db170000dc170000dd170000de170000df170000e0170000e1170000e2170000e3170000e4170000e5170000e6170000e7170000e8170000e9170000ea170000eb170000ec170000ed170000ee170000ef170000f0170000f1170000f2170000f3170000f4170000f5170000f6170000f7170000f8170000f9170000fa170000fb170000fc170000fd170000fe170000ff170000001800000118000002180000031800000418000005180000061800000718000008180000091800000a1800000b1800000c1800000d1800000e1800000f180000101800001118000012180000131800001418000015180000161800001718000018180000191800001a1800001b1800001c1800001d1800001e1800001f180000201800002118000022180000231800002418000025180000261800002718000028180000291800002a1800002b1800002c1800002d1800002e1800002f180000301800003118000032180000331800003418000035180000361800003718000038180000391800003a1800003b1800003c1800003d1800003e1800003f180000401800004118000042180000431800004418000045180000461800004718000048180000491800004a1800004b1800004c1800004d1800004e1800004f180000501800005118000052180000531800005418000055180000561800005718000058180000591800005a1800005b1800005c1800005d1800005e1800005f180000601800006118000062180000631800006418000065180000661800006718000068180000691800006a1800006b1800006c1800006d1800006e1800006f180000701800007118000072180000731800007418000075180000761800007718000078180000791800007a1800007b1800007c1800007d1800007e1800007f180000801800008118000082180000831800008418000085180000861800008718000088180000891800008a1800008b1800008c1800008d1800008e1800008f180000901800009118000092180000931800009418000095180000961800009718000098180000991800009a1800009b1800009c1800009d1800009e1800009f180000a0180000a1180000a2180000a3180000a4180000a5180000a6180000a7180000a8180000a9180000aa180000ab180000ac180000ad180000ae180000af180000b0180000b1180000b2180000b3180000b4180000b5180000b6180000b7180000b8180000b9180000ba180000bb180000bc180000bd180000be180000bf180000c0180000c1180000c2180000c3180000c4180000c5180000c6180000c7180000c8180000c9180000ca180000cb180000cc180000cd180000ce180000cf180000d0180000d1180000d2180000d3180000d4180000d5180000d6180000d7180000d8180000d9180000da180000db180000dc180000dd180000de180000df180000e0180000e1180000e2180000e3180000e4180000e5180000e6180000e7180000e8180000e9180000ea180000eb180000ec180000ed180000ee180000ef180000f0180000f1180000f2180000f3180000f4180000f5180000f6180000f7180000f8180000f9180000fa180000fb180000fc180000fd180000fe180000ff180000001900000119000002190000031900000419000005190000061900000719000008190000091900000a1900000b1900000c1900000d1900000e1900000f190000101900001119000012190000131900001419000015190000161900001719000018190000191900001a1900001b1900001c1900001d1900001e1900001f190000201900002119000022190000231900002419000025190000261900002719000028190000291900002a1900002b1900002c1900002d1900002e1900002f190000301900003119000032190000331900003419000035190000361900003719000038190000391900003a1900003b1900003c1900003d1900003e1900003f190000401900004119000042190000431900004419000045190000461900004719000048190000491900004a1900004b1900004c1900004d1900004e1900004f190000501900005119000052190000531900005419000055190000561900005719000058190000591900005a1900005b1900005c1900005d1900005e1900005f190000601900006119000062190000631900006419000065190000661900006719000068190000691900006a1900006b1900006c1900006d1900006e1900006f190000701900007119000072190000731900007419000075190000761900007719000078190000791900007a1900007b1900007c1900007d1900007e1900007f190000801900008119000082190000831900008419000085190000861900008719000088190000891900008a1900008b1900008c1900008d1900008e1900008f190000901900009119000092190000931900009419000095190000961900009719000098190000991900009a1900009b1900009c1900009d1900009e1900009f190000a0190000a1190000a2190000a3190000a4190000a5190000a6190000a7190000a8190000a9190000aa190000ab190000ac190000ad190000ae190000af190000b0190000b1190000b2190000b3190000b4190000b5190000b6190000b7190000b8190000b9190000ba190000bb190000bc190000bd190000be190000bf190000c0190000c1190000c2190000c3190000c4190000c5190000c6190000c7190000c8190000c9190000ca190000cb190000cc190000cd190000ce190000cf190000d0190000d1190000d2190000d3190000d4190000d5190000d6190000d7190000d8190000d9190000da190000db190000dc190000dd190000de190000df190000e0190000e1190000e2190000e3190000e4190000e5190000e6190000e7190000e8190000e9190000ea190000eb190000ec190000ed190000ee190000ef190000f0190000f1190000f2190000f3190000f4190000f5190000f6190000f7190000f8190000f9190000fa190000fb190000fc190000fd190000fe190000ff190000001a0000011a0000021a0000031a0000041a0000051a0000061a0000071a0000081a0000091a00000a1a00000b1a00000c1a00000d1a00000e1a00000f1a0000101a0000111a0000121a0000131a0000141a0000151a0000161a0000171a0000181a0000191a00001a1a00001b1a00001c1a00001d1a00001e1a00001f1a0000201a0000211a0000221a0000231a0000241a0000251a0000261a0000271a0000281a0000291a00002a1a00002b1a00002c1a00002d1a00002e1a00002f1a0000301a0000311a0000321a0000331a0000341a0000351a0000361a0000371a0000381a0000391a00003a1a00003b1a00003c1a00003d1a00003e1a00003f1a0000401a0000411a0000421a0000431a0000441a0000451a0000461a0000471a0000481a0000491a00004a1a00004b1a00004c1a00004d1a00004e1a00004f1a0000501a0000511a0000521a0000531a0000541a0000551a0000561a0000571a0000581a0000591a00005a1a00005b1a00005c1a00005d1a00005e1a00005f1a0000601a0000611a0000621a0000631a0000641a0000651a0000661a0000671a0000681a0000691a00006a1a00006b1a00006c1a00006d1a00006e1a00006f1a0000701a0000711a0000721a0000731a0000741a0000751a0000761a0000771a0000781a0000791a00007a1a00007b1a00007c1a00007d1a00007e1a00007f1a0000801a0000811a0000821a0000831a0000841a0000851a0000861a0000871a0000881a0000891a00008a1a00008b1a00008c1a00008d1a00008e1a00008f1a0000901a0000911a0000921a0000931a0000941a0000951a0000961a0000971a0000981a0000991a00009a1a00009b1a00009c1a00009d1a00009e1a00009f1a0000a01a0000a11a0000a21a0000a31a0000a41a0000a51a0000a61a0000a71a0000a81a0000a91a0000aa1a0000ab1a0000ac1a0000ad1a0000ae1a0000af1a0000b01a0000b11a0000b21a0000b31a0000b41a0000b51a0000b61a0000b71a0000b81a0000b91a0000ba1a0000bb1a0000bc1a0000bd1a0000be1a0000bf1a0000c01a0000c11a0000c21a0000c31a0000c41a0000c51a0000c61a0000c71a0000c81a0000c91a0000ca1a0000cb1a0000cc1a0000cd1a0000ce1a0000cf1a0000d01a0000d11a0000d21a0000d31a0000d41a0000d51a0000d61a0000d71a0000d81a0000d91a0000da1a0000db1a0000dc1a0000dd1a0000de1a0000df1a0000e01a0000e11a0000e21a0000e31a0000e41a0000e51a0000e61a0000e71a0000e81a0000e91a0000ea1a0000eb1a0000ec1a0000ed1a0000ee1a0000ef1a0000f01a0000f11a0000f21a0000f31a0000f41a0000f51a0000f61a0000f71a0000f81a0000f91a0000fa1a0000fb1a0000fc1a0000fd1a0000fe1a0000ff1a0000001b0000011b0000021b0000031b0000041b0000051b0000061b0000071b0000081b0000091b00000a1b00000b1b00000c1b00000d1b00000e1b00000f1b0000101b0000111b0000121b0000131b0000141b0000151b0000161b0000171b0000181b0000191b00001a1b00001b1b00001c1b00001d1b00001e1b00001f1b0000201b0000211b0000221b0000231b0000241b0000251b0000261b0000271b0000281b0000291b00002a1b00002b1b00002c1b00002d1b00002e1b00002f1b0000301b0000311b0000321b0000331b0000341b0000351b0000361b0000371b0000381b0000391b00003a1b00003b1b00003c1b00003d1b00003e1b00003f1b0000401b0000411b0000421b0000431b0000441b0000451b0000461b0000471b0000481b0000491b00004a1b00004b1b00004c1b00004d1b00004e1b00004f1b0000501b0000511b0000521b0000531b0000541b0000551b0000561b0000571b0000581b0000591b00005a1b00005b1b00005c1b00005d1b00005e1b00005f1b0000601b0000611b0000621b0000631b0000641b0000651b0000661b0000671b0000681b0000691b00006a1b00006b1b00006c1b00006d1b00006e1b00006f1b0000701b0000711b0000721b0000731b0000741b0000751b0000761b0000771b0000781b0000791b00007a1b00007b1b00007c1b00007d1b00007e1b00007f1b0000801b0000811b0000821b0000831b0000841b0000851b0000861b0000871b0000881b0000891b00008a1b00008b1b00008c1b00008d1b00008e1b00008f1b0000901b0000911b0000921b0000931b0000941b0000951b0000961b0000971b0000981b0000991b00009a1b00009b1b00009c1b00009d1b00009e1b00009f1b0000a01b0000a11b0000a21b0000a31b0000a41b0000a51b0000a61b0000a71b0000a81b0000a91b0000aa1b0000ab1b0000ac1b0000ad1b0000ae1b0000af1b0000b01b0000b11b0000b21b0000b31b0000b41b0000b51b0000b61b0000b71b0000b81b0000b91b0000ba1b0000bb1b0000bc1b0000bd1b0000be1b0000bf1b0000c01b0000c11b0000c21b0000c31b0000c41b0000c51b0000c61b0000c71b0000c81b0000c91b0000ca1b0000cb1b0000cc1b0000cd1b0000ce1b0000cf1b0000d01b0000d11b0000d21b0000d31b0000d41b0000d51b0000d61b0000d71b0000d81b0000d91b0000da1b0000db1b0000dc1b0000dd1b0000de1b0000df1b0000e01b0000e11b0000e21b0000e31b0000e41b0000e51b0000e61b0000e71b0000e81b0000e91b0000ea1b0000eb1b0000ec1b0000ed1b0000ee1b0000ef1b0000f01b0000f11b0000f21b0000f31b0000f41b0000f51b0000f61b0000f71b0000f81b0000f91b0000fa1b0000fb1b0000fc1b0000fd1b0000fe1b0000ff1b0000001c0000011c0000021c0000031c0000041c0000051c0000061c0000071c0000081c0000091c00000a1c00000b1c00000c1c00000d1c00000e1c00000f1c0000101c0000111c0000121c0000131c0000141c0000151c0000161c0000171c0000181c0000191c00001a1c00001b1c00001c1c00001d1c00001e1c00001f1c0000201c0000211c0000221c0000231c0000241c0000251c0000261c0000271c0000281c0000291c00002a1c00002b1c00002c1c00002d1c00002e1c00002f1c0000301c0000311c0000321c0000331c0000341c0000351c0000361c0000371c0000381c0000391c00003a1c00003b1c00003c1c00003d1c00003e1c00003f1c0000401c0000411c0000421c0000431c0000441c0000451c0000461c0000471c0000481c0000491c00004a1c00004b1c00004c1c00004d1c00004e1c00004f1c0000501c0000511c0000521c0000531c0000541c0000551c0000561c0000571c0000581c0000591c00005a1c00005b1c00005c1c00005d1c00005e1c00005f1c0000601c0000611c0000621c0000631c0000641c0000651c0000661c0000671c0000681c0000691c00006a1c00006b1c00006c1c00006d1c00006e1c00006f1c0000701c0000711c0000721c0000731c0000741c0000751c0000761c0000771c0000781c0000791c00007a1c00007b1c00007c1c00007d1c00007e1c00007f1c0000801c0000811c0000821c0000831c0000841c0000851c0000861c0000871c0000881c0000891c00008a1c00008b1c00008c1c00008d1c00008e1c00008f1c0000901c0000911c0000921c0000931c0000941c0000951c0000961c0000971c0000981c0000991c00009a1c00009b1c00009c1c00009d1c00009e1c00009f1c0000a01c0000a11c0000a21c0000a31c0000a41c0000a51c0000a61c0000a71c0000a81c0000a91c0000aa1c0000ab1c0000ac1c0000ad1c0000ae1c0000af1c0000b01c0000b11c0000b21c0000b31c0000b41c0000b51c0000b61c0000b71c0000b81c0000b91c0000ba1c0000bb1c0000bc1c0000bd1c0000be1c0000bf1c0000c01c0000c11c0000c21c0000c31c0000c41c0000c51c0000c61c0000c71c0000c81c0000c91c0000ca1c0000cb1c0000cc1c0000cd1c0000ce1c0000cf1c0000d01c0000d11c0000d21c0000d31c0000d41c0000d51c0000d61c0000d71c0000d81c0000d91c0000da1c0000db1c0000dc1c0000dd1c0000de1c0000df1c0000e01c0000e11c0000e21c0000e31c0000e41c0000e51c0000e61c0000e71c0000e81c0000e91c0000ea1c0000eb1c0000ec1c0000ed1c0000ee1c0000ef1c0000f01c0000f11c0000f21c0000f31c0000f41c0000f51c0000f61c0000f71c0000f81c0000f91c0000fa1c0000fb1c0000fc1c0000fd1c0000fe1c0000ff1c0000001d0000011d0000021d0000031d0000041d0000051d0000061d0000071d0000081d0000091d00000a1d00000b1d00000c1d00000d1d00000e1d00000f1d0000101d0000111d0000121d0000131d0000141d0000151d0000161d0000171d0000181d0000191d00001a1d00001b1d00001c1d00001d1d00001e1d00001f1d0000201d0000211d0000221d0000231d0000241d0000251d0000261d0000271d0000281d0000291d00002a1d00002b1d00002c1d00002d1d00002e1d00002f1d0000301d0000311d0000321d0000331d0000341d0000351d0000361d0000371d0000381d0000391d00003a1d00003b1d00003c1d00003d1d00003e1d00003f1d0000401d0000411d0000421d0000431d0000441d0000451d0000461d0000471d0000481d0000491d00004a1d00004b1d00004c1d00004d1d00004e1d00004f1d0000501d0000511d0000521d0000531d0000541d0000551d0000561d0000571d0000581d0000591d00005a1d00005b1d00005c1d00005d1d00005e1d00005f1d0000601d0000611d0000621d0000631d0000641d0000651d0000661d0000671d0000681d0000691d00006a1d00006b1d00006c1d00006d1d00006e1d00006f1d0000701d0000711d0000721d0000731d0000741d0000751d0000761d0000771d0000781d0000791d00007a1d00007b1d00007c1d00007d1d00007e1d00007f1d0000801d0000811d0000821d0000831d0000841d0000851d0000861d0000871d0000881d0000891d00008a1d00008b1d00008c1d00008d1d00008e1d00008f1d0000901d0000911d0000921d0000931d0000941d0000951d0000961d0000971d0000981d0000991d00009a1d00009b1d00009c1d00009d1d00009e1d00009f1d0000a01d0000a11d0000a21d0000a31d0000a41d0000a51d0000a61d0000a71d0000a81d0000a91d0000aa1d0000ab1d0000ac1d0000ad1d0000ae1d0000af1d0000b01d0000b11d0000b21d0000b31d0000b41d0000b51d0000b61d0000b71d0000b81d0000b91d0000ba1d0000bb1d0000bc1d0000bd1d0000be1d0000bf1d0000c01d0000c11d0000c21d0000c31d0000c41d0000c51d0000c61d0000c71d0000c81d0000c91d0000ca1d0000cb1d0000cc1d0000cd1d0000ce1d0000cf1d0000d01d0000d11d0000d21d0000d31d0000d41d0000d51d0000d61d0000d71d0000d81d0000d91d0000da1d0000db1d0000dc1d0000dd1d0000de1d0000df1d0000e01d0000e11d0000e21d0000e31d0000e41d0000e51d0000e61d0000e71d0000e81d0000e91d0000ea1d0000eb1d0000ec1d0000ed1d0000ee1d0000ef1d0000f01d0000f11d0000f21d0000f31d0000f41d0000f51d0000f61d0000f71d0000f81d0000f91d0000fa1d0000fb1d0000fc1d0000fd1d0000fe1d0000ff1d0000001e0000011e0000021e0000031e0000041e0000051e0000061e0000071e0000081e0000091e00000a1e00000b1e00000c1e00000d1e00000e1e00000f1e0000101e0000111e0000121e0000131e0000141e0000151e0000161e0000171e0000181e0000191e00001a1e00001b1e00001c1e00001d1e00001e1e00001f1e0000201e0000211e0000221e0000231e0000241e0000251e0000261e0000271e0000281e0000291e00002a1e00002b1e00002c1e00002d1e00002e1e00002f1e0000301e0000311e0000321e0000331e0000341e0000351e0000361e0000371e0000381e0000391e00003a1e00003b1e00003c1e00003d1e00003e1e00003f1e0000401e0000411e0000421e0000431e0000441e0000451e0000461e0000471e0000481e0000491e00004a1e00004b1e00004c1e00004d1e00004e1e00004f1e0000501e0000511e0000521e0000531e0000541e0000551e0000561e0000571e0000581e0000591e00005a1e00005b1e00005c1e00005d1e00005e1e00005f1e0000601e0000611e0000621e0000631e0000641e0000651e0000661e0000671e0000681e0000691e00006a1e00006b1e00006c1e00006d1e00006e1e00006f1e0000701e0000711e0000721e0000731e0000741e0000751e0000761e0000771e0000781e0000791e00007a1e00007b1e00007c1e00007d1e00007e1e00007f1e0000801e0000811e0000821e0000831e0000841e0000851e0000861e0000871e0000881e0000891e00008a1e00008b1e00008c1e00008d1e00008e1e00008f1e0000901e0000911e0000921e0000931e0000941e0000951e0000961e0000971e0000981e0000991e00009a1e00009b1e00009c1e00009d1e00009e1e00009f1e0000a01e0000a11e0000a21e0000a31e0000a41e0000a51e0000a61e0000a71e0000a81e0000a91e0000aa1e0000ab1e0000ac1e0000ad1e0000ae1e0000af1e0000b01e0000b11e0000b21e0000b31e0000b41e0000b51e0000b61e0000b71e0000b81e0000b91e0000ba1e0000bb1e0000bc1e0000bd1e0000be1e0000bf1e0000c01e0000c11e0000c21e0000c31e0000c41e0000c51e0000c61e0000c71e0000c81e0000c91e0000ca1e0000cb1e0000cc1e0000cd1e0000ce1e0000cf1e0000d01e0000d11e0000d21e0000d31e0000d41e0000d51e0000d61e0000d71e0000d81e0000d91e0000da1e0000db1e0000dc1e0000dd1e0000de1e0000df1e0000e01e0000e11e0000e21e0000e31e0000e41e0000e51e0000e61e0000e71e0000e81e0000e91e0000ea1e0000eb1e0000ec1e0000ed1e0000ee1e0000ef1e0000f01e0000f11e0000f21e0000f31e0000f41e0000f51e0000f61e0000f71e0000f81e0000f91e0000fa1e0000fb1e0000fc1e0000fd1e0000fe1e0000ff1e0000001f0000011f0000021f0000031f0000041f0000051f0000061f0000071f0000081f0000091f00000a1f00000b1f00000c1f00000d1f00000e1f00000f1f0000101f0000111f0000121f0000131f0000141f0000151f0000161f0000171f0000181f0000191f00001a1f00001b1f00001c1f00001d1f00001e1f00001f1f0000201f0000211f0000221f0000231f0000241f0000251f0000261f0000271f0000281f0000291f00002a1f00002b1f00002c1f00002d1f00002e1f00002f1f0000301f0000311f0000321f0000331f0000341f0000351f0000361f0000371f0000381f0000391f00003a1f00003b1f00003c1f00003d1f00003e1f00003f1f0000401f0000411f0000421f0000431f0000441f0000451f0000461f0000471f0000481f0000491f00004a1f00004b1f00004c1f00004d1f00004e1f00004f1f0000501f0000511f0000521f0000531f0000541f0000551f0000561f0000571f0000581f0000591f00005a1f00005b1f00005c1f00005d1f00005e1f00005f1f0000601f0000611f0000621f0000631f0000641f0000651f0000661f0000671f0000681f0000691f00006a1f00006b1f00006c1f00006d1f00006e1f00006f1f0000701f0000711f0000721f0000731f0000741f0000751f0000761f0000771f0000781f0000791f00007a1f00007b1f00007c1f00007d1f00007e1f00007f1f0000801f0000811f0000821f0000831f0000841f0000851f0000861f0000871f0000881f0000891f00008a1f00008b1f00008c1f00008d1f00008e1f00008f1f0000901f0000911f0000921f0000931f0000941f0000951f0000961f0000971f0000981f0000991f00009a1f00009b1f00009c1f00009d1f00009e1f00009f1f0000a01f0000a11f0000a21f0000a31f0000a41f0000a51f0000a61f0000a71f0000a81f0000a91f0000aa1f0000ab1f0000ac1f0000ad1f0000ae1f0000af1f0000b01f0000b11f0000b21f0000b31f0000b41f0000b51f0000b61f0000b71f0000b81f0000b91f0000ba1f0000bb1f0000bc1f0000bd1f0000be1f0000bf1f0000c01f0000c11f0000c21f0000c31f0000c41f0000c51f0000c61f0000c71f0000c81f0000c91f0000ca1f0000cb1f0000cc1f0000cd1f0000ce1f0000cf1f0000d01f0000d11f0000d21f0000d31f0000d41f0000d51f0000d61f0000d71f0000d81f0000d91f0000da1f0000db1f0000dc1f0000dd1f0000de1f0000df1f0000e01f0000e11f0000e21f0000e31f0000e41f0000e51f0000e61f0000e71f0000e81f0000e91f0000ea1f0000eb1f0000ec1f0000ed1f0000ee1f0000ef1f0000f01f0000f11f0000f21f0000f31f0000f41f0000f51f0000f61f0000f71f0000f81f0000f91f0000fa1f0000fb1f0000fc1f0000fd1f0000fe1f0000ff1f0000002000000120000002200000032000000420000005200000062000000720000008200000092000000a2000000b2000000c2000000d2000000e2000000f200000102000001120000012200000132000001420000015200000162000001720000018200000192000001a2000001b2000001c2000001d2000001e2000001f200000202000002120000022200000232000002420000025200000262000002720000028200000292000002a2000002b2000002c2000002d2000002e2000002f200000302000003120000032200000332000003420000035200000362000003720000038200000392000003a2000003b2000003c2000003d2000003e2000003f200000402000004120000042200000432000004420000045200000462000004720000048200000492000004a2000004b2000004c2000004d2000004e2000004f200000502000005120000052200000532000005420000055200000562000005720000058200000592000005a2000005b2000005c2000005d2000005e2000005f200000602000006120000062200000632000006420000065200000662000006720000068200000692000006a2000006b2000006c2000006d2000006e2000006f200000702000007120000072200000732000007420000075200000762000007720000078200000792000007a2000007b2000007c2000007d2000007e2000007f200000802000008120000082200000832000008420000085200000862000008720000088200000892000008a2000008b2000008c2000008d2000008e2000008f200000902000009120000092200000932000009420000095200000962000009720000098200000992000009a2000009b2000009c2000009d2000009e2000009f200000a0200000a1200000a2200000a3200000a4200000a5200000a6200000a7200000a8200000a9200000aa200000ab200000ac200000ad200000ae200000af200000b0200000b1200000b2200000b3200000b4200000b5200000b6200000b7200000b8200000b9200000ba200000bb200000bc200000bd200000be200000bf200000c0200000c1200000c2200000c3200000c4200000c5200000c6200000c7200000c8200000c9200000ca200000cb200000cc200000cd200000ce200000cf200000d0200000d1200000d2200000d3200000d4200000d5200000d6200000d7200000d8200000d9200000da200000db200000dc200000dd200000de200000df200000e0200000e1200000e2200000e3200000e4200000e5200000e6200000e7200000e8200000e9200000ea200000eb200000ec200000ed200000ee200000ef200000f0200000f1200000f2200000f3200000f4200000f5200000f6200000f7200000f8200000f9200000fa200000fb200000fc200000fd200000fe200000ff200000002100000121000002210000032100000421000005210000062100000721000008210000092100000a2100000b2100000c2100000d2100000e2100000f210000102100001121000012210000132100001421000015210000162100001721000018210000192100001a2100001b2100001c2100001d2100001e2100001f210000202100002121000022210000232100002421000025210000262100002721000028210000292100002a2100002b2100002c2100002d2100002e2100002f210000302100003121000032210000332100003421000035210000362100003721000038210000392100003a2100003b2100003c2100003d2100003e2100003f210000402100004121000042210000432100004421000045210000462100004721000048210000492100004a2100004b2100004c2100004d2100004e2100004f210000502100005121000052210000532100005421000055210000562100005721000058210000592100005a2100005b2100005c2100005d2100005e2100005f210000602100006121000062210000632100006421000065210000662100006721000068210000692100006a2100006b2100006c2100006d2100006e2100006f210000702100007121000072210000732100007421000075210000762100007721000078210000792100007a2100007b2100007c2100007d2100007e2100007f210000802100008121000082210000832100008421000085210000862100008721000088210000892100008a2100008b2100008c2100008d2100008e2100008f210000902100009121000092210000932100009421000095210000962100009721000098210000992100009a2100009b2100009c2100009d2100009e2100009f210000a0210000a1210000a2210000a3210000a4210000a5210000a6210000a7210000a8210000a9210000aa210000ab210000ac210000ad210000ae210000af210000b0210000b1210000b2210000b3210000b4210000b5210000b6210000b7210000b8210000b9210000ba210000bb210000bc210000bd210000be210000bf210000c0210000c1210000c2210000c3210000c4210000c5210000c6210000c7210000c8210000c9210000ca210000cb210000cc210000cd210000ce210000cf210000d0210000d1210000d2210000d3210000d4210000d5210000d6210000d7210000d8210000d9210000da210000db210000dc210000dd210000de210000df210000e0210000e1210000e2210000e3210000e4210000e5210000e6210000e7210000e8210000e9210000ea210000eb210000ec210000ed210000ee210000ef210000f0210000f1210000f2210000f3210000f4210000f5210000f6210000f7210000f8210000f9210000fa210000fb210000fc210000fd210000fe210000ff210000002200000122000002220000032200000422000005220000062200000722000008220000092200000a2200000b2200000c2200000d2200000e2200000f220000102200001122000012220000132200001422000015220000162200001722000018220000192200001a2200001b2200001c2200001d2200001e2200001f220000202200002122000022220000232200002422000025220000262200002722000028220000292200002a2200002b2200002c2200002d2200002e2200002f220000302200003122000032220000332200003422000035220000362200003722000038220000392200003a2200003b2200003c2200003d2200003e2200003f220000402200004122000042220000432200004422000045220000462200004722000048220000492200004a2200004b2200004c2200004d2200004e2200004f220000502200005122000052220000532200005422000055220000562200005722000058220000592200005a2200005b2200005c2200005d2200005e2200005f220000602200006122000062220000632200006422000065220000662200006722000068220000692200006a2200006b2200006c2200006d2200006e2200006f220000702200007122000072220000732200007422000075220000762200007722000078220000792200007a2200007b2200007c2200007d2200007e2200007f220000802200008122000082220000832200008422000085220000862200008722000088220000892200008a2200008b2200008c2200008d2200008e2200008f220000902200009122000092220000932200009422000095220000962200009722000098220000992200009a2200009b2200009c2200009d2200009e2200009f220000a0220000a1220000a2220000a3220000a4220000a5220000a6220000a7220000a8220000a9220000aa220000ab220000ac220000ad220000ae220000af220000b0220000b1220000b2220000b3220000b4220000b5220000b6220000b7220000b8220000b9220000ba220000bb220000bc220000bd220000be220000bf220000c0220000c1220000c2220000c3220000c4220000c5220000c6220000c7220000c8220000c9220000ca220000cb220000cc220000cd220000ce220000cf220000d0220000d1220000d2220000d3220000d4220000d5220000d6220000d7220000d8220000d9220000da220000db220000dc220000dd220000de220000df220000e0220000e1220000e2220000e3220000e4220000e5220000e6220000e7220000e8220000e9220000ea220000eb220000ec220000ed220000ee220000ef220000f0220000f1220000f2220000f3220000f4220000f5220000f6220000f7220000f8220000f9220000fa220000fb220000fc220000fd220000fe220000ff220000002300000123000002230000032300000423000005230000062300000723000008230000092300000a2300000b2300000c2300000d2300000e2300000f230000102300001123000012230000132300001423000015230000162300001723000018230000192300001a2300001b2300001c2300001d2300001e2300001f230000202300002123000022230000232300002423000025230000262300002723000028230000292300002a2300002b2300002c2300002d2300002e2300002f230000302300003123000032230000332300003423000035230000362300003723000038230000392300003a2300003b2300003c2300003d2300003e2300003f230000402300004123000042230000432300004423000045230000462300004723000048230000492300004a2300004b2300004c2300004d2300004e2300004f230000502300005123000052230000532300005423000055230000562300005723000058230000592300005a2300005b2300005c2300005d2300005e2300005f230000602300006123000062230000632300006423000065230000662300006723000068230000692300006a2300006b2300006c2300006d2300006e2300006f230000702300007123000072230000732300007423000075230000762300007723000078230000792300007a2300007b2300007c2300007d2300007e2300007f230000802300008123000082230000832300008423000085230000862300008723000088230000892300008a2300008b2300008c2300008d2300008e2300008f230000902300009123000092230000932300009423000095230000962300009723000098230000992300009a2300009b2300009c2300009d2300009e2300009f230000a0230000a1230000a2230000a3230000a4230000a5230000a6230000a7230000a8230000a9230000aa230000ab230000ac230000ad230000ae230000af230000b0230000b1230000b2230000b3230000b4230000b5230000b6230000b7230000b8230000b9230000ba230000bb230000bc230000bd230000be230000bf230000c0230000c1230000c2230000c3230000c4230000c5230000c6230000c7230000c8230000c9230000ca230000cb230000cc230000cd230000ce230000cf230000d0230000d1230000d2230000d3230000d4230000d5230000d6230000d7230000d8230000d9230000da230000db230000dc230000dd230000de230000df230000e0230000e1230000e2230000e3230000e4230000e5230000e6230000e7230000e8230000e9230000ea230000eb230000ec230000ed230000ee230000ef230000f0230000f1230000f2230000f3230000f4230000f5230000f6230000f7230000f8230000f9230000fa230000fb230000fc230000fd230000fe230000ff230000002400000124000002240000032400000424000005240000062400000724000008240000092400000a2400000b2400000c2400000d2400000e2400000f240000102400001124000012240000132400001424000015240000162400001724000018240000192400001a2400001b2400001c2400001d2400001e2400001f240000202400002124000022240000232400002424000025240000262400002724000028240000292400002a2400002b2400002c2400002d2400002e2400002f240000302400003124000032240000332400003424000035240000362400003724000038240000392400003a2400003b2400003c2400003d2400003e2400003f240000402400004124000042240000432400004424000045240000462400004724000048240000492400004a2400004b2400004c2400004d2400004e2400004f240000502400005124000052240000532400005424000055240000562400005724000058240000592400005a2400005b2400005c2400005d2400005e2400005f240000602400006124000062240000632400006424000065240000662400006724000068240000692400006a2400006b2400006c2400006d2400006e2400006f240000702400007124000072240000732400007424000075240000762400007724000078240000792400007a2400007b2400007c2400007d2400007e2400007f240000802400008124000082240000832400008424000085240000862400008724000088240000892400008a2400008b2400008c2400008d2400008e2400008f240000902400009124000092240000932400009424000095240000962400009724000098240000992400009a2400009b2400009c2400009d2400009e2400009f240000a0240000a1240000a2240000a3240000a4240000a5240000a6240000a7240000a8240000a9240000aa240000ab240000ac240000ad240000ae240000af240000b0240000b1240000b2240000b3240000b4240000b5240000b6240000b7240000b8240000b9240000ba240000bb240000bc240000bd240000be240000bf240000c0240000c1240000c2240000c3240000c4240000c5240000c6240000c7240000c8240000c9240000ca240000cb240000cc240000cd240000ce240000cf240000d0240000d1240000d2240000d3240000d4240000d5240000d6240000d7240000d8240000d9240000da240000db240000dc240000dd240000de240000df240000e0240000e1240000e2240000e3240000e4240000e5240000e6240000e7240000e8240000e9240000ea240000eb240000ec240000ed240000ee240000ef240000f0240000f1240000f2240000f3240000f4240000f5240000f6240000f7240000f8240000f9240000fa240000fb240000fc240000fd240000fe240000ff240000002500000125000002250000032500000425000005250000062500000725000008250000092500000a2500000b2500000c2500000d2500000e2500000f250000102500001125000012250000132500001425000015250000162500001725000018250000192500001a2500001b2500001c2500001d2500001e2500001f250000202500002125000022250000232500002425000025250000262500002725000028250000292500002a2500002b2500002c2500002d2500002e2500002f250000302500003125000032250000332500003425000035250000362500003725000038250000392500003a2500003b2500003c2500003d2500003e2500003f250000402500004125000042250000432500004425000045250000462500004725000048250000492500004a2500004b2500004c2500004d2500004e2500004f250000502500005125000052250000532500005425000055250000562500005725000058250000592500005a2500005b2500005c2500005d2500005e2500005f250000602500006125000062250000632500006425000065250000662500006725000068250000692500006a2500006b2500006c2500006d2500006e2500006f250000702500007125000072250000732500007425000075250000762500007725000078250000792500007a2500007b2500007c2500007d2500007e2500007f250000802500008125000082250000832500008425000085250000862500008725000088250000892500008a2500008b2500008c2500008d2500008e2500008f250000902500009125000092250000932500009425000095250000962500009725000098250000992500009a2500009b2500009c2500009d2500009e2500009f250000a0250000a1250000a2250000a3250000a4250000a5250000a6250000a7250000a8250000a9250000aa250000ab250000ac250000ad250000ae250000af250000b0250000b1250000b2250000b3250000b4250000b5250000b6250000b7250000b8250000b9250000ba250000bb250000bc250000bd250000be250000bf250000c0250000c1250000c2250000c3250000c4250000c5250000c6250000c7250000c8250000c9250000ca250000cb250000cc250000cd250000ce250000cf250000d0250000d1250000d2250000d3250000d4250000d5250000d6250000d7250000d8250000d9250000da250000db250000dc250000dd250000de250000df250000e0250000e1250000e2250000e3250000e4250000e5250000e6250000e7250000e8250000e9250000ea250000eb250000ec250000ed250000ee250000ef250000f0250000f1250000f2250000f3250000f4250000f5250000f6250000f7250000f8250000f9250000fa250000fb250000fc250000fd250000fe250000ff250000002600000126000002260000032600000426000005260000062600000726000008260000092600000a2600000b2600000c2600000d2600000e2600000f260000102600001126000012260000132600001426000015260000162600001726000018260000192600001a2600001b2600001c2600001d2600001e2600001f260000202600002126000022260000232600002426000025260000262600002726000028260000292600002a2600002b2600002c2600002d2600002e2600002f260000302600003126000032260000332600003426000035260000362600003726000038260000392600003a2600003b2600003c2600003d2600003e2600003f260000402600004126000042260000432600004426000045260000462600004726000048260000492600004a2600004b2600004c2600004d2600004e2600004f260000502600005126000052260000532600005426000055260000562600005726000058260000592600005a2600005b2600005c2600005d2600005e2600005f260000602600006126000062260000632600006426000065260000662600006726000068260000692600006a2600006b2600006c2600006d2600006e2600006f260000702600007126000072260000732600007426000075260000762600007726000078260000792600007a2600007b2600007c2600007d2600007e2600007f260000802600008126000082260000832600008426000085260000862600008726000088260000892600008a2600008b2600008c2600008d2600008e2600008f260000902600009126000092260000932600009426000095260000962600009726000098260000992600009a2600009b2600009c2600009d2600009e2600009f260000a0260000a1260000a2260000a3260000a4260000a5260000a6260000a7260000a8260000a9260000aa260000ab260000ac260000ad260000ae260000af260000b0260000b1260000b2260000b3260000b4260000b5260000b6260000b7260000b8260000b9260000ba260000bb260000bc260000bd260000be260000bf260000c0260000c1260000c2260000c3260000c4260000c5260000c6260000c7260000c8260000c9260000ca260000cb260000cc260000cd260000ce260000cf260000d0260000d1260000d2260000d3260000d4260000d5260000d6260000d7260000d8260000d9260000da260000db260000dc260000dd260000de260000df260000e0260000e1260000e2260000e3260000e4260000e5260000e6260000e7260000e8260000e9260000ea260000eb260000ec260000ed260000ee260000ef260000f0260000f1260000f2260000f3260000f4260000f5260000f6260000f7260000f8260000f9260000fa260000fb260000fc260000fd260000fe260000ff260000002700000127000002270000032700000427000005270000062700000727000008270000092700000a2700000b2700000c2700000d2700000e2700000f270000102700001127000012270000132700001427000015270000162700001727000018270000192700001a2700001b2700001c2700001d2700001e2700001f270000202700002127000022270000232700002427000025270000262700002727000028270000292700002a2700002b2700002c2700002d2700002e2700002f270000302700003127000032270000332700003427000035270000362700003727000038270000392700003a2700003b2700003c2700003d2700003e2700003f270000402700004127000042270000432700004427000045270000462700004727000048270000492700004a2700004b2700004c2700004d2700004e2700004f270000502700005127000052270000532700005427000055270000562700005727000058270000592700005a2700005b2700005c2700005d2700005e2700005f270000602700006127000062270000632700006427000065270000662700006727000068270000692700006a2700006b2700006c2700006d2700006e2700006f270000702700007127000072270000732700007427000075270000762700007727000078270000792700007a2700007b2700007c2700007d2700007e2700007f270000802700008127000082270000832700008427000085270000862700008727000088270000892700008a2700008b2700008c2700008d2700008e2700008f270000902700009127000092270000932700009427000095270000962700009727000098270000992700009a2700009b2700009c2700009d2700009e2700009f270000a0270000a1270000a2270000a3270000a4270000a5270000a6270000a7270000a8270000a9270000aa270000ab270000ac270000ad270000ae270000af270000b0270000b1270000b2270000b3270000b4270000b5270000b6270000b7270000b8270000b9270000ba270000bb270000bc270000bd270000be270000bf270000c0270000c1270000c2270000c3270000c4270000c5270000c6270000c7270000c8270000c9270000ca270000cb270000cc270000cd270000ce270000cf270000d0270000d1270000d2270000d3270000d4270000d5270000d6270000d7270000d8270000d9270000da270000db270000dc270000dd270000de270000df270000e0270000e1270000e2270000e3270000e4270000e5270000e6270000e7270000e8270000e9270000ea270000eb270000ec270000ed270000ee270000ef270000f0270000f1270000f2270000f3270000f4270000f5270000f6270000f7270000f8270000f9270000fa270000fb270000fc270000fd270000fe270000ff270000002800000128000002280000032800000428000005280000062800000728000008280000092800000a2800000b2800000c2800000d2800000e2800000f280000102800001128000012280000132800001428000015280000162800001728000018280000192800001a2800001b2800001c2800001d2800001e2800001f280000202800002128000022280000232800002428000025280000262800002728000028280000292800002a2800002b2800002c2800002d2800002e2800002f280000302800003128000032280000332800003428000035280000362800003728000038280000392800003a2800003b2800003c2800003d2800003e2800003f280000402800004128000042280000432800004428000045280000462800004728000048280000492800004a2800004b2800004c2800004d2800004e2800004f280000502800005128000052280000532800005428000055280000562800005728000058280000592800005a2800005b2800005c2800005d2800005e2800005f280000602800006128000062280000632800006428000065280000662800006728000068280000692800006a2800006b2800006c2800006d2800006e2800006f280000702800007128000072280000732800007428000075280000762800007728000078280000792800007a2800007b2800007c2800007d2800007e2800007f280000802800008128000082280000832800008428000085280000862800008728000088280000892800008a2800008b2800008c2800008d2800008e2800008f280000902800009128000092280000932800009428000095280000962800009728000098280000992800009a2800009b2800009c2800009d2800009e2800009f280000a0280000a1280000a2280000a3280000a4280000a5280000a6280000a7280000a8280000a9280000aa280000ab280000ac280000ad280000ae280000af280000b0280000b1280000b2280000b3280000b4280000b5280000b6280000b7280000b8280000b9280000ba280000bb280000bc280000bd280000be280000bf280000c0280000c1280000c2280000c3280000c4280000c5280000c6280000c7280000c8280000c9280000ca280000cb280000cc280000cd280000ce280000cf280000d0280000d1280000d2280000d3280000d4280000d5280000d6280000d7280000d8280000d9280000da280000db280000dc280000dd280000de280000df280000e0280000e1280000e2280000e3280000e4280000e5280000e6280000e7280000e8280000e9280000ea280000eb280000ec280000ed280000ee280000ef280000f0280000f1280000f2280000f3280000f4280000f5280000f6280000f7280000f8280000f9280000fa280000fb280000fc280000fd280000fe280000ff280000002900000129000002290000032900000429000005290000062900000729000008290000092900000a2900000b2900000c2900000d2900000e2900000f290000102900001129000012290000132900001429000015290000162900001729000018290000192900001a2900001b2900001c2900001d2900001e2900001f290000202900002129000022290000232900002429000025290000262900002729000028290000292900002a2900002b2900002c2900002d2900002e2900002f290000302900003129000032290000332900003429000035290000362900003729000038290000392900003a2900003b2900003c2900003d2900003e2900003f290000402900004129000042290000432900004429000045290000462900004729000048290000492900004a2900004b2900004c2900004d2900004e2900004f290000502900005129000052290000532900005429000055290000562900005729000058290000592900005a2900005b2900005c2900005d2900005e2900005f290000602900006129000062290000632900006429000065290000662900006729000068290000692900006a2900006b2900006c2900006d2900006e2900006f290000702900007129000072290000732900007429000075290000762900007729000078290000792900007a2900007b2900007c2900007d2900007e2900007f290000802900008129000082290000832900008429000085290000862900008729000088290000892900008a2900008b2900008c2900008d2900008e2900008f290000902900009129000092290000932900009429000095290000962900009729000098290000992900009a2900009b2900009c2900009d2900009e2900009f290000a0290000a1290000a2290000a3290000a4290000a5290000a6290000a7290000a8290000a9290000aa290000ab290000ac290000ad290000ae290000af290000b0290000b1290000b2290000b3290000b4290000b5290000b6290000b7290000b8290000b9290000ba290000bb290000bc290000bd290000be290000bf290000c0290000c1290000c2290000c3290000c4290000c5290000c6290000c7290000c8290000c9290000ca290000cb290000cc290000cd290000ce290000cf290000d0290000d1290000d2290000d3290000d4290000d5290000d6290000d7290000d8290000d9290000da290000db290000dc290000dd290000de290000df290000e0290000e1290000e2290000e3290000e4290000e5290000e6290000e7290000e8290000e9290000ea290000eb290000ec290000ed290000ee290000ef290000f0290000f1290000f2290000f3290000f4290000f5290000f6290000f7290000f8290000f9290000fa290000fb290000fc290000fd290000fe290000ff290000002a0000012a0000022a0000032a0000042a0000052a0000062a0000072a0000082a0000092a00000a2a00000b2a00000c2a00000d2a00000e2a00000f2a0000102a0000112a0000122a0000132a0000142a0000152a0000162a0000172a0000182a0000192a00001a2a00001b2a00001c2a00001d2a00001e2a00001f2a0000202a0000212a0000222a0000232a0000242a0000252a0000262a0000272a0000282a0000292a00002a2a00002b2a00002c2a00002d2a00002e2a00002f2a0000302a0000312a0000322a0000332a0000342a0000352a0000362a0000372a0000382a0000392a00003a2a00003b2a00003c2a00003d2a00003e2a00003f2a0000402a0000412a0000422a0000432a0000442a0000452a0000462a0000472a0000482a0000492a00004a2a00004b2a00004c2a00004d2a00004e2a00004f2a0000502a0000512a0000522a0000532a0000542a0000552a0000562a0000572a0000582a0000592a00005a2a00005b2a00005c2a00005d2a00005e2a00005f2a0000602a0000612a0000622a0000632a0000642a0000652a0000662a0000672a0000682a0000692a00006a2a00006b2a00006c2a00006d2a00006e2a00006f2a0000702a0000712a0000722a0000732a0000742a0000752a0000762a0000772a0000782a0000792a00007a2a00007b2a00007c2a00007d2a00007e2a00007f2a0000802a0000812a0000822a0000832a0000842a0000852a0000862a0000872a0000882a0000892a00008a2a00008b2a00008c2a00008d2a00008e2a00008f2a0000902a0000912a0000922a0000932a0000942a0000952a0000962a0000972a0000982a0000992a00009a2a00009b2a00009c2a00009d2a00009e2a00009f2a0000a02a0000a12a0000a22a0000a32a0000a42a0000a52a0000a62a0000a72a0000a82a0000a92a0000aa2a0000ab2a0000ac2a0000ad2a0000ae2a0000af2a0000b02a0000b12a0000b22a0000b32a0000b42a0000b52a0000b62a0000b72a0000b82a0000b92a0000ba2a0000bb2a0000bc2a0000bd2a0000be2a0000bf2a0000c02a0000c12a0000c22a0000c32a0000c42a0000c52a0000c62a0000c72a0000c82a0000c92a0000ca2a0000cb2a0000cc2a0000cd2a0000ce2a0000cf2a0000d02a0000d12a0000d22a0000d32a0000d42a0000d52a0000d62a0000d72a0000d82a0000d92a0000da2a0000db2a0000dc2a0000dd2a0000de2a0000df2a0000e02a0000e12a0000e22a0000e32a0000e42a0000e52a0000e62a0000e72a0000e82a0000e92a0000ea2a0000eb2a0000ec2a0000ed2a0000ee2a0000ef2a0000f02a0000f12a0000f22a0000f32a0000f42a0000f52a0000f62a0000f72a0000f82a0000f92a0000fa2a0000fb2a0000fc2a0000fd2a0000fe2a0000ff2a0000002b0000012b0000022b0000032b0000042b0000052b0000062b0000072b0000082b0000092b00000a2b00000b2b00000c2b00000d2b00000e2b00000f2b0000102b0000112b0000122b0000132b0000142b0000152b0000162b0000172b0000182b0000192b00001a2b00001b2b00001c2b00001d2b00001e2b00001f2b0000202b0000212b0000222b0000232b0000242b0000252b0000262b0000272b0000282b0000292b00002a2b00002b2b00002c2b00002d2b00002e2b00002f2b0000302b0000312b0000322b0000332b0000342b0000352b0000362b0000372b0000382b0000392b00003a2b00003b2b00003c2b00003d2b00003e2b00003f2b0000402b0000412b0000422b0000432b0000442b0000452b0000462b0000472b0000482b0000492b00004a2b00004b2b00004c2b00004d2b00004e2b00004f2b0000502b0000512b0000522b0000532b0000542b0000552b0000562b0000572b0000582b0000592b00005a2b00005b2b00005c2b00005d2b00005e2b00005f2b0000602b0000612b0000622b0000632b0000642b0000652b0000662b0000672b0000682b0000692b00006a2b00006b2b00006c2b00006d2b00006e2b00006f2b0000702b0000712b0000722b0000732b0000742b0000752b0000762b0000772b0000782b0000792b00007a2b00007b2b00007c2b00007d2b00007e2b00007f2b0000802b0000812b0000822b0000832b0000842b0000852b0000862b0000872b0000882b0000892b00008a2b00008b2b00008c2b00008d2b00008e2b00008f2b0000902b0000912b0000922b0000932b0000942b0000952b0000962b0000972b0000982b0000992b00009a2b00009b2b00009c2b00009d2b00009e2b00009f2b0000a02b0000a12b0000a22b0000a32b0000a42b0000a52b0000a62b0000a72b0000a82b0000a92b0000aa2b0000ab2b0000ac2b0000ad2b0000ae2b0000af2b0000b02b0000b12b0000b22b0000b32b0000b42b0000b52b0000b62b0000b72b0000b82b0000b92b0000ba2b0000bb2b0000bc2b0000bd2b0000be2b0000bf2b0000c02b0000c12b0000c22b0000c32b0000c42b0000c52b0000c62b0000c72b0000c82b0000c92b0000ca2b0000cb2b0000cc2b0000cd2b0000ce2b0000cf2b0000d02b0000d12b0000d22b0000d32b0000d42b0000d52b0000d62b0000d72b0000d82b0000d92b0000da2b0000db2b0000dc2b0000dd2b0000de2b0000df2b0000e02b0000e12b0000e22b0000e32b0000e42b0000e52b0000e62b0000e72b0000e82b0000e92b0000ea2b0000eb2b0000ec2b0000ed2b0000ee2b0000ef2b0000f02b0000f12b0000f22b0000f32b0000f42b0000f52b0000f62b0000f72b0000f82b0000f92b0000fa2b0000fb2b0000fc2b0000fd2b0000fe2b0000ff2b0000002c0000012c0000022c0000032c0000042c0000052c0000062c0000072c0000082c0000092c00000a2c00000b2c00000c2c00000d2c00000e2c00000f2c0000102c0000112c0000122c0000132c0000142c0000152c0000162c0000172c0000182c0000192c00001a2c00001b2c00001c2c00001d2c00001e2c00001f2c0000202c0000212c0000222c0000232c0000242c0000252c0000262c0000272c0000282c0000292c00002a2c00002b2c00002c2c00002d2c00002e2c00002f2c0000302c0000312c0000322c0000332c0000342c0000352c0000362c0000372c0000382c0000392c00003a2c00003b2c00003c2c00003d2c00003e2c00003f2c0000402c0000412c0000422c0000432c0000442c0000452c0000462c0000472c0000482c0000492c00004a2c00004b2c00004c2c00004d2c00004e2c00004f2c0000502c0000512c0000522c0000532c0000542c0000552c0000562c0000572c0000582c0000592c00005a2c00005b2c00005c2c00005d2c00005e2c00005f2c0000602c0000612c0000622c0000632c0000642c0000652c0000662c0000672c0000682c0000692c00006a2c00006b2c00006c2c00006d2c00006e2c00006f2c0000702c0000712c0000722c0000732c0000742c0000752c0000762c0000772c0000782c0000792c00007a2c00007b2c00007c2c00007d2c00007e2c00007f2c0000802c0000812c0000822c0000832c0000842c0000852c0000862c0000872c0000882c0000892c00008a2c00008b2c00008c2c00008d2c00008e2c00008f2c0000902c0000912c0000922c0000932c0000942c0000952c0000962c0000972c0000982c0000992c00009a2c00009b2c00009c2c00009d2c00009e2c00009f2c0000a02c0000a12c0000a22c0000a32c0000a42c0000a52c0000a62c0000a72c0000a82c0000a92c0000aa2c0000ab2c0000ac2c0000ad2c0000ae2c0000af2c0000b02c0000b12c0000b22c0000b32c0000b42c0000b52c0000b62c0000b72c0000b82c0000b92c0000ba2c0000bb2c0000bc2c0000bd2c0000be2c0000bf2c0000c02c0000c12c0000c22c0000c32c0000c42c0000c52c0000c62c0000c72c0000c82c0000c92c0000ca2c0000cb2c0000cc2c0000cd2c0000ce2c0000cf2c0000d02c0000d12c0000d22c0000d32c0000d42c0000d52c0000d62c0000d72c0000d82c0000d92c0000da2c0000db2c0000dc2c0000dd2c0000de2c0000df2c0000e02c0000e12c0000e22c0000e32c0000e42c0000e52c0000e62c0000e72c0000e82c0000e92c0000ea2c0000eb2c0000ec2c0000ed2c0000ee2c0000ef2c0000f02c0000f12c0000f22c0000f32c0000f42c0000f52c0000f62c0000f72c0000f82c0000f92c0000fa2c0000fb2c0000fc2c0000fd2c0000fe2c0000ff2c0000002d0000012d0000022d0000032d0000042d0000052d0000062d0000072d0000082d0000092d00000a2d00000b2d00000c2d00000d2d00000e2d00000f2d0000102d0000112d0000122d0000132d0000142d0000152d0000162d0000172d0000182d0000192d00001a2d00001b2d00001c2d00001d2d00001e2d00001f2d0000202d0000212d0000222d0000232d0000242d0000252d0000262d0000272d0000282d0000292d00002a2d00002b2d00002c2d00002d2d00002e2d00002f2d0000302d0000312d0000322d0000332d0000342d0000352d0000362d0000372d0000382d0000392d00003a2d00003b2d00003c2d00003d2d00003e2d00003f2d0000402d0000412d0000422d0000432d0000442d0000452d0000462d0000472d0000482d0000492d00004a2d00004b2d00004c2d00004d2d00004e2d00004f2d0000502d0000512d0000522d0000532d0000542d0000552d0000562d0000572d0000582d0000592d00005a2d00005b2d00005c2d00005d2d00005e2d00005f2d0000602d0000612d0000622d0000632d0000642d0000652d0000662d0000672d0000682d0000692d00006a2d00006b2d00006c2d00006d2d00006e2d00006f2d0000702d0000712d0000722d0000732d0000742d0000752d0000762d0000772d0000782d0000792d00007a2d00007b2d00007c2d00007d2d00007e2d00007f2d0000802d0000812d0000822d0000832d0000842d0000852d0000862d0000872d0000882d0000892d00008a2d00008b2d00008c2d00008d2d00008e2d00008f2d0000902d0000912d0000922d0000932d0000942d0000952d0000962d0000972d0000982d0000992d00009a2d00009b2d00009c2d00009d2d00009e2d00009f2d0000a02d0000a12d0000a22d0000a32d0000a42d0000a52d0000a62d0000a72d0000a82d0000a92d0000aa2d0000ab2d0000ac2d0000ad2d0000ae2d0000af2d0000b02d0000b12d0000b22d0000b32d0000b42d0000b52d0000b62d0000b72d0000b82d0000b92d0000ba2d0000bb2d0000bc2d0000bd2d0000be2d0000bf2d0000c02d0000c12d0000c22d0000c32d0000c42d0000c52d0000c62d0000c72d0000c82d0000c92d0000ca2d0000cb2d0000cc2d0000cd2d0000ce2d0000cf2d0000d02d0000d12d0000d22d0000d32d0000d42d0000d52d0000d62d0000d72d0000d82d0000d92d0000da2d0000db2d0000dc2d0000dd2d0000de2d0000df2d0000e02d0000e12d0000e22d0000e32d0000e42d0000e52d0000e62d0000e72d0000e82d0000e92d0000ea2d0000eb2d0000ec2d0000ed2d0000ee2d0000ef2d0000f02d0000f12d0000f22d0000f32d0000f42d0000f52d0000f62d0000f72d0000f82d0000f92d0000fa2d0000fb2d0000fc2d0000fd2d0000fe2d0000ff2d0000002e0000012e0000022e0000032e0000042e0000052e0000062e0000072e0000082e0000092e00000a2e00000b2e00000c2e00000d2e00000e2e00000f2e0000102e0000112e0000122e0000132e0000142e0000152e0000162e0000172e0000182e0000192e00001a2e00001b2e00001c2e00001d2e00001e2e00001f2e0000202e0000212e0000222e0000232e0000242e0000252e0000262e0000272e0000282e0000292e00002a2e00002b2e00002c2e00002d2e00002e2e00002f2e0000302e0000312e0000322e0000332e0000342e0000352e0000362e0000372e0000382e0000392e00003a2e00003b2e00003c2e00003d2e00003e2e00003f2e0000402e0000412e0000422e0000432e0000442e0000452e0000462e0000472e0000482e0000492e00004a2e00004b2e00004c2e00004d2e00004e2e00004f2e0000502e0000512e0000522e0000532e0000542e0000552e0000562e0000572e0000582e0000592e00005a2e00005b2e00005c2e00005d2e00005e2e00005f2e0000602e0000612e0000622e0000632e0000642e0000652e0000662e0000672e0000682e0000692e00006a2e00006b2e00006c2e00006d2e00006e2e00006f2e0000702e0000712e0000722e0000732e0000742e0000752e0000762e0000772e0000782e0000792e00007a2e00007b2e00007c2e00007d2e00007e2e00007f2e0000802e0000812e0000822e0000832e0000842e0000852e0000862e0000872e0000882e0000892e00008a2e00008b2e00008c2e00008d2e00008e2e00008f2e0000902e0000912e0000922e0000932e0000942e0000952e0000962e0000972e0000982e0000992e00009a2e00009b2e00009c2e00009d2e00009e2e00009f2e0000a02e0000a12e0000a22e0000a32e0000a42e0000a52e0000a62e0000a72e0000a82e0000a92e0000aa2e0000ab2e0000ac2e0000ad2e0000ae2e0000af2e0000b02e0000b12e0000b22e0000b32e0000b42e0000b52e0000b62e0000b72e0000b82e0000b92e0000ba2e0000bb2e0000bc2e0000bd2e0000be2e0000bf2e0000c02e0000c12e0000c22e0000c32e0000c42e0000c52e0000c62e0000c72e0000c82e0000c92e0000ca2e0000cb2e0000cc2e0000cd2e0000ce2e0000cf2e0000d02e0000d12e0000d22e0000d32e0000d42e0000d52e0000d62e0000d72e0000d82e0000d92e0000da2e0000db2e0000dc2e0000dd2e0000de2e0000df2e0000e02e0000e12e0000e22e0000e32e0000e42e0000e52e0000e62e0000e72e0000e82e0000e92e0000ea2e0000eb2e0000ec2e0000ed2e0000ee2e0000ef2e0000f02e0000f12e0000f22e0000f32e0000f42e0000f52e0000f62e0000f72e0000f82e0000f92e0000fa2e0000fb2e0000fc2e0000fd2e0000fe2e0000ff2e0000002f0000012f0000022f0000032f0000042f0000052f0000062f0000072f0000082f0000092f00000a2f00000b2f00000c2f00000d2f00000e2f00000f2f0000102f0000112f0000122f0000132f0000142f0000152f0000162f0000172f0000182f0000192f00001a2f00001b2f00001c2f00001d2f00001e2f00001f2f0000202f0000212f0000222f0000232f0000242f0000252f0000262f0000272f0000282f0000292f00002a2f00002b2f00002c2f00002d2f00002e2f00002f2f0000302f0000312f0000322f0000332f0000342f0000352f0000362f0000372f0000382f0000392f00003a2f00003b2f00003c2f00003d2f00003e2f00003f2f0000402f0000412f0000422f0000432f0000442f0000452f0000462f0000472f0000482f0000492f00004a2f00004b2f00004c2f00004d2f00004e2f00004f2f0000502f0000512f0000522f0000532f0000542f0000552f0000562f0000572f0000582f0000592f00005a2f00005b2f00005c2f00005d2f00005e2f00005f2f0000602f0000612f0000622f0000632f0000642f0000652f0000662f0000672f0000682f0000692f00006a2f00006b2f00006c2f00006d2f00006e2f00006f2f0000702f0000712f0000722f0000732f0000742f0000752f0000762f0000772f0000782f0000792f00007a2f00007b2f00007c2f00007d2f00007e2f00007f2f0000802f0000812f0000822f0000832f0000842f0000852f0000862f0000872f0000882f0000892f00008a2f00008b2f00008c2f00008d2f00008e2f00008f2f0000902f0000912f0000922f0000932f0000942f0000952f0000962f0000972f0000982f0000992f00009a2f00009b2f00009c2f00009d2f00009e2f00009f2f0000a02f0000a12f0000a22f0000a32f0000a42f0000a52f0000a62f0000a72f0000a82f0000a92f0000aa2f0000ab2f0000ac2f0000ad2f0000ae2f0000af2f0000b02f0000b12f0000b22f0000b32f0000b42f0000b52f0000b62f0000b72f0000b82f0000b92f0000ba2f0000bb2f0000bc2f0000bd2f0000be2f0000bf2f0000c02f0000c12f0000c22f0000c32f0000c42f0000c52f0000c62f0000c72f0000c82f0000c92f0000ca2f0000cb2f0000cc2f0000cd2f0000ce2f0000cf2f0000d02f0000d12f0000d22f0000d32f0000d42f0000d52f0000d62f0000d72f0000d82f0000d92f0000da2f0000db2f0000dc2f0000dd2f0000de2f0000df2f0000e02f0000e12f0000e22f0000e32f0000e42f0000e52f0000e62f0000e72f0000e82f0000e92f0000ea2f0000eb2f0000ec2f0000ed2f0000ee2f0000ef2f0000f02f0000f12f0000f22f0000f32f0000f42f0000f52f0000f62f0000f72f0000f82f0000f92f0000fa2f0000fb2f0000fc2f0000fd2f0000fe2f0000ff2f0000003000000130000002300000033000000430000005300000063000000730000008300000093000000a3000000b3000000c3000000d3000000e3000000f300000103000001130000012300000133000001430000015300000163000001730000018300000193000001a3000001b3000001c3000001d3000001e3000001f300000203000002130000022300000233000002430000025300000263000002730000028300000293000002a3000002b3000002c3000002d3000002e3000002f300000303000003130000032300000333000003430000035300000363000003730000038300000393000003a3000003b3000003c3000003d3000003e3000003f300000403000004130000042300000433000004430000045300000463000004730000048300000493000004a3000004b3000004c3000004d3000004e3000004f300000503000005130000052300000533000005430000055300000563000005730000058300000593000005a3000005b3000005c3000005d3000005e3000005f300000603000006130000062300000633000006430000065300000663000006730000068300000693000006a3000006b3000006c3000006d3000006e3000006f300000703000007130000072300000733000007430000075300000763000007730000078300000793000007a3000007b3000007c3000007d3000007e3000007f300000803000008130000082300000833000008430000085300000863000008730000088300000893000008a3000008b3000008c3000008d3000008e3000008f300000903000009130000092300000933000009430000095300000963000009730000098300000993000009a3000009b3000009c3000009d3000009e3000009f300000a0300000a1300000a2300000a3300000a4300000a5300000a6300000a7300000a8300000a9300000aa300000ab300000ac300000ad300000ae300000af300000b0300000b1300000b2300000b3300000b4300000b5300000b6300000b7300000b8300000b9300000ba300000bb300000bc300000bd300000be300000bf300000c0300000c1300000c2300000c3300000c4300000c5300000c6300000c7300000c8300000c9300000ca300000cb300000cc300000cd300000ce300000cf300000d0300000d1300000d2300000d3300000d4300000d5300000d6300000d7300000d8300000d9300000da300000db300000dc300000dd300000de300000df300000e0300000e1300000e2300000e3300000e4300000e5300000e6300000e7300000e8300000e9300000ea300000eb300000ec300000ed300000ee300000ef300000f0300000f1300000f2300000f3300000f4300000f5300000f6300000f7300000f8300000f9300000fa300000fb300000fc300000fd300000fe300000ff300000003100000131000002310000033100000431000005310000063100000731000008310000093100000a3100000b3100000c3100000d3100000e3100000f310000103100001131000012310000133100001431000015310000163100001731000018310000193100001a3100001b3100001c3100001d3100001e3100001f310000203100002131000022310000233100002431000025310000263100002731000028310000293100002a3100002b3100002c3100002d3100002e3100002f310000303100003131000032310000333100003431000035310000363100003731000038310000393100003a3100003b3100003c3100003d3100003e3100003f310000403100004131000042310000433100004431000045310000463100004731000048310000493100004a3100004b3100004c3100004d3100004e3100004f310000503100005131000052310000533100005431000055310000563100005731000058310000593100005a3100005b3100005c3100005d3100005e3100005f310000603100006131000062310000633100006431000065310000663100006731000068310000693100006a3100006b3100006c3100006d3100006e3100006f310000703100007131000072310000733100007431000075310000763100007731000078310000793100007a3100007b3100007c3100007d3100007e3100007f310000803100008131000082310000833100008431000085310000863100008731000088310000893100008a3100008b3100008c3100008d3100008e3100008f310000903100009131000092310000933100009431000095310000963100009731000098310000993100009a3100009b3100009c3100009d3100009e3100009f310000a0310000a1310000a2310000a3310000a4310000a5310000a6310000a7310000a8310000a9310000aa310000ab310000ac310000ad310000ae310000af310000b0310000b1310000b2310000b3310000b4310000b5310000b6310000b7310000b8310000b9310000ba310000bb310000bc310000bd310000be310000bf310000c0310000c1310000c2310000c3310000c4310000c5310000c6310000c7310000c8310000c9310000ca310000cb310000cc310000cd310000ce310000cf310000d0310000d1310000d2310000d3310000d4310000d5310000d6310000d7310000d8310000d9310000da310000db310000dc310000dd310000de310000df310000e0310000e1310000e2310000e3310000e4310000e5310000e6310000e7310000e8310000e9310000ea310000eb310000ec310000ed310000ee310000ef310000f0310000f1310000f2310000f3310000f4310000f5310000f6310000f7310000f8310000f9310000fa310000fb310000fc310000fd310000fe310000ff310000003200000132000002320000033200000432000005320000063200000732000008320000093200000a3200000b3200000c3200000d3200000e3200000f320000103200001132000012320000133200001432000015320000163200001732000018320000193200001a3200001b3200001c3200001d3200001e3200001f320000203200002132000022320000233200002432000025320000263200002732000028320000293200002a3200002b3200002c3200002d3200002e3200002f320000303200003132000032320000333200003432000035320000363200003732000038320000393200003a3200003b3200003c3200003d3200003e3200003f320000403200004132000042320000433200004432000045320000463200004732000048320000493200004a3200004b3200004c3200004d3200004e3200004f320000503200005132000052320000533200005432000055320000563200005732000058320000593200005a3200005b3200005c3200005d3200005e3200005f320000603200006132000062320000633200006432000065320000663200006732000068320000693200006a3200006b3200006c3200006d3200006e3200006f320000703200007132000072320000733200007432000075320000763200007732000078320000793200007a3200007b3200007c3200007d3200007e3200007f320000803200008132000082320000833200008432000085320000863200008732000088320000893200008a3200008b3200008c3200008d3200008e3200008f320000903200009132000092320000933200009432000095320000963200009732000098320000993200009a3200009b3200009c3200009d3200009e3200009f320000a0320000a1320000a2320000a3320000a4320000a5320000a6320000a7320000a8320000a9320000aa320000ab320000ac320000ad320000ae320000af320000b0320000b1320000b2320000b3320000b4320000b5320000b6320000b7320000b8320000b9320000ba320000bb320000bc320000bd320000be320000bf320000c0320000c1320000c2320000c3320000c4320000c5320000c6320000c7320000c8320000c9320000ca320000cb320000cc320000cd320000ce320000cf320000d0320000d1320000d2320000d3320000d4320000d5320000d6320000d7320000d8320000d9320000da320000db320000dc320000dd320000de320000df320000e0320000e1320000e2320000e3320000e4320000e5320000e6320000e7320000e8320000e9320000ea320000eb320000ec320000ed320000ee320000ef320000f0320000f1320000f2320000f3320000f4320000f5320000f6320000f7320000f8320000f9320000fa320000fb320000fc320000fd320000fe320000ff320000003300000133000002330000033300000433000005330000063300000733000008330000093300000a3300000b3300000c3300000d3300000e3300000f330000103300001133000012330000133300001433000015330000163300001733000018330000193300001a3300001b3300001c3300001d3300001e3300001f330000203300002133000022330000233300002433000025330000263300002733000028330000293300002a3300002b3300002c3300002d3300002e3300002f330000303300003133000032330000333300003433000035330000363300003733000038330000393300003a3300003b3300003c3300003d3300003e3300003f330000403300004133000042330000433300004433000045330000463300004733000048330000493300004a3300004b3300004c3300004d3300004e3300004f330000503300005133000052330000533300005433000055330000563300005733000058330000593300005a3300005b3300005c3300005d3300005e3300005f330000603300006133000062330000633300006433000065330000663300006733000068330000693300006a3300006b3300006c3300006d3300006e3300006f330000703300007133000072330000733300007433000075330000763300007733000078330000793300007a3300007b3300007c3300007d3300007e3300007f330000803300008133000082330000833300008433000085330000863300008733000088330000893300008a3300008b3300008c3300008d3300008e3300008f330000903300009133000092330000933300009433000095330000963300009733000098330000993300009a3300009b3300009c3300009d3300009e3300009f330000a0330000a1330000a2330000a3330000a4330000a5330000a6330000a7330000a8330000a9330000aa330000ab330000ac330000ad330000ae330000af330000b0330000b1330000b2330000b3330000b4330000b5330000b6330000b7330000b8330000b9330000ba330000bb330000bc330000bd330000be330000bf330000c0330000c1330000c2330000c3330000c4330000c5330000c6330000c7330000c8330000c9330000ca330000cb330000cc330000cd330000ce330000cf330000d0330000d1330000d2330000d3330000d4330000d5330000d6330000d7330000d8330000d9330000da330000db330000dc330000dd330000de330000df330000e0330000e1330000e2330000e3330000e4330000e5330000e6330000e7330000e8330000e9330000ea330000eb330000ec330000ed330000ee330000ef330000f0330000f1330000f2330000f3330000f4330000f5330000f6330000f7330000f8330000f9330000fa330000fb330000fc330000fd330000fe330000ff330000003400000134000002340000033400000434000005340000063400000734000008340000093400000a3400000b3400000c3400000d3400000e3400000f340000103400001134000012340000133400001434000015340000163400001734000018340000193400001a3400001b3400001c3400001d3400001e3400001f340000203400002134000022340000233400002434000025340000263400002734000028340000293400002a3400002b3400002c3400002d3400002e3400002f340000303400003134000032340000333400003434000035340000363400003734000038340000393400003a3400003b3400003c3400003d3400003e3400003f340000403400004134000042340000433400004434000045340000463400004734000048340000493400004a3400004b3400004c3400004d3400004e3400004f340000503400005134000052340000533400005434000055340000563400005734000058340000593400005a3400005b3400005c3400005d3400005e3400005f340000603400006134000062340000633400006434000065340000663400006734000068340000693400006a3400006b3400006c3400006d3400006e3400006f340000703400007134000072340000733400007434000075340000763400007734000078340000793400007a3400007b3400007c3400007d3400007e3400007f340000803400008134000082340000833400008434000085340000863400008734000088340000893400008a3400008b3400008c3400008d3400008e3400008f340000903400009134000092340000933400009434000095340000963400009734000098340000993400009a3400009b3400009c3400009d3400009e3400009f340000a0340000a1340000a2340000a3340000a4340000a5340000a6340000a7340000a8340000a9340000aa340000ab340000ac340000ad340000ae340000af340000b0340000b1340000b2340000b3340000b4340000b5340000b6340000b7340000b8340000b9340000ba340000bb340000bc340000bd340000be340000bf340000c0340000c1340000c2340000c3340000c4340000c5340000c6340000c7340000c8340000c9340000ca340000cb340000cc340000cd340000ce340000cf340000d0340000d1340000d2340000d3340000d4340000d5340000d6340000d7340000d8340000d9340000da340000db340000dc340000dd340000de340000df340000e0340000e1340000e2340000e3340000e4340000e5340000e6340000e7340000e8340000e9340000ea340000eb340000ec340000ed340000ee340000ef340000f0340000f1340000f2340000f3340000f4340000f5340000f6340000f7340000f8340000f9340000fa340000fb340000fc340000fd340000fe340000ff340000003500000135000002350000033500000435000005350000063500000735000008350000093500000a3500000b3500000c3500000d3500000e3500000f350000103500001135000012350000133500001435000015350000163500001735000018350000193500001a3500001b3500001c3500001d3500001e3500001f350000203500002135000022350000233500002435000025350000263500002735000028350000293500002a3500002b3500002c3500002d3500002e3500002f350000303500003135000032350000333500003435000035350000363500003735000038350000393500003a3500003b3500003c3500003d3500003e3500003f350000403500004135000042350000433500004435000045350000463500004735000048350000493500004a3500004b3500004c3500004d3500004e3500004f350000503500005135000052350000533500005435000055350000563500005735000058350000593500005a3500005b3500005c3500005d3500005e3500005f350000603500006135000062350000633500006435000065350000663500006735000068350000693500006a3500006b3500006c3500006d3500006e3500006f350000703500007135000072350000733500007435000075350000763500007735000078350000793500007a3500007b3500007c3500007d3500007e3500007f350000803500008135000082350000833500008435000085350000863500008735000088350000893500008a3500008b3500008c3500008d3500008e3500008f350000903500009135000092350000933500009435000095350000963500009735000098350000993500009a3500009b3500009c3500009d3500009e3500009f350000a0350000a1350000a2350000a3350000a4350000a5350000a6350000a7350000a8350000a9350000aa350000ab350000ac350000ad350000ae350000af350000b0350000b1350000b2350000b3350000b4350000b5350000b6350000b7350000b8350000b9350000ba350000bb350000bc350000bd350000be350000bf350000c0350000c1350000c2350000c3350000c4350000c5350000c6350000c7350000c8350000c9350000ca350000cb350000cc350000cd350000ce350000cf350000d0350000d1350000d2350000d3350000d4350000d5350000d6350000d7350000d8350000d9350000da350000db350000dc350000dd350000de350000df350000e0350000e1350000e2350000e3350000e4350000e5350000e6350000e7350000e8350000e9350000ea350000eb350000ec350000ed350000ee350000ef350000f0350000f1350000f2350000f3350000f4350000f5350000f6350000f7350000f8350000f9350000fa350000fb350000fc350000fd350000fe350000ff350000003600000136000002360000033600000436000005360000063600000736000008360000093600000a3600000b3600000c3600000d3600000e3600000f360000103600001136000012360000133600001436000015360000163600001736000018360000193600001a3600001b3600001c3600001d3600001e3600001f360000203600002136000022360000233600002436000025360000263600002736000028360000293600002a3600002b3600002c3600002d3600002e3600002f360000303600003136000032360000333600003436000035360000363600003736000038360000393600003a3600003b3600003c3600003d3600003e3600003f360000403600004136000042360000433600004436000045360000463600004736000048360000493600004a3600004b3600004c3600004d3600004e3600004f360000503600005136000052360000533600005436000055360000563600005736000058360000593600005a3600005b3600005c3600005d3600005e3600005f360000603600006136000062360000633600006436000065360000663600006736000068360000693600006a3600006b3600006c3600006d3600006e3600006f360000703600007136000072360000733600007436000075360000763600007736000078360000793600007a3600007b3600007c3600007d3600007e3600007f360000803600008136000082360000833600008436000085360000863600008736000088360000893600008a3600008b3600008c3600008d3600008e3600008f360000903600009136000092360000933600009436000095360000963600009736000098360000993600009a3600009b3600009c3600009d3600009e3600009f360000a0360000a1360000a2360000a3360000a4360000a5360000a6360000a7360000a8360000a9360000aa360000ab360000ac360000ad360000ae360000af360000b0360000b1360000b2360000b3360000b4360000b5360000b6360000b7360000b8360000b9360000ba360000bb360000bc360000bd360000be360000bf360000c0360000c1360000c2360000c3360000c4360000c5360000c6360000c7360000c8360000c9360000ca360000cb360000cc360000cd360000ce360000cf360000d0360000d1360000d2360000d3360000d4360000d5360000d6360000d7360000d8360000d9360000da360000db360000dc360000dd360000de360000df360000e0360000e1360000e2360000e3360000e4360000e5360000e6360000e7360000e8360000e9360000ea360000eb360000ec360000ed360000ee360000ef360000f0360000f1360000f2360000f3360000f4360000f5360000f6360000f7360000f8360000f9360000fa360000fb360000fc360000fd360000fe360000ff360000003700000137000002370000033700000437000005370000063700000737000008370000093700000a3700000b3700000c3700000d3700000e3700000f370000103700001137000012370000133700001437000015370000163700001737000018370000193700001a3700001b3700001c3700001d3700001e3700001f370000203700002137000022370000233700002437000025370000263700002737000028370000293700002a3700002b3700002c3700002d3700002e3700002f370000303700003137000032370000333700003437000035370000363700003737000038370000393700003a3700003b3700003c3700003d3700003e3700003f370000403700004137000042370000433700004437000045370000463700004737000048370000493700004a3700004b3700004c3700004d3700004e3700004f370000503700005137000052370000533700005437000055370000563700005737000058370000593700005a3700005b3700005c3700005d3700005e3700005f370000603700006137000062370000633700006437000065370000663700006737000068370000693700006a3700006b3700006c3700006d3700006e3700006f370000703700007137000072370000733700007437000075370000763700007737000078370000793700007a3700007b3700007c3700007d3700007e3700007f370000803700008137000082370000833700008437000085370000863700008737000088370000893700008a3700008b3700008c3700008d3700008e3700008f370000903700009137000092370000933700009437000095370000963700009737000098370000993700009a3700009b3700009c3700009d3700009e3700009f370000a0370000a1370000a2370000a3370000a4370000a5370000a6370000a7370000a8370000a9370000aa370000ab370000ac370000ad370000ae370000af370000b0370000b1370000b2370000b3370000b4370000b5370000b6370000b7370000b8370000b9370000ba370000bb370000bc370000bd370000be370000bf370000c0370000c1370000c2370000c3370000c4370000c5370000c6370000c7370000c8370000c9370000ca370000cb370000cc370000cd370000ce370000cf370000d0370000d1370000d2370000d3370000d4370000d5370000d6370000d7370000d8370000d9370000da370000db370000dc370000dd370000de370000df370000e0370000e1370000e2370000e3370000e4370000e5370000e6370000e7370000e8370000e9370000ea370000eb370000ec370000ed370000ee370000ef370000f0370000f1370000f2370000f3370000f4370000f5370000f6370000f7370000f8370000f9370000fa370000fb370000fc370000fd370000fe370000ff370000003800000138000002380000033800000438000005380000063800000738000008380000093800000a3800000b3800000c3800000d3800000e3800000f380000103800001138000012380000133800001438000015380000163800001738000018380000193800001a3800001b3800001c3800001d3800001e3800001f380000203800002138000022380000233800002438000025380000263800002738000028380000293800002a3800002b3800002c3800002d3800002e3800002f380000303800003138000032380000333800003438000035380000363800003738000038380000393800003a3800003b3800003c3800003d3800003e3800003f380000403800004138000042380000433800004438000045380000463800004738000048380000493800004a3800004b3800004c3800004d3800004e3800004f380000503800005138000052380000533800005438000055380000563800005738000058380000593800005a3800005b3800005c3800005d3800005e3800005f380000603800006138000062380000633800006438000065380000663800006738000068380000693800006a3800006b3800006c3800006d3800006e3800006f380000703800007138000072380000733800007438000075380000763800007738000078380000793800007a3800007b3800007c3800007d3800007e3800007f380000803800008138000082380000833800008438000085380000863800008738000088380000893800008a3800008b3800008c3800008d3800008e3800008f380000903800009138000092380000933800009438000095380000963800009738000098380000993800009a3800009b3800009c3800009d3800009e3800009f380000a0380000a1380000a2380000a3380000a4380000a5380000a6380000a7380000a8380000a9380000aa380000ab380000ac380000ad380000ae380000af380000b0380000b1380000b2380000b3380000b4380000b5380000b6380000b7380000b8380000b9380000ba380000bb380000bc380000bd380000be380000bf380000c0380000c1380000c2380000c3380000c4380000c5380000c6380000c7380000c8380000c9380000ca380000cb380000cc380000cd380000ce380000cf380000d0380000d1380000d2380000d3380000d4380000d5380000d6380000d7380000d8380000d9380000da380000db380000dc380000dd380000de380000df380000e0380000e1380000e2380000e3380000e4380000e5380000e6380000e7380000e8380000e9380000ea380000eb380000ec380000ed380000ee380000ef380000f0380000f1380000f2380000f3380000f4380000f5380000f6380000f7380000f8380000f9380000fa380000fb380000fc380000fd380000fe380000ff380000003900000139000002390000033900000439000005390000063900000739000008390000093900000a3900000b3900000c3900000d3900000e3900000f390000103900001139000012390000133900001439000015390000163900001739000018390000193900001a3900001b3900001c3900001d3900001e3900001f390000203900002139000022390000233900002439000025390000263900002739000028390000293900002a3900002b3900002c3900002d3900002e3900002f390000303900003139000032390000333900003439000035390000363900003739000038390000393900003a3900003b3900003c3900003d3900003e3900003f390000403900004139000042390000433900004439000045390000463900004739000048390000493900004a3900004b3900004c3900004d3900004e3900004f390000503900005139000052390000533900005439000055390000563900005739000058390000593900005a3900005b3900005c3900005d3900005e3900005f390000603900006139000062390000633900006439000065390000663900006739000068390000693900006a3900006b3900006c3900006d3900006e3900006f390000703900007139000072390000733900007439000075390000763900007739000078390000793900007a3900007b3900007c3900007d3900007e3900007f390000803900008139000082390000833900008439000085390000863900008739000088390000893900008a3900008b3900008c3900008d3900008e3900008f390000903900009139000092390000933900009439000095390000963900009739000098390000993900009a3900009b3900009c3900009d3900009e3900009f390000a0390000a1390000a2390000a3390000a4390000a5390000a6390000a7390000a8390000a9390000aa390000ab390000ac390000ad390000ae390000af390000b0390000b1390000b2390000b3390000b4390000b5390000b6390000b7390000b8390000b9390000ba390000bb390000bc390000bd390000be390000bf390000c0390000c1390000c2390000c3390000c4390000c5390000c6390000c7390000c8390000c9390000ca390000cb390000cc390000cd390000ce390000cf390000d0390000d1390000d2390000d3390000d4390000d5390000d6390000d7390000d8390000d9390000da390000db390000dc390000dd390000de390000df390000e0390000e1390000e2390000e3390000e4390000e5390000e6390000e7390000e8390000e9390000ea390000eb390000ec390000ed390000ee390000ef390000f0390000f1390000f2390000f3390000f4390000f5390000f6390000f7390000f8390000f9390000fa390000fb390000fc390000fd390000fe390000ff390000003a0000013a0000023a0000033a0000043a0000053a0000063a0000073a0000083a0000093a00000a3a00000b3a00000c3a00000d3a00000e3a00000f3a0000103a0000113a0000123a0000133a0000143a0000153a0000163a0000173a0000183a0000193a00001a3a00001b3a00001c3a00001d3a00001e3a00001f3a0000203a0000213a0000223a0000233a0000243a0000253a0000263a0000273a0000283a0000293a00002a3a00002b3a00002c3a00002d3a00002e3a00002f3a0000303a0000313a0000323a0000333a0000343a0000353a0000363a0000373a0000383a0000393a00003a3a00003b3a00003c3a00003d3a00003e3a00003f3a0000403a0000413a0000423a0000433a0000443a0000453a0000463a0000473a0000483a0000493a00004a3a00004b3a00004c3a00004d3a00004e3a00004f3a0000503a0000513a0000523a0000533a0000543a0000553a0000563a0000573a0000583a0000593a00005a3a00005b3a00005c3a00005d3a00005e3a00005f3a0000603a0000613a0000623a0000633a0000643a0000653a0000663a0000673a0000683a0000693a00006a3a00006b3a00006c3a00006d3a00006e3a00006f3a0000703a0000713a0000723a0000733a0000743a0000753a0000763a0000773a0000783a0000793a00007a3a00007b3a00007c3a00007d3a00007e3a00007f3a0000803a0000813a0000823a0000833a0000843a0000853a0000863a0000873a0000883a0000893a00008a3a00008b3a00008c3a00008d3a00008e3a00008f3a0000903a0000913a0000923a0000933a0000943a0000953a0000963a0000973a0000983a0000993a00009a3a00009b3a00009c3a00009d3a00009e3a00009f3a0000a03a0000a13a0000a23a0000a33a0000a43a0000a53a0000a63a0000a73a0000a83a0000a93a0000aa3a0000ab3a0000ac3a0000ad3a0000ae3a0000af3a0000b03a0000b13a0000b23a0000b33a0000b43a0000b53a0000b63a0000b73a0000b83a0000b93a0000ba3a0000bb3a0000bc3a0000bd3a0000be3a0000bf3a0000c03a0000c13a0000c23a0000c33a0000c43a0000c53a0000c63a0000c73a0000c83a0000c93a0000ca3a0000cb3a0000cc3a0000cd3a0000ce3a0000cf3a0000d03a0000d13a0000d23a0000d33a0000d43a0000d53a0000d63a0000d73a0000d83a0000d93a0000da3a0000db3a0000dc3a0000dd3a0000de3a0000df3a0000e03a0000e13a0000e23a0000e33a0000e43a0000e53a0000e63a0000e73a0000e83a0000e93a0000ea3a0000eb3a0000ec3a0000ed3a0000ee3a0000ef3a0000f03a0000f13a0000f23a0000f33a0000f43a0000f53a0000f63a0000f73a0000f83a0000f93a0000fa3a0000fb3a0000fc3a0000fd3a0000fe3a0000ff3a0000003b0000013b0000023b0000033b0000043b0000053b0000063b0000073b0000083b0000093b00000a3b00000b3b00000c3b00000d3b00000e3b00000f3b0000103b0000113b0000123b0000133b0000143b0000153b0000163b0000173b0000183b0000193b00001a3b00001b3b00001c3b00001d3b00001e3b00001f3b0000203b0000213b0000223b0000233b0000243b0000253b0000263b0000273b0000283b0000293b00002a3b00002b3b00002c3b00002d3b00002e3b00002f3b0000303b0000313b0000323b0000333b0000343b0000353b0000363b0000373b0000383b0000393b00003a3b00003b3b00003c3b00003d3b00003e3b00003f3b0000403b0000413b0000423b0000433b0000443b0000453b0000463b0000473b0000483b0000493b00004a3b00004b3b00004c3b00004d3b00004e3b00004f3b0000503b0000513b0000523b0000533b0000543b0000553b0000563b0000573b0000583b0000593b00005a3b00005b3b00005c3b00005d3b00005e3b00005f3b0000603b0000613b0000623b0000633b0000643b0000653b0000663b0000673b0000683b0000693b00006a3b00006b3b00006c3b00006d3b00006e3b00006f3b0000703b0000713b0000723b0000733b0000743b0000753b0000763b0000773b0000783b0000793b00007a3b00007b3b00007c3b00007d3b00007e3b00007f3b0000803b0000813b0000823b0000833b0000843b0000853b0000863b0000873b0000883b0000893b00008a3b00008b3b00008c3b00008d3b00008e3b00008f3b0000903b0000913b0000923b0000933b0000943b0000953b0000963b0000973b0000983b0000993b00009a3b00009b3b00009c3b00009d3b00009e3b00009f3b0000a03b0000a13b0000a23b0000a33b0000a43b0000a53b0000a63b0000a73b0000a83b0000a93b0000aa3b0000ab3b0000ac3b0000ad3b0000ae3b0000af3b0000b03b0000b13b0000b23b0000b33b0000b43b0000b53b0000b63b0000b73b0000b83b0000b93b0000ba3b0000bb3b0000bc3b0000bd3b0000be3b0000bf3b0000c03b0000c13b0000c23b0000c33b0000c43b0000c53b0000c63b0000c73b0000c83b0000c93b0000ca3b0000cb3b0000cc3b0000cd3b0000ce3b0000cf3b0000d03b0000d13b0000d23b0000d33b0000d43b0000d53b0000d63b0000d73b0000d83b0000d93b0000da3b0000db3b0000dc3b0000dd3b0000de3b0000df3b0000e03b0000e13b0000e23b0000e33b0000e43b0000e53b0000e63b0000e73b0000e83b0000e93b0000ea3b0000eb3b0000ec3b0000ed3b0000ee3b0000ef3b0000f03b0000f13b0000f23b0000f33b0000f43b0000f53b0000f63b0000f73b0000f83b0000f93b0000fa3b0000fb3b0000fc3b0000fd3b0000fe3b0000ff3b0000003c0000013c0000023c0000033c0000043c0000053c0000063c0000073c0000083c0000093c00000a3c00000b3c00000c3c00000d3c00000e3c00000f3c0000103c0000113c0000123c0000133c0000143c0000153c0000163c0000173c0000183c0000193c00001a3c00001b3c00001c3c00001d3c00001e3c00001f3c0000203c0000213c0000223c0000233c0000243c0000253c0000263c0000273c0000283c0000293c00002a3c00002b3c00002c3c00002d3c00002e3c00002f3c0000303c0000313c0000323c0000333c0000343c0000353c0000363c0000373c0000383c0000393c00003a3c00003b3c00003c3c00003d3c00003e3c00003f3c0000403c0000413c0000423c0000433c0000443c0000453c0000463c0000473c0000483c0000493c00004a3c00004b3c00004c3c00004d3c00004e3c00004f3c0000503c0000513c0000523c0000533c0000543c0000553c0000563c0000573c0000583c0000593c00005a3c00005b3c00005c3c00005d3c00005e3c00005f3c0000603c0000613c0000623c0000633c0000643c0000653c0000663c0000673c0000683c0000693c00006a3c00006b3c00006c3c00006d3c00006e3c00006f3c0000703c0000713c0000723c0000733c0000743c0000753c0000763c0000773c0000783c0000793c00007a3c00007b3c00007c3c00007d3c00007e3c00007f3c0000803c0000813c0000823c0000833c0000843c0000853c0000863c0000873c0000883c0000893c00008a3c00008b3c00008c3c00008d3c00008e3c00008f3c0000903c0000913c0000923c0000933c0000943c0000953c0000963c0000973c0000983c0000993c00009a3c00009b3c00009c3c00009d3c00009e3c00009f3c0000a03c0000a13c0000a23c0000a33c0000a43c0000a53c0000a63c0000a73c0000a83c0000a93c0000aa3c0000ab3c0000ac3c0000ad3c0000ae3c0000af3c0000b03c0000b13c0000b23c0000b33c0000b43c0000b53c0000b63c0000b73c0000b83c0000b93c0000ba3c0000bb3c0000bc3c0000bd3c0000be3c0000bf3c0000c03c0000c13c0000c23c0000c33c0000c43c0000c53c0000c63c0000c73c0000c83c0000c93c0000ca3c0000cb3c0000cc3c0000cd3c0000ce3c0000cf3c0000d03c0000d13c0000d23c0000d33c0000d43c0000d53c0000d63c0000d73c0000d83c0000d93c0000da3c0000db3c0000dc3c0000dd3c0000de3c0000df3c0000e03c0000e13c0000e23c0000e33c0000e43c0000e53c0000e63c0000e73c0000e83c0000e93c0000ea3c0000eb3c0000ec3c0000ed3c0000ee3c0000ef3c0000f03c0000f13c0000f23c0000f33c0000f43c0000f53c0000f63c0000f73c0000f83c0000f93c0000fa3c0000fb3c0000fc3c0000fd3c0000fe3c0000ff3c0000003d0000013d0000023d0000033d0000043d0000053d0000063d0000073d0000083d0000093d00000a3d00000b3d00000c3d00000d3d00000e3d00000f3d0000103d0000113d0000123d0000133d0000143d0000153d0000163d0000173d0000183d0000193d00001a3d00001b3d00001c3d00001d3d00001e3d00001f3d0000203d0000213d0000223d0000233d0000243d0000253d0000263d0000273d0000283d0000293d00002a3d00002b3d00002c3d00002d3d00002e3d00002f3d0000303d0000313d0000323d0000333d0000343d0000353d0000363d0000373d0000383d0000393d00003a3d00003b3d00003c3d00003d3d00003e3d00003f3d0000403d0000413d0000423d0000433d0000443d0000453d0000463d0000473d0000483d0000493d00004a3d00004b3d00004c3d00004d3d00004e3d00004f3d0000503d0000513d0000523d0000533d0000543d0000553d0000563d0000573d0000583d0000593d00005a3d00005b3d00005c3d00005d3d00005e3d00005f3d0000603d0000613d0000623d0000633d0000643d0000653d0000663d0000673d0000683d0000693d00006a3d00006b3d00006c3d00006d3d00006e3d00006f3d0000703d0000713d0000723d0000733d0000743d0000753d0000763d0000773d0000783d0000793d00007a3d00007b3d00007c3d00007d3d00007e3d00007f3d0000803d0000813d0000823d0000833d0000843d0000853d0000863d0000873d0000883d0000893d00008a3d00008b3d00008c3d00008d3d00008e3d00008f3d0000903d0000913d0000923d0000933d0000943d0000953d0000963d0000973d0000983d0000993d00009a3d00009b3d00009c3d00009d3d00009e3d00009f3d0000a03d0000a13d0000a23d0000a33d0000a43d0000a53d0000a63d0000a73d0000a83d0000a93d0000aa3d0000ab3d0000ac3d0000ad3d0000ae3d0000af3d0000b03d0000b13d0000b23d0000b33d0000b43d0000b53d0000b63d0000b73d0000b83d0000b93d0000ba3d0000bb3d0000bc3d0000bd3d0000be3d0000bf3d0000c03d0000c13d0000c23d0000c33d0000c43d0000c53d0000c63d0000c73d0000c83d0000c93d0000ca3d0000cb3d0000cc3d0000cd3d0000ce3d0000cf3d0000d03d0000d13d0000d23d0000d33d0000d43d0000d53d0000d63d0000d73d0000d83d0000d93d0000da3d0000db3d0000dc3d0000dd3d0000de3d0000df3d0000e03d0000e13d0000e23d0000e33d0000e43d0000e53d0000e63d0000e73d0000e83d0000e93d0000ea3d0000eb3d0000ec3d0000ed3d0000ee3d0000ef3d0000f03d0000f13d0000f23d0000f33d0000f43d0000f53d0000f63d0000f73d0000f83d0000f93d0000fa3d0000fb3d0000fc3d0000fd3d0000fe3d0000ff3d0000003e0000013e0000023e0000033e0000043e0000053e0000063e0000073e0000083e0000093e00000a3e00000b3e00000c3e00000d3e00000e3e00000f3e0000103e0000113e0000123e0000133e0000143e0000153e0000163e0000173e0000183e0000193e00001a3e00001b3e00001c3e00001d3e00001e3e00001f3e0000203e0000213e0000223e0000233e0000243e0000253e0000263e0000273e0000283e0000293e00002a3e00002b3e00002c3e00002d3e00002e3e00002f3e0000303e0000313e0000323e0000333e0000343e0000353e0000363e0000373e0000383e0000393e00003a3e00003b3e00003c3e00003d3e00003e3e00003f3e0000403e0000413e0000423e0000433e0000443e0000453e0000463e0000473e0000483e0000493e00004a3e00004b3e00004c3e00004d3e00004e3e00004f3e0000503e0000513e0000523e0000533e0000543e0000553e0000563e0000573e0000583e0000593e00005a3e00005b3e00005c3e00005d3e00005e3e00005f3e0000603e0000613e0000623e0000633e0000643e0000653e0000663e0000673e0000683e0000693e00006a3e00006b3e00006c3e00006d3e00006e3e00006f3e0000703e0000713e0000723e0000733e0000743e0000753e0000763e0000773e0000783e0000793e00007a3e00007b3e00007c3e00007d3e00007e3e00007f3e0000803e0000813e0000823e0000833e0000843e0000853e0000863e0000873e0000883e0000893e00008a3e00008b3e00008c3e00008d3e00008e3e00008f3e0000903e0000913e0000923e0000933e0000943e0000953e0000963e0000973e0000983e0000993e00009a3e00009b3e00009c3e00009d3e00009e3e00009f3e0000a03e0000a13e0000a23e0000a33e0000a43e0000a53e0000a63e0000a73e0000a83e0000a93e0000aa3e0000ab3e0000ac3e0000ad3e0000ae3e0000af3e0000b03e0000b13e0000b23e0000b33e0000b43e0000b53e0000b63e0000b73e0000b83e0000b93e0000ba3e0000bb3e0000bc3e0000bd3e0000be3e0000bf3e0000c03e0000c13e0000c23e0000c33e0000c43e0000c53e0000c63e0000c73e0000c83e0000c93e0000ca3e0000cb3e0000cc3e0000cd3e0000ce3e0000cf3e0000d03e0000d13e0000d23e0000d33e0000d43e0000d53e0000d63e0000d73e0000d83e0000d93e0000da3e0000db3e0000dc3e0000dd3e0000de3e0000df3e0000e03e0000e13e0000e23e0000e33e0000e43e0000e53e0000e63e0000e73e0000e83e0000e93e0000ea3e0000eb3e0000ec3e0000ed3e0000ee3e0000ef3e0000f03e0000f13e0000f23e0000f33e0000f43e0000f53e0000f63e0000f73e0000f83e0000f93e0000fa3e0000fb3e0000fc3e0000fd3e0000fe3e0000ff3e0000003f0000013f0000023f0000033f0000043f0000053f0000063f0000073f0000083f0000093f00000a3f00000b3f00000c3f00000d3f00000e3f00000f3f0000103f0000113f0000123f0000133f0000143f0000153f0000163f0000173f0000183f0000193f00001a3f00001b3f00001c3f00001d3f00001e3f00001f3f0000203f0000213f0000223f0000233f0000243f0000253f0000263f0000273f0000283f0000293f00002a3f00002b3f00002c3f00002d3f00002e3f00002f3f0000303f0000313f0000323f0000333f0000343f0000353f0000363f0000373f0000383f0000393f00003a3f00003b3f00003c3f00003d3f00003e3f00003f3f0000403f0000413f0000423f0000433f0000443f0000453f0000463f0000473f0000483f0000493f00004a3f00004b3f00004c3f00004d3f00004e3f00004f3f0000503f0000513f0000523f0000533f0000543f0000553f0000563f0000573f0000583f0000593f00005a3f00005b3f00005c3f00005d3f00005e3f00005f3f0000603f0000613f0000623f0000633f0000643f0000653f0000663f0000673f0000683f0000693f00006a3f00006b3f00006c3f00006d3f00006e3f00006f3f0000703f0000713f0000723f0000733f0000743f0000753f0000763f0000773f0000783f0000793f00007a3f00007b3f00007c3f00007d3f00007e3f00007f3f0000803f0000813f0000823f0000833f0000843f0000853f0000863f0000873f0000883f0000893f00008a3f00008b3f00008c3f00008d3f00008e3f00008f3f0000903f0000913f0000923f0000933f0000943f0000953f0000963f0000973f0000983f0000993f00009a3f00009b3f00009c3f00009d3f00009e3f00009f3f0000a03f0000a13f0000a23f0000a33f0000a43f0000a53f0000a63f0000a73f0000a83f0000a93f0000aa3f0000ab3f0000ac3f0000ad3f0000ae3f0000af3f0000b03f0000b13f0000b23f0000b33f0000b43f0000b53f0000b63f0000b73f0000b83f0000b93f0000ba3f0000bb3f0000bc3f0000bd3f0000be3f0000bf3f0000c03f0000c13f0000c23f0000c33f0000c43f0000c53f0000c63f0000c73f0000c83f0000c93f0000ca3f0000cb3f0000cc3f0000cd3f0000ce3f0000cf3f0000d03f0000d13f0000d23f0000d33f0000d43f0000d53f0000d63f0000d73f0000d83f0000d93f0000da3f0000db3f0000dc3f0000dd3f0000de3f0000df3f0000e03f0000e13f0000e23f0000e33f0000e43f0000e53f0000e63f0000e73f0000e83f0000e93f0000ea3f0000eb3f0000ec3f0000ed3f0000ee3f0000ef3f0000f03f0000f13f0000f23f0000f33f0000f43f0000f53f0000f63f0000f73f0000f83f0000f93f0000fa3f0000fb3f0000fc3f0000fd3f0000fe3f0000ff3f0000004000000140000002400000034000000440000005400000064000000740000008400000094000000a4000000b4000000c4000000d4000000e4000000f400000104000001140000012400000134000001440000015400000164000001740000018400000194000001a4000001b4000001c4000001d4000001e4000001f400000204000002140000022400000234000002440000025400000264000002740000028400000294000002a4000002b4000002c4000002d4000002e4000002f400000304000003140000032400000334000003440000035400000364000003740000038400000394000003a4000003b4000003c4000003d4000003e4000003f400000404000004140000042400000434000004440000045400000464000004740000048400000494000004a4000004b4000004c4000004d4000004e4000004f400000504000005140000052400000534000005440000055400000564000005740000058400000594000005a4000005b4000005c4000005d4000005e4000005f400000604000006140000062400000634000006440000065400000664000006740000068400000694000006a4000006b4000006c4000006d4000006e4000006f400000704000007140000072400000734000007440000075400000764000007740000078400000794000007a4000007b4000007c4000007d4000007e4000007f400000804000008140000082400000834000008440000085400000864000008740000088400000894000008a4000008b4000008c4000008d4000008e4000008f400000904000009140000092400000934000009440000095400000964000009740000098400000994000009a4000009b4000009c4000009d4000009e4000009f400000a0400000a1400000a2400000a3400000a4400000a5400000a6400000a7400000a8400000a9400000aa400000ab400000ac400000ad400000ae400000af400000b0400000b1400000b2400000b3400000b4400000b5400000b6400000b7400000b8400000b9400000ba400000bb400000bc400000bd400000be400000bf400000c0400000c1400000c2400000c3400000c4400000c5400000c6400000c7400000c8400000c9400000ca400000cb400000cc400000cd400000ce400000cf400000d0400000d1400000d2400000d3400000d4400000d5400000d6400000d7400000d8400000d9400000da400000db400000dc400000dd400000de400000df400000e0400000e1400000e2400000e3400000e4400000e5400000e6400000e7400000e8400000e9400000ea400000eb400000ec400000ed400000ee400000ef400000f0400000f1400000f2400000f3400000f4400000f5400000f6400000f7400000f8400000f9400000fa400000fb400000fc400000fd400000fe400000ff400000004100000141000002410000034100000441000005410000064100000741000008410000094100000a4100000b4100000c4100000d4100000e4100000f410000104100001141000012410000134100001441000015410000164100001741000018410000194100001a4100001b4100001c4100001d4100001e4100001f410000204100002141000022410000234100002441000025410000264100002741000028410000294100002a4100002b4100002c4100002d4100002e4100002f410000304100003141000032410000334100003441000035410000364100003741000038410000394100003a4100003b4100003c4100003d4100003e4100003f410000404100004141000042410000434100004441000045410000464100004741000048410000494100004a4100004b4100004c4100004d4100004e4100004f410000504100005141000052410000534100005441000055410000564100005741000058410000594100005a4100005b4100005c4100005d4100005e4100005f410000604100006141000062410000634100006441000065410000664100006741000068410000694100006a4100006b4100006c4100006d4100006e4100006f410000704100007141000072410000734100007441000075410000764100007741000078410000794100007a4100007b4100007c4100007d4100007e4100007f410000804100008141000082410000834100008441000085410000864100008741000088410000894100008a4100008b4100008c4100008d4100008e4100008f410000904100009141000092410000934100009441000095410000964100009741000098410000994100009a4100009b4100009c4100009d4100009e4100009f410000a0410000a1410000a2410000a3410000a4410000a5410000a6410000a7410000a8410000a9410000aa410000ab410000ac410000ad410000ae410000af410000b0410000b1410000b2410000b3410000b4410000b5410000b6410000b7410000b8410000b9410000ba410000bb410000bc410000bd410000be410000bf410000c0410000c1410000c2410000c3410000c4410000c5410000c6410000c7410000c8410000c9410000ca410000cb410000cc410000cd410000ce410000cf410000d0410000d1410000d2410000d3410000d4410000d5410000d6410000d7410000d8410000d9410000da410000db410000dc410000dd410000de410000df410000e0410000e1410000e2410000e3410000e4410000e5410000e6410000e7410000e8410000e9410000ea410000eb410000ec410000ed410000ee410000ef410000f0410000f1410000f2410000f3410000f4410000f5410000f6410000f7410000f8410000f9410000fa410000fb410000fc410000fd410000fe410000ff410000004200000142000002420000034200000442000005420000064200000742000008420000094200000a4200000b4200000c4200000d4200000e4200000f420000104200001142000012420000134200001442000015420000164200001742000018420000194200001a4200001b4200001c4200001d4200001e4200001f420000204200002142000022420000234200002442000025420000264200002742000028420000294200002a4200002b4200002c4200002d4200002e4200002f420000304200003142000032420000334200003442000035420000364200003742000038420000394200003a4200003b4200003c4200003d4200003e4200003f420000404200004142000042420000434200004442000045420000464200004742000048420000494200004a4200004b4200004c4200004d4200004e4200004f420000504200005142000052420000534200005442000055420000564200005742000058420000594200005a4200005b4200005c4200005d4200005e4200005f420000604200006142000062420000634200006442000065420000664200006742000068420000694200006a4200006b4200006c4200006d4200006e4200006f420000704200007142000072420000734200007442000075420000764200007742000078420000794200007a4200007b4200007c4200007d4200007e4200007f420000804200008142000082420000834200008442000085420000864200008742000088420000894200008a4200008b4200008c4200008d4200008e4200008f420000904200009142000092420000934200009442000095420000964200009742000098420000994200009a4200009b4200009c4200009d4200009e4200009f420000a0420000a1420000a2420000a3420000a4420000a5420000a6420000a7420000a8420000a9420000aa420000ab420000ac420000ad420000ae420000af420000b0420000b1420000b2420000b3420000b4420000b5420000b6420000b7420000b8420000b9420000ba420000bb420000bc420000bd420000be420000bf420000c0420000c1420000c2420000c3420000c4420000c5420000c6420000c7420000c8420000c9420000ca420000cb420000cc420000cd420000ce420000cf420000d0420000d1420000d2420000d3420000d4420000d5420000d6420000d7420000d8420000d9420000da420000db420000dc420000dd420000de420000df420000e0420000e1420000e2420000e3420000e4420000e5420000e6420000e7420000e8420000e9420000ea420000eb420000ec420000ed420000ee420000ef420000f0420000f1420000f2420000f3420000f4420000f5420000f6420000f7420000f8420000f9420000fa420000fb420000fc420000fd420000fe420000ff420000004300000143000002430000034300000443000005430000064300000743000008430000094300000a4300000b4300000c4300000d4300000e4300000f430000104300001143000012430000134300001443000015430000164300001743000018430000194300001a4300001b4300001c4300001d4300001e4300001f430000204300002143000022430000234300002443000025430000264300002743000028430000294300002a4300002b4300002c4300002d4300002e4300002f430000304300003143000032430000334300003443000035430000364300003743000038430000394300003a4300003b4300003c4300003d4300003e4300003f430000404300004143000042430000434300004443000045430000464300004743000048430000494300004a4300004b4300004c4300004d4300004e4300004f430000504300005143000052430000534300005443000055430000564300005743000058430000594300005a4300005b4300005c4300005d4300005e4300005f430000604300006143000062430000634300006443000065430000664300006743000068430000694300006a4300006b4300006c4300006d4300006e4300006f430000704300007143000072430000734300007443000075430000764300007743000078430000794300007a4300007b4300007c4300007d4300007e4300007f430000804300008143000082430000834300008443000085430000864300008743000088430000894300008a4300008b4300008c4300008d4300008e4300008f430000904300009143000092430000934300009443000095430000964300009743000098430000994300009a4300009b4300009c4300009d4300009e4300009f430000a0430000a1430000a2430000a3430000a4430000a5430000a6430000a7430000a8430000a9430000aa430000ab430000ac430000ad430000ae430000af430000b0430000b1430000b2430000b3430000b4430000b5430000b6430000b7430000b8430000b9430000ba430000bb430000bc430000bd430000be430000bf430000c0430000c1430000c2430000c3430000c4430000c5430000c6430000c7430000c8430000c9430000ca430000cb430000cc430000cd430000ce430000cf430000d0430000d1430000d2430000d3430000d4430000d5430000d6430000d7430000d8430000d9430000da430000db430000dc430000dd430000de430000df430000e0430000e1430000e2430000e3430000e4430000e5430000e6430000e7430000e8430000e9430000ea430000eb430000ec430000ed430000ee430000ef430000f0430000f1430000f2430000f3430000f4430000f5430000f6430000f7430000f8430000f9430000fa430000fb430000fc430000fd430000fe430000ff430000004400000144000002440000034400000444000005440000064400000744000008440000094400000a4400000b4400000c4400000d4400000e4400000f440000104400001144000012440000134400001444000015440000164400001744000018440000194400001a4400001b4400001c4400001d4400001e4400001f440000204400002144000022440000234400002444000025440000264400002744000028440000294400002a4400002b4400002c4400002d4400002e4400002f440000304400003144000032440000334400003444000035440000364400003744000038440000394400003a4400003b4400003c4400003d4400003e4400003f440000404400004144000042440000434400004444000045440000464400004744000048440000494400004a4400004b4400004c4400004d4400004e4400004f440000504400005144000052440000534400005444000055440000564400005744000058440000594400005a4400005b4400005c4400005d4400005e4400005f440000604400006144000062440000634400006444000065440000664400006744000068440000694400006a4400006b4400006c4400006d4400006e4400006f440000704400007144000072440000734400007444000075440000764400007744000078440000794400007a4400007b4400007c4400007d4400007e4400007f440000804400008144000082440000834400008444000085440000864400008744000088440000894400008a4400008b4400008c4400008d4400008e4400008f440000904400009144000092440000934400009444000095440000964400009744000098440000994400009a4400009b4400009c4400009d4400009e4400009f440000a0440000a1440000a2440000a3440000a4440000a5440000a6440000a7440000a8440000a9440000aa440000ab440000ac440000ad440000ae440000af440000b0440000b1440000b2440000b3440000b4440000b5440000b6440000b7440000b8440000b9440000ba440000bb440000bc440000bd440000be440000bf440000c0440000c1440000c2440000c3440000c4440000c5440000c6440000c7440000c8440000c9440000ca440000cb440000cc440000cd440000ce440000cf440000d0440000d1440000d2440000d3440000d4440000d5440000d6440000d7440000d8440000d9440000da440000db440000dc440000dd440000de440000df440000e0440000e1440000e2440000e3440000e4440000e5440000e6440000e7440000e8440000e9440000ea440000eb440000ec440000ed440000ee440000ef440000f0440000f1440000f2440000f3440000f4440000f5440000f6440000f7440000f8440000f9440000fa440000fb440000fc440000fd440000fe440000ff440000004500000145000002450000034500000445000005450000064500000745000008450000094500000a4500000b4500000c4500000d4500000e4500000f450000104500001145000012450000134500001445000015450000164500001745000018450000194500001a4500001b4500001c4500001d4500001e4500001f450000204500002145000022450000234500002445000025450000264500002745000028450000294500002a4500002b4500002c4500002d4500002e4500002f450000304500003145000032450000334500003445000035450000364500003745000038450000394500003a4500003b4500003c4500003d4500003e4500003f450000404500004145000042450000434500004445000045450000464500004745000048450000494500004a4500004b4500004c4500004d4500004e4500004f450000504500005145000052450000534500005445000055450000564500005745000058450000594500005a4500005b4500005c4500005d4500005e4500005f450000604500006145000062450000634500006445000065450000664500006745000068450000694500006a4500006b4500006c4500006d4500006e4500006f450000704500007145000072450000734500007445000075450000764500007745000078450000794500007a4500007b4500007c4500007d4500007e4500007f450000804500008145000082450000834500008445000085450000864500008745000088450000894500008a4500008b4500008c4500008d4500008e4500008f450000904500009145000092450000934500009445000095450000964500009745000098450000994500009a4500009b4500009c4500009d4500009e4500009f450000a0450000a1450000a2450000a3450000a4450000a5450000a6450000a7450000a8450000a9450000aa450000ab450000ac450000ad450000ae450000af450000b0450000b1450000b2450000b3450000b4450000b5450000b6450000b7450000b8450000b9450000ba450000bb450000bc450000bd450000be450000bf450000c0450000c1450000c2450000c3450000c4450000c5450000c6450000c7450000c8450000c9450000ca450000cb450000cc450000cd450000ce450000cf450000d0450000d1450000d2450000d3450000d4450000d5450000d6450000d7450000d8450000d9450000da450000db450000dc450000dd450000de450000df450000e0450000e1450000e2450000e3450000e4450000e5450000e6450000e7450000e8450000e9450000ea450000eb450000ec450000ed450000ee450000ef450000f0450000f1450000f2450000f3450000f4450000f5450000f6450000f7450000f8450000f9450000fa450000fb450000fc450000fd450000fe450000ff450000004600000146000002460000034600000446000005460000064600000746000008460000094600000a4600000b4600000c4600000d4600000e4600000f460000104600001146000012460000134600001446000015460000164600001746000018460000194600001a4600001b4600001c4600001d4600001e4600001f460000204600002146000022460000234600002446000025460000264600002746000028460000294600002a4600002b4600002c4600002d4600002e4600002f460000304600003146000032460000334600003446000035460000364600003746000038460000394600003a4600003b4600003c4600003d4600003e4600003f460000404600004146000042460000434600004446000045460000464600004746000048460000494600004a4600004b4600004c4600004d4600004e4600004f460000504600005146000052460000534600005446000055460000564600005746000058460000594600005a4600005b4600005c4600005d4600005e4600005f460000604600006146000062460000634600006446000065460000664600006746000068460000694600006a4600006b4600006c4600006d4600006e4600006f460000704600007146000072460000734600007446000075460000764600007746000078460000794600007a4600007b4600007c4600007d4600007e4600007f460000804600008146000082460000834600008446000085460000864600008746000088460000894600008a4600008b4600008c4600008d4600008e4600008f460000904600009146000092460000934600009446000095460000964600009746000098460000994600009a4600009b4600009c4600009d4600009e4600009f460000a0460000a1460000a2460000a3460000a4460000a5460000a6460000a7460000a8460000a9460000aa460000ab460000ac460000ad460000ae460000af460000b0460000b1460000b2460000b3460000b4460000b5460000b6460000b7460000b8460000b9460000ba460000bb460000bc460000bd460000be460000bf460000c0460000c1460000c2460000c3460000c4460000c5460000c6460000c7460000c8460000c9460000ca460000cb460000cc460000cd460000ce460000cf460000d0460000d1460000d2460000d3460000d4460000d5460000d6460000d7460000d8460000d9460000da460000db460000dc460000dd460000de460000df460000e0460000e1460000e2460000e3460000e4460000e5460000e6460000e7460000e8460000e9460000ea460000eb460000ec460000ed460000ee460000ef460000f0460000f1460000f2460000f3460000f4460000f5460000f6460000f7460000f8460000f9460000fa460000fb460000fc460000fd460000fe460000ff460000004700000147000002470000034700000447000005470000064700000747000008470000094700000a4700000b4700000c4700000d4700000e4700000f470000104700001147000012470000134700001447000015470000164700001747000018470000194700001a4700001b4700001c4700001d4700001e4700001f470000204700002147000022470000234700002447000025470000264700002747000028470000294700002a4700002b4700002c4700002d4700002e4700002f470000304700003147000032470000334700003447000035470000364700003747000038470000394700003a4700003b4700003c4700003d4700003e4700003f470000404700004147000042470000434700004447000045470000464700004747000048470000494700004a4700004b4700004c4700004d4700004e4700004f470000504700005147000052470000534700005447000055470000564700005747000058470000594700005a4700005b4700005c4700005d4700005e4700005f470000604700006147000062470000634700006447000065470000664700006747000068470000694700006a4700006b4700006c4700006d4700006e4700006f470000704700007147000072470000734700007447000075470000764700007747000078470000794700007a4700007b4700007c4700007d4700007e4700007f470000804700008147000082470000834700008447000085470000864700008747000088470000894700008a4700008b4700008c4700008d4700008e4700008f470000904700009147000092470000934700009447000095470000964700009747000098470000994700009a4700009b4700009c4700009d4700009e4700009f470000a0470000a1470000a2470000a3470000a4470000a5470000a6470000a7470000a8470000a9470000aa470000ab470000ac470000ad470000ae470000af470000b0470000b1470000b2470000b3470000b4470000b5470000b6470000b7470000b8470000b9470000ba470000bb470000bc470000bd470000be470000bf470000c0470000c1470000c2470000c3470000c4470000c5470000c6470000c7470000c8470000c9470000ca470000cb470000cc470000cd470000ce470000cf470000d0470000d1470000d2470000d3470000d4470000d5470000d6470000d7470000d8470000d9470000da470000db470000dc470000dd470000de470000df470000e0470000e1470000e2470000e3470000e4470000e5470000e6470000e7470000e8470000e9470000ea470000eb470000ec470000ed470000ee470000ef470000f0470000f1470000f2470000f3470000f4470000f5470000f6470000f7470000f8470000f9470000fa470000fb470000fc470000fd470000fe470000ff470000004800000148000002480000034800000448000005480000064800000748000008480000094800000a4800000b4800000c4800000d4800000e4800000f480000104800001148000012480000134800001448000015480000164800001748000018480000194800001a4800001b4800001c4800001d4800001e4800001f480000204800002148000022480000234800002448000025480000264800002748000028480000294800002a4800002b4800002c4800002d4800002e4800002f480000304800003148000032480000334800003448000035480000364800003748000038480000394800003a4800003b4800003c4800003d4800003e4800003f480000404800004148000042480000434800004448000045480000464800004748000048480000494800004a4800004b4800004c4800004d4800004e4800004f480000504800005148000052480000534800005448000055480000564800005748000058480000594800005a4800005b4800005c4800005d4800005e4800005f480000604800006148000062480000634800006448000065480000664800006748000068480000694800006a4800006b4800006c4800006d4800006e4800006f480000704800007148000072480000734800007448000075480000764800007748000078480000794800007a4800007b4800007c4800007d4800007e4800007f480000804800008148000082480000834800008448000085480000864800008748000088480000894800008a4800008b4800008c4800008d4800008e4800008f480000904800009148000092480000934800009448000095480000964800009748000098480000994800009a4800009b4800009c4800009d4800009e4800009f480000a0480000a1480000a2480000a3480000a4480000a5480000a6480000a7480000a8480000a9480000aa480000ab480000ac480000ad480000ae480000af480000b0480000b1480000b2480000b3480000b4480000b5480000b6480000b7480000b8480000b9480000ba480000bb480000bc480000bd480000be480000bf480000c0480000c1480000c2480000c3480000c4480000c5480000c6480000c7480000c8480000c9480000ca480000cb480000cc480000cd480000ce480000cf480000d0480000d1480000d2480000d3480000d4480000d5480000d6480000d7480000d8480000d9480000da480000db480000dc480000dd480000de480000df480000e0480000e1480000e2480000e3480000e4480000e5480000e6480000e7480000e8480000e9480000ea480000eb480000ec480000ed480000ee480000ef480000f0480000f1480000f2480000f3480000f4480000f5480000f6480000f7480000f8480000f9480000fa480000fb480000fc480000fd480000fe480000ff480000004900000149000002490000034900000449000005490000064900000749000008490000094900000a4900000b4900000c4900000d4900000e4900000f490000104900001149000012490000134900001449000015490000164900001749000018490000194900001a4900001b4900001c4900001d4900001e4900001f490000204900002149000022490000234900002449000025490000264900002749000028490000294900002a4900002b4900002c4900002d4900002e4900002f490000304900003149000032490000334900003449000035490000364900003749000038490000394900003a4900003b4900003c4900003d4900003e4900003f490000404900004149000042490000434900004449000045490000464900004749000048490000494900004a4900004b4900004c4900004d4900004e4900004f490000504900005149000052490000534900005449000055490000564900005749000058490000594900005a4900005b4900005c4900005d4900005e4900005f490000604900006149000062490000634900006449000065490000664900006749000068490000694900006a4900006b4900006c4900006d4900006e4900006f490000704900007149000072490000734900007449000075490000764900007749000078490000794900007a4900007b4900007c4900007d4900007e4900007f490000804900008149000082490000834900008449000085490000864900008749000088490000894900008a4900008b4900008c4900008d4900008e4900008f490000904900009149000092490000934900009449000095490000964900009749000098490000994900009a4900009b4900009c4900009d4900009e4900009f490000a0490000a1490000a2490000a3490000a4490000a5490000a6490000a7490000a8490000a9490000aa490000ab490000ac490000ad490000ae490000af490000b0490000b1490000b2490000b3490000b4490000b5490000b6490000b7490000b8490000b9490000ba490000bb490000bc490000bd490000be490000bf490000c0490000c1490000c2490000c3490000c4490000c5490000c6490000c7490000c8490000c9490000ca490000cb490000cc490000cd490000ce490000cf490000d0490000d1490000d2490000d3490000d4490000d5490000d6490000d7490000d8490000d9490000da490000db490000dc490000dd490000de490000df490000e0490000e1490000e2490000e3490000e4490000e5490000e6490000e7490000e8490000e9490000ea490000eb490000ec490000ed490000ee490000ef490000f0490000f1490000f2490000f3490000f4490000f5490000f6490000f7490000f8490000f9490000fa490000fb490000fc490000fd490000fe490000ff490000004a0000014a0000024a0000034a0000044a0000054a0000064a0000074a0000084a0000094a00000a4a00000b4a00000c4a00000d4a00000e4a00000f4a0000104a0000114a0000124a0000134a0000144a0000154a0000164a0000174a0000184a0000194a00001a4a00001b4a00001c4a00001d4a00001e4a00001f4a0000204a0000214a0000224a0000234a0000244a0000254a0000264a0000274a0000284a0000294a00002a4a00002b4a00002c4a00002d4a00002e4a00002f4a0000304a0000314a0000324a0000334a0000344a0000354a0000364a0000374a0000384a0000394a00003a4a00003b4a00003c4a00003d4a00003e4a00003f4a0000404a0000414a0000424a0000434a0000444a0000454a0000464a0000474a0000484a0000494a00004a4a00004b4a00004c4a00004d4a00004e4a00004f4a0000504a0000514a0000524a0000534a0000544a0000554a0000564a0000574a0000584a0000594a00005a4a00005b4a00005c4a00005d4a00005e4a00005f4a0000604a0000614a0000624a0000634a0000644a0000654a0000664a0000674a0000684a0000694a00006a4a00006b4a00006c4a00006d4a00006e4a00006f4a0000704a0000714a0000724a0000734a0000744a0000754a0000764a0000774a0000784a0000794a00007a4a00007b4a00007c4a00007d4a00007e4a00007f4a0000804a0000814a0000824a0000834a0000844a0000854a0000864a0000874a0000884a0000894a00008a4a00008b4a00008c4a00008d4a00008e4a00008f4a0000904a0000914a0000924a0000934a0000944a0000954a0000964a0000974a0000984a0000994a00009a4a00009b4a00009c4a00009d4a00009e4a00009f4a0000a04a0000a14a0000a24a0000a34a0000a44a0000a54a0000a64a0000a74a0000a84a0000a94a0000aa4a0000ab4a0000ac4a0000ad4a0000ae4a0000af4a0000b04a0000b14a0000b24a0000b34a0000b44a0000b54a0000b64a0000b74a0000b84a0000b94a0000ba4a0000bb4a0000bc4a0000bd4a0000be4a0000bf4a0000c04a0000c14a0000c24a0000c34a0000c44a0000c54a0000c64a0000c74a0000c84a0000c94a0000ca4a0000cb4a0000cc4a0000cd4a0000ce4a0000cf4a0000d04a0000d14a0000d24a0000d34a0000d44a0000d54a0000d64a0000d74a0000d84a0000d94a0000da4a0000db4a0000dc4a0000dd4a0000de4a0000df4a0000e04a0000e14a0000e24a0000e34a0000e44a0000e54a0000e64a0000e74a0000e84a0000e94a0000ea4a0000eb4a0000ec4a0000ed4a0000ee4a0000ef4a0000f04a0000f14a0000f24a0000f34a0000f44a0000f54a0000f64a0000f74a0000f84a0000f94a0000fa4a0000fb4a0000fc4a0000fd4a0000fe4a0000ff4a0000004b0000014b0000024b0000034b0000044b0000054b0000064b0000074b0000084b0000094b00000a4b00000b4b00000c4b00000d4b00000e4b00000f4b0000104b0000114b0000124b0000134b0000144b0000154b0000164b0000174b0000184b0000194b00001a4b00001b4b00001c4b00001d4b00001e4b00001f4b0000204b0000214b0000224b0000234b0000244b0000254b0000264b0000274b0000284b0000294b00002a4b00002b4b00002c4b00002d4b00002e4b00002f4b0000304b0000314b0000324b0000334b0000344b0000354b0000364b0000374b0000384b0000394b00003a4b00003b4b00003c4b00003d4b00003e4b00003f4b0000404b0000414b0000424b0000434b0000444b0000454b0000464b0000474b0000484b0000494b00004a4b00004b4b00004c4b00004d4b00004e4b00004f4b0000504b0000514b0000524b0000534b0000544b0000554b0000564b0000574b0000584b0000594b00005a4b00005b4b00005c4b00005d4b00005e4b00005f4b0000604b0000614b0000624b0000634b0000644b0000654b0000664b0000674b0000684b0000694b00006a4b00006b4b00006c4b00006d4b00006e4b00006f4b0000704b0000714b0000724b0000734b0000744b0000754b0000764b0000774b0000784b0000794b00007a4b00007b4b00007c4b00007d4b00007e4b00007f4b0000804b0000814b0000824b0000834b0000844b0000854b0000864b0000874b0000884b0000894b00008a4b00008b4b00008c4b00008d4b00008e4b00008f4b0000904b0000914b0000924b0000934b0000944b0000954b0000964b0000974b0000984b0000994b00009a4b00009b4b00009c4b00009d4b00009e4b00009f4b0000a04b0000a14b0000a24b0000a34b0000a44b0000a54b0000a64b0000a74b0000a84b0000a94b0000aa4b0000ab4b0000ac4b0000ad4b0000ae4b0000af4b0000b04b0000b14b0000b24b0000b34b0000b44b0000b54b0000b64b0000b74b0000b84b0000b94b0000ba4b0000bb4b0000bc4b0000bd4b0000be4b0000bf4b0000c04b0000c14b0000c24b0000c34b0000c44b0000c54b0000c64b0000c74b0000c84b0000c94b0000ca4b0000cb4b0000cc4b0000cd4b0000ce4b0000cf4b0000d04b0000d14b0000d24b0000d34b0000d44b0000d54b0000d64b0000d74b0000d84b0000d94b0000da4b0000db4b0000dc4b0000dd4b0000de4b0000df4b0000e04b0000e14b0000e24b0000e34b0000e44b0000e54b0000e64b0000e74b0000e84b0000e94b0000ea4b0000eb4b0000ec4b0000ed4b0000ee4b0000ef4b0000f04b0000f14b0000f24b0000f34b0000f44b0000f54b0000f64b0000f74b0000f84b0000f94b0000fa4b0000fb4b0000fc4b0000fd4b0000fe4b0000ff4b0000004c0000014c0000024c0000034c0000044c0000054c0000064c0000074c0000084c0000094c00000a4c00000b4c00000c4c00000d4c00000e4c00000f4c0000104c0000114c0000124c0000134c0000144c0000154c0000164c0000174c0000184c0000194c00001a4c00001b4c00001c4c00001d4c00001e4c00001f4c0000204c0000214c0000224c0000234c0000244c0000254c0000264c0000274c0000284c0000294c00002a4c00002b4c00002c4c00002d4c00002e4c00002f4c0000304c0000314c0000324c0000334c0000344c0000354c0000364c0000374c0000384c0000394c00003a4c00003b4c00003c4c00003d4c00003e4c00003f4c0000404c0000414c0000424c0000434c0000444c0000454c0000464c0000474c0000484c0000494c00004a4c00004b4c00004c4c00004d4c00004e4c00004f4c0000504c0000514c0000524c0000534c0000544c0000554c0000564c0000574c0000584c0000594c00005a4c00005b4c00005c4c00005d4c00005e4c00005f4c0000604c0000614c0000624c0000634c0000644c0000654c0000664c0000674c0000684c0000694c00006a4c00006b4c00006c4c00006d4c00006e4c00006f4c0000704c0000714c0000724c0000734c0000744c0000754c0000764c0000774c0000784c0000794c00007a4c00007b4c00007c4c00007d4c00007e4c00007f4c0000804c0000814c0000824c0000834c0000844c0000854c0000864c0000874c0000884c0000894c00008a4c00008b4c00008c4c00008d4c00008e4c00008f4c0000904c0000914c0000924c0000934c0000944c0000954c0000964c0000974c0000984c0000994c00009a4c00009b4c00009c4c00009d4c00009e4c00009f4c0000a04c0000a14c0000a24c0000a34c0000a44c0000a54c0000a64c0000a74c0000a84c0000a94c0000aa4c0000ab4c0000ac4c0000ad4c0000ae4c0000af4c0000b04c0000b14c0000b24c0000b34c0000b44c0000b54c0000b64c0000b74c0000b84c0000b94c0000ba4c0000bb4c0000bc4c0000bd4c0000be4c0000bf4c0000c04c0000c14c0000c24c0000c34c0000c44c0000c54c0000c64c0000c74c0000c84c0000c94c0000ca4c0000cb4c0000cc4c0000cd4c0000ce4c0000cf4c0000d04c0000d14c0000d24c0000d34c0000d44c0000d54c0000d64c0000d74c0000d84c0000d94c0000da4c0000db4c0000dc4c0000dd4c0000de4c0000df4c0000e04c0000e14c0000e24c0000e34c0000e44c0000e54c0000e64c0000e74c0000e84c0000e94c0000ea4c0000eb4c0000ec4c0000ed4c0000ee4c0000ef4c0000f04c0000f14c0000f24c0000f34c0000f44c0000f54c0000f64c0000f74c0000f84c0000f94c0000fa4c0000fb4c0000fc4c0000fd4c0000fe4c0000ff4c0000004d0000014d0000024d0000034d0000044d0000054d0000064d0000074d0000084d0000094d00000a4d00000b4d00000c4d00000d4d00000e4d00000f4d0000104d0000114d0000124d0000134d0000144d0000154d0000164d0000174d0000184d0000194d00001a4d00001b4d00001c4d00001d4d00001e4d00001f4d0000204d0000214d0000224d0000234d0000244d0000254d0000264d0000274d0000284d0000294d00002a4d00002b4d00002c4d00002d4d00002e4d00002f4d0000304d0000314d0000324d0000334d0000344d0000354d0000364d0000374d0000384d0000394d00003a4d00003b4d00003c4d00003d4d00003e4d00003f4d0000404d0000414d0000424d0000434d0000444d0000454d0000464d0000474d0000484d0000494d00004a4d00004b4d00004c4d00004d4d00004e4d00004f4d0000504d0000514d0000524d0000534d0000544d0000554d0000564d0000574d0000584d0000594d00005a4d00005b4d00005c4d00005d4d00005e4d00005f4d0000604d0000614d0000624d0000634d0000644d0000654d0000664d0000674d0000684d0000694d00006a4d00006b4d00006c4d00006d4d00006e4d00006f4d0000704d0000714d0000724d0000734d0000744d0000754d0000764d0000774d0000784d0000794d00007a4d00007b4d00007c4d00007d4d00007e4d00007f4d0000804d0000814d0000824d0000834d0000844d0000854d0000864d0000874d0000884d0000894d00008a4d00008b4d00008c4d00008d4d00008e4d00008f4d0000904d0000914d0000924d0000934d0000944d0000954d0000964d0000974d0000984d0000994d00009a4d00009b4d00009c4d00009d4d00009e4d00009f4d0000a04d0000a14d0000a24d0000a34d0000a44d0000a54d0000a64d0000a74d0000a84d0000a94d0000aa4d0000ab4d0000ac4d0000ad4d0000ae4d0000af4d0000b04d0000b14d0000b24d0000b34d0000b44d0000b54d0000b64d0000b74d0000b84d0000b94d0000ba4d0000bb4d0000bc4d0000bd4d0000be4d0000bf4d0000c04d0000c14d0000c24d0000c34d0000c44d0000c54d0000c64d0000c74d0000c84d0000c94d0000ca4d0000cb4d0000cc4d0000cd4d0000ce4d0000cf4d0000d04d0000d14d0000d24d0000d34d0000d44d0000d54d0000d64d0000d74d0000d84d0000d94d0000da4d0000db4d0000dc4d0000dd4d0000de4d0000df4d0000e04d0000e14d0000e24d0000e34d0000e44d0000e54d0000e64d0000e74d0000e84d0000e94d0000ea4d0000eb4d0000ec4d0000ed4d0000ee4d0000ef4d0000f04d0000f14d0000f24d0000f34d0000f44d0000f54d0000f64d0000f74d0000f84d0000f94d0000fa4d0000fb4d0000fc4d0000fd4d0000fe4d0000ff4d0000004e0000014e0000024e0000034e0000044e0000054e0000064e0000074e0000084e0000094e00000a4e00000b4e00000c4e00000d4e00000e4e00000f4e0000104e0000114e0000124e0000134e0000144e0000154e0000164e0000174e0000184e0000194e00001a4e00001b4e00001c4e00001d4e00001e4e00001f4e0000204e0000214e0000224e0000234e0000244e0000254e0000264e0000274e0000284e0000294e00002a4e00002b4e00002c4e00002d4e00002e4e00002f4e0000304e0000314e0000324e0000334e0000344e0000354e0000364e0000374e0000384e0000394e00003a4e00003b4e00003c4e00003d4e00003e4e00003f4e0000404e0000414e0000424e0000434e0000444e0000454e0000464e0000474e0000484e0000494e00004a4e00004b4e00004c4e00004d4e00004e4e00004f4e0000504e0000514e0000524e0000534e0000544e0000554e0000564e0000574e0000584e0000594e00005a4e00005b4e00005c4e00005d4e00005e4e00005f4e0000604e0000614e0000624e0000634e0000644e0000654e0000664e0000674e0000684e0000694e00006a4e00006b4e00006c4e00006d4e00006e4e00006f4e0000704e0000714e0000724e0000734e0000744e0000754e0000764e0000774e0000784e0000794e00007a4e00007b4e00007c4e00007d4e00007e4e00007f4e0000804e0000814e0000824e0000834e0000844e0000854e0000864e0000874e0000884e0000894e00008a4e00008b4e00008c4e00008d4e00008e4e00008f4e0000904e0000914e0000924e0000934e0000944e0000954e0000964e0000974e0000984e0000994e00009a4e00009b4e00009c4e00009d4e00009e4e00009f4e0000a04e0000a14e0000a24e0000a34e0000a44e0000a54e0000a64e0000a74e0000a84e0000a94e0000aa4e0000ab4e0000ac4e0000ad4e0000ae4e0000af4e0000b04e0000b14e0000b24e0000b34e0000b44e0000b54e0000b64e0000b74e0000b84e0000b94e0000ba4e0000bb4e0000bc4e0000bd4e0000be4e0000bf4e0000c04e0000c14e0000c24e0000c34e0000c44e0000c54e0000c64e0000c74e0000c84e0000c94e0000ca4e0000cb4e0000cc4e0000cd4e0000ce4e0000cf4e0000d04e0000d14e0000d24e0000d34e0000d44e0000d54e0000d64e0000d74e0000d84e0000d94e0000da4e0000db4e0000dc4e0000dd4e0000de4e0000df4e0000e04e0000e14e0000e24e0000e34e0000e44e0000e54e0000e64e0000e74e0000e84e0000e94e0000ea4e0000eb4e0000ec4e0000ed4e0000ee4e0000ef4e0000f04e0000f14e0000f24e0000f34e0000f44e0000f54e0000f64e0000f74e0000f84e0000f94e0000fa4e0000fb4e0000fc4e0000fd4e0000fe4e0000ff4e0000004f0000014f0000024f0000034f0000044f0000054f0000064f0000074f0000084f0000094f00000a4f00000b4f00000c4f00000d4f00000e4f00000f4f0000104f0000114f0000124f0000134f0000144f0000154f0000164f0000174f0000184f0000194f00001a4f00001b4f00001c4f00001d4f00001e4f00001f4f0000204f0000214f0000224f0000234f0000244f0000254f0000264f0000274f0000284f0000294f00002a4f00002b4f00002c4f00002d4f00002e4f00002f4f0000304f0000314f0000324f0000334f0000344f0000354f0000364f0000374f0000384f0000394f00003a4f00003b4f00003c4f00003d4f00003e4f00003f4f0000404f0000414f0000424f0000434f0000444f0000454f0000464f0000474f0000484f0000494f00004a4f00004b4f00004c4f00004d4f00004e4f00004f4f0000504f0000514f0000524f0000534f0000544f0000554f0000564f0000574f0000584f0000594f00005a4f00005b4f00005c4f00005d4f00005e4f00005f4f0000604f0000614f0000624f0000634f0000644f0000654f0000664f0000674f0000684f0000694f00006a4f00006b4f00006c4f00006d4f00006e4f00006f4f0000704f0000714f0000724f0000734f0000744f0000754f0000764f0000774f0000784f0000794f00007a4f00007b4f00007c4f00007d4f00007e4f00007f4f0000804f0000814f0000824f0000834f0000844f0000854f0000864f0000874f0000884f0000894f00008a4f00008b4f00008c4f00008d4f00008e4f00008f4f0000904f0000914f0000924f0000934f0000944f0000954f0000964f0000974f0000984f0000994f00009a4f00009b4f00009c4f00009d4f00009e4f00009f4f0000a04f0000a14f0000a24f0000a34f0000a44f0000a54f0000a64f0000a74f0000a84f0000a94f0000aa4f0000ab4f0000ac4f0000ad4f0000ae4f0000af4f0000b04f0000b14f0000b24f0000b34f0000b44f0000b54f0000b64f0000b74f0000b84f0000b94f0000ba4f0000bb4f0000bc4f0000bd4f0000be4f0000bf4f0000c04f0000c14f0000c24f0000c34f0000c44f0000c54f0000c64f0000c74f0000c84f0000c94f0000ca4f0000cb4f0000cc4f0000cd4f0000ce4f0000cf4f0000d04f0000d14f0000d24f0000d34f0000d44f0000d54f0000d64f0000d74f0000d84f0000d94f0000da4f0000db4f0000dc4f0000dd4f0000de4f0000df4f0000e04f0000e14f0000e24f0000e34f0000e44f0000e54f0000e64f0000e74f0000e84f0000e94f0000ea4f0000eb4f0000ec4f0000ed4f0000ee4f0000ef4f0000f04f0000f14f0000f24f0000f34f0000f44f0000f54f0000f64f0000f74f0000f84f0000f94f0000fa4f0000fb4f0000fc4f0000fd4f0000fe4f0000ff4f0000005000000150000002500000035000000450000005500000065000000750000008500000095000000a5000000b5000000c5000000d5000000e5000000f500000105000001150000012500000135000001450000015500000165000001750000018500000195000001a5000001b5000001c5000001d5000001e5000001f500000205000002150000022500000235000002450000025500000265000002750000028500000295000002a5000002b5000002c5000002d5000002e5000002f500000305000003150000032500000335000003450000035500000365000003750000038500000395000003a5000003b5000003c5000003d5000003e5000003f500000405000004150000042500000435000004450000045500000465000004750000048500000495000004a5000004b5000004c5000004d5000004e5000004f500000505000005150000052500000535000005450000055500000565000005750000058500000595000005a5000005b5000005c5000005d5000005e5000005f500000605000006150000062500000635000006450000065500000665000006750000068500000695000006a5000006b5000006c5000006d5000006e5000006f500000705000007150000072500000735000007450000075500000765000007750000078500000795000007a5000007b5000007c5000007d5000007e5000007f500000805000008150000082500000835000008450000085500000865000008750000088500000895000008a5000008b5000008c5000008d5000008e5000008f500000905000009150000092500000935000009450000095500000965000009750000098500000995000009a5000009b5000009c5000009d5000009e5000009f500000a0500000a1500000a2500000a3500000a4500000a5500000a6500000a7500000a8500000a9500000aa500000ab500000ac500000ad500000ae500000af500000b0500000b1500000b2500000b3500000b4500000b5500000b6500000b7500000b8500000b9500000ba500000bb500000bc500000bd500000be500000bf500000c0500000c1500000c2500000c3500000c4500000c5500000c6500000c7500000c8500000c9500000ca500000cb500000cc500000cd500000ce500000cf500000d0500000d1500000d2500000d3500000d4500000d5500000d6500000d7500000d8500000d9500000da500000db500000dc500000dd500000de500000df500000e0500000e1500000e2500000e3500000e4500000e5500000e6500000e7500000e8500000e9500000ea500000eb500000ec500000ed500000ee500000ef500000f0500000f1500000f2500000f3500000f4500000f5500000f6500000f7500000f8500000f9500000fa500000fb500000fc500000fd500000fe500000ff500000005100000151000002510000035100000451000005510000065100000751000008510000095100000a5100000b5100000c5100000d5100000e5100000f510000105100001151000012510000135100001451000015510000165100001751000018510000195100001a5100001b5100001c5100001d5100001e5100001f510000205100002151000022510000235100002451000025510000265100002751000028510000295100002a5100002b5100002c5100002d5100002e5100002f510000305100003151000032510000335100003451000035510000365100003751000038510000395100003a5100003b5100003c5100003d5100003e5100003f510000405100004151000042510000435100004451000045510000465100004751000048510000495100004a5100004b5100004c5100004d5100004e5100004f510000505100005151000052510000535100005451000055510000565100005751000058510000595100005a5100005b5100005c5100005d5100005e5100005f510000605100006151000062510000635100006451000065510000665100006751000068510000695100006a5100006b5100006c5100006d5100006e5100006f510000705100007151000072510000735100007451000075510000765100007751000078510000795100007a5100007b5100007c5100007d5100007e5100007f510000805100008151000082510000835100008451000085510000865100008751000088510000895100008a5100008b5100008c5100008d5100008e5100008f510000905100009151000092510000935100009451000095510000965100009751000098510000995100009a5100009b5100009c5100009d5100009e5100009f510000a0510000a1510000a2510000a3510000a4510000a5510000a6510000a7510000a8510000a9510000aa510000ab510000ac510000ad510000ae510000af510000b0510000b1510000b2510000b3510000b4510000b5510000b6510000b7510000b8510000b9510000ba510000bb510000bc510000bd510000be510000bf510000c0510000c1510000c2510000c3510000c4510000c5510000c6510000c7510000c8510000c9510000ca510000cb510000cc510000cd510000ce510000cf510000d0510000d1510000d2510000d3510000d4510000d5510000d6510000d7510000d8510000d9510000da510000db510000dc510000dd510000de510000df510000e0510000e1510000e2510000e3510000e4510000e5510000e6510000e7510000e8510000e9510000ea510000eb510000ec510000ed510000ee510000ef510000f0510000f1510000f2510000f3510000f4510000f5510000f6510000f7510000f8510000f9510000fa510000fb510000fc510000fd510000fe510000ff510000005200000152000002520000035200000452000005520000065200000752000008520000095200000a5200000b5200000c5200000d5200000e5200000f520000105200001152000012520000135200001452000015520000165200001752000018520000195200001a5200001b5200001c5200001d5200001e5200001f520000205200002152000022520000235200002452000025520000265200002752000028520000295200002a5200002b5200002c5200002d5200002e5200002f520000305200003152000032520000335200003452000035520000365200003752000038520000395200003a5200003b5200003c5200003d5200003e5200003f520000405200004152000042520000435200004452000045520000465200004752000048520000495200004a5200004b5200004c5200004d5200004e5200004f520000505200005152000052520000535200005452000055520000565200005752000058520000595200005a5200005b5200005c5200005d5200005e5200005f520000605200006152000062520000635200006452000065520000665200006752000068520000695200006a5200006b5200006c5200006d5200006e5200006f520000705200007152000072520000735200007452000075520000765200007752000078520000795200007a5200007b5200007c5200007d5200007e5200007f520000805200008152000082520000835200008452000085520000865200008752000088520000895200008a5200008b5200008c5200008d5200008e5200008f520000905200009152000092520000935200009452000095520000965200009752000098520000995200009a5200009b5200009c5200009d5200009e5200009f520000a0520000a1520000a2520000a3520000a4520000a5520000a6520000a7520000a8520000a9520000aa520000ab520000ac520000ad520000ae520000af520000b0520000b1520000b2520000b3520000b4520000b5520000b6520000b7520000b8520000b9520000ba520000bb520000bc520000bd520000be520000bf520000c0520000c1520000c2520000c3520000c4520000c5520000c6520000c7520000c8520000c9520000ca520000cb520000cc520000cd520000ce520000cf520000d0520000d1520000d2520000d3520000d4520000d5520000d6520000d7520000d8520000d9520000da520000db520000dc520000dd520000de520000df520000e0520000e1520000e2520000e3520000e4520000e5520000e6520000e7520000e8520000e9520000ea520000eb520000ec520000ed520000ee520000ef520000f0520000f1520000f2520000f3520000f4520000f5520000f6520000f7520000f8520000f9520000fa520000fb520000fc520000fd520000fe520000ff520000005300000153000002530000035300000453000005530000065300000753000008530000095300000a5300000b5300000c5300000d5300000e5300000f530000105300001153000012530000135300001453000015530000165300001753000018530000195300001a5300001b5300001c5300001d5300001e5300001f530000205300002153000022530000235300002453000025530000265300002753000028530000295300002a5300002b5300002c5300002d5300002e5300002f530000305300003153000032530000335300003453000035530000365300003753000038530000395300003a5300003b5300003c5300003d5300003e5300003f530000405300004153000042530000435300004453000045530000465300004753000048530000495300004a5300004b5300004c5300004d5300004e5300004f530000505300005153000052530000535300005453000055530000565300005753000058530000595300005a5300005b5300005c5300005d5300005e5300005f530000605300006153000062530000635300006453000065530000665300006753000068530000695300006a5300006b5300006c5300006d5300006e5300006f530000705300007153000072530000735300007453000075530000765300007753000078530000795300007a5300007b5300007c5300007d5300007e5300007f530000805300008153000082530000835300008453000085530000865300008753000088530000895300008a5300008b5300008c5300008d5300008e5300008f530000905300009153000092530000935300009453000095530000965300009753000098530000995300009a5300009b5300009c5300009d5300009e5300009f530000a0530000a1530000a2530000a3530000a4530000a5530000a6530000a7530000a8530000a9530000aa530000ab530000ac530000ad530000ae530000af530000b0530000b1530000b2530000b3530000b4530000b5530000b6530000b7530000b8530000b9530000ba530000bb530000bc530000bd530000be530000bf530000c0530000c1530000c2530000c3530000c4530000c5530000c6530000c7530000c8530000c9530000ca530000cb530000cc530000cd530000ce530000cf530000d0530000d1530000d2530000d3530000d4530000d5530000d6530000d7530000d8530000d9530000da530000db530000dc530000dd530000de530000df530000e0530000e1530000e2530000e3530000e4530000e5530000e6530000e7530000e8530000e9530000ea530000eb530000ec530000ed530000ee530000ef530000f0530000f1530000f2530000f3530000f4530000f5530000f6530000f7530000f8530000f9530000fa530000fb530000fc530000fd530000fe530000ff530000005400000154000002540000035400000454000005540000065400000754000008540000095400000a5400000b5400000c5400000d5400000e5400000f540000105400001154000012540000135400001454000015540000165400001754000018540000195400001a5400001b5400001c5400001d5400001e5400001f540000205400002154000022540000235400002454000025540000265400002754000028540000295400002a5400002b5400002c5400002d5400002e5400002f540000305400003154000032540000335400003454000035540000365400003754000038540000395400003a5400003b5400003c5400003d5400003e5400003f540000405400004154000042540000435400004454000045540000465400004754000048540000495400004a5400004b5400004c5400004d5400004e5400004f540000505400005154000052540000535400005454000055540000565400005754000058540000595400005a5400005b5400005c5400005d5400005e5400005f540000605400006154000062540000635400006454000065540000665400006754000068540000695400006a5400006b5400006c5400006d5400006e5400006f540000705400007154000072540000735400007454000075540000765400007754000078540000795400007a5400007b5400007c5400007d5400007e5400007f540000805400008154000082540000835400008454000085540000865400008754000088540000895400008a5400008b5400008c5400008d5400008e5400008f540000905400009154000092540000935400009454000095540000965400009754000098540000995400009a5400009b5400009c5400009d5400009e5400009f540000a0540000a1540000a2540000a3540000a4540000a5540000a6540000a7540000a8540000a9540000aa540000ab540000ac540000ad540000ae540000af540000b0540000b1540000b2540000b3540000b4540000b5540000b6540000b7540000b8540000b9540000ba540000bb540000bc540000bd540000be540000bf540000c0540000c1540000c2540000c3540000c4540000c5540000c6540000c7540000c8540000c9540000ca540000cb540000cc540000cd540000ce540000cf540000d0540000d1540000d2540000d3540000d4540000d5540000d6540000d7540000d8540000d9540000da540000db540000dc540000dd540000de540000df540000e0540000e1540000e2540000e3540000e4540000e5540000e6540000e7540000e8540000e9540000ea540000eb540000ec540000ed540000ee540000ef540000f0540000f1540000f2540000f3540000f4540000f5540000f6540000f7540000f8540000f9540000fa540000fb540000fc540000fd540000fe540000ff540000005500000155000002550000035500000455000005550000065500000755000008550000095500000a5500000b5500000c5500000d5500000e5500000f550000105500001155000012550000135500001455000015550000165500001755000018550000195500001a5500001b5500001c5500001d5500001e5500001f550000205500002155000022550000235500002455000025550000265500002755000028550000295500002a5500002b5500002c5500002d5500002e5500002f550000305500003155000032550000335500003455000035550000365500003755000038550000395500003a5500003b5500003c5500003d5500003e5500003f550000405500004155000042550000435500004455000045550000465500004755000048550000495500004a5500004b5500004c5500004d5500004e5500004f550000505500005155000052550000535500005455000055550000565500005755000058550000595500005a5500005b5500005c5500005d5500005e5500005f550000605500006155000062550000635500006455000065550000665500006755000068550000695500006a5500006b5500006c5500006d5500006e5500006f550000705500007155000072550000735500007455000075550000765500007755000078550000795500007a5500007b5500007c5500007d5500007e5500007f550000805500008155000082550000835500008455000085550000865500008755000088550000895500008a5500008b5500008c5500008d5500008e5500008f550000905500009155000092550000935500009455000095550000965500009755000098550000995500009a5500009b5500009c5500009d5500009e5500009f550000a0550000a1550000a2550000a3550000a4550000a5550000a6550000a7550000a8550000a9550000aa550000ab550000ac550000ad550000ae550000af550000b0550000b1550000b2550000b3550000b4550000b5550000b6550000b7550000b8550000b9550000ba550000bb550000bc550000bd550000be550000bf550000c0550000c1550000c2550000c3550000c4550000c5550000c6550000c7550000c8550000c9550000ca550000cb550000cc550000cd550000ce550000cf550000d0550000d1550000d2550000d3550000d4550000d5550000d6550000d7550000d8550000d9550000da550000db550000dc550000dd550000de550000df550000e0550000e1550000e2550000e3550000e4550000e5550000e6550000e7550000e8550000e9550000ea550000eb550000ec550000ed550000ee550000ef550000f0550000f1550000f2550000f3550000f4550000f5550000f6550000f7550000f8550000f9550000fa550000fb550000fc550000fd550000fe550000ff550000005600000156000002560000035600000456000005560000065600000756000008560000095600000a5600000b5600000c5600000d5600000e5600000f560000105600001156000012560000135600001456000015560000165600001756000018560000195600001a5600001b5600001c5600001d5600001e5600001f560000205600002156000022560000235600002456000025560000265600002756000028560000295600002a5600002b5600002c5600002d5600002e5600002f560000305600003156000032560000335600003456000035560000365600003756000038560000395600003a5600003b5600003c5600003d5600003e5600003f560000405600004156000042560000435600004456000045560000465600004756000048560000495600004a5600004b5600004c5600004d5600004e5600004f560000505600005156000052560000535600005456000055560000565600005756000058560000595600005a5600005b5600005c5600005d5600005e5600005f560000605600006156000062560000635600006456000065560000665600006756000068560000695600006a5600006b5600006c5600006d5600006e5600006f560000705600007156000072560000735600007456000075560000765600007756000078560000795600007a5600007b5600007c5600007d5600007e5600007f560000805600008156000082560000835600008456000085560000865600008756000088560000895600008a5600008b5600008c5600008d5600008e5600008f560000905600009156000092560000935600009456000095560000965600009756000098560000995600009a5600009b5600009c5600009d5600009e5600009f560000a0560000a1560000a2560000a3560000a4560000a5560000a6560000a7560000a8560000a9560000aa560000ab560000ac560000ad560000ae560000af560000b0560000b1560000b2560000b3560000b4560000b5560000b6560000b7560000b8560000b9560000ba560000bb560000bc560000bd560000be560000bf560000c0560000c1560000c2560000c3560000c4560000c5560000c6560000c7560000c8560000c9560000ca560000cb560000cc560000cd560000ce560000cf560000d0560000d1560000d2560000d3560000d4560000d5560000d6560000d7560000d8560000d9560000da560000db560000dc560000dd560000de560000df560000e0560000e1560000e2560000e3560000e4560000e5560000e6560000e7560000e8560000e9560000ea560000eb560000ec560000ed560000ee560000ef560000f0560000f1560000f2560000f3560000f4560000f5560000f6560000f7560000f8560000f9560000fa560000fb560000fc560000fd560000fe560000ff560000005700000157000002570000035700000457000005570000065700000757000008570000095700000a5700000b5700000c5700000d5700000e5700000f570000105700001157000012570000135700001457000015570000165700001757000018570000195700001a5700001b5700001c5700001d5700001e5700001f570000205700002157000022570000235700002457000025570000265700002757000028570000295700002a5700002b5700002c5700002d5700002e5700002f570000305700003157000032570000335700003457000035570000365700003757000038570000395700003a5700003b5700003c5700003d5700003e5700003f570000405700004157000042570000435700004457000045570000465700004757000048570000495700004a5700004b5700004c5700004d5700004e5700004f570000505700005157000052570000535700005457000055570000565700005757000058570000595700005a5700005b5700005c5700005d5700005e5700005f570000605700006157000062570000635700006457000065570000665700006757000068570000695700006a5700006b5700006c5700006d5700006e5700006f570000705700007157000072570000735700007457000075570000765700007757000078570000795700007a5700007b5700007c5700007d5700007e5700007f570000805700008157000082570000835700008457000085570000865700008757000088570000895700008a5700008b5700008c5700008d5700008e5700008f570000905700009157000092570000935700009457000095570000965700009757000098570000995700009a5700009b5700009c5700009d5700009e5700009f570000a0570000a1570000a2570000a3570000a4570000a5570000a6570000a7570000a8570000a9570000aa570000ab570000ac570000ad570000ae570000af570000b0570000b1570000b2570000b3570000b4570000b5570000b6570000b7570000b8570000b9570000ba570000bb570000bc570000bd570000be570000bf570000c0570000c1570000c2570000c3570000c4570000c5570000c6570000c7570000c8570000c9570000ca570000cb570000cc570000cd570000ce570000cf570000d0570000d1570000d2570000d3570000d4570000d5570000d6570000d7570000d8570000d9570000da570000db570000dc570000dd570000de570000df570000e0570000e1570000e2570000e3570000e4570000e5570000e6570000e7570000e8570000e9570000ea570000eb570000ec570000ed570000ee570000ef570000f0570000f1570000f2570000f3570000f4570000f5570000f6570000f7570000f8570000f9570000fa570000fb570000fc570000fd570000fe570000ff570000005800000158000002580000035800000458000005580000065800000758000008580000095800000a5800000b5800000c5800000d5800000e5800000f580000105800001158000012580000135800001458000015580000165800001758000018580000195800001a5800001b5800001c5800001d5800001e5800001f580000205800002158000022580000235800002458000025580000265800002758000028580000295800002a5800002b5800002c5800002d5800002e5800002f580000305800003158000032580000335800003458000035580000365800003758000038580000395800003a5800003b5800003c5800003d5800003e5800003f580000405800004158000042580000435800004458000045580000465800004758000048580000495800004a5800004b5800004c5800004d5800004e5800004f580000505800005158000052580000535800005458000055580000565800005758000058580000595800005a5800005b5800005c5800005d5800005e5800005f580000605800006158000062580000635800006458000065580000665800006758000068580000695800006a5800006b5800006c5800006d5800006e5800006f580000705800007158000072580000735800007458000075580000765800007758000078580000795800007a5800007b5800007c5800007d5800007e5800007f580000805800008158000082580000835800008458000085580000865800008758000088580000895800008a5800008b5800008c5800008d5800008e5800008f580000905800009158000092580000935800009458000095580000965800009758000098580000995800009a5800009b5800009c5800009d5800009e5800009f580000a0580000a1580000a2580000a3580000a4580000a5580000a6580000a7580000a8580000a9580000aa580000ab580000ac580000ad580000ae580000af580000b0580000b1580000b2580000b3580000b4580000b5580000b6580000b7580000b8580000b9580000ba580000bb580000bc580000bd580000be580000bf580000c0580000c1580000c2580000c3580000c4580000c5580000c6580000c7580000c8580000c9580000ca580000cb580000cc580000cd580000ce580000cf580000d0580000d1580000d2580000d3580000d4580000d5580000d6580000d7580000d8580000d9580000da580000db580000dc580000dd580000de580000df580000e0580000e1580000e2580000e3580000e4580000e5580000e6580000e7580000e8580000e9580000ea580000eb580000ec580000ed580000ee580000ef580000f0580000f1580000f2580000f3580000f4580000f5580000f6580000f7580000f8580000f9580000fa580000fb580000fc580000fd580000fe580000ff580000005900000159000002590000035900000459000005590000065900000759000008590000095900000a5900000b5900000c5900000d5900000e5900000f590000105900001159000012590000135900001459000015590000165900001759000018590000195900001a5900001b5900001c5900001d5900001e5900001f590000205900002159000022590000235900002459000025590000265900002759000028590000295900002a5900002b5900002c5900002d5900002e5900002f590000305900003159000032590000335900003459000035590000365900003759000038590000395900003a5900003b5900003c5900003d5900003e5900003f590000405900004159000042590000435900004459000045590000465900004759000048590000495900004a5900004b5900004c5900004d5900004e5900004f590000505900005159000052590000535900005459000055590000565900005759000058590000595900005a5900005b5900005c5900005d5900005e5900005f590000605900006159000062590000635900006459000065590000665900006759000068590000695900006a5900006b5900006c5900006d5900006e5900006f590000705900007159000072590000735900007459000075590000765900007759000078590000795900007a5900007b5900007c5900007d5900007e5900007f590000805900008159000082590000835900008459000085590000865900008759000088590000895900008a5900008b5900008c5900008d5900008e5900008f590000905900009159000092590000935900009459000095590000965900009759000098590000995900009a5900009b5900009c5900009d5900009e5900009f590000a0590000a1590000a2590000a3590000a4590000a5590000a6590000a7590000a8590000a9590000aa590000ab590000ac590000ad590000ae590000af590000b0590000b1590000b2590000b3590000b4590000b5590000b6590000b7590000b8590000b9590000ba590000bb590000bc590000bd590000be590000bf590000c0590000c1590000c2590000c3590000c4590000c5590000c6590000c7590000c8590000c9590000ca590000cb590000cc590000cd590000ce590000cf590000d0590000d1590000d2590000d3590000d4590000d5590000d6590000d7590000d8590000d9590000da590000db590000dc590000dd590000de590000df590000e0590000e1590000e2590000e3590000e4590000e5590000e6590000e7590000e8590000e9590000ea590000eb590000ec590000ed590000ee590000ef590000f0590000f1590000f2590000f3590000f4590000f5590000f6590000f7590000f8590000f9590000fa590000fb590000fc590000fd590000fe590000ff590000005a0000015a0000025a0000035a0000045a0000055a0000065a0000075a0000085a0000095a00000a5a00000b5a00000c5a00000d5a00000e5a00000f5a0000105a0000115a0000125a0000135a0000145a0000155a0000165a0000175a0000185a0000195a00001a5a00001b5a00001c5a00001d5a00001e5a00001f5a0000205a0000215a0000225a0000235a0000245a0000255a0000265a0000275a0000285a0000295a00002a5a00002b5a00002c5a00002d5a00002e5a00002f5a0000305a0000315a0000325a0000335a0000345a0000355a0000365a0000375a0000385a0000395a00003a5a00003b5a00003c5a00003d5a00003e5a00003f5a0000405a0000415a0000425a0000435a0000445a0000455a0000465a0000475a0000485a0000495a00004a5a00004b5a00004c5a00004d5a00004e5a00004f5a0000505a0000515a0000525a0000535a0000545a0000555a0000565a0000575a0000585a0000595a00005a5a00005b5a00005c5a00005d5a00005e5a00005f5a0000605a0000615a0000625a0000635a0000645a0000655a0000665a0000675a0000685a0000695a00006a5a00006b5a00006c5a00006d5a00006e5a00006f5a0000705a0000715a0000725a0000735a0000745a0000755a0000765a0000775a0000785a0000795a00007a5a00007b5a00007c5a00007d5a00007e5a00007f5a0000805a0000815a0000825a0000835a0000845a0000855a0000865a0000875a0000885a0000895a00008a5a00008b5a00008c5a00008d5a00008e5a00008f5a0000905a0000915a0000925a0000935a0000945a0000955a0000965a0000975a0000985a0000995a00009a5a00009b5a00009c5a00009d5a00009e5a00009f5a0000a05a0000a15a0000a25a0000a35a0000a45a0000a55a0000a65a0000a75a0000a85a0000a95a0000aa5a0000ab5a0000ac5a0000ad5a0000ae5a0000af5a0000b05a0000b15a0000b25a0000b35a0000b45a0000b55a0000b65a0000b75a0000b85a0000b95a0000ba5a0000bb5a0000bc5a0000bd5a0000be5a0000bf5a0000c05a0000c15a0000c25a0000c35a0000c45a0000c55a0000c65a0000c75a0000c85a0000c95a0000ca5a0000cb5a0000cc5a0000cd5a0000ce5a0000cf5a0000d05a0000d15a0000d25a0000d35a0000d45a0000d55a0000d65a0000d75a0000d85a0000d95a0000da5a0000db5a0000dc5a0000dd5a0000de5a0000df5a0000e05a0000e15a0000e25a0000e35a0000e45a0000e55a0000e65a0000e75a0000e85a0000e95a0000ea5a0000eb5a0000ec5a0000ed5a0000ee5a0000ef5a0000f05a0000f15a0000f25a0000f35a0000f45a0000f55a0000f65a0000f75a0000f85a0000f95a0000fa5a0000fb5a0000fc5a0000fd5a0000fe5a0000ff5a0000005b0000015b0000025b0000035b0000045b0000055b0000065b0000075b0000085b0000095b00000a5b00000b5b00000c5b00000d5b00000e5b00000f5b0000105b0000115b0000125b0000135b0000145b0000155b0000165b0000175b0000185b0000195b00001a5b00001b5b00001c5b00001d5b00001e5b00001f5b0000205b0000215b0000225b0000235b0000245b0000255b0000265b0000275b0000285b0000295b00002a5b00002b5b00002c5b00002d5b00002e5b00002f5b0000305b0000315b0000325b0000335b0000345b0000355b0000365b0000375b0000385b0000395b00003a5b00003b5b00003c5b00003d5b00003e5b00003f5b0000405b0000415b0000425b0000435b0000445b0000455b0000465b0000475b0000485b0000495b00004a5b00004b5b00004c5b00004d5b00004e5b00004f5b0000505b0000515b0000525b0000535b0000545b0000555b0000565b0000575b0000585b0000595b00005a5b00005b5b00005c5b00005d5b00005e5b00005f5b0000605b0000615b0000625b0000635b0000645b0000655b0000665b0000675b0000685b0000695b00006a5b00006b5b00006c5b00006d5b00006e5b00006f5b0000705b0000715b0000725b0000735b0000745b0000755b0000765b0000775b0000785b0000795b00007a5b00007b5b00007c5b00007d5b00007e5b00007f5b0000805b0000815b0000825b0000835b0000845b0000855b0000865b0000875b0000885b0000895b00008a5b00008b5b00008c5b00008d5b00008e5b00008f5b0000905b0000915b0000925b0000935b0000945b0000955b0000965b0000975b0000985b0000995b00009a5b00009b5b00009c5b00009d5b00009e5b00009f5b0000a05b0000a15b0000a25b0000a35b0000a45b0000a55b0000a65b0000a75b0000a85b0000a95b0000aa5b0000ab5b0000ac5b0000ad5b0000ae5b0000af5b0000b05b0000b15b0000b25b0000b35b0000b45b0000b55b0000b65b0000b75b0000b85b0000b95b0000ba5b0000bb5b0000bc5b0000bd5b0000be5b0000bf5b0000c05b0000c15b0000c25b0000c35b0000c45b0000c55b0000c65b0000c75b0000c85b0000c95b0000ca5b0000cb5b0000cc5b0000cd5b0000ce5b0000cf5b0000d05b0000d15b0000d25b0000d35b0000d45b0000d55b0000d65b0000d75b0000d85b0000d95b0000da5b0000db5b0000dc5b0000dd5b0000de5b0000df5b0000e05b0000e15b0000e25b0000e35b0000e45b0000e55b0000e65b0000e75b0000e85b0000e95b0000ea5b0000eb5b0000ec5b0000ed5b0000ee5b0000ef5b0000f05b0000f15b0000f25b0000f35b0000f45b0000f55b0000f65b0000f75b0000f85b0000f95b0000fa5b0000fb5b0000fc5b0000fd5b0000fe5b0000ff5b0000005c0000015c0000025c0000035c0000045c0000055c0000065c0000075c0000085c0000095c00000a5c00000b5c00000c5c00000d5c00000e5c00000f5c0000105c0000115c0000125c0000135c0000145c0000155c0000165c0000175c0000185c0000195c00001a5c00001b5c00001c5c00001d5c00001e5c00001f5c0000205c0000215c0000225c0000235c0000245c0000255c0000265c0000275c0000285c0000295c00002a5c00002b5c00002c5c00002d5c00002e5c00002f5c0000305c0000315c0000325c0000335c0000345c0000355c0000365c0000375c0000385c0000395c00003a5c00003b5c00003c5c00003d5c00003e5c00003f5c0000405c0000415c0000425c0000435c0000445c0000455c0000465c0000475c0000485c0000495c00004a5c00004b5c00004c5c00004d5c00004e5c00004f5c0000505c0000515c0000525c0000535c0000545c0000555c0000565c0000575c0000585c0000595c00005a5c00005b5c00005c5c00005d5c00005e5c00005f5c0000605c0000615c0000625c0000635c0000645c0000655c0000665c0000675c0000685c0000695c00006a5c00006b5c00006c5c00006d5c00006e5c00006f5c0000705c0000715c0000725c0000735c0000745c0000755c0000765c0000775c0000785c0000795c00007a5c00007b5c00007c5c00007d5c00007e5c00007f5c0000805c0000815c0000825c0000835c0000845c0000855c0000865c0000875c0000885c0000895c00008a5c00008b5c00008c5c00008d5c00008e5c00008f5c0000905c0000915c0000925c0000935c0000945c0000955c0000965c0000975c0000985c0000995c00009a5c00009b5c00009c5c00009d5c00009e5c00009f5c0000a05c0000a15c0000a25c0000a35c0000a45c0000a55c0000a65c0000a75c0000a85c0000a95c0000aa5c0000ab5c0000ac5c0000ad5c0000ae5c0000af5c0000b05c0000b15c0000b25c0000b35c0000b45c0000b55c0000b65c0000b75c0000b85c0000b95c0000ba5c0000bb5c0000bc5c0000bd5c0000be5c0000bf5c0000c05c0000c15c0000c25c0000c35c0000c45c0000c55c0000c65c0000c75c0000c85c0000c95c0000ca5c0000cb5c0000cc5c0000cd5c0000ce5c0000cf5c0000d05c0000d15c0000d25c0000d35c0000d45c0000d55c0000d65c0000d75c0000d85c0000d95c0000da5c0000db5c0000dc5c0000dd5c0000de5c0000df5c0000e05c0000e15c0000e25c0000e35c0000e45c0000e55c0000e65c0000e75c0000e85c0000e95c0000ea5c0000eb5c0000ec5c0000ed5c0000ee5c0000ef5c0000f05c0000f15c0000f25c0000f35c0000f45c0000f55c0000f65c0000f75c0000f85c0000f95c0000fa5c0000fb5c0000fc5c0000fd5c0000fe5c0000ff5c0000005d0000015d0000025d0000035d0000045d0000055d0000065d0000075d0000085d0000095d00000a5d00000b5d00000c5d00000d5d00000e5d00000f5d0000105d0000115d0000125d0000135d0000145d0000155d0000165d0000175d0000185d0000195d00001a5d00001b5d00001c5d00001d5d00001e5d00001f5d0000205d0000215d0000225d0000235d0000245d0000255d0000265d0000275d0000285d0000295d00002a5d00002b5d00002c5d00002d5d00002e5d00002f5d0000305d0000315d0000325d0000335d0000345d0000355d0000365d0000375d0000385d0000395d00003a5d00003b5d00003c5d00003d5d00003e5d00003f5d0000405d0000415d0000425d0000435d0000445d0000455d0000465d0000475d0000485d0000495d00004a5d00004b5d00004c5d00004d5d00004e5d00004f5d0000505d0000515d0000525d0000535d0000545d0000555d0000565d0000575d0000585d0000595d00005a5d00005b5d00005c5d00005d5d00005e5d00005f5d0000605d0000615d0000625d0000635d0000645d0000655d0000665d0000675d0000685d0000695d00006a5d00006b5d00006c5d00006d5d00006e5d00006f5d0000705d0000715d0000725d0000735d0000745d0000755d0000765d0000775d0000785d0000795d00007a5d00007b5d00007c5d00007d5d00007e5d00007f5d0000805d0000815d0000825d0000835d0000845d0000855d0000865d0000875d0000885d0000895d00008a5d00008b5d00008c5d00008d5d00008e5d00008f5d0000905d0000915d0000925d0000935d0000945d0000955d0000965d0000975d0000985d0000995d00009a5d00009b5d00009c5d00009d5d00009e5d00009f5d0000a05d0000a15d0000a25d0000a35d0000a45d0000a55d0000a65d0000a75d0000a85d0000a95d0000aa5d0000ab5d0000ac5d0000ad5d0000ae5d0000af5d0000b05d0000b15d0000b25d0000b35d0000b45d0000b55d0000b65d0000b75d0000b85d0000b95d0000ba5d0000bb5d0000bc5d0000bd5d0000be5d0000bf5d0000c05d0000c15d0000c25d0000c35d0000c45d0000c55d0000c65d0000c75d0000c85d0000c95d0000ca5d0000cb5d0000cc5d0000cd5d0000ce5d0000cf5d0000d05d0000d15d0000d25d0000d35d0000d45d0000d55d0000d65d0000d75d0000d85d0000d95d0000da5d0000db5d0000dc5d0000dd5d0000de5d0000df5d0000e05d0000e15d0000e25d0000e35d0000e45d0000e55d0000e65d0000e75d0000e85d0000e95d0000ea5d0000eb5d0000ec5d0000ed5d0000ee5d0000ef5d0000f05d0000f15d0000f25d0000f35d0000f45d0000f55d0000f65d0000f75d0000f85d0000f95d0000fa5d0000fb5d0000fc5d0000fd5d0000fe5d0000ff5d0000005e0000015e0000025e0000035e0000045e0000055e0000065e0000075e0000085e0000095e00000a5e00000b5e00000c5e00000d5e00000e5e00000f5e0000105e0000115e0000125e0000135e0000145e0000155e0000165e0000175e0000185e0000195e00001a5e00001b5e00001c5e00001d5e00001e5e00001f5e0000205e0000215e0000225e0000235e0000245e0000255e0000265e0000275e0000285e0000295e00002a5e00002b5e00002c5e00002d5e00002e5e00002f5e0000305e0000315e0000325e0000335e0000345e0000355e0000365e0000375e0000385e0000395e00003a5e00003b5e00003c5e00003d5e00003e5e00003f5e0000405e0000415e0000425e0000435e0000445e0000455e0000465e0000475e0000485e0000495e00004a5e00004b5e00004c5e00004d5e00004e5e00004f5e0000505e0000515e0000525e0000535e0000545e0000555e0000565e0000575e0000585e0000595e00005a5e00005b5e00005c5e00005d5e00005e5e00005f5e0000605e0000615e0000625e0000635e0000645e0000655e0000665e0000675e0000685e0000695e00006a5e00006b5e00006c5e00006d5e00006e5e00006f5e0000705e0000715e0000725e0000735e0000745e0000755e0000765e0000775e0000785e0000795e00007a5e00007b5e00007c5e00007d5e00007e5e00007f5e0000805e0000815e0000825e0000835e0000845e0000855e0000865e0000875e0000885e0000895e00008a5e00008b5e00008c5e00008d5e00008e5e00008f5e0000905e0000915e0000925e0000935e0000945e0000955e0000965e0000975e0000985e0000995e00009a5e00009b5e00009c5e00009d5e00009e5e00009f5e0000a05e0000a15e0000a25e0000a35e0000a45e0000a55e0000a65e0000a75e0000a85e0000a95e0000aa5e0000ab5e0000ac5e0000ad5e0000ae5e0000af5e0000b05e0000b15e0000b25e0000b35e0000b45e0000b55e0000b65e0000b75e0000b85e0000b95e0000ba5e0000bb5e0000bc5e0000bd5e0000be5e0000bf5e0000c05e0000c15e0000c25e0000c35e0000c45e0000c55e0000c65e0000c75e0000c85e0000c95e0000ca5e0000cb5e0000cc5e0000cd5e0000ce5e0000cf5e0000d05e0000d15e0000d25e0000d35e0000d45e0000d55e0000d65e0000d75e0000d85e0000d95e0000da5e0000db5e0000dc5e0000dd5e0000de5e0000df5e0000e05e0000e15e0000e25e0000e35e0000e45e0000e55e0000e65e0000e75e0000e85e0000e95e0000ea5e0000eb5e0000ec5e0000ed5e0000ee5e0000ef5e0000f05e0000f15e0000f25e0000f35e0000f45e0000f55e0000f65e0000f75e0000f85e0000f95e0000fa5e0000fb5e0000fc5e0000fd5e0000fe5e0000ff5e0000005f0000015f0000025f0000035f0000045f0000055f0000065f0000075f0000085f0000095f00000a5f00000b5f00000c5f00000d5f00000e5f00000f5f0000105f0000115f0000125f0000135f0000145f0000155f0000165f0000175f0000185f0000195f00001a5f00001b5f00001c5f00001d5f00001e5f00001f5f0000205f0000215f0000225f0000235f0000245f0000255f0000265f0000275f0000285f0000295f00002a5f00002b5f00002c5f00002d5f00002e5f00002f5f0000305f0000315f0000325f0000335f0000345f0000355f0000365f0000375f0000385f0000395f00003a5f00003b5f00003c5f00003d5f00003e5f00003f5f0000405f0000415f0000425f0000435f0000445f0000455f0000465f0000475f0000485f0000495f00004a5f00004b5f00004c5f00004d5f00004e5f00004f5f0000505f0000515f0000525f0000535f0000545f0000555f0000565f0000575f0000585f0000595f00005a5f00005b5f00005c5f00005d5f00005e5f00005f5f0000605f0000615f0000625f0000635f0000645f0000655f0000665f0000675f0000685f0000695f00006a5f00006b5f00006c5f00006d5f00006e5f00006f5f0000705f0000715f0000725f0000735f0000745f0000755f0000765f0000775f0000785f0000795f00007a5f00007b5f00007c5f00007d5f00007e5f00007f5f0000805f0000815f0000825f0000835f0000845f0000855f0000865f0000875f0000885f0000895f00008a5f00008b5f00008c5f00008d5f00008e5f00008f5f0000905f0000915f0000925f0000935f0000945f0000955f0000965f0000975f0000985f0000995f00009a5f00009b5f00009c5f00009d5f00009e5f00009f5f0000a05f0000a15f0000a25f0000a35f0000a45f0000a55f0000a65f0000a75f0000a85f0000a95f0000aa5f0000ab5f0000ac5f0000ad5f0000ae5f0000af5f0000b05f0000b15f0000b25f0000b35f0000b45f0000b55f0000b65f0000b75f0000b85f0000b95f0000ba5f0000bb5f0000bc5f0000bd5f0000be5f0000bf5f0000c05f0000c15f0000c25f0000c35f0000c45f0000c55f0000c65f0000c75f0000c85f0000c95f0000ca5f0000cb5f0000cc5f0000cd5f0000ce5f0000cf5f0000d05f0000d15f0000d25f0000d35f0000d45f0000d55f0000d65f0000d75f0000d85f0000d95f0000da5f0000db5f0000dc5f0000dd5f0000de5f0000df5f0000e05f0000e15f0000e25f0000e35f0000e45f0000e55f0000e65f0000e75f0000e85f0000e95f0000ea5f0000eb5f0000ec5f0000ed5f0000ee5f0000ef5f0000f05f0000f15f0000f25f0000f35f0000f45f0000f55f0000f65f0000f75f0000f85f0000f95f0000fa5f0000fb5f0000fc5f0000fd5f0000fe5f0000ff5f0000006000000160000002600000036000000460000005600000066000000760000008600000096000000a6000000b6000000c6000000d6000000e6000000f600000106000001160000012600000136000001460000015600000166000001760000018600000196000001a6000001b6000001c6000001d6000001e6000001f600000206000002160000022600000236000002460000025600000266000002760000028600000296000002a6000002b6000002c6000002d6000002e6000002f600000306000003160000032600000336000003460000035600000366000003760000038600000396000003a6000003b6000003c6000003d6000003e6000003f600000406000004160000042600000436000004460000045600000466000004760000048600000496000004a6000004b6000004c6000004d6000004e6000004f600000506000005160000052600000536000005460000055600000566000005760000058600000596000005a6000005b6000005c6000005d6000005e6000005f600000606000006160000062600000636000006460000065600000666000006760000068600000696000006a6000006b6000006c6000006d6000006e6000006f600000706000007160000072600000736000007460000075600000766000007760000078600000796000007a6000007b6000007c6000007d6000007e6000007f600000806000008160000082600000836000008460000085600000866000008760000088600000896000008a6000008b6000008c6000008d6000008e6000008f600000906000009160000092600000936000009460000095600000966000009760000098600000996000009a6000009b6000009c6000009d6000009e6000009f600000a0600000a1600000a2600000a3600000a4600000a5600000a6600000a7600000a8600000a9600000aa600000ab600000ac600000ad600000ae600000af600000b0600000b1600000b2600000b3600000b4600000b5600000b6600000b7600000b8600000b9600000ba600000bb600000bc600000bd600000be600000bf600000c0600000c1600000c2600000c3600000c4600000c5600000c6600000c7600000c8600000c9600000ca600000cb600000cc600000cd600000ce600000cf600000d0600000d1600000d2600000d3600000d4600000d5600000d6600000d7600000d8600000d9600000da600000db600000dc600000dd600000de600000df600000e0600000e1600000e2600000e3600000e4600000e5600000e6600000e7600000e8600000e9600000ea600000eb600000ec600000ed600000ee600000ef600000f0600000f1600000f2600000f3600000f4600000f5600000f6600000f7600000f8600000f9600000fa600000fb600000fc600000fd600000fe600000ff600000006100000161000002610000036100000461000005610000066100000761000008610000096100000a6100000b6100000c6100000d6100000e6100000f610000106100001161000012610000136100001461000015610000166100001761000018610000196100001a6100001b6100001c6100001d6100001e6100001f610000206100002161000022610000236100002461000025610000266100002761000028610000296100002a6100002b6100002c6100002d6100002e6100002f610000306100003161000032610000336100003461000035610000366100003761000038610000396100003a6100003b6100003c6100003d6100003e6100003f610000406100004161000042610000436100004461000045610000466100004761000048610000496100004a6100004b6100004c6100004d6100004e6100004f610000506100005161000052610000536100005461000055610000566100005761000058610000596100005a6100005b6100005c6100005d6100005e6100005f610000606100006161000062610000636100006461000065610000666100006761000068610000696100006a6100006b6100006c6100006d6100006e6100006f610000706100007161000072610000736100007461000075610000766100007761000078610000796100007a6100007b6100007c6100007d6100007e6100007f610000806100008161000082610000836100008461000085610000866100008761000088610000896100008a6100008b6100008c6100008d6100008e6100008f610000906100009161000092610000936100009461000095610000966100009761000098610000996100009a6100009b6100009c6100009d6100009e6100009f610000a0610000a1610000a2610000a3610000a4610000a5610000a6610000a7610000a8610000a9610000aa610000ab610000ac610000ad610000ae610000af610000b0610000b1610000b2610000b3610000b4610000b5610000b6610000b7610000b8610000b9610000ba610000bb610000bc610000bd610000be610000bf610000c0610000c1610000c2610000c3610000c4610000c5610000c6610000c7610000c8610000c9610000ca610000cb610000cc610000cd610000ce610000cf610000d0610000d1610000d2610000d3610000d4610000d5610000d6610000d7610000d8610000d9610000da610000db610000dc610000dd610000de610000df610000e0610000e1610000e2610000e3610000e4610000e5610000e6610000e7610000e8610000e9610000ea610000eb610000ec610000ed610000ee610000ef610000f0610000f1610000f2610000f3610000f4610000f5610000f6610000f7610000f8610000f9610000fa610000fb610000fc610000fd610000fe610000ff610000006200000162000002620000036200000462000005620000066200000762000008620000096200000a6200000b6200000c6200000d6200000e6200000f620000106200001162000012620000136200001462000015620000166200001762000018620000196200001a6200001b6200001c6200001d6200001e6200001f620000206200002162000022620000236200002462000025620000266200002762000028620000296200002a6200002b6200002c6200002d6200002e6200002f620000306200003162000032620000336200003462000035620000366200003762000038620000396200003a6200003b6200003c6200003d6200003e6200003f620000406200004162000042620000436200004462000045620000466200004762000048620000496200004a6200004b6200004c6200004d6200004e6200004f620000506200005162000052620000536200005462000055620000566200005762000058620000596200005a6200005b6200005c6200005d6200005e6200005f620000606200006162000062620000636200006462000065620000666200006762000068620000696200006a6200006b6200006c6200006d6200006e6200006f620000706200007162000072620000736200007462000075620000766200007762000078620000796200007a6200007b6200007c6200007d6200007e6200007f620000806200008162000082620000836200008462000085620000866200008762000088620000896200008a6200008b6200008c6200008d6200008e6200008f620000906200009162000092620000936200009462000095620000966200009762000098620000996200009a6200009b6200009c6200009d6200009e6200009f620000a0620000a1620000a2620000a3620000a4620000a5620000a6620000a7620000a8620000a9620000aa620000ab620000ac620000ad620000ae620000af620000b0620000b1620000b2620000b3620000b4620000b5620000b6620000b7620000b8620000b9620000ba620000bb620000bc620000bd620000be620000bf620000c0620000c1620000c2620000c3620000c4620000c5620000c6620000c7620000c8620000c9620000ca620000cb620000cc620000cd620000ce620000cf620000d0620000d1620000d2620000d3620000d4620000d5620000d6620000d7620000d8620000d9620000da620000db620000dc620000dd620000de620000df620000e0620000e1620000e2620000e3620000e4620000e5620000e6620000e7620000e8620000e9620000ea620000eb620000ec620000ed620000ee620000ef620000f0620000f1620000f2620000f3620000f4620000f5620000f6620000f7620000f8620000f9620000fa620000fb620000fc620000fd620000fe620000ff620000006300000163000002630000036300000463000005630000066300000763000008630000096300000a6300000b6300000c6300000d6300000e6300000f630000106300001163000012630000136300001463000015630000166300001763000018630000196300001a6300001b6300001c6300001d6300001e6300001f630000206300002163000022630000236300002463000025630000266300002763000028630000296300002a6300002b6300002c6300002d6300002e6300002f630000306300003163000032630000336300003463000035630000366300003763000038630000396300003a6300003b6300003c6300003d6300003e6300003f630000406300004163000042630000436300004463000045630000466300004763000048630000496300004a6300004b6300004c6300004d6300004e6300004f630000506300005163000052630000536300005463000055630000566300005763000058630000596300005a6300005b6300005c6300005d6300005e6300005f630000606300006163000062630000636300006463000065630000666300006763000068630000696300006a6300006b6300006c6300006d6300006e6300006f630000706300007163000072630000736300007463000075630000766300007763000078630000796300007a6300007b6300007c6300007d6300007e6300007f630000806300008163000082630000836300008463000085630000866300008763000088630000896300008a6300008b6300008c6300008d6300008e6300008f630000906300009163000092630000936300009463000095630000966300009763000098630000996300009a6300009b6300009c6300009d6300009e6300009f630000a0630000a1630000a2630000a3630000a4630000a5630000a6630000a7630000a8630000a9630000aa630000ab630000ac630000ad630000ae630000af630000b0630000b1630000b2630000b3630000b4630000b5630000b6630000b7630000b8630000b9630000ba630000bb630000bc630000bd630000be630000bf630000c0630000c1630000c2630000c3630000c4630000c5630000c6630000c7630000c8630000c9630000ca630000cb630000cc630000cd630000ce630000cf630000d0630000d1630000d2630000d3630000d4630000d5630000d6630000d7630000d8630000d9630000da630000db630000dc630000dd630000de630000df630000e0630000e1630000e2630000e3630000e4630000e5630000e6630000e7630000e8630000e9630000ea630000eb630000ec630000ed630000ee630000ef630000f0630000f1630000f2630000f3630000f4630000f5630000f6630000f7630000f8630000f9630000fa630000fb630000fc630000fd630000fe630000ff630000006400000164000002640000036400000464000005640000066400000764000008640000096400000a6400000b6400000c6400000d6400000e6400000f640000106400001164000012640000136400001464000015640000166400001764000018640000196400001a6400001b6400001c6400001d6400001e6400001f640000206400002164000022640000236400002464000025640000266400002764000028640000296400002a6400002b6400002c6400002d6400002e6400002f640000306400003164000032640000336400003464000035640000366400003764000038640000396400003a6400003b6400003c6400003d6400003e6400003f640000406400004164000042640000436400004464000045640000466400004764000048640000496400004a6400004b6400004c6400004d6400004e6400004f640000506400005164000052640000536400005464000055640000566400005764000058640000596400005a6400005b6400005c6400005d6400005e6400005f640000606400006164000062640000636400006464000065640000666400006764000068640000696400006a6400006b6400006c6400006d6400006e6400006f640000706400007164000072640000736400007464000075640000766400007764000078640000796400007a6400007b6400007c6400007d6400007e6400007f640000806400008164000082640000836400008464000085640000866400008764000088640000896400008a6400008b6400008c6400008d6400008e6400008f640000906400009164000092640000936400009464000095640000966400009764000098640000996400009a6400009b6400009c6400009d6400009e6400009f640000a0640000a1640000a2640000a3640000a4640000a5640000a6640000a7640000a8640000a9640000aa640000ab640000ac640000ad640000ae640000af640000b0640000b1640000b2640000b3640000b4640000b5640000b6640000b7640000b8640000b9640000ba640000bb640000bc640000bd640000be640000bf640000c0640000c1640000c2640000c3640000c4640000c5640000c6640000c7640000c8640000c9640000ca640000cb640000cc640000cd640000ce640000cf640000d0640000d1640000d2640000d3640000d4640000d5640000d6640000d7640000d8640000d9640000da640000db640000dc640000dd640000de640000df640000e0640000e1640000e2640000e3640000e4640000e5640000e6640000e7640000e8640000e9640000ea640000eb640000ec640000ed640000ee640000ef640000f0640000f1640000f2640000f3640000f4640000f5640000f6640000f7640000f8640000f9640000fa640000fb640000fc640000fd640000fe640000ff640000006500000165000002650000036500000465000005650000066500000765000008650000096500000a6500000b6500000c6500000d6500000e6500000f650000106500001165000012650000136500001465000015650000166500001765000018650000196500001a6500001b6500001c6500001d6500001e6500001f650000206500002165000022650000236500002465000025650000266500002765000028650000296500002a6500002b6500002c6500002d6500002e6500002f650000306500003165000032650000336500003465000035650000366500003765000038650000396500003a6500003b6500003c6500003d6500003e6500003f650000406500004165000042650000436500004465000045650000466500004765000048650000496500004a6500004b6500004c6500004d6500004e6500004f650000506500005165000052650000536500005465000055650000566500005765000058650000596500005a6500005b6500005c6500005d6500005e6500005f650000606500006165000062650000636500006465000065650000666500006765000068650000696500006a6500006b6500006c6500006d6500006e6500006f650000706500007165000072650000736500007465000075650000766500007765000078650000796500007a6500007b6500007c6500007d6500007e6500007f650000806500008165000082650000836500008465000085650000866500008765000088650000896500008a6500008b6500008c6500008d6500008e6500008f650000906500009165000092650000936500009465000095650000966500009765000098650000996500009a6500009b6500009c6500009d6500009e6500009f650000a0650000a1650000a2650000a3650000a4650000a5650000a6650000a7650000a8650000a9650000aa650000ab650000ac650000ad650000ae650000af650000b0650000b1650000b2650000b3650000b4650000b5650000b6650000b7650000b8650000b9650000ba650000bb650000bc650000bd650000be650000bf650000c0650000c1650000c2650000c3650000c4650000c5650000c6650000c7650000c8650000c9650000ca650000cb650000cc650000cd650000ce650000cf650000d0650000d1650000d2650000d3650000d4650000d5650000d6650000d7650000d8650000d9650000da650000db650000dc650000dd650000de650000df650000e0650000e1650000e2650000e3650000e4650000e5650000e6650000e7650000e8650000e9650000ea650000eb650000ec650000ed650000ee650000ef650000f0650000f1650000f2650000f3650000f4650000f5650000f6650000f7650000f8650000f9650000fa650000fb650000fc650000fd650000fe650000ff650000006600000166000002660000036600000466000005660000066600000766000008660000096600000a6600000b6600000c6600000d6600000e6600000f660000106600001166000012660000136600001466000015660000166600001766000018660000196600001a6600001b6600001c6600001d6600001e6600001f660000206600002166000022660000236600002466000025660000266600002766000028660000296600002a6600002b6600002c6600002d6600002e6600002f660000306600003166000032660000336600003466000035660000366600003766000038660000396600003a6600003b6600003c6600003d6600003e6600003f660000406600004166000042660000436600004466000045660000466600004766000048660000496600004a6600004b6600004c6600004d6600004e6600004f660000506600005166000052660000536600005466000055660000566600005766000058660000596600005a6600005b6600005c6600005d6600005e6600005f660000606600006166000062660000636600006466000065660000666600006766000068660000696600006a6600006b6600006c6600006d6600006e6600006f660000706600007166000072660000736600007466000075660000766600007766000078660000796600007a6600007b6600007c6600007d6600007e6600007f660000806600008166000082660000836600008466000085660000866600008766000088660000896600008a6600008b6600008c6600008d6600008e6600008f660000906600009166000092660000936600009466000095660000966600009766000098660000996600009a6600009b6600009c6600009d6600009e6600009f660000a0660000a1660000a2660000a3660000a4660000a5660000a6660000a7660000a8660000a9660000aa660000ab660000ac660000ad660000ae660000af660000b0660000b1660000b2660000b3660000b4660000b5660000b6660000b7660000b8660000b9660000ba660000bb660000bc660000bd660000be660000bf660000c0660000c1660000c2660000c3660000c4660000c5660000c6660000c7660000c8660000c9660000ca660000cb660000cc660000cd660000ce660000cf660000d0660000d1660000d2660000d3660000d4660000d5660000d6660000d7660000d8660000d9660000da660000db660000dc660000dd660000de660000df660000e0660000e1660000e2660000e3660000e4660000e5660000e6660000e7660000e8660000e9660000ea660000eb660000ec660000ed660000ee660000ef660000f0660000f1660000f2660000f3660000f4660000f5660000f6660000f7660000f8660000f9660000fa660000fb660000fc660000fd660000fe660000ff660000006700000167000002670000036700000467000005670000066700000767000008670000096700000a6700000b6700000c6700000d6700000e6700000f670000106700001167000012670000136700001467000015670000166700001767000018670000196700001a6700001b6700001c6700001d6700001e6700001f670000206700002167000022670000236700002467000025670000266700002767000028670000296700002a6700002b6700002c6700002d6700002e6700002f670000306700003167000032670000336700003467000035670000366700003767000038670000396700003a6700003b6700003c6700003d6700003e6700003f670000406700004167000042670000436700004467000045670000466700004767000048670000496700004a6700004b6700004c6700004d6700004e6700004f670000506700005167000052670000536700005467000055670000566700005767000058670000596700005a6700005b6700005c6700005d6700005e6700005f670000606700006167000062670000636700006467000065670000666700006767000068670000696700006a6700006b6700006c6700006d6700006e6700006f670000706700007167000072670000736700007467000075670000766700007767000078670000796700007a6700007b6700007c6700007d6700007e6700007f670000806700008167000082670000836700008467000085670000866700008767000088670000896700008a6700008b6700008c6700008d6700008e6700008f670000906700009167000092670000936700009467000095670000966700009767000098670000996700009a6700009b6700009c6700009d6700009e6700009f670000a0670000a1670000a2670000a3670000a4670000a5670000a6670000a7670000a8670000a9670000aa670000ab670000ac670000ad670000ae670000af670000b0670000b1670000b2670000b3670000b4670000b5670000b6670000b7670000b8670000b9670000ba670000bb670000bc670000bd670000be670000bf670000c0670000c1670000c2670000c3670000c4670000c5670000c6670000c7670000c8670000c9670000ca670000cb670000cc670000cd670000ce670000cf670000d0670000d1670000d2670000d3670000d4670000d5670000d6670000d7670000d8670000d9670000da670000db670000dc670000dd670000de670000df670000e0670000e1670000e2670000e3670000e4670000e5670000e6670000e7670000e8670000e9670000ea670000eb670000ec670000ed670000ee670000ef670000f0670000f1670000f2670000f3670000f4670000f5670000f6670000f7670000f8670000f9670000fa670000fb670000fc670000fd670000fe670000ff670000006800000168000002680000036800000468000005680000066800000768000008680000096800000a6800000b6800000c6800000d6800000e6800000f680000106800001168000012680000136800001468000015680000166800001768000018680000196800001a6800001b6800001c6800001d6800001e6800001f680000206800002168000022680000236800002468000025680000266800002768000028680000296800002a6800002b6800002c6800002d6800002e6800002f680000306800003168000032680000336800003468000035680000366800003768000038680000396800003a6800003b6800003c6800003d6800003e6800003f680000406800004168000042680000436800004468000045680000466800004768000048680000496800004a6800004b6800004c6800004d6800004e6800004f680000506800005168000052680000536800005468000055680000566800005768000058680000596800005a6800005b6800005c6800005d6800005e6800005f680000606800006168000062680000636800006468000065680000666800006768000068680000696800006a6800006b6800006c6800006d6800006e6800006f680000706800007168000072680000736800007468000075680000766800007768000078680000796800007a6800007b6800007c6800007d6800007e6800007f680000806800008168000082680000836800008468000085680000866800008768000088680000896800008a6800008b6800008c6800008d6800008e6800008f680000906800009168000092680000936800009468000095680000966800009768000098680000996800009a6800009b6800009c6800009d6800009e6800009f680000a0680000a1680000a2680000a3680000a4680000a5680000a6680000a7680000a8680000a9680000aa680000ab680000ac680000ad680000ae680000af680000b0680000b1680000b2680000b3680000b4680000b5680000b6680000b7680000b8680000b9680000ba680000bb680000bc680000bd680000be680000bf680000c0680000c1680000c2680000c3680000c4680000c5680000c6680000c7680000c8680000c9680000ca680000cb680000cc680000cd680000ce680000cf680000d0680000d1680000d2680000d3680000d4680000d5680000d6680000d7680000d8680000d9680000da680000db680000dc680000dd680000de680000df680000e0680000e1680000e2680000e3680000e4680000e5680000e6680000e7680000e8680000e9680000ea680000eb680000ec680000ed680000ee680000ef680000f0680000f1680000f2680000f3680000f4680000f5680000f6680000f7680000f8680000f9680000fa680000fb680000fc680000fd680000fe680000ff680000006900000169000002690000036900000469000005690000066900000769000008690000096900000a6900000b6900000c6900000d6900000e6900000f690000106900001169000012690000136900001469000015690000166900001769000018690000196900001a6900001b6900001c6900001d6900001e6900001f690000206900002169000022690000236900002469000025690000266900002769000028690000296900002a6900002b6900002c6900002d6900002e6900002f690000306900003169000032690000336900003469000035690000366900003769000038690000396900003a6900003b6900003c6900003d6900003e6900003f690000406900004169000042690000436900004469000045690000466900004769000048690000496900004a6900004b6900004c6900004d6900004e6900004f690000506900005169000052690000536900005469000055690000566900005769000058690000596900005a6900005b6900005c6900005d6900005e6900005f690000606900006169000062690000636900006469000065690000666900006769000068690000696900006a6900006b6900006c6900006d6900006e6900006f690000706900007169000072690000736900007469000075690000766900007769000078690000796900007a6900007b6900007c6900007d6900007e6900007f690000806900008169000082690000836900008469000085690000866900008769000088690000896900008a6900008b6900008c6900008d6900008e6900008f690000906900009169000092690000936900009469000095690000966900009769000098690000996900009a6900009b6900009c6900009d6900009e6900009f690000a0690000a1690000a2690000a3690000a4690000a5690000a6690000a7690000a8690000a9690000aa690000ab690000ac690000ad690000ae690000af690000b0690000b1690000b2690000b3690000b4690000b5690000b6690000b7690000b8690000b9690000ba690000bb690000bc690000bd690000be690000bf690000c0690000c1690000c2690000c3690000c4690000c5690000c6690000c7690000c8690000c9690000ca690000cb690000cc690000cd690000ce690000cf690000d0690000d1690000d2690000d3690000d4690000d5690000d6690000d7690000d8690000d9690000da690000db690000dc690000dd690000de690000df690000e0690000e1690000e2690000e3690000e4690000e5690000e6690000e7690000e8690000e9690000ea690000eb690000ec690000ed690000ee690000ef690000f0690000f1690000f2690000f3690000f4690000f5690000f6690000f7690000f8690000f9690000fa690000fb690000fc690000fd690000fe690000ff690000006a0000016a0000026a0000036a0000046a0000056a0000066a0000076a0000086a0000096a00000a6a00000b6a00000c6a00000d6a00000e6a00000f6a0000106a0000116a0000126a0000136a0000146a0000156a0000166a0000176a0000186a0000196a00001a6a00001b6a00001c6a00001d6a00001e6a00001f6a0000206a0000216a0000226a0000236a0000246a0000256a0000266a0000276a0000286a0000296a00002a6a00002b6a00002c6a00002d6a00002e6a00002f6a0000306a0000316a0000326a0000336a0000346a0000356a0000366a0000376a0000386a0000396a00003a6a00003b6a00003c6a00003d6a00003e6a00003f6a0000406a0000416a0000426a0000436a0000446a0000456a0000466a0000476a0000486a0000496a00004a6a00004b6a00004c6a00004d6a00004e6a00004f6a0000506a0000516a0000526a0000536a0000546a0000556a0000566a0000576a0000586a0000596a00005a6a00005b6a00005c6a00005d6a00005e6a00005f6a0000606a0000616a0000626a0000636a0000646a0000656a0000666a0000676a0000686a0000696a00006a6a00006b6a00006c6a00006d6a00006e6a00006f6a0000706a0000716a0000726a0000736a0000746a0000756a0000766a0000776a0000786a0000796a00007a6a00007b6a00007c6a00007d6a00007e6a00007f6a0000806a0000816a0000826a0000836a0000846a0000856a0000866a0000876a0000886a0000896a00008a6a00008b6a00008c6a00008d6a00008e6a00008f6a0000906a0000916a0000926a0000936a0000946a0000956a0000966a0000976a0000986a0000996a00009a6a00009b6a00009c6a00009d6a00009e6a00009f6a0000a06a0000a16a0000a26a0000a36a0000a46a0000a56a0000a66a0000a76a0000a86a0000a96a0000aa6a0000ab6a0000ac6a0000ad6a0000ae6a0000af6a0000b06a0000b16a0000b26a0000b36a0000b46a0000b56a0000b66a0000b76a0000b86a0000b96a0000ba6a0000bb6a0000bc6a0000bd6a0000be6a0000bf6a0000c06a0000c16a0000c26a0000c36a0000c46a0000c56a0000c66a0000c76a0000c86a0000c96a0000ca6a0000cb6a0000cc6a0000cd6a0000ce6a0000cf6a0000d06a0000d16a0000d26a0000d36a0000d46a0000d56a0000d66a0000d76a0000d86a0000d96a0000da6a0000db6a0000dc6a0000dd6a0000de6a0000df6a0000e06a0000e16a0000e26a0000e36a0000e46a0000e56a0000e66a0000e76a0000e86a0000e96a0000ea6a0000eb6a0000ec6a0000ed6a0000ee6a0000ef6a0000f06a0000f16a0000f26a0000f36a0000f46a0000f56a0000f66a0000f76a0000f86a0000f96a0000fa6a0000fb6a0000fc6a0000fd6a0000fe6a0000ff6a0000006b0000016b0000026b0000036b0000046b0000056b0000066b0000076b0000086b0000096b00000a6b00000b6b00000c6b00000d6b00000e6b00000f6b0000106b0000116b0000126b0000136b0000146b0000156b0000166b0000176b0000186b0000196b00001a6b00001b6b00001c6b00001d6b00001e6b00001f6b0000206b0000216b0000226b0000236b0000246b0000256b0000266b0000276b0000286b0000296b00002a6b00002b6b00002c6b00002d6b00002e6b00002f6b0000306b0000316b0000326b0000336b0000346b0000356b0000366b0000376b0000386b0000396b00003a6b00003b6b00003c6b00003d6b00003e6b00003f6b0000406b0000416b0000426b0000436b0000446b0000456b0000466b0000476b0000486b0000496b00004a6b00004b6b00004c6b00004d6b00004e6b00004f6b0000506b0000516b0000526b0000536b0000546b0000556b0000566b0000576b0000586b0000596b00005a6b00005b6b00005c6b00005d6b00005e6b00005f6b0000606b0000616b0000626b0000636b0000646b0000656b0000666b0000676b0000686b0000696b00006a6b00006b6b00006c6b00006d6b00006e6b00006f6b0000706b0000716b0000726b0000736b0000746b0000756b0000766b0000776b0000786b0000796b00007a6b00007b6b00007c6b00007d6b00007e6b00007f6b0000806b0000816b0000826b0000836b0000846b0000856b0000866b0000876b0000886b0000896b00008a6b00008b6b00008c6b00008d6b00008e6b00008f6b0000906b0000916b0000926b0000936b0000946b0000956b0000966b0000976b0000986b0000996b00009a6b00009b6b00009c6b00009d6b00009e6b00009f6b0000a06b0000a16b0000a26b0000a36b0000a46b0000a56b0000a66b0000a76b0000a86b0000a96b0000aa6b0000ab6b0000ac6b0000ad6b0000ae6b0000af6b0000b06b0000b16b0000b26b0000b36b0000b46b0000b56b0000b66b0000b76b0000b86b0000b96b0000ba6b0000bb6b0000bc6b0000bd6b0000be6b0000bf6b0000c06b0000c16b0000c26b0000c36b0000c46b0000c56b0000c66b0000c76b0000c86b0000c96b0000ca6b0000cb6b0000cc6b0000cd6b0000ce6b0000cf6b0000d06b0000d16b0000d26b0000d36b0000d46b0000d56b0000d66b0000d76b0000d86b0000d96b0000da6b0000db6b0000dc6b0000dd6b0000de6b0000df6b0000e06b0000e16b0000e26b0000e36b0000e46b0000e56b0000e66b0000e76b0000e86b0000e96b0000ea6b0000eb6b0000ec6b0000ed6b0000ee6b0000ef6b0000f06b0000f16b0000f26b0000f36b0000f46b0000f56b0000f66b0000f76b0000f86b0000f96b0000fa6b0000fb6b0000fc6b0000fd6b0000fe6b0000ff6b0000006c0000016c0000026c0000036c0000046c0000056c0000066c0000076c0000086c0000096c00000a6c00000b6c00000c6c00000d6c00000e6c00000f6c0000106c0000116c0000126c0000136c0000146c0000156c0000166c0000176c0000186c0000196c00001a6c00001b6c00001c6c00001d6c00001e6c00001f6c0000206c0000216c0000226c0000236c0000246c0000256c0000266c0000276c0000286c0000296c00002a6c00002b6c00002c6c00002d6c00002e6c00002f6c0000306c0000316c0000326c0000336c0000346c0000356c0000366c0000376c0000386c0000396c00003a6c00003b6c00003c6c00003d6c00003e6c00003f6c0000406c0000416c0000426c0000436c0000446c0000456c0000466c0000476c0000486c0000496c00004a6c00004b6c00004c6c00004d6c00004e6c00004f6c0000506c0000516c0000526c0000536c0000546c0000556c0000566c0000576c0000586c0000596c00005a6c00005b6c00005c6c00005d6c00005e6c00005f6c0000606c0000616c0000626c0000636c0000646c0000656c0000666c0000676c0000686c0000696c00006a6c00006b6c00006c6c00006d6c00006e6c00006f6c0000706c0000716c0000726c0000736c0000746c0000756c0000766c0000776c0000786c0000796c00007a6c00007b6c00007c6c00007d6c00007e6c00007f6c0000806c0000816c0000826c0000836c0000846c0000856c0000866c0000876c0000886c0000896c00008a6c00008b6c00008c6c00008d6c00008e6c00008f6c0000906c0000916c0000926c0000936c0000946c0000956c0000966c0000976c0000986c0000996c00009a6c00009b6c00009c6c00009d6c00009e6c00009f6c0000a06c0000a16c0000a26c0000a36c0000a46c0000a56c0000a66c0000a76c0000a86c0000a96c0000aa6c0000ab6c0000ac6c0000ad6c0000ae6c0000af6c0000b06c0000b16c0000b26c0000b36c0000b46c0000b56c0000b66c0000b76c0000b86c0000b96c0000ba6c0000bb6c0000bc6c0000bd6c0000be6c0000bf6c0000c06c0000c16c0000c26c0000c36c0000c46c0000c56c0000c66c0000c76c0000c86c0000c96c0000ca6c0000cb6c0000cc6c0000cd6c0000ce6c0000cf6c0000d06c0000d16c0000d26c0000d36c0000d46c0000d56c0000d66c0000d76c0000d86c0000d96c0000da6c0000db6c0000dc6c0000dd6c0000de6c0000df6c0000e06c0000e16c0000e26c0000e36c0000e46c0000e56c0000e66c0000e76c0000e86c0000e96c0000ea6c0000eb6c0000ec6c0000ed6c0000ee6c0000ef6c0000f06c0000f16c0000f26c0000f36c0000f46c0000f56c0000f66c0000f76c0000f86c0000f96c0000fa6c0000fb6c0000fc6c0000fd6c0000fe6c0000ff6c0000006d0000016d0000026d0000036d0000046d0000056d0000066d0000076d0000086d0000096d00000a6d00000b6d00000c6d00000d6d00000e6d00000f6d0000106d0000116d0000126d0000136d0000146d0000156d0000166d0000176d0000186d0000196d00001a6d00001b6d00001c6d00001d6d00001e6d00001f6d0000206d0000216d0000226d0000236d0000246d0000256d0000266d0000276d0000286d0000296d00002a6d00002b6d00002c6d00002d6d00002e6d00002f6d0000306d0000316d0000326d0000336d0000346d0000356d0000366d0000376d0000386d0000396d00003a6d00003b6d00003c6d00003d6d00003e6d00003f6d0000406d0000416d0000426d0000436d0000446d0000456d0000466d0000476d0000486d0000496d00004a6d00004b6d00004c6d00004d6d00004e6d00004f6d0000506d0000516d0000526d0000536d0000546d0000556d0000566d0000576d0000586d0000596d00005a6d00005b6d00005c6d00005d6d00005e6d00005f6d0000606d0000616d0000626d0000636d0000646d0000656d0000666d0000676d0000686d0000696d00006a6d00006b6d00006c6d00006d6d00006e6d00006f6d0000706d0000716d0000726d0000736d0000746d0000756d0000766d0000776d0000786d0000796d00007a6d00007b6d00007c6d00007d6d00007e6d00007f6d0000806d0000816d0000826d0000836d0000846d0000856d0000866d0000876d0000886d0000896d00008a6d00008b6d00008c6d00008d6d00008e6d00008f6d0000906d0000916d0000926d0000936d0000946d0000956d0000966d0000976d0000986d0000996d00009a6d00009b6d00009c6d00009d6d00009e6d00009f6d0000a06d0000a16d0000a26d0000a36d0000a46d0000a56d0000a66d0000a76d0000a86d0000a96d0000aa6d0000ab6d0000ac6d0000ad6d0000ae6d0000af6d0000b06d0000b16d0000b26d0000b36d0000b46d0000b56d0000b66d0000b76d0000b86d0000b96d0000ba6d0000bb6d0000bc6d0000bd6d0000be6d0000bf6d0000c06d0000c16d0000c26d0000c36d0000c46d0000c56d0000c66d0000c76d0000c86d0000c96d0000ca6d0000cb6d0000cc6d0000cd6d0000ce6d0000cf6d0000d06d0000d16d0000d26d0000d36d0000d46d0000d56d0000d66d0000d76d0000d86d0000d96d0000da6d0000db6d0000dc6d0000dd6d0000de6d0000df6d0000e06d0000e16d0000e26d0000e36d0000e46d0000e56d0000e66d0000e76d0000e86d0000e96d0000ea6d0000eb6d0000ec6d0000ed6d0000ee6d0000ef6d0000f06d0000f16d0000f26d0000f36d0000f46d0000f56d0000f66d0000f76d0000f86d0000f96d0000fa6d0000fb6d0000fc6d0000fd6d0000fe6d0000ff6d0000006e0000016e0000026e0000036e0000046e0000056e0000066e0000076e0000086e0000096e00000a6e00000b6e00000c6e00000d6e00000e6e00000f6e0000106e0000116e0000126e0000136e0000146e0000156e0000166e0000176e0000186e0000196e00001a6e00001b6e00001c6e00001d6e00001e6e00001f6e0000206e0000216e0000226e0000236e0000246e0000256e0000266e0000276e0000286e0000296e00002a6e00002b6e00002c6e00002d6e00002e6e00002f6e0000306e0000316e0000326e0000336e0000346e0000356e0000366e0000376e0000386e0000396e00003a6e00003b6e00003c6e00003d6e00003e6e00003f6e0000406e0000416e0000426e0000436e0000446e0000456e0000466e0000476e0000486e0000496e00004a6e00004b6e00004c6e00004d6e00004e6e00004f6e0000506e0000516e0000526e0000536e0000546e0000556e0000566e0000576e0000586e0000596e00005a6e00005b6e00005c6e00005d6e00005e6e00005f6e0000606e0000616e0000626e0000636e0000646e0000656e0000666e0000676e0000686e0000696e00006a6e00006b6e00006c6e00006d6e00006e6e00006f6e0000706e0000716e0000726e0000736e0000746e0000756e0000766e0000776e0000786e0000796e00007a6e00007b6e00007c6e00007d6e00007e6e00007f6e0000806e0000816e0000826e0000836e0000846e0000856e0000866e0000876e0000886e0000896e00008a6e00008b6e00008c6e00008d6e00008e6e00008f6e0000906e0000916e0000926e0000936e0000946e0000956e0000966e0000976e0000986e0000996e00009a6e00009b6e00009c6e00009d6e00009e6e00009f6e0000a06e0000a16e0000a26e0000a36e0000a46e0000a56e0000a66e0000a76e0000a86e0000a96e0000aa6e0000ab6e0000ac6e0000ad6e0000ae6e0000af6e0000b06e0000b16e0000b26e0000b36e0000b46e0000b56e0000b66e0000b76e0000b86e0000b96e0000ba6e0000bb6e0000bc6e0000bd6e0000be6e0000bf6e0000c06e0000c16e0000c26e0000c36e0000c46e0000c56e0000c66e0000c76e0000c86e0000c96e0000ca6e0000cb6e0000cc6e0000cd6e0000ce6e0000cf6e0000d06e0000d16e0000d26e0000d36e0000d46e0000d56e0000d66e0000d76e0000d86e0000d96e0000da6e0000db6e0000dc6e0000dd6e0000de6e0000df6e0000e06e0000e16e0000e26e0000e36e0000e46e0000e56e0000e66e0000e76e0000e86e0000e96e0000ea6e0000eb6e0000ec6e0000ed6e0000ee6e0000ef6e0000f06e0000f16e0000f26e0000f36e0000f46e0000f56e0000f66e0000f76e0000f86e0000f96e0000fa6e0000fb6e0000fc6e0000fd6e0000fe6e0000ff6e0000006f0000016f0000026f0000036f0000046f0000056f0000066f0000076f0000086f0000096f00000a6f00000b6f00000c6f00000d6f00000e6f00000f6f0000106f0000116f0000126f0000136f0000146f0000156f0000166f0000176f0000186f0000196f00001a6f00001b6f00001c6f00001d6f00001e6f00001f6f0000206f0000216f0000226f0000236f0000246f0000256f0000266f0000276f0000286f0000296f00002a6f00002b6f00002c6f00002d6f00002e6f00002f6f0000306f0000316f0000326f0000336f0000346f0000356f0000366f0000376f0000386f0000396f00003a6f00003b6f00003c6f00003d6f00003e6f00003f6f0000406f0000416f0000426f0000436f0000446f0000456f0000466f0000476f0000486f0000496f00004a6f00004b6f00004c6f00004d6f00004e6f00004f6f0000506f0000516f0000526f0000536f0000546f0000556f0000566f0000576f0000586f0000596f00005a6f00005b6f00005c6f00005d6f00005e6f00005f6f0000606f0000616f0000626f0000636f0000646f0000656f0000666f0000676f0000686f0000696f00006a6f00006b6f00006c6f00006d6f00006e6f00006f6f0000706f0000716f0000726f0000736f0000746f0000756f0000766f0000776f0000786f0000796f00007a6f00007b6f00007c6f00007d6f00007e6f00007f6f0000806f0000816f0000826f0000836f0000846f0000856f0000866f0000876f0000886f0000896f00008a6f00008b6f00008c6f00008d6f00008e6f00008f6f0000906f0000916f0000926f0000936f0000946f0000956f0000966f0000976f0000986f0000996f00009a6f00009b6f00009c6f00009d6f00009e6f00009f6f0000a06f0000a16f0000a26f0000a36f0000a46f0000a56f0000a66f0000a76f0000a86f0000a96f0000aa6f0000ab6f0000ac6f0000ad6f0000ae6f0000af6f0000b06f0000b16f0000b26f0000b36f0000b46f0000b56f0000b66f0000b76f0000b86f0000b96f0000ba6f0000bb6f0000bc6f0000bd6f0000be6f0000bf6f0000c06f0000c16f0000c26f0000c36f0000c46f0000c56f0000c66f0000c76f0000c86f0000c96f0000ca6f0000cb6f0000cc6f0000cd6f0000ce6f0000cf6f0000d06f0000d16f0000d26f0000d36f0000d46f0000d56f0000d66f0000d76f0000d86f0000d96f0000da6f0000db6f0000dc6f0000dd6f0000de6f0000df6f0000e06f0000e16f0000e26f0000e36f0000e46f0000e56f0000e66f0000e76f0000e86f0000e96f0000ea6f0000eb6f0000ec6f0000ed6f0000ee6f0000ef6f0000f06f0000f16f0000f26f0000f36f0000f46f0000f56f0000f66f0000f76f0000f86f0000f96f0000fa6f0000fb6f0000fc6f0000fd6f0000fe6f0000ff6f0000007000000170000002700000037000000470000005700000067000000770000008700000097000000a7000000b7000000c7000000d7000000e7000000f700000107000001170000012700000137000001470000015700000167000001770000018700000197000001a7000001b7000001c7000001d7000001e7000001f700000207000002170000022700000237000002470000025700000267000002770000028700000297000002a7000002b7000002c7000002d7000002e7000002f700000307000003170000032700000337000003470000035700000367000003770000038700000397000003a7000003b7000003c7000003d7000003e7000003f700000407000004170000042700000437000004470000045700000467000004770000048700000497000004a7000004b7000004c7000004d7000004e7000004f700000507000005170000052700000537000005470000055700000567000005770000058700000597000005a7000005b7000005c7000005d7000005e7000005f700000607000006170000062700000637000006470000065700000667000006770000068700000697000006a7000006b7000006c7000006d7000006e7000006f700000707000007170000072700000737000007470000075700000767000007770000078700000797000007a7000007b7000007c7000007d7000007e7000007f700000807000008170000082700000837000008470000085700000867000008770000088700000897000008a7000008b7000008c7000008d7000008e7000008f700000907000009170000092700000937000009470000095700000967000009770000098700000997000009a7000009b7000009c7000009d7000009e7000009f700000a0700000a1700000a2700000a3700000a4700000a5700000a6700000a7700000a8700000a9700000aa700000ab700000ac700000ad700000ae700000af700000b0700000b1700000b2700000b3700000b4700000b5700000b6700000b7700000b8700000b9700000ba700000bb700000bc700000bd700000be700000bf700000c0700000c1700000c2700000c3700000c4700000c5700000c6700000c7700000c8700000c9700000ca700000cb700000cc700000cd700000ce700000cf700000d0700000d1700000d2700000d3700000d4700000d5700000d6700000d7700000d8700000d9700000da700000db700000dc700000dd700000de700000df700000e0700000e1700000e2700000e3700000e4700000e5700000e6700000e7700000e8700000e9700000ea700000eb700000ec700000ed700000ee700000ef700000f0700000f1700000f2700000f3700000f4700000f5700000f6700000f7700000f8700000f9700000fa700000fb700000fc700000fd700000fe700000ff700000007100000171000002710000037100000471000005710000067100000771000008710000097100000a7100000b7100000c7100000d7100000e7100000f710000107100001171000012710000137100001471000015710000167100001771000018710000197100001a7100001b7100001c7100001d7100001e7100001f710000207100002171000022710000237100002471000025710000267100002771000028710000297100002a7100002b7100002c7100002d7100002e7100002f710000307100003171000032710000337100003471000035710000367100003771000038710000397100003a7100003b7100003c7100003d7100003e7100003f710000407100004171000042710000437100004471000045710000467100004771000048710000497100004a7100004b7100004c7100004d7100004e7100004f710000507100005171000052710000537100005471000055710000567100005771000058710000597100005a7100005b7100005c7100005d7100005e7100005f710000607100006171000062710000637100006471000065710000667100006771000068710000697100006a7100006b7100006c7100006d7100006e7100006f710000707100007171000072710000737100007471000075710000767100007771000078710000797100007a7100007b7100007c7100007d7100007e7100007f710000807100008171000082710000837100008471000085710000867100008771000088710000897100008a7100008b7100008c7100008d7100008e7100008f710000907100009171000092710000937100009471000095710000967100009771000098710000997100009a7100009b7100009c7100009d7100009e7100009f710000a0710000a1710000a2710000a3710000a4710000a5710000a6710000a7710000a8710000a9710000aa710000ab710000ac710000ad710000ae710000af710000b0710000b1710000b2710000b3710000b4710000b5710000b6710000b7710000b8710000b9710000ba710000bb710000bc710000bd710000be710000bf710000c0710000c1710000c2710000c3710000c4710000c5710000c6710000c7710000c8710000c9710000ca710000cb710000cc710000cd710000ce710000cf710000d0710000d1710000d2710000d3710000d4710000d5710000d6710000d7710000d8710000d9710000da710000db710000dc710000dd710000de710000df710000e0710000e1710000e2710000e3710000e4710000e5710000e6710000e7710000e8710000e9710000ea710000eb710000ec710000ed710000ee710000ef710000f0710000f1710000f2710000f3710000f4710000f5710000f6710000f7710000f8710000f9710000fa710000fb710000fc710000fd710000fe710000ff710000007200000172000002720000037200000472000005720000067200000772000008720000097200000a7200000b7200000c7200000d7200000e7200000f720000107200001172000012720000137200001472000015720000167200001772000018720000197200001a7200001b7200001c7200001d7200001e7200001f720000207200002172000022720000237200002472000025720000267200002772000028720000297200002a7200002b7200002c7200002d7200002e7200002f720000307200003172000032720000337200003472000035720000367200003772000038720000397200003a7200003b7200003c7200003d7200003e7200003f720000407200004172000042720000437200004472000045720000467200004772000048720000497200004a7200004b7200004c7200004d7200004e7200004f720000507200005172000052720000537200005472000055720000567200005772000058720000597200005a7200005b7200005c7200005d7200005e7200005f720000607200006172000062720000637200006472000065720000667200006772000068720000697200006a7200006b7200006c7200006d7200006e7200006f720000707200007172000072720000737200007472000075720000767200007772000078720000797200007a7200007b7200007c7200007d7200007e7200007f720000807200008172000082720000837200008472000085720000867200008772000088720000897200008a7200008b7200008c7200008d7200008e7200008f720000907200009172000092720000937200009472000095720000967200009772000098720000997200009a7200009b7200009c7200009d7200009e7200009f720000a0720000a1720000a2720000a3720000a4720000a5720000a6720000a7720000a8720000a9720000aa720000ab720000ac720000ad720000ae720000af720000b0720000b1720000b2720000b3720000b4720000b5720000b6720000b7720000b8720000b9720000ba720000bb720000bc720000bd720000be720000bf720000c0720000c1720000c2720000c3720000c4720000c5720000c6720000c7720000c8720000c9720000ca720000cb720000cc720000cd720000ce720000cf720000d0720000d1720000d2720000d3720000d4720000d5720000d6720000d7720000d8720000d9720000da720000db720000dc720000dd720000de720000df720000e0720000e1720000e2720000e3720000e4720000e5720000e6720000e7720000e8720000e9720000ea720000eb720000ec720000ed720000ee720000ef720000f0720000f1720000f2720000f3720000f4720000f5720000f6720000f7720000f8720000f9720000fa720000fb720000fc720000fd720000fe720000ff720000007300000173000002730000037300000473000005730000067300000773000008730000097300000a7300000b7300000c7300000d7300000e7300000f730000107300001173000012730000137300001473000015730000167300001773000018730000197300001a7300001b7300001c7300001d7300001e7300001f730000207300002173000022730000237300002473000025730000267300002773000028730000297300002a7300002b7300002c7300002d7300002e7300002f730000307300003173000032730000337300003473000035730000367300003773000038730000397300003a7300003b7300003c7300003d7300003e7300003f730000407300004173000042730000437300004473000045730000467300004773000048730000497300004a7300004b7300004c7300004d7300004e7300004f730000507300005173000052730000537300005473000055730000567300005773000058730000597300005a7300005b7300005c7300005d7300005e7300005f730000607300006173000062730000637300006473000065730000667300006773000068730000697300006a7300006b7300006c7300006d7300006e7300006f730000707300007173000072730000737300007473000075730000767300007773000078730000797300007a7300007b7300007c7300007d7300007e7300007f730000807300008173000082730000837300008473000085730000867300008773000088730000897300008a7300008b7300008c7300008d7300008e7300008f730000907300009173000092730000937300009473000095730000967300009773000098730000997300009a7300009b7300009c7300009d7300009e7300009f730000a0730000a1730000a2730000a3730000a4730000a5730000a6730000a7730000a8730000a9730000aa730000ab730000ac730000ad730000ae730000af730000b0730000b1730000b2730000b3730000b4730000b5730000b6730000b7730000b8730000b9730000ba730000bb730000bc730000bd730000be730000bf730000c0730000c1730000c2730000c3730000c4730000c5730000c6730000c7730000c8730000c9730000ca730000cb730000cc730000cd730000ce730000cf730000d0730000d1730000d2730000d3730000d4730000d5730000d6730000d7730000d8730000d9730000da730000db730000dc730000dd730000de730000df730000e0730000e1730000e2730000e3730000e4730000e5730000e6730000e7730000e8730000e9730000ea730000eb730000ec730000ed730000ee730000ef730000f0730000f1730000f2730000f3730000f4730000f5730000f6730000f7730000f8730000f9730000fa730000fb730000fc730000fd730000fe730000ff730000007400000174000002740000037400000474000005740000067400000774000008740000097400000a7400000b7400000c7400000d7400000e7400000f740000107400001174000012740000137400001474000015740000167400001774000018740000197400001a7400001b7400001c7400001d7400001e7400001f740000207400002174000022740000237400002474000025740000267400002774000028740000297400002a7400002b7400002c7400002d7400002e7400002f740000307400003174000032740000337400003474000035740000367400003774000038740000397400003a7400003b7400003c7400003d7400003e7400003f740000407400004174000042740000437400004474000045740000467400004774000048740000497400004a7400004b7400004c7400004d7400004e7400004f740000507400005174000052740000537400005474000055740000567400005774000058740000597400005a7400005b7400005c7400005d7400005e7400005f740000607400006174000062740000637400006474000065740000667400006774000068740000697400006a7400006b7400006c7400006d7400006e7400006f740000707400007174000072740000737400007474000075740000767400007774000078740000797400007a7400007b7400007c7400007d7400007e7400007f740000807400008174000082740000837400008474000085740000867400008774000088740000897400008a7400008b7400008c7400008d7400008e7400008f740000907400009174000092740000937400009474000095740000967400009774000098740000997400009a7400009b7400009c7400009d7400009e7400009f740000a0740000a1740000a2740000a3740000a4740000a5740000a6740000a7740000a8740000a9740000aa740000ab740000ac740000ad740000ae740000af740000b0740000b1740000b2740000b3740000b4740000b5740000b6740000b7740000b8740000b9740000ba740000bb740000bc740000bd740000be740000bf740000c0740000c1740000c2740000c3740000c4740000c5740000c6740000c7740000c8740000c9740000ca740000cb740000cc740000cd740000ce740000cf740000d0740000d1740000d2740000d3740000d4740000d5740000d6740000d7740000d8740000d9740000da740000db740000dc740000dd740000de740000df740000e0740000e1740000e2740000e3740000e4740000e5740000e6740000e7740000e8740000e9740000ea740000eb740000ec740000ed740000ee740000ef740000f0740000f1740000f2740000f3740000f4740000f5740000f6740000f7740000f8740000f9740000fa740000fb740000fc740000fd740000fe740000ff740000007500000175000002750000037500000475000005750000067500000775000008750000097500000a7500000b7500000c7500000d7500000e7500000f750000107500001175000012750000137500001475000015750000167500001775000018750000197500001a7500001b7500001c7500001d7500001e7500001f750000207500002175000022750000237500002475000025750000267500002775000028750000297500002a7500002b7500002c7500002d7500002e7500002f750000307500003175000032750000337500003475000035750000367500003775000038750000397500003a7500003b7500003c7500003d7500003e7500003f750000407500004175000042750000437500004475000045750000467500004775000048750000497500004a7500004b7500004c7500004d7500004e7500004f750000507500005175000052750000537500005475000055750000567500005775000058750000597500005a7500005b7500005c7500005d7500005e7500005f750000607500006175000062750000637500006475000065750000667500006775000068750000697500006a7500006b7500006c7500006d7500006e7500006f750000707500007175000072750000737500007475000075750000767500007775000078750000797500007a7500007b7500007c7500007d7500007e7500007f750000807500008175000082750000837500008475000085750000867500008775000088750000897500008a7500008b7500008c7500008d7500008e7500008f750000907500009175000092750000937500009475000095750000967500009775000098750000997500009a7500009b7500009c7500009d7500009e7500009f750000a0750000a1750000a2750000a3750000a4750000a5750000a6750000a7750000a8750000a9750000aa750000ab750000ac750000ad750000ae750000af750000b0750000b1750000b2750000b3750000b4750000b5750000b6750000b7750000b8750000b9750000ba750000bb750000bc750000bd750000be750000bf750000c0750000c1750000c2750000c3750000c4750000c5750000c6750000c7750000c8750000c9750000ca750000cb750000cc750000cd750000ce750000cf750000d0750000d1750000d2750000d3750000d4750000d5750000d6750000d7750000d8750000d9750000da750000db750000dc750000dd750000de750000df750000e0750000e1750000e2750000e3750000e4750000e5750000e6750000e7750000e8750000e9750000ea750000eb750000ec750000ed750000ee750000ef750000f0750000f1750000f2750000f3750000f4750000f5750000f6750000f7750000f8750000f9750000fa750000fb750000fc750000fd750000fe750000ff750000007600000176000002760000037600000476000005760000067600000776000008760000097600000a7600000b7600000c7600000d7600000e7600000f760000107600001176000012760000137600001476000015760000167600001776000018760000197600001a7600001b7600001c7600001d7600001e7600001f760000207600002176000022760000237600002476000025760000267600002776000028760000297600002a7600002b7600002c7600002d7600002e7600002f760000307600003176000032760000337600003476000035760000367600003776000038760000397600003a7600003b7600003c7600003d7600003e7600003f760000407600004176000042760000437600004476000045760000467600004776000048760000497600004a7600004b7600004c7600004d7600004e7600004f760000507600005176000052760000537600005476000055760000567600005776000058760000597600005a7600005b7600005c7600005d7600005e7600005f760000607600006176000062760000637600006476000065760000667600006776000068760000697600006a7600006b7600006c7600006d7600006e7600006f760000707600007176000072760000737600007476000075760000767600007776000078760000797600007a7600007b7600007c7600007d7600007e7600007f760000807600008176000082760000837600008476000085760000867600008776000088760000897600008a7600008b7600008c7600008d7600008e7600008f760000907600009176000092760000937600009476000095760000967600009776000098760000997600009a7600009b7600009c7600009d7600009e7600009f760000a0760000a1760000a2760000a3760000a4760000a5760000a6760000a7760000a8760000a9760000aa760000ab760000ac760000ad760000ae760000af760000b0760000b1760000b2760000b3760000b4760000b5760000b6760000b7760000b8760000b9760000ba760000bb760000bc760000bd760000be760000bf760000c0760000c1760000c2760000c3760000c4760000c5760000c6760000c7760000c8760000c9760000ca760000cb760000cc760000cd760000ce760000cf760000d0760000d1760000d2760000d3760000d4760000d5760000d6760000d7760000d8760000d9760000da760000db760000dc760000dd760000de760000df760000e0760000e1760000e2760000e3760000e4760000e5760000e6760000e7760000e8760000e9760000ea760000eb760000ec760000ed760000ee760000ef760000f0760000f1760000f2760000f3760000f4760000f5760000f6760000f7760000f8760000f9760000fa760000fb760000fc760000fd760000fe760000ff760000007700000177000002770000037700000477000005770000067700000777000008770000097700000a7700000b7700000c7700000d7700000e7700000f770000107700001177000012770000137700001477000015770000167700001777000018770000197700001a7700001b7700001c7700001d7700001e7700001f770000207700002177000022770000237700002477000025770000267700002777000028770000297700002a7700002b7700002c7700002d7700002e7700002f770000307700003177000032770000337700003477000035770000367700003777000038770000397700003a7700003b7700003c7700003d7700003e7700003f770000407700004177000042770000437700004477000045770000467700004777000048770000497700004a7700004b7700004c7700004d7700004e7700004f770000507700005177000052770000537700005477000055770000567700005777000058770000597700005a7700005b7700005c7700005d7700005e7700005f770000607700006177000062770000637700006477000065770000667700006777000068770000697700006a7700006b7700006c7700006d7700006e7700006f770000707700007177000072770000737700007477000075770000767700007777000078770000797700007a7700007b7700007c7700007d7700007e7700007f770000807700008177000082770000837700008477000085770000867700008777000088770000897700008a7700008b7700008c7700008d7700008e7700008f770000907700009177000092770000937700009477000095770000967700009777000098770000997700009a7700009b7700009c7700009d7700009e7700009f770000a0770000a1770000a2770000a3770000a4770000a5770000a6770000a7770000a8770000a9770000aa770000ab770000ac770000ad770000ae770000af770000b0770000b1770000b2770000b3770000b4770000b5770000b6770000b7770000b8770000b9770000ba770000bb770000bc770000bd770000be770000bf770000c0770000c1770000c2770000c3770000c4770000c5770000c6770000c7770000c8770000c9770000ca770000cb770000cc770000cd770000ce770000cf770000d0770000d1770000d2770000d3770000d4770000d5770000d6770000d7770000d8770000d9770000da770000db770000dc770000dd770000de770000df770000e0770000e1770000e2770000e3770000e4770000e5770000e6770000e7770000e8770000e9770000ea770000eb770000ec770000ed770000ee770000ef770000f0770000f1770000f2770000f3770000f4770000f5770000f6770000f7770000f8770000f9770000fa770000fb770000fc770000fd770000fe770000ff770000007800000178000002780000037800000478000005780000067800000778000008780000097800000a7800000b7800000c7800000d7800000e7800000f780000107800001178000012780000137800001478000015780000167800001778000018780000197800001a7800001b7800001c7800001d7800001e7800001f780000207800002178000022780000237800002478000025780000267800002778000028780000297800002a7800002b7800002c7800002d7800002e7800002f780000307800003178000032780000337800003478000035780000367800003778000038780000397800003a7800003b7800003c7800003d7800003e7800003f780000407800004178000042780000437800004478000045780000467800004778000048780000497800004a7800004b7800004c7800004d7800004e7800004f780000507800005178000052780000537800005478000055780000567800005778000058780000597800005a7800005b7800005c7800005d7800005e7800005f780000607800006178000062780000637800006478000065780000667800006778000068780000697800006a7800006b7800006c7800006d7800006e7800006f780000707800007178000072780000737800007478000075780000767800007778000078780000797800007a7800007b7800007c7800007d7800007e7800007f780000807800008178000082780000837800008478000085780000867800008778000088780000897800008a7800008b7800008c7800008d7800008e7800008f780000907800009178000092780000937800009478000095780000967800009778000098780000997800009a7800009b7800009c7800009d7800009e7800009f780000a0780000a1780000a2780000a3780000a4780000a5780000a6780000a7780000a8780000a9780000aa780000ab780000ac780000ad780000ae780000af780000b0780000b1780000b2780000b3780000b4780000b5780000b6780000b7780000b8780000b9780000ba780000bb780000bc780000bd780000be780000bf780000c0780000c1780000c2780000c3780000c4780000c5780000c6780000c7780000c8780000c9780000ca780000cb780000cc780000cd780000ce780000cf780000d0780000d1780000d2780000d3780000d4780000d5780000d6780000d7780000d8780000d9780000da780000db780000dc780000dd780000de780000df780000e0780000e1780000e2780000e3780000e4780000e5780000e6780000e7780000e8780000e9780000ea780000eb780000ec780000ed780000ee780000ef780000f0780000f1780000f2780000f3780000f4780000f5780000f6780000f7780000f8780000f9780000fa780000fb780000fc780000fd780000fe780000ff780000007900000179000002790000037900000479000005790000067900000779000008790000097900000a7900000b7900000c7900000d7900000e7900000f790000107900001179000012790000137900001479000015790000167900001779000018790000197900001a7900001b7900001c7900001d7900001e7900001f790000207900002179000022790000237900002479000025790000267900002779000028790000297900002a7900002b7900002c7900002d7900002e7900002f790000307900003179000032790000337900003479000035790000367900003779000038790000397900003a7900003b7900003c7900003d7900003e7900003f790000407900004179000042790000437900004479000045790000467900004779000048790000497900004a7900004b7900004c7900004d7900004e7900004f790000507900005179000052790000537900005479000055790000567900005779000058790000597900005a7900005b7900005c7900005d7900005e7900005f790000607900006179000062790000637900006479000065790000667900006779000068790000697900006a7900006b7900006c7900006d7900006e7900006f790000707900007179000072790000737900007479000075790000767900007779000078790000797900007a7900007b7900007c7900007d7900007e7900007f790000807900008179000082790000837900008479000085790000867900008779000088790000897900008a7900008b7900008c7900008d7900008e7900008f790000907900009179000092790000937900009479000095790000967900009779000098790000997900009a7900009b7900009c7900009d7900009e7900009f790000a0790000a1790000a2790000a3790000a4790000a5790000a6790000a7790000a8790000a9790000aa790000ab790000ac790000ad790000ae790000af790000b0790000b1790000b2790000b3790000b4790000b5790000b6790000b7790000b8790000b9790000ba790000bb790000bc790000bd790000be790000bf790000c0790000c1790000c2790000c3790000c4790000c5790000c6790000c7790000c8790000c9790000ca790000cb790000cc790000cd790000ce790000cf790000d0790000d1790000d2790000d3790000d4790000d5790000d6790000d7790000d8790000d9790000da790000db790000dc790000dd790000de790000df790000e0790000e1790000e2790000e3790000e4790000e5790000e6790000e7790000e8790000e9790000ea790000eb790000ec790000ed790000ee790000ef790000f0790000f1790000f2790000f3790000f4790000f5790000f6790000f7790000f8790000f9790000fa790000fb790000fc790000fd790000fe790000ff790000007a0000017a0000027a0000037a0000047a0000057a0000067a0000077a0000087a0000097a00000a7a00000b7a00000c7a00000d7a00000e7a00000f7a0000107a0000117a0000127a0000137a0000147a0000157a0000167a0000177a0000187a0000197a00001a7a00001b7a00001c7a00001d7a00001e7a00001f7a0000207a0000217a0000227a0000237a0000247a0000257a0000267a0000277a0000287a0000297a00002a7a00002b7a00002c7a00002d7a00002e7a00002f7a0000307a0000317a0000327a0000337a0000347a0000357a0000367a0000377a0000387a0000397a00003a7a00003b7a00003c7a00003d7a00003e7a00003f7a0000407a0000417a0000427a0000437a0000447a0000457a0000467a0000477a0000487a0000497a00004a7a00004b7a00004c7a00004d7a00004e7a00004f7a0000507a0000517a0000527a0000537a0000547a0000557a0000567a0000577a0000587a0000597a00005a7a00005b7a00005c7a00005d7a00005e7a00005f7a0000607a0000617a0000627a0000637a0000647a0000657a0000667a0000677a0000687a0000697a00006a7a00006b7a00006c7a00006d7a00006e7a00006f7a0000707a0000717a0000727a0000737a0000747a0000757a0000767a0000777a0000787a0000797a00007a7a00007b7a00007c7a00007d7a00007e7a00007f7a0000807a0000817a0000827a0000837a0000847a0000857a0000867a0000877a0000887a0000897a00008a7a00008b7a00008c7a00008d7a00008e7a00008f7a0000907a0000917a0000927a0000937a0000947a0000957a0000967a0000977a0000987a0000997a00009a7a00009b7a00009c7a00009d7a00009e7a00009f7a0000a07a0000a17a0000a27a0000a37a0000a47a0000a57a0000a67a0000a77a0000a87a0000a97a0000aa7a0000ab7a0000ac7a0000ad7a0000ae7a0000af7a0000b07a0000b17a0000b27a0000b37a0000b47a0000b57a0000b67a0000b77a0000b87a0000b97a0000ba7a0000bb7a0000bc7a0000bd7a0000be7a0000bf7a0000c07a0000c17a0000c27a0000c37a0000c47a0000c57a0000c67a0000c77a0000c87a0000c97a0000ca7a0000cb7a0000cc7a0000cd7a0000ce7a0000cf7a0000d07a0000d17a0000d27a0000d37a0000d47a0000d57a0000d67a0000d77a0000d87a0000d97a0000da7a0000db7a0000dc7a0000dd7a0000de7a0000df7a0000e07a0000e17a0000e27a0000e37a0000e47a0000e57a0000e67a0000e77a0000e87a0000e97a0000ea7a0000eb7a0000ec7a0000ed7a0000ee7a0000ef7a0000f07a0000f17a0000f27a0000f37a0000f47a0000f57a0000f67a0000f77a0000f87a0000f97a0000fa7a0000fb7a0000fc7a0000fd7a0000fe7a0000ff7a0000007b0000017b0000027b0000037b0000047b0000057b0000067b0000077b0000087b0000097b00000a7b00000b7b00000c7b00000d7b00000e7b00000f7b0000107b0000117b0000127b0000137b0000147b0000157b0000167b0000177b0000187b0000197b00001a7b00001b7b00001c7b00001d7b00001e7b00001f7b0000207b0000217b0000227b0000237b0000247b0000257b0000267b0000277b0000287b0000297b00002a7b00002b7b00002c7b00002d7b00002e7b00002f7b0000307b0000317b0000327b0000337b0000347b0000357b0000367b0000377b0000387b0000397b00003a7b00003b7b00003c7b00003d7b00003e7b00003f7b0000407b0000417b0000427b0000437b0000447b0000457b0000467b0000477b0000487b0000497b00004a7b00004b7b00004c7b00004d7b00004e7b00004f7b0000507b0000517b0000527b0000537b0000547b0000557b0000567b0000577b0000587b0000597b00005a7b00005b7b00005c7b00005d7b00005e7b00005f7b0000607b0000617b0000627b0000637b0000647b0000657b0000667b0000677b0000687b0000697b00006a7b00006b7b00006c7b00006d7b00006e7b00006f7b0000707b0000717b0000727b0000737b0000747b0000757b0000767b0000777b0000787b0000797b00007a7b00007b7b00007c7b00007d7b00007e7b00007f7b0000807b0000817b0000827b0000837b0000847b0000857b0000867b0000877b0000887b0000897b00008a7b00008b7b00008c7b00008d7b00008e7b00008f7b0000907b0000917b0000927b0000937b0000947b0000957b0000967b0000977b0000987b0000997b00009a7b00009b7b00009c7b00009d7b00009e7b00009f7b0000a07b0000a17b0000a27b0000a37b0000a47b0000a57b0000a67b0000a77b0000a87b0000a97b0000aa7b0000ab7b0000ac7b0000ad7b0000ae7b0000af7b0000b07b0000b17b0000b27b0000b37b0000b47b0000b57b0000b67b0000b77b0000b87b0000b97b0000ba7b0000bb7b0000bc7b0000bd7b0000be7b0000bf7b0000c07b0000c17b0000c27b0000c37b0000c47b0000c57b0000c67b0000c77b0000c87b0000c97b0000ca7b0000cb7b0000cc7b0000cd7b0000ce7b0000cf7b0000d07b0000d17b0000d27b0000d37b0000d47b0000d57b0000d67b0000d77b0000d87b0000d97b0000da7b0000db7b0000dc7b0000dd7b0000de7b0000df7b0000e07b0000e17b0000e27b0000e37b0000e47b0000e57b0000e67b0000e77b0000e87b0000e97b0000ea7b0000eb7b0000ec7b0000ed7b0000ee7b0000ef7b0000f07b0000f17b0000f27b0000f37b0000f47b0000f57b0000f67b0000f77b0000f87b0000f97b0000fa7b0000fb7b0000fc7b0000fd7b0000fe7b0000ff7b0000007c0000017c0000027c0000037c0000047c0000057c0000067c0000077c0000087c0000097c00000a7c00000b7c00000c7c00000d7c00000e7c00000f7c0000107c0000117c0000127c0000137c0000147c0000157c0000167c0000177c0000187c0000197c00001a7c00001b7c00001c7c00001d7c00001e7c00001f7c0000207c0000217c0000227c0000237c0000247c0000257c0000267c0000277c0000287c0000297c00002a7c00002b7c00002c7c00002d7c00002e7c00002f7c0000307c0000317c0000327c0000337c0000347c0000357c0000367c0000377c0000387c0000397c00003a7c00003b7c00003c7c00003d7c00003e7c00003f7c0000407c0000417c0000427c0000437c0000447c0000457c0000467c0000477c0000487c0000497c00004a7c00004b7c00004c7c00004d7c00004e7c00004f7c0000507c0000517c0000527c0000537c0000547c0000557c0000567c0000577c0000587c0000597c00005a7c00005b7c00005c7c00005d7c00005e7c00005f7c0000607c0000617c0000627c0000637c0000647c0000657c0000667c0000677c0000687c0000697c00006a7c00006b7c00006c7c00006d7c00006e7c00006f7c0000707c0000717c0000727c0000737c0000747c0000757c0000767c0000777c0000787c0000797c00007a7c00007b7c00007c7c00007d7c00007e7c00007f7c0000807c0000817c0000827c0000837c0000847c0000857c0000867c0000877c0000887c0000897c00008a7c00008b7c00008c7c00008d7c00008e7c00008f7c0000907c0000917c0000927c0000937c0000947c0000957c0000967c0000977c0000987c0000997c00009a7c00009b7c00009c7c00009d7c00009e7c00009f7c0000a07c0000a17c0000a27c0000a37c0000a47c0000a57c0000a67c0000a77c0000a87c0000a97c0000aa7c0000ab7c0000ac7c0000ad7c0000ae7c0000af7c0000b07c0000b17c0000b27c0000b37c0000b47c0000b57c0000b67c0000b77c0000b87c0000b97c0000ba7c0000bb7c0000bc7c0000bd7c0000be7c0000bf7c0000c07c0000c17c0000c27c0000c37c0000c47c0000c57c0000c67c0000c77c0000c87c0000c97c0000ca7c0000cb7c0000cc7c0000cd7c0000ce7c0000cf7c0000d07c0000d17c0000d27c0000d37c0000d47c0000d57c0000d67c0000d77c0000d87c0000d97c0000da7c0000db7c0000dc7c0000dd7c0000de7c0000df7c0000e07c0000e17c0000e27c0000e37c0000e47c0000e57c0000e67c0000e77c0000e87c0000e97c0000ea7c0000eb7c0000ec7c0000ed7c0000ee7c0000ef7c0000f07c0000f17c0000f27c0000f37c0000f47c0000f57c0000f67c0000f77c0000f87c0000f97c0000fa7c0000fb7c0000fc7c0000fd7c0000fe7c0000ff7c0000007d0000017d0000027d0000037d0000047d0000057d0000067d0000077d0000087d0000097d00000a7d00000b7d00000c7d00000d7d00000e7d00000f7d0000107d0000117d0000127d0000137d0000147d0000157d0000167d0000177d0000187d0000197d00001a7d00001b7d00001c7d00001d7d00001e7d00001f7d0000207d0000217d0000227d0000237d0000247d0000257d0000267d0000277d0000287d0000297d00002a7d00002b7d00002c7d00002d7d00002e7d00002f7d0000307d0000317d0000327d0000337d0000347d0000357d0000367d0000377d0000387d0000397d00003a7d00003b7d00003c7d00003d7d00003e7d00003f7d0000407d0000417d0000427d0000437d0000447d0000457d0000467d0000477d0000487d0000497d00004a7d00004b7d00004c7d00004d7d00004e7d00004f7d0000507d0000517d0000527d0000537d0000547d0000557d0000567d0000577d0000587d0000597d00005a7d00005b7d00005c7d00005d7d00005e7d00005f7d0000607d0000617d0000627d0000637d0000647d0000657d0000667d0000677d0000687d0000697d00006a7d00006b7d00006c7d00006d7d00006e7d00006f7d0000707d0000717d0000727d0000737d0000747d0000757d0000767d0000777d0000787d0000797d00007a7d00007b7d00007c7d00007d7d00007e7d00007f7d0000807d0000817d0000827d0000837d0000847d0000857d0000867d0000877d0000887d0000897d00008a7d00008b7d00008c7d00008d7d00008e7d00008f7d0000907d0000917d0000927d0000937d0000947d0000957d0000967d0000977d0000987d0000997d00009a7d00009b7d00009c7d00009d7d00009e7d00009f7d0000a07d0000a17d0000a27d0000a37d0000a47d0000a57d0000a67d0000a77d0000a87d0000a97d0000aa7d0000ab7d0000ac7d0000ad7d0000ae7d0000af7d0000b07d0000b17d0000b27d0000b37d0000b47d0000b57d0000b67d0000b77d0000b87d0000b97d0000ba7d0000bb7d0000bc7d0000bd7d0000be7d0000bf7d0000c07d0000c17d0000c27d0000c37d0000c47d0000c57d0000c67d0000c77d0000c87d0000c97d0000ca7d0000cb7d0000cc7d0000cd7d0000ce7d0000cf7d0000d07d0000d17d0000d27d0000d37d0000d47d0000d57d0000d67d0000d77d0000d87d0000d97d0000da7d0000db7d0000dc7d0000dd7d0000de7d0000df7d0000e07d0000e17d0000e27d0000e37d0000e47d0000e57d0000e67d0000e77d0000e87d0000e97d0000ea7d0000eb7d0000ec7d0000ed7d0000ee7d0000ef7d0000f07d0000f17d0000f27d0000f37d0000f47d0000f57d0000f67d0000f77d0000f87d0000f97d0000fa7d0000fb7d0000fc7d0000fd7d0000fe7d0000ff7d0000007e0000017e0000027e0000037e0000047e0000057e0000067e0000077e0000087e0000097e00000a7e00000b7e00000c7e00000d7e00000e7e00000f7e0000107e0000117e0000127e0000137e0000147e0000157e0000167e0000177e0000187e0000197e00001a7e00001b7e00001c7e00001d7e00001e7e00001f7e0000207e0000217e0000227e0000237e0000247e0000257e0000267e0000277e0000287e0000297e00002a7e00002b7e00002c7e00002d7e00002e7e00002f7e0000307e0000317e0000327e0000337e0000347e0000357e0000367e0000377e0000387e0000397e00003a7e00003b7e00003c7e00003d7e00003e7e00003f7e0000407e0000417e0000427e0000437e0000447e0000457e0000467e0000477e0000487e0000497e00004a7e00004b7e00004c7e00004d7e00004e7e00004f7e0000507e0000517e0000527e0000537e0000547e0000557e0000567e0000577e0000587e0000597e00005a7e00005b7e00005c7e00005d7e00005e7e00005f7e0000607e0000617e0000627e0000637e0000647e0000657e0000667e0000677e0000687e0000697e00006a7e00006b7e00006c7e00006d7e00006e7e00006f7e0000707e0000717e0000727e0000737e0000747e0000757e0000767e0000777e0000787e0000797e00007a7e00007b7e00007c7e00007d7e00007e7e00007f7e0000807e0000817e0000827e0000837e0000847e0000857e0000867e0000877e0000887e0000897e00008a7e00008b7e00008c7e00008d7e00008e7e00008f7e0000907e0000917e0000927e0000937e0000947e0000957e0000967e0000977e0000987e0000997e00009a7e00009b7e00009c7e00009d7e00009e7e00009f7e0000a07e0000a17e0000a27e0000a37e0000a47e0000a57e0000a67e0000a77e0000a87e0000a97e0000aa7e0000ab7e0000ac7e0000ad7e0000ae7e0000af7e0000b07e0000b17e0000b27e0000b37e0000b47e0000b57e0000b67e0000b77e0000b87e0000b97e0000ba7e0000bb7e0000bc7e0000bd7e0000be7e0000bf7e0000c07e0000c17e0000c27e0000c37e0000c47e0000c57e0000c67e0000c77e0000c87e0000c97e0000ca7e0000cb7e0000cc7e0000cd7e0000ce7e0000cf7e0000d07e0000d17e0000d27e0000d37e0000d47e0000d57e0000d67e0000d77e0000d87e0000d97e0000da7e0000db7e0000dc7e0000dd7e0000de7e0000df7e0000e07e0000e17e0000e27e0000e37e0000e47e0000e57e0000e67e0000e77e0000e87e0000e97e0000ea7e0000eb7e0000ec7e0000ed7e0000ee7e0000ef7e0000f07e0000f17e0000f27e0000f37e0000f47e0000f57e0000f67e0000f77e0000f87e0000f97e0000fa7e0000fb7e0000fc7e0000fd7e0000fe7e0000ff7e0000007f0000017f0000027f0000037f0000047f0000057f0000067f0000077f0000087f0000097f00000a7f00000b7f00000c7f00000d7f00000e7f00000f7f0000107f0000117f0000127f0000137f0000147f0000157f0000167f0000177f0000187f0000197f00001a7f00001b7f00001c7f00001d7f00001e7f00001f7f0000207f0000217f0000227f0000237f0000247f0000257f0000267f0000277f0000287f0000297f00002a7f00002b7f00002c7f00002d7f00002e7f00002f7f0000307f0000317f0000327f0000337f0000347f0000357f0000367f0000377f0000387f0000397f00003a7f00003b7f00003c7f00003d7f00003e7f00003f7f0000407f0000417f0000427f0000437f0000447f0000457f0000467f0000477f0000487f0000497f00004a7f00004b7f00004c7f00004d7f00004e7f00004f7f0000507f0000517f0000527f0000537f0000547f0000557f0000567f0000577f0000587f0000597f00005a7f00005b7f00005c7f00005d7f00005e7f00005f7f0000607f0000617f0000627f0000637f0000647f0000657f0000667f0000677f0000687f0000697f00006a7f00006b7f00006c7f00006d7f00006e7f00006f7f0000707f0000717f0000727f0000737f0000747f0000757f0000767f0000777f0000787f0000797f00007a7f00007b7f00007c7f00007d7f00007e7f00007f7f0000807f0000817f0000827f0000837f0000847f0000857f0000867f0000877f0000887f0000897f00008a7f00008b7f00008c7f00008d7f00008e7f00008f7f0000907f0000917f0000927f0000937f0000947f0000957f0000967f0000977f0000987f0000997f00009a7f00009b7f00009c7f00009d7f00009e7f00009f7f0000a07f0000a17f0000a27f0000a37f0000a47f0000a57f0000a67f0000a77f0000a87f0000a97f0000aa7f0000ab7f0000ac7f0000ad7f0000ae7f0000af7f0000b07f0000b17f0000b27f0000b37f0000b47f0000b57f0000b67f0000b77f0000b87f0000b97f0000ba7f0000bb7f0000bc7f0000bd7f0000be7f0000bf7f0000c07f0000c17f0000c27f0000c37f0000c47f0000c57f0000c67f0000c77f0000c87f0000c97f0000ca7f0000cb7f0000cc7f0000cd7f0000ce7f0000cf7f0000d07f0000d17f0000d27f0000d37f0000d47f0000d57f0000d67f0000d77f0000d87f0000d97f0000da7f0000db7f0000dc7f0000dd7f0000de7f0000df7f0000e07f0000e17f0000e27f0000e37f0000e47f0000e57f0000e67f0000e77f0000e87f0000e97f0000ea7f0000eb7f0000ec7f0000ed7f0000ee7f0000ef7f0000f07f0000f17f0000f27f0000f37f0000f47f0000f57f0000f67f0000f77f0000f87f0000f97f0000fa7f0000fb7f0000fc7f0000fd7f0000fe7f0000ff7f0000008000000180000002800000038000000480000005800000068000000780000008800000098000000a8000000b8000000c8000000d8000000e8000000f800000108000001180000012800000138000001480000015800000168000001780000018800000198000001a8000001b8000001c8000001d8000001e8000001f800000208000002180000022800000238000002480000025800000268000002780000028800000298000002a8000002b8000002c8000002d8000002e8000002f800000308000003180000032800000338000003480000035800000368000003780000038800000398000003a8000003b8000003c8000003d8000003e8000003f800000408000004180000042800000438000004480000045800000468000004780000048800000498000004a8000004b8000004c8000004d8000004e8000004f800000508000005180000052800000538000005480000055800000568000005780000058800000598000005a8000005b8000005c8000005d8000005e8000005f800000608000006180000062800000638000006480000065800000668000006780000068800000698000006a8000006b8000006c8000006d8000006e8000006f800000708000007180000072800000738000007480000075800000768000007780000078800000798000007a8000007b8000007c8000007d8000007e8000007f800000808000008180000082800000838000008480000085800000868000008780000088800000898000008a8000008b8000008c8000008d8000008e8000008f800000908000009180000092800000938000009480000095800000968000009780000098800000998000009a8000009b8000009c8000009d8000009e8000009f800000a0800000a1800000a2800000a3800000a4800000a5800000a6800000a7800000a8800000a9800000aa800000ab800000ac800000ad800000ae800000af800000b0800000b1800000b2800000b3800000b4800000b5800000b6800000b7800000b8800000b9800000ba800000bb800000bc800000bd800000be800000bf800000c0800000c1800000c2800000c3800000c4800000c5800000c6800000c7800000c8800000c9800000ca800000cb800000cc800000cd800000ce800000cf800000d0800000d1800000d2800000d3800000d4800000d5800000d6800000d7800000d8800000d9800000da800000db800000dc800000dd800000de800000df800000e0800000e1800000e2800000e3800000e4800000e5800000e6800000e7800000e8800000e9800000ea800000eb800000ec800000ed800000ee800000ef800000f0800000f1800000f2800000f3800000f4800000f5800000f6800000f7800000f8800000f9800000fa800000fb800000fc800000fd800000fe800000ff800000008100000181000002810000038100000481000005810000068100000781000008810000098100000a8100000b8100000c8100000d8100000e8100000f810000108100001181000012810000138100001481000015810000168100001781000018810000198100001a8100001b8100001c8100001d8100001e8100001f810000208100002181000022810000238100002481000025810000268100002781000028810000298100002a8100002b8100002c8100002d8100002e8100002f810000308100003181000032810000338100003481000035810000368100003781000038810000398100003a8100003b8100003c8100003d8100003e8100003f810000408100004181000042810000438100004481000045810000468100004781000048810000498100004a8100004b8100004c8100004d8100004e8100004f810000508100005181000052810000538100005481000055810000568100005781000058810000598100005a8100005b8100005c8100005d8100005e8100005f810000608100006181000062810000638100006481000065810000668100006781000068810000698100006a8100006b8100006c8100006d8100006e8100006f810000708100007181000072810000738100007481000075810000768100007781000078810000798100007a8100007b8100007c8100007d8100007e8100007f810000808100008181000082810000838100008481000085810000868100008781000088810000898100008a8100008b8100008c8100008d8100008e8100008f810000908100009181000092810000938100009481000095810000968100009781000098810000998100009a8100009b8100009c8100009d8100009e8100009f810000a0810000a1810000a2810000a3810000a4810000a5810000a6810000a7810000a8810000a9810000aa810000ab810000ac810000ad810000ae810000af810000b0810000b1810000b2810000b3810000b4810000b5810000b6810000b7810000b8810000b9810000ba810000bb810000bc810000bd810000be810000bf810000c0810000c1810000c2810000c3810000c4810000c5810000c6810000c7810000c8810000c9810000ca810000cb810000cc810000cd810000ce810000cf810000d0810000d1810000d2810000d3810000d4810000d5810000d6810000d7810000d8810000d9810000da810000db810000dc810000dd810000de810000df810000e0810000e1810000e2810000e3810000e4810000e5810000e6810000e7810000e8810000e9810000ea810000eb810000ec810000ed810000ee810000ef810000f0810000f1810000f2810000f3810000f4810000f5810000f6810000f7810000f8810000f9810000fa810000fb810000fc810000fd810000fe810000ff810000008200000182000002820000038200000482000005820000068200000782000008820000098200000a8200000b8200000c8200000d8200000e8200000f820000108200001182000012820000138200001482000015820000168200001782000018820000198200001a8200001b8200001c8200001d8200001e8200001f820000208200002182000022820000238200002482000025820000268200002782000028820000298200002a8200002b8200002c8200002d8200002e8200002f820000308200003182000032820000338200003482000035820000368200003782000038820000398200003a8200003b8200003c8200003d8200003e8200003f820000408200004182000042820000438200004482000045820000468200004782000048820000498200004a8200004b8200004c8200004d8200004e8200004f820000508200005182000052820000538200005482000055820000568200005782000058820000598200005a8200005b8200005c8200005d8200005e8200005f820000608200006182000062820000638200006482000065820000668200006782000068820000698200006a8200006b8200006c8200006d8200006e8200006f820000708200007182000072820000738200007482000075820000768200007782000078820000798200007a8200007b8200007c8200007d8200007e8200007f820000808200008182000082820000838200008482000085820000868200008782000088820000898200008a8200008b8200008c8200008d8200008e8200008f820000908200009182000092820000938200009482000095820000968200009782000098820000998200009a8200009b8200009c8200009d8200009e8200009f820000a0820000a1820000a2820000a3820000a4820000a5820000a6820000a7820000a8820000a9820000aa820000ab820000ac820000ad820000ae820000af820000b0820000b1820000b2820000b3820000b4820000b5820000b6820000b7820000b8820000b9820000ba820000bb820000bc820000bd820000be820000bf820000c0820000c1820000c2820000c3820000c4820000c5820000c6820000c7820000c8820000c9820000ca820000cb820000cc820000cd820000ce820000cf820000d0820000d1820000d2820000d3820000d4820000d5820000d6820000d7820000d8820000d9820000da820000db820000dc820000dd820000de820000df820000e0820000e1820000e2820000e3820000e4820000e5820000e6820000e7820000e8820000e9820000ea820000eb820000ec820000ed820000ee820000ef820000f0820000f1820000f2820000f3820000f4820000f5820000f6820000f7820000f8820000f9820000fa820000fb820000fc820000fd820000fe820000ff820000008300000183000002830000038300000483000005830000068300000783000008830000098300000a8300000b8300000c8300000d8300000e8300000f830000108300001183000012830000138300001483000015830000168300001783000018830000198300001a8300001b8300001c8300001d8300001e8300001f830000208300002183000022830000238300002483000025830000268300002783000028830000298300002a8300002b8300002c8300002d8300002e8300002f830000308300003183000032830000338300003483000035830000368300003783000038830000398300003a8300003b8300003c8300003d8300003e8300003f830000408300004183000042830000438300004483000045830000468300004783000048830000498300004a8300004b8300004c8300004d8300004e8300004f830000508300005183000052830000538300005483000055830000568300005783000058830000598300005a8300005b8300005c8300005d8300005e8300005f830000608300006183000062830000638300006483000065830000668300006783000068830000698300006a8300006b8300006c8300006d8300006e8300006f830000708300007183000072830000738300007483000075830000768300007783000078830000798300007a8300007b8300007c8300007d8300007e8300007f830000808300008183000082830000838300008483000085830000868300008783000088830000898300008a8300008b8300008c8300008d8300008e8300008f830000908300009183000092830000938300009483000095830000968300009783000098830000998300009a8300009b8300009c8300009d8300009e8300009f830000a0830000a1830000a2830000a3830000a4830000a5830000a6830000a7830000a8830000a9830000aa830000ab830000ac830000ad830000ae830000af830000b0830000b1830000b2830000b3830000b4830000b5830000b6830000b7830000b8830000b9830000ba830000bb830000bc830000bd830000be830000bf830000c0830000c1830000c2830000c3830000c4830000c5830000c6830000c7830000c8830000c9830000ca830000cb830000cc830000cd830000ce830000cf830000d0830000d1830000d2830000d3830000d4830000d5830000d6830000d7830000d8830000d9830000da830000db830000dc830000dd830000de830000df830000e0830000e1830000e2830000e3830000e4830000e5830000e6830000e7830000e8830000e9830000ea830000eb830000ec830000ed830000ee830000ef830000f0830000f1830000f2830000f3830000f4830000f5830000f6830000f7830000f8830000f9830000fa830000fb830000fc830000fd830000fe830000ff830000008400000184000002840000038400000484000005840000068400000784000008840000098400000a8400000b8400000c8400000d8400000e8400000f840000108400001184000012840000138400001484000015840000168400001784000018840000198400001a8400001b8400001c8400001d8400001e8400001f840000208400002184000022840000238400002484000025840000268400002784000028840000298400002a8400002b8400002c8400002d8400002e8400002f840000308400003184000032840000338400003484000035840000368400003784000038840000398400003a8400003b8400003c8400003d8400003e8400003f840000408400004184000042840000438400004484000045840000468400004784000048840000498400004a8400004b8400004c8400004d8400004e8400004f840000508400005184000052840000538400005484000055840000568400005784000058840000598400005a8400005b8400005c8400005d8400005e8400005f840000608400006184000062840000638400006484000065840000668400006784000068840000698400006a8400006b8400006c8400006d8400006e8400006f840000708400007184000072840000738400007484000075840000768400007784000078840000798400007a8400007b8400007c8400007d8400007e8400007f840000808400008184000082840000838400008484000085840000868400008784000088840000898400008a8400008b8400008c8400008d8400008e8400008f840000908400009184000092840000938400009484000095840000968400009784000098840000998400009a8400009b8400009c8400009d8400009e8400009f840000a0840000a1840000a2840000a3840000a4840000a5840000a6840000a7840000a8840000a9840000aa840000ab840000ac840000ad840000ae840000af840000b0840000b1840000b2840000b3840000b4840000b5840000b6840000b7840000b8840000b9840000ba840000bb840000bc840000bd840000be840000bf840000c0840000c1840000c2840000c3840000c4840000c5840000c6840000c7840000c8840000c9840000ca840000cb840000cc840000cd840000ce840000cf840000d0840000d1840000d2840000d3840000d4840000d5840000d6840000d7840000d8840000d9840000da840000db840000dc840000dd840000de840000df840000e0840000e1840000e2840000e3840000e4840000e5840000e6840000e7840000e8840000e9840000ea840000eb840000ec840000ed840000ee840000ef840000f0840000f1840000f2840000f3840000f4840000f5840000f6840000f7840000f8840000f9840000fa840000fb840000fc840000fd840000fe840000ff840000008500000185000002850000038500000485000005850000068500000785000008850000098500000a8500000b8500000c8500000d8500000e8500000f850000108500001185000012850000138500001485000015850000168500001785000018850000198500001a8500001b8500001c8500001d8500001e8500001f850000208500002185000022850000238500002485000025850000268500002785000028850000298500002a8500002b8500002c8500002d8500002e8500002f850000308500003185000032850000338500003485000035850000368500003785000038850000398500003a8500003b8500003c8500003d8500003e8500003f850000408500004185000042850000438500004485000045850000468500004785000048850000498500004a8500004b8500004c8500004d8500004e8500004f850000508500005185000052850000538500005485000055850000568500005785000058850000598500005a8500005b8500005c8500005d8500005e8500005f850000608500006185000062850000638500006485000065850000668500006785000068850000698500006a8500006b8500006c8500006d8500006e8500006f850000708500007185000072850000738500007485000075850000768500007785000078850000798500007a8500007b8500007c8500007d8500007e8500007f850000808500008185000082850000838500008485000085850000868500008785000088850000898500008a8500008b8500008c8500008d8500008e8500008f850000908500009185000092850000938500009485000095850000968500009785000098850000998500009a8500009b8500009c8500009d8500009e8500009f850000a0850000a1850000a2850000a3850000a4850000a5850000a6850000a7850000a8850000a9850000aa850000ab850000ac850000ad850000ae850000af850000b0850000b1850000b2850000b3850000b4850000b5850000b6850000b7850000b8850000b9850000ba850000bb850000bc850000bd850000be850000bf850000c0850000c1850000c2850000c3850000c4850000c5850000c6850000c7850000c8850000c9850000ca850000cb850000cc850000cd850000ce850000cf850000d0850000d1850000d2850000d3850000d4850000d5850000d6850000d7850000d8850000d9850000da850000db850000dc850000dd850000de850000df850000e0850000e1850000e2850000e3850000e4850000e5850000e6850000e7850000e8850000e9850000ea850000eb850000ec850000ed850000ee850000ef850000f0850000f1850000f2850000f3850000f4850000f5850000f6850000f7850000f8850000f9850000fa850000fb850000fc850000fd850000fe850000ff850000008600000186000002860000038600000486000005860000068600000786000008860000098600000a8600000b8600000c8600000d8600000e8600000f860000108600001186000012860000138600001486000015860000168600001786000018860000198600001a8600001b8600001c8600001d8600001e8600001f860000208600002186000022860000238600002486000025860000268600002786000028860000298600002a8600002b8600002c8600002d8600002e8600002f860000308600003186000032860000338600003486000035860000368600003786000038860000398600003a8600003b8600003c8600003d8600003e8600003f860000408600004186000042860000438600004486000045860000468600004786000048860000498600004a8600004b8600004c8600004d8600004e8600004f860000508600005186000052860000538600005486000055860000568600005786000058860000598600005a8600005b8600005c8600005d8600005e8600005f860000608600006186000062860000638600006486000065860000668600006786000068860000698600006a8600006b8600006c8600006d8600006e8600006f860000708600007186000072860000738600007486000075860000768600007786000078860000798600007a8600007b8600007c8600007d8600007e8600007f860000808600008186000082860000838600008486000085860000868600008786000088860000898600008a8600008b8600008c8600008d8600008e8600008f860000908600009186000092860000938600009486000095860000968600009786000098860000998600009a8600009b8600009c8600009d8600009e8600009f860000a0860000a1860000a2860000a3860000a4860000a5860000a6860000a7860000a8860000a9860000aa860000ab860000ac860000ad860000ae860000af860000b0860000b1860000b2860000b3860000b4860000b5860000b6860000b7860000b8860000b9860000ba860000bb860000bc860000bd860000be860000bf860000c0860000c1860000c2860000c3860000c4860000c5860000c6860000c7860000c8860000c9860000ca860000cb860000cc860000cd860000ce860000cf860000d0860000d1860000d2860000d3860000d4860000d5860000d6860000d7860000d8860000d9860000da860000db860000dc860000dd860000de860000df860000e0860000e1860000e2860000e3860000e4860000e5860000e6860000e7860000e8860000e9860000ea860000eb860000ec860000ed860000ee860000ef860000f0860000f1860000f2860000f3860000f4860000f5860000f6860000f7860000f8860000f9860000fa860000fb860000fc860000fd860000fe860000ff860000008700000187000002870000038700000487000005870000068700000787000008870000098700000a8700000b8700000c8700000d8700000e8700000f870000108700001187000012870000138700001487000015870000168700001787000018870000198700001a8700001b8700001c8700001d8700001e8700001f870000208700002187000022870000238700002487000025870000268700002787000028870000298700002a8700002b8700002c8700002d8700002e8700002f870000308700003187000032870000338700003487000035870000368700003787000038870000398700003a8700003b8700003c8700003d8700003e8700003f870000408700004187000042870000438700004487000045870000468700004787000048870000498700004a8700004b8700004c8700004d8700004e8700004f870000508700005187000052870000538700005487000055870000568700005787000058870000598700005a8700005b8700005c8700005d8700005e8700005f870000608700006187000062870000638700006487000065870000668700006787000068870000698700006a8700006b8700006c8700006d8700006e8700006f870000708700007187000072870000738700007487000075870000768700007787000078870000798700007a8700007b8700007c8700007d8700007e8700007f870000808700008187000082870000838700008487000085870000868700008787000088870000898700008a8700008b8700008c8700008d8700008e8700008f870000908700009187000092870000938700009487000095870000968700009787000098870000998700009a8700009b8700009c8700009d8700009e8700009f870000a0870000a1870000a2870000a3870000a4870000a5870000a6870000a7870000a8870000a9870000aa870000ab870000ac870000ad870000ae870000af870000b0870000b1870000b2870000b3870000b4870000b5870000b6870000b7870000b8870000b9870000ba870000bb870000bc870000bd870000be870000bf870000c0870000c1870000c2870000c3870000c4870000c5870000c6870000c7870000c8870000c9870000ca870000cb870000cc870000cd870000ce870000cf870000d0870000d1870000d2870000d3870000d4870000d5870000d6870000d7870000d8870000d9870000da870000db870000dc870000dd870000de870000df870000e0870000e1870000e2870000e3870000e4870000e5870000e6870000e7870000e8870000e9870000ea870000eb870000ec870000ed870000ee870000ef870000f0870000f1870000f2870000f3870000f4870000f5870000f6870000f7870000f8870000f9870000fa870000fb870000fc870000fd870000fe870000ff870000008800000188000002880000038800000488000005880000068800000788000008880000098800000a8800000b8800000c8800000d8800000e8800000f880000108800001188000012880000138800001488000015880000168800001788000018880000198800001a8800001b8800001c8800001d8800001e8800001f880000208800002188000022880000238800002488000025880000268800002788000028880000298800002a8800002b8800002c8800002d8800002e8800002f880000308800003188000032880000338800003488000035880000368800003788000038880000398800003a8800003b8800003c8800003d8800003e8800003f880000408800004188000042880000438800004488000045880000468800004788000048880000498800004a8800004b8800004c8800004d8800004e8800004f880000508800005188000052880000538800005488000055880000568800005788000058880000598800005a8800005b8800005c8800005d8800005e8800005f880000608800006188000062880000638800006488000065880000668800006788000068880000698800006a8800006b8800006c8800006d8800006e8800006f880000708800007188000072880000738800007488000075880000768800007788000078880000798800007a8800007b8800007c8800007d8800007e8800007f880000808800008188000082880000838800008488000085880000868800008788000088880000898800008a8800008b8800008c8800008d8800008e8800008f880000908800009188000092880000938800009488000095880000968800009788000098880000998800009a8800009b8800009c8800009d8800009e8800009f880000a0880000a1880000a2880000a3880000a4880000a5880000a6880000a7880000a8880000a9880000aa880000ab880000ac880000ad880000ae880000af880000b0880000b1880000b2880000b3880000b4880000b5880000b6880000b7880000b8880000b9880000ba880000bb880000bc880000bd880000be880000bf880000c0880000c1880000c2880000c3880000c4880000c5880000c6880000c7880000c8880000c9880000ca880000cb880000cc880000cd880000ce880000cf880000d0880000d1880000d2880000d3880000d4880000d5880000d6880000d7880000d8880000d9880000da880000db880000dc880000dd880000de880000df880000e0880000e1880000e2880000e3880000e4880000e5880000e6880000e7880000e8880000e9880000ea880000eb880000ec880000ed880000ee880000ef880000f0880000f1880000f2880000f3880000f4880000f5880000f6880000f7880000f8880000f9880000fa880000fb880000fc880000fd880000fe880000ff880000008900000189000002890000038900000489000005890000068900000789000008890000098900000a8900000b8900000c8900000d8900000e8900000f890000108900001189000012890000138900001489000015890000168900001789000018890000198900001a8900001b8900001c8900001d8900001e8900001f890000208900002189000022890000238900002489000025890000268900002789000028890000298900002a8900002b8900002c8900002d8900002e8900002f890000308900003189000032890000338900003489000035890000368900003789000038890000398900003a8900003b8900003c8900003d8900003e8900003f890000408900004189000042890000438900004489000045890000468900004789000048890000498900004a8900004b8900004c8900004d8900004e8900004f890000508900005189000052890000538900005489000055890000568900005789000058890000598900005a8900005b8900005c8900005d8900005e8900005f890000608900006189000062890000638900006489000065890000668900006789000068890000698900006a8900006b8900006c8900006d8900006e8900006f890000708900007189000072890000738900007489000075890000768900007789000078890000798900007a8900007b8900007c8900007d8900007e8900007f890000808900008189000082890000838900008489000085890000868900008789000088890000898900008a8900008b8900008c8900008d8900008e8900008f890000908900009189000092890000938900009489000095890000968900009789000098890000998900009a8900009b8900009c8900009d8900009e8900009f890000a0890000a1890000a2890000a3890000a4890000a5890000a6890000a7890000a8890000a9890000aa890000ab890000ac890000ad890000ae890000af890000b0890000b1890000b2890000b3890000b4890000b5890000b6890000b7890000b8890000b9890000ba890000bb890000bc890000bd890000be890000bf890000c0890000c1890000c2890000c3890000c4890000c5890000c6890000c7890000c8890000c9890000ca890000cb890000cc890000cd890000ce890000cf890000d0890000d1890000d2890000d3890000d4890000d5890000d6890000d7890000d8890000d9890000da890000db890000dc890000dd890000de890000df890000e0890000e1890000e2890000e3890000e4890000e5890000e6890000e7890000e8890000e9890000ea890000eb890000ec890000ed890000ee890000ef890000f0890000f1890000f2890000f3890000f4890000f5890000f6890000f7890000f8890000f9890000fa890000fb890000fc890000fd890000fe890000ff890000008a0000018a0000028a0000038a0000048a0000058a0000068a0000078a0000088a0000098a00000a8a00000b8a00000c8a00000d8a00000e8a00000f8a0000108a0000118a0000128a0000138a0000148a0000158a0000168a0000178a0000188a0000198a00001a8a00001b8a00001c8a00001d8a00001e8a00001f8a0000208a0000218a0000228a0000238a0000248a0000258a0000268a0000278a0000288a0000298a00002a8a00002b8a00002c8a00002d8a00002e8a00002f8a0000308a0000318a0000328a0000338a0000348a0000358a0000368a0000378a0000388a0000398a00003a8a00003b8a00003c8a00003d8a00003e8a00003f8a0000408a0000418a0000428a0000438a0000448a0000458a0000468a0000478a0000488a0000498a00004a8a00004b8a00004c8a00004d8a00004e8a00004f8a0000508a0000518a0000528a0000538a0000548a0000558a0000568a0000578a0000588a0000598a00005a8a00005b8a00005c8a00005d8a00005e8a00005f8a0000608a0000618a0000628a0000638a0000648a0000658a0000668a0000678a0000688a0000698a00006a8a00006b8a00006c8a00006d8a00006e8a00006f8a0000708a0000718a0000728a0000738a0000748a0000758a0000768a0000778a0000788a0000798a00007a8a00007b8a00007c8a00007d8a00007e8a00007f8a0000808a0000818a0000828a0000838a0000848a0000858a0000868a0000878a0000888a0000898a00008a8a00008b8a00008c8a00008d8a00008e8a00008f8a0000908a0000918a0000928a0000938a0000948a0000958a0000968a0000978a0000988a0000998a00009a8a00009b8a00009c8a00009d8a00009e8a00009f8a0000a08a0000a18a0000a28a0000a38a0000a48a0000a58a0000a68a0000a78a0000a88a0000a98a0000aa8a0000ab8a0000ac8a0000ad8a0000ae8a0000af8a0000b08a0000b18a0000b28a0000b38a0000b48a0000b58a0000b68a0000b78a0000b88a0000b98a0000ba8a0000bb8a0000bc8a0000bd8a0000be8a0000bf8a0000c08a0000c18a0000c28a0000c38a0000c48a0000c58a0000c68a0000c78a0000c88a0000c98a0000ca8a0000cb8a0000cc8a0000cd8a0000ce8a0000cf8a0000d08a0000d18a0000d28a0000d38a0000d48a0000d58a0000d68a0000d78a0000d88a0000d98a0000da8a0000db8a0000dc8a0000dd8a0000de8a0000df8a0000e08a0000e18a0000e28a0000e38a0000e48a0000e58a0000e68a0000e78a0000e88a0000e98a0000ea8a0000eb8a0000ec8a0000ed8a0000ee8a0000ef8a0000f08a0000f18a0000f28a0000f38a0000f48a0000f58a0000f68a0000f78a0000f88a0000f98a0000fa8a0000fb8a0000fc8a0000fd8a0000fe8a0000ff8a0000008b0000018b0000028b0000038b0000048b0000058b0000068b0000078b0000088b0000098b00000a8b00000b8b00000c8b00000d8b00000e8b00000f8b0000108b0000118b0000128b0000138b0000148b0000158b0000168b0000178b0000188b0000198b00001a8b00001b8b00001c8b00001d8b00001e8b00001f8b0000208b0000218b0000228b0000238b0000248b0000258b0000268b0000278b0000288b0000298b00002a8b00002b8b00002c8b00002d8b00002e8b00002f8b0000308b0000318b0000328b0000338b0000348b0000358b0000368b0000378b0000388b0000398b00003a8b00003b8b00003c8b00003d8b00003e8b00003f8b0000408b0000418b0000428b0000438b0000448b0000458b0000468b0000478b0000488b0000498b00004a8b00004b8b00004c8b00004d8b00004e8b00004f8b0000508b0000518b0000528b0000538b0000548b0000558b0000568b0000578b0000588b0000598b00005a8b00005b8b00005c8b00005d8b00005e8b00005f8b0000608b0000618b0000628b0000638b0000648b0000658b0000668b0000678b0000688b0000698b00006a8b00006b8b00006c8b00006d8b00006e8b00006f8b0000708b0000718b0000728b0000738b0000748b0000758b0000768b0000778b0000788b0000798b00007a8b00007b8b00007c8b00007d8b00007e8b00007f8b0000808b0000818b0000828b0000838b0000848b0000858b0000868b0000878b0000888b0000898b00008a8b00008b8b00008c8b00008d8b00008e8b00008f8b0000908b0000918b0000928b0000938b0000948b0000958b0000968b0000978b0000988b0000998b00009a8b00009b8b00009c8b00009d8b00009e8b00009f8b0000a08b0000a18b0000a28b0000a38b0000a48b0000a58b0000a68b0000a78b0000a88b0000a98b0000aa8b0000ab8b0000ac8b0000ad8b0000ae8b0000af8b0000b08b0000b18b0000b28b0000b38b0000b48b0000b58b0000b68b0000b78b0000b88b0000b98b0000ba8b0000bb8b0000bc8b0000bd8b0000be8b0000bf8b0000c08b0000c18b0000c28b0000c38b0000c48b0000c58b0000c68b0000c78b0000c88b0000c98b0000ca8b0000cb8b0000cc8b0000cd8b0000ce8b0000cf8b0000d08b0000d18b0000d28b0000d38b0000d48b0000d58b0000d68b0000d78b0000d88b0000d98b0000da8b0000db8b0000dc8b0000dd8b0000de8b0000df8b0000e08b0000e18b0000e28b0000e38b0000e48b0000e58b0000e68b0000e78b0000e88b0000e98b0000ea8b0000eb8b0000ec8b0000ed8b0000ee8b0000ef8b0000f08b0000f18b0000f28b0000f38b0000f48b0000f58b0000f68b0000f78b0000f88b0000f98b0000fa8b0000fb8b0000fc8b0000fd8b0000fe8b0000ff8b0000008c0000018c0000028c0000038c0000048c0000058c0000068c0000078c0000088c0000098c00000a8c00000b8c00000c8c00000d8c00000e8c00000f8c0000108c0000118c0000128c0000138c0000148c0000158c0000168c0000178c0000188c0000198c00001a8c00001b8c00001c8c00001d8c00001e8c00001f8c0000208c0000218c0000228c0000238c0000248c0000258c0000268c0000278c0000288c0000298c00002a8c00002b8c00002c8c00002d8c00002e8c00002f8c0000308c0000318c0000328c0000338c0000348c0000358c0000368c0000378c0000388c0000398c00003a8c00003b8c00003c8c00003d8c00003e8c00003f8c0000408c0000418c0000428c0000438c0000448c0000458c0000468c0000478c0000488c0000498c00004a8c00004b8c00004c8c00004d8c00004e8c00004f8c0000508c0000518c0000528c0000538c0000548c0000558c0000568c0000578c0000588c0000598c00005a8c00005b8c00005c8c00005d8c00005e8c00005f8c0000608c0000618c0000628c0000638c0000648c0000658c0000668c0000678c0000688c0000698c00006a8c00006b8c00006c8c00006d8c00006e8c00006f8c0000708c0000718c0000728c0000738c0000748c0000758c0000768c0000778c0000788c0000798c00007a8c00007b8c00007c8c00007d8c00007e8c00007f8c0000808c0000818c0000828c0000838c0000848c0000858c0000868c0000878c0000888c0000898c00008a8c00008b8c00008c8c00008d8c00008e8c00008f8c0000908c0000918c0000928c0000938c0000948c0000958c0000968c0000978c0000988c0000998c00009a8c00009b8c00009c8c00009d8c00009e8c00009f8c0000a08c0000a18c0000a28c0000a38c0000a48c0000a58c0000a68c0000a78c0000a88c0000a98c0000aa8c0000ab8c0000ac8c0000ad8c0000ae8c0000af8c0000b08c0000b18c0000b28c0000b38c0000b48c0000b58c0000b68c0000b78c0000b88c0000b98c0000ba8c0000bb8c0000bc8c0000bd8c0000be8c0000bf8c0000c08c0000c18c0000c28c0000c38c0000c48c0000c58c0000c68c0000c78c0000c88c0000c98c0000ca8c0000cb8c0000cc8c0000cd8c0000ce8c0000cf8c0000d08c0000d18c0000d28c0000d38c0000d48c0000d58c0000d68c0000d78c0000d88c0000d98c0000da8c0000db8c0000dc8c0000dd8c0000de8c0000df8c0000e08c0000e18c0000e28c0000e38c0000e48c0000e58c0000e68c0000e78c0000e88c0000e98c0000ea8c0000eb8c0000ec8c0000ed8c0000ee8c0000ef8c0000f08c0000f18c0000f28c0000f38c0000f48c0000f58c0000f68c0000f78c0000f88c0000f98c0000fa8c0000fb8c0000fc8c0000fd8c0000fe8c0000ff8c0000008d0000018d0000028d0000038d0000048d0000058d0000068d0000078d0000088d0000098d00000a8d00000b8d00000c8d00000d8d00000e8d00000f8d0000108d0000118d0000128d0000138d0000148d0000158d0000168d0000178d0000188d0000198d00001a8d00001b8d00001c8d00001d8d00001e8d00001f8d0000208d0000218d0000228d0000238d0000248d0000258d0000268d0000278d0000288d0000298d00002a8d00002b8d00002c8d00002d8d00002e8d00002f8d0000308d0000318d0000328d0000338d0000348d0000358d0000368d0000378d0000388d0000398d00003a8d00003b8d00003c8d00003d8d00003e8d00003f8d0000408d0000418d0000428d0000438d0000448d0000458d0000468d0000478d0000488d0000498d00004a8d00004b8d00004c8d00004d8d00004e8d00004f8d0000508d0000518d0000528d0000538d0000548d0000558d0000568d0000578d0000588d0000598d00005a8d00005b8d00005c8d00005d8d00005e8d00005f8d0000608d0000618d0000628d0000638d0000648d0000658d0000668d0000678d0000688d0000698d00006a8d00006b8d00006c8d00006d8d00006e8d00006f8d0000708d0000718d0000728d0000738d0000748d0000758d0000768d0000778d0000788d0000798d00007a8d00007b8d00007c8d00007d8d00007e8d00007f8d0000808d0000818d0000828d0000838d0000848d0000858d0000868d0000878d0000888d0000898d00008a8d00008b8d00008c8d00008d8d00008e8d00008f8d0000908d0000918d0000928d0000938d0000948d0000958d0000968d0000978d0000988d0000998d00009a8d00009b8d00009c8d00009d8d00009e8d00009f8d0000a08d0000a18d0000a28d0000a38d0000a48d0000a58d0000a68d0000a78d0000a88d0000a98d0000aa8d0000ab8d0000ac8d0000ad8d0000ae8d0000af8d0000b08d0000b18d0000b28d0000b38d0000b48d0000b58d0000b68d0000b78d0000b88d0000b98d0000ba8d0000bb8d0000bc8d0000bd8d0000be8d0000bf8d0000c08d0000c18d0000c28d0000c38d0000c48d0000c58d0000c68d0000c78d0000c88d0000c98d0000ca8d0000cb8d0000cc8d0000cd8d0000ce8d0000cf8d0000d08d0000d18d0000d28d0000d38d0000d48d0000d58d0000d68d0000d78d0000d88d0000d98d0000da8d0000db8d0000dc8d0000dd8d0000de8d0000df8d0000e08d0000e18d0000e28d0000e38d0000e48d0000e58d0000e68d0000e78d0000e88d0000e98d0000ea8d0000eb8d0000ec8d0000ed8d0000ee8d0000ef8d0000f08d0000f18d0000f28d0000f38d0000f48d0000f58d0000f68d0000f78d0000f88d0000f98d0000fa8d0000fb8d0000fc8d0000fd8d0000fe8d0000ff8d0000008e0000018e0000028e0000038e0000048e0000058e0000068e0000078e0000088e0000098e00000a8e00000b8e00000c8e00000d8e00000e8e00000f8e0000108e0000118e0000128e0000138e0000148e0000158e0000168e0000178e0000188e0000198e00001a8e00001b8e00001c8e00001d8e00001e8e00001f8e0000208e0000218e0000228e0000238e0000248e0000258e0000268e0000278e0000288e0000298e00002a8e00002b8e00002c8e00002d8e00002e8e00002f8e0000308e0000318e0000328e0000338e0000348e0000358e0000368e0000378e0000388e0000398e00003a8e00003b8e00003c8e00003d8e00003e8e00003f8e0000408e0000418e0000428e0000438e0000448e0000458e0000468e0000478e0000488e0000498e00004a8e00004b8e00004c8e00004d8e00004e8e00004f8e0000508e0000518e0000528e0000538e0000548e0000558e0000568e0000578e0000588e0000598e00005a8e00005b8e00005c8e00005d8e00005e8e00005f8e0000608e0000618e0000628e0000638e0000648e0000658e0000668e0000678e0000688e0000698e00006a8e00006b8e00006c8e00006d8e00006e8e00006f8e0000708e0000718e0000728e0000738e0000748e0000758e0000768e0000778e0000788e0000798e00007a8e00007b8e00007c8e00007d8e00007e8e00007f8e0000808e0000818e0000828e0000838e0000848e0000858e0000868e0000878e0000888e0000898e00008a8e00008b8e00008c8e00008d8e00008e8e00008f8e0000908e0000918e0000928e0000938e0000948e0000958e0000968e0000978e0000988e0000998e00009a8e00009b8e00009c8e00009d8e00009e8e00009f8e0000a08e0000a18e0000a28e0000a38e0000a48e0000a58e0000a68e0000a78e0000a88e0000a98e0000aa8e0000ab8e0000ac8e0000ad8e0000ae8e0000af8e0000b08e0000b18e0000b28e0000b38e0000b48e0000b58e0000b68e0000b78e0000b88e0000b98e0000ba8e0000bb8e0000bc8e0000bd8e0000be8e0000bf8e0000c08e0000c18e0000c28e0000c38e0000c48e0000c58e0000c68e0000c78e0000c88e0000c98e0000ca8e0000cb8e0000cc8e0000cd8e0000ce8e0000cf8e0000d08e0000d18e0000d28e0000d38e0000d48e0000d58e0000d68e0000d78e0000d88e0000d98e0000da8e0000db8e0000dc8e0000dd8e0000de8e0000df8e0000e08e0000e18e0000e28e0000e38e0000e48e0000e58e0000e68e0000e78e0000e88e0000e98e0000ea8e0000eb8e0000ec8e0000ed8e0000ee8e0000ef8e0000f08e0000f18e0000f28e0000f38e0000f48e0000f58e0000f68e0000f78e0000f88e0000f98e0000fa8e0000fb8e0000fc8e0000fd8e0000fe8e0000ff8e0000008f0000018f0000028f0000038f0000048f0000058f0000068f0000078f0000088f0000098f00000a8f00000b8f00000c8f00000d8f00000e8f00000f8f0000108f0000118f0000128f0000138f0000148f0000158f0000168f0000178f0000188f0000198f00001a8f00001b8f00001c8f00001d8f00001e8f00001f8f0000208f0000218f0000228f0000238f0000248f0000258f0000268f0000278f0000288f0000298f00002a8f00002b8f00002c8f00002d8f00002e8f00002f8f0000308f0000318f0000328f0000338f0000348f0000358f0000368f0000378f0000388f0000398f00003a8f00003b8f00003c8f00003d8f00003e8f00003f8f0000408f0000418f0000428f0000438f0000448f0000458f0000468f0000478f0000488f0000498f00004a8f00004b8f00004c8f00004d8f00004e8f00004f8f0000508f0000518f0000528f0000538f0000548f0000558f0000568f0000578f0000588f0000598f00005a8f00005b8f00005c8f00005d8f00005e8f00005f8f0000608f0000618f0000628f0000638f0000648f0000658f0000668f0000678f0000688f0000698f00006a8f00006b8f00006c8f00006d8f00006e8f00006f8f0000708f0000718f0000728f0000738f0000748f0000758f0000768f0000778f0000788f0000798f00007a8f00007b8f00007c8f00007d8f00007e8f00007f8f0000808f0000818f0000828f0000838f0000848f0000858f0000868f0000878f0000888f0000898f00008a8f00008b8f00008c8f00008d8f00008e8f00008f8f0000908f0000918f0000928f0000938f0000948f0000958f0000968f0000978f0000988f0000998f00009a8f00009b8f00009c8f00009d8f00009e8f00009f8f0000a08f0000a18f0000a28f0000a38f0000a48f0000a58f0000a68f0000a78f0000a88f0000a98f0000aa8f0000ab8f0000ac8f0000ad8f0000ae8f0000af8f0000b08f0000b18f0000b28f0000b38f0000b48f0000b58f0000b68f0000b78f0000b88f0000b98f0000ba8f0000bb8f0000bc8f0000bd8f0000be8f0000bf8f0000c08f0000c18f0000c28f0000c38f0000c48f0000c58f0000c68f0000c78f0000c88f0000c98f0000ca8f0000cb8f0000cc8f0000cd8f0000ce8f0000cf8f0000d08f0000d18f0000d28f0000d38f0000d48f0000d58f0000d68f0000d78f0000d88f0000d98f0000da8f0000db8f0000dc8f0000dd8f0000de8f0000df8f0000e08f0000e18f0000e28f0000e38f0000e48f0000e58f0000e68f0000e78f0000e88f0000e98f0000ea8f0000eb8f0000ec8f0000ed8f0000ee8f0000ef8f0000f08f0000f18f0000f28f0000f38f0000f48f0000f58f0000f68f0000f78f0000f88f0000f98f0000fa8f0000fb8f0000fc8f0000fd8f0000fe8f0000ff8f0000009000000190000002900000039000000490000005900000069000000790000008900000099000000a9000000b9000000c9000000d9000000e9000000f900000109000001190000012900000139000001490000015900000169000001790000018900000199000001a9000001b9000001c9000001d9000001e9000001f900000209000002190000022900000239000002490000025900000269000002790000028900000299000002a9000002b9000002c9000002d9000002e9000002f900000309000003190000032900000339000003490000035900000369000003790000038900000399000003a9000003b9000003c9000003d9000003e9000003f900000409000004190000042900000439000004490000045900000469000004790000048900000499000004a9000004b9000004c9000004d9000004e9000004f900000509000005190000052900000539000005490000055900000569000005790000058900000599000005a9000005b9000005c9000005d9000005e9000005f900000609000006190000062900000639000006490000065900000669000006790000068900000699000006a9000006b9000006c9000006d9000006e9000006f900000709000007190000072900000739000007490000075900000769000007790000078900000799000007a9000007b9000007c9000007d9000007e9000007f900000809000008190000082900000839000008490000085900000869000008790000088900000899000008a9000008b9000008c9000008d9000008e9000008f900000909000009190000092900000939000009490000095900000969000009790000098900000999000009a9000009b9000009c9000009d9000009e9000009f900000a0900000a1900000a2900000a3900000a4900000a5900000a6900000a7900000a8900000a9900000aa900000ab900000ac900000ad900000ae900000af900000b0900000b1900000b2900000b3900000b4900000b5900000b6900000b7900000b8900000b9900000ba900000bb900000bc900000bd900000be900000bf900000c0900000c1900000c2900000c3900000c4900000c5900000c6900000c7900000c8900000c9900000ca900000cb900000cc900000cd900000ce900000cf900000d0900000d1900000d2900000d3900000d4900000d5900000d6900000d7900000d8900000d9900000da900000db900000dc900000dd900000de900000df900000e0900000e1900000e2900000e3900000e4900000e5900000e6900000e7900000e8900000e9900000ea900000eb900000ec900000ed900000ee900000ef900000f0900000f1900000f2900000f3900000f4900000f5900000f6900000f7900000f8900000f9900000fa900000fb900000fc900000fd900000fe900000ff900000009100000191000002910000039100000491000005910000069100000791000008910000099100000a9100000b9100000c9100000d9100000e9100000f910000109100001191000012910000139100001491000015910000169100001791000018910000199100001a9100001b9100001c9100001d9100001e9100001f910000209100002191000022910000239100002491000025910000269100002791000028910000299100002a9100002b9100002c9100002d9100002e9100002f910000309100003191000032910000339100003491000035910000369100003791000038910000399100003a9100003b9100003c9100003d9100003e9100003f910000409100004191000042910000439100004491000045910000469100004791000048910000499100004a9100004b9100004c9100004d9100004e9100004f910000509100005191000052910000539100005491000055910000569100005791000058910000599100005a9100005b9100005c9100005d9100005e9100005f910000609100006191000062910000639100006491000065910000669100006791000068910000699100006a9100006b9100006c9100006d9100006e9100006f910000709100007191000072910000739100007491000075910000769100007791000078910000799100007a9100007b9100007c9100007d9100007e9100007f910000809100008191000082910000839100008491000085910000869100008791000088910000899100008a9100008b9100008c9100008d9100008e9100008f910000909100009191000092910000939100009491000095910000969100009791000098910000999100009a9100009b9100009c9100009d9100009e9100009f910000a0910000a1910000a2910000a3910000a4910000a5910000a6910000a7910000a8910000a9910000aa910000ab910000ac910000ad910000ae910000af910000b0910000b1910000b2910000b3910000b4910000b5910000b6910000b7910000b8910000b9910000ba910000bb910000bc910000bd910000be910000bf910000c0910000c1910000c2910000c3910000c4910000c5910000c6910000c7910000c8910000c9910000ca910000cb910000cc910000cd910000ce910000cf910000d0910000d1910000d2910000d3910000d4910000d5910000d6910000d7910000d8910000d9910000da910000db910000dc910000dd910000de910000df910000e0910000e1910000e2910000e3910000e4910000e5910000e6910000e7910000e8910000e9910000ea910000eb910000ec910000ed910000ee910000ef910000f0910000f1910000f2910000f3910000f4910000f5910000f6910000f7910000f8910000f9910000fa910000fb910000fc910000fd910000fe910000ff910000009200000192000002920000039200000492000005920000069200000792000008920000099200000a9200000b9200000c9200000d9200000e9200000f920000109200001192000012920000139200001492000015920000169200001792000018920000199200001a9200001b9200001c9200001d9200001e9200001f920000209200002192000022920000239200002492000025920000269200002792000028920000299200002a9200002b9200002c9200002d9200002e9200002f920000309200003192000032920000339200003492000035920000369200003792000038920000399200003a9200003b9200003c9200003d9200003e9200003f920000409200004192000042920000439200004492000045920000469200004792000048920000499200004a9200004b9200004c9200004d9200004e9200004f920000509200005192000052920000539200005492000055920000569200005792000058920000599200005a9200005b9200005c9200005d9200005e9200005f920000609200006192000062920000639200006492000065920000669200006792000068920000699200006a9200006b9200006c9200006d9200006e9200006f920000709200007192000072920000739200007492000075920000769200007792000078920000799200007a9200007b9200007c9200007d9200007e9200007f920000809200008192000082920000839200008492000085920000869200008792000088920000899200008a9200008b9200008c9200008d9200008e9200008f920000909200009192000092920000939200009492000095920000969200009792000098920000999200009a9200009b9200009c9200009d9200009e9200009f920000a0920000a1920000a2920000a3920000a4920000a5920000a6920000a7920000a8920000a9920000aa920000ab920000ac920000ad920000ae920000af920000b0920000b1920000b2920000b3920000b4920000b5920000b6920000b7920000b8920000b9920000ba920000bb920000bc920000bd920000be920000bf920000c0920000c1920000c2920000c3920000c4920000c5920000c6920000c7920000c8920000c9920000ca920000cb920000cc920000cd920000ce920000cf920000d0920000d1920000d2920000d3920000d4920000d5920000d6920000d7920000d8920000d9920000da920000db920000dc920000dd920000de920000df920000e0920000e1920000e2920000e3920000e4920000e5920000e6920000e7920000e8920000e9920000ea920000eb920000ec920000ed920000ee920000ef920000f0920000f1920000f2920000f3920000f4920000f5920000f6920000f7920000f8920000f9920000fa920000fb920000fc920000fd920000fe920000ff920000009300000193000002930000039300000493000005930000069300000793000008930000099300000a9300000b9300000c9300000d9300000e9300000f930000109300001193000012930000139300001493000015930000169300001793000018930000199300001a9300001b9300001c9300001d9300001e9300001f930000209300002193000022930000239300002493000025930000269300002793000028930000299300002a9300002b9300002c9300002d9300002e9300002f930000309300003193000032930000339300003493000035930000369300003793000038930000399300003a9300003b9300003c9300003d9300003e9300003f930000409300004193000042930000439300004493000045930000469300004793000048930000499300004a9300004b9300004c9300004d9300004e9300004f930000509300005193000052930000539300005493000055930000569300005793000058930000599300005a9300005b9300005c9300005d9300005e9300005f930000609300006193000062930000639300006493000065930000669300006793000068930000699300006a9300006b9300006c9300006d9300006e9300006f930000709300007193000072930000739300007493000075930000769300007793000078930000799300007a9300007b9300007c9300007d9300007e9300007f930000809300008193000082930000839300008493000085930000869300008793000088930000899300008a9300008b9300008c9300008d9300008e9300008f930000909300009193000092930000939300009493000095930000969300009793000098930000999300009a9300009b9300009c9300009d9300009e9300009f930000a0930000a1930000a2930000a3930000a4930000a5930000a6930000a7930000a8930000a9930000aa930000ab930000ac930000ad930000ae930000af930000b0930000b1930000b2930000b3930000b4930000b5930000b6930000b7930000b8930000b9930000ba930000bb930000bc930000bd930000be930000bf930000c0930000c1930000c2930000c3930000c4930000c5930000c6930000c7930000c8930000c9930000ca930000cb930000cc930000cd930000ce930000cf930000d0930000d1930000d2930000d3930000d4930000d5930000d6930000d7930000d8930000d9930000da930000db930000dc930000dd930000de930000df930000e0930000e1930000e2930000e3930000e4930000e5930000e6930000e7930000e8930000e9930000ea930000eb930000ec930000ed930000ee930000ef930000f0930000f1930000f2930000f3930000f4930000f5930000f6930000f7930000f8930000f9930000fa930000fb930000fc930000fd930000fe930000ff930000009400000194000002940000039400000494000005940000069400000794000008940000099400000a9400000b9400000c9400000d9400000e9400000f940000109400001194000012940000139400001494000015940000169400001794000018940000199400001a9400001b9400001c9400001d9400001e9400001f940000209400002194000022940000239400002494000025940000269400002794000028940000299400002a9400002b9400002c9400002d9400002e9400002f940000309400003194000032940000339400003494000035940000369400003794000038940000399400003a9400003b9400003c9400003d9400003e9400003f940000409400004194000042940000439400004494000045940000469400004794000048940000499400004a9400004b9400004c9400004d9400004e9400004f940000509400005194000052940000539400005494000055940000569400005794000058940000599400005a9400005b9400005c9400005d9400005e9400005f940000609400006194000062940000639400006494000065940000669400006794000068940000699400006a9400006b9400006c9400006d9400006e9400006f940000709400007194000072940000739400007494000075940000769400007794000078940000799400007a9400007b9400007c9400007d9400007e9400007f940000809400008194000082940000839400008494000085940000869400008794000088940000899400008a9400008b9400008c9400008d9400008e9400008f940000909400009194000092940000939400009494000095940000969400009794000098940000999400009a9400009b9400009c9400009d9400009e9400009f940000a0940000a1940000a2940000a3940000a4940000a5940000a6940000a7940000a8940000a9940000aa940000ab940000ac940000ad940000ae940000af940000b0940000b1940000b2940000b3940000b4940000b5940000b6940000b7940000b8940000b9940000ba940000bb940000bc940000bd940000be940000bf940000c0940000c1940000c2940000c3940000c4940000c5940000c6940000c7940000c8940000c9940000ca940000cb940000cc940000cd940000ce940000cf940000d0940000d1940000d2940000d3940000d4940000d5940000d6940000d7940000d8940000d9940000da940000db940000dc940000dd940000de940000df940000e0940000e1940000e2940000e3940000e4940000e5940000e6940000e7940000e8940000e9940000ea940000eb940000ec940000ed940000ee940000ef940000f0940000f1940000f2940000f3940000f4940000f5940000f6940000f7940000f8940000f9940000fa940000fb940000fc940000fd940000fe940000ff940000009500000195000002950000039500000495000005950000069500000795000008950000099500000a9500000b9500000c9500000d9500000e9500000f950000109500001195000012950000139500001495000015950000169500001795000018950000199500001a9500001b9500001c9500001d9500001e9500001f950000209500002195000022950000239500002495000025950000269500002795000028950000299500002a9500002b9500002c9500002d9500002e9500002f950000309500003195000032950000339500003495000035950000369500003795000038950000399500003a9500003b9500003c9500003d9500003e9500003f950000409500004195000042950000439500004495000045950000469500004795000048950000499500004a9500004b9500004c9500004d9500004e9500004f950000509500005195000052950000539500005495000055950000569500005795000058950000599500005a9500005b9500005c9500005d9500005e9500005f950000609500006195000062950000639500006495000065950000669500006795000068950000699500006a9500006b9500006c9500006d9500006e9500006f950000709500007195000072950000739500007495000075950000769500007795000078950000799500007a9500007b9500007c9500007d9500007e9500007f950000809500008195000082950000839500008495000085950000869500008795000088950000899500008a9500008b9500008c9500008d9500008e9500008f950000909500009195000092950000939500009495000095950000969500009795000098950000999500009a9500009b9500009c9500009d9500009e9500009f950000a0950000a1950000a2950000a3950000a4950000a5950000a6950000a7950000a8950000a9950000aa950000ab950000ac950000ad950000ae950000af950000b0950000b1950000b2950000b3950000b4950000b5950000b6950000b7950000b8950000b9950000ba950000bb950000bc950000bd950000be950000bf950000c0950000c1950000c2950000c3950000c4950000c5950000c6950000c7950000c8950000c9950000ca950000cb950000cc950000cd950000ce950000cf950000d0950000d1950000d2950000d3950000d4950000d5950000d6950000d7950000d8950000d9950000da950000db950000dc950000dd950000de950000df950000e0950000e1950000e2950000e3950000e4950000e5950000e6950000e7950000e8950000e9950000ea950000eb950000ec950000ed950000ee950000ef950000f0950000f1950000f2950000f3950000f4950000f5950000f6950000f7950000f8950000f9950000fa950000fb950000fc950000fd950000fe950000ff950000009600000196000002960000039600000496000005960000069600000796000008960000099600000a9600000b9600000c9600000d9600000e9600000f960000109600001196000012960000139600001496000015960000169600001796000018960000199600001a9600001b9600001c9600001d9600001e9600001f960000209600002196000022960000239600002496000025960000269600002796000028960000299600002a9600002b9600002c9600002d9600002e9600002f960000309600003196000032960000339600003496000035960000369600003796000038960000399600003a9600003b9600003c9600003d9600003e9600003f960000409600004196000042960000439600004496000045960000469600004796000048960000499600004a9600004b9600004c9600004d9600004e9600004f960000509600005196000052960000539600005496000055960000569600005796000058960000599600005a9600005b9600005c9600005d9600005e9600005f960000609600006196000062960000639600006496000065960000669600006796000068960000699600006a9600006b9600006c9600006d9600006e9600006f960000709600007196000072960000739600007496000075960000769600007796000078960000799600007a9600007b9600007c9600007d9600007e9600007f960000809600008196000082960000839600008496000085960000869600008796000088960000899600008a9600008b9600008c9600008d9600008e9600008f960000909600009196000092960000939600009496000095960000969600009796000098960000999600009a9600009b9600009c9600009d9600009e9600009f960000a0960000a1960000a2960000a3960000a4960000a5960000a6960000a7960000a8960000a9960000aa960000ab960000ac960000ad960000ae960000af960000b0960000b1960000b2960000b3960000b4960000b5960000b6960000b7960000b8960000b9960000ba960000bb960000bc960000bd960000be960000bf960000c0960000c1960000c2960000c3960000c4960000c5960000c6960000c7960000c8960000c9960000ca960000cb960000cc960000cd960000ce960000cf960000d0960000d1960000d2960000d3960000d4960000d5960000d6960000d7960000d8960000d9960000da960000db960000dc960000dd960000de960000df960000e0960000e1960000e2960000e3960000e4960000e5960000e6960000e7960000e8960000e9960000ea960000eb960000ec960000ed960000ee960000ef960000f0960000f1960000f2960000f3960000f4960000f5960000f6960000f7960000f8960000f9960000fa960000fb960000fc960000fd960000fe960000ff960000009700000197000002970000039700000497000005970000069700000797000008970000099700000a9700000b9700000c9700000d9700000e9700000f970000109700001197000012970000139700001497000015970000169700001797000018970000199700001a9700001b9700001c9700001d9700001e9700001f970000209700002197000022970000239700002497000025970000269700002797000028970000299700002a9700002b9700002c9700002d9700002e9700002f970000309700003197000032970000339700003497000035970000369700003797000038970000399700003a9700003b9700003c9700003d9700003e9700003f970000409700004197000042970000439700004497000045970000469700004797000048970000499700004a9700004b9700004c9700004d9700004e9700004f970000509700005197000052970000539700005497000055970000569700005797000058970000599700005a9700005b9700005c9700005d9700005e9700005f970000609700006197000062970000639700006497000065970000669700006797000068970000699700006a9700006b9700006c9700006d9700006e9700006f970000709700007197000072970000739700007497000075970000769700007797000078970000799700007a9700007b9700007c9700007d9700007e9700007f970000809700008197000082970000839700008497000085970000869700008797000088970000899700008a9700008b9700008c9700008d9700008e9700008f970000909700009197000092970000939700009497000095970000969700009797000098970000999700009a9700009b9700009c9700009d9700009e9700009f970000a0970000a1970000a2970000a3970000a4970000a5970000a6970000a7970000a8970000a9970000aa970000ab970000ac970000ad970000ae970000af970000b0970000b1970000b2970000b3970000b4970000b5970000b6970000b7970000b8970000b9970000ba970000bb970000bc970000bd970000be970000bf970000c0970000c1970000c2970000c3970000c4970000c5970000c6970000c7970000c8970000c9970000ca970000cb970000cc970000cd970000ce970000cf970000d0970000d1970000d2970000d3970000d4970000d5970000d6970000d7970000d8970000d9970000da970000db970000dc970000dd970000de970000df970000e0970000e1970000e2970000e3970000e4970000e5970000e6970000e7970000e8970000e9970000ea970000eb970000ec970000ed970000ee970000ef970000f0970000f1970000f2970000f3970000f4970000f5970000f6970000f7970000f8970000f9970000fa970000fb970000fc970000fd970000fe970000ff970000009800000198000002980000039800000498000005980000069800000798000008980000099800000a9800000b9800000c9800000d9800000e9800000f980000109800001198000012980000139800001498000015980000169800001798000018980000199800001a9800001b9800001c9800001d9800001e9800001f980000209800002198000022980000239800002498000025980000269800002798000028980000299800002a9800002b9800002c9800002d9800002e9800002f980000309800003198000032980000339800003498000035980000369800003798000038980000399800003a9800003b9800003c9800003d9800003e9800003f980000409800004198000042980000439800004498000045980000469800004798000048980000499800004a9800004b9800004c9800004d9800004e9800004f980000509800005198000052980000539800005498000055980000569800005798000058980000599800005a9800005b9800005c9800005d9800005e9800005f980000609800006198000062980000639800006498000065980000669800006798000068980000699800006a9800006b9800006c9800006d9800006e9800006f980000709800007198000072980000739800007498000075980000769800007798000078980000799800007a9800007b9800007c9800007d9800007e9800007f980000809800008198000082980000839800008498000085980000869800008798000088980000899800008a9800008b9800008c9800008d9800008e9800008f980000909800009198000092980000939800009498000095980000969800009798000098980000999800009a9800009b9800009c9800009d9800009e9800009f980000a0980000a1980000a2980000a3980000a4980000a5980000a6980000a7980000a8980000a9980000aa980000ab980000ac980000ad980000ae980000af980000b0980000b1980000b2980000b3980000b4980000b5980000b6980000b7980000b8980000b9980000ba980000bb980000bc980000bd980000be980000bf980000c0980000c1980000c2980000c3980000c4980000c5980000c6980000c7980000c8980000c9980000ca980000cb980000cc980000cd980000ce980000cf980000d0980000d1980000d2980000d3980000d4980000d5980000d6980000d7980000d8980000d9980000da980000db980000dc980000dd980000de980000df980000e0980000e1980000e2980000e3980000e4980000e5980000e6980000e7980000e8980000e9980000ea980000eb980000ec980000ed980000ee980000ef980000f0980000f1980000f2980000f3980000f4980000f5980000f6980000f7980000f8980000f9980000fa980000fb980000fc980000fd980000fe980000ff980000009900000199000002990000039900000499000005990000069900000799000008990000099900000a9900000b9900000c9900000d9900000e9900000f990000109900001199000012990000139900001499000015990000169900001799000018990000199900001a9900001b9900001c9900001d9900001e9900001f990000209900002199000022990000239900002499000025990000269900002799000028990000299900002a9900002b9900002c9900002d9900002e9900002f990000309900003199000032990000339900003499000035990000369900003799000038990000399900003a9900003b9900003c9900003d9900003e9900003f990000409900004199000042990000439900004499000045990000469900004799000048990000499900004a9900004b9900004c9900004d9900004e9900004f990000509900005199000052990000539900005499000055990000569900005799000058990000599900005a9900005b9900005c9900005d9900005e9900005f990000609900006199000062990000639900006499000065990000669900006799000068990000699900006a9900006b9900006c9900006d9900006e9900006f990000709900007199000072990000739900007499000075990000769900007799000078990000799900007a9900007b9900007c9900007d9900007e9900007f990000809900008199000082990000839900008499000085990000869900008799000088990000899900008a9900008b9900008c9900008d9900008e9900008f990000909900009199000092990000939900009499000095990000969900009799000098990000999900009a9900009b9900009c9900009d9900009e9900009f990000a0990000a1990000a2990000a3990000a4990000a5990000a6990000a7990000a8990000a9990000aa990000ab990000ac990000ad990000ae990000af990000b0990000b1990000b2990000b3990000b4990000b5990000b6990000b7990000b8990000b9990000ba990000bb990000bc990000bd990000be990000bf990000c0990000c1990000c2990000c3990000c4990000c5990000c6990000c7990000c8990000c9990000ca990000cb990000cc990000cd990000ce990000cf990000d0990000d1990000d2990000d3990000d4990000d5990000d6990000d7990000d8990000d9990000da990000db990000dc990000dd990000de990000df990000e0990000e1990000e2990000e3990000e4990000e5990000e6990000e7990000e8990000e9990000ea990000eb990000ec990000ed990000ee990000ef990000f0990000f1990000f2990000f3990000f4990000f5990000f6990000f7990000f8990000f9990000fa990000fb990000fc990000fd990000fe990000ff990000009a0000019a0000029a0000039a0000049a0000059a0000069a0000079a0000089a0000099a00000a9a00000b9a00000c9a00000d9a00000e9a00000f9a0000109a0000119a0000129a0000139a0000149a0000159a0000169a0000179a0000189a0000199a00001a9a00001b9a00001c9a00001d9a00001e9a00001f9a0000209a0000219a0000229a0000239a0000249a0000259a0000269a0000279a0000289a0000299a00002a9a00002b9a00002c9a00002d9a00002e9a00002f9a0000309a0000319a0000329a0000339a0000349a0000359a0000369a0000379a0000389a0000399a00003a9a00003b9a00003c9a00003d9a00003e9a00003f9a0000409a0000419a0000429a0000439a0000449a0000459a0000469a0000479a0000489a0000499a00004a9a00004b9a00004c9a00004d9a00004e9a00004f9a0000509a0000519a0000529a0000539a0000549a0000559a0000569a0000579a0000589a0000599a00005a9a00005b9a00005c9a00005d9a00005e9a00005f9a0000609a0000619a0000629a0000639a0000649a0000659a0000669a0000679a0000689a0000699a00006a9a00006b9a00006c9a00006d9a00006e9a00006f9a0000709a0000719a0000729a0000739a0000749a0000759a0000769a0000779a0000789a0000799a00007a9a00007b9a00007c9a00007d9a00007e9a00007f9a0000809a0000819a0000829a0000839a0000849a0000859a0000869a0000879a0000889a0000899a00008a9a00008b9a00008c9a00008d9a00008e9a00008f9a0000909a0000919a0000929a0000939a0000949a0000959a0000969a0000979a0000989a0000999a00009a9a00009b9a00009c9a00009d9a00009e9a00009f9a0000a09a0000a19a0000a29a0000a39a0000a49a0000a59a0000a69a0000a79a0000a89a0000a99a0000aa9a0000ab9a0000ac9a0000ad9a0000ae9a0000af9a0000b09a0000b19a0000b29a0000b39a0000b49a0000b59a0000b69a0000b79a0000b89a0000b99a0000ba9a0000bb9a0000bc9a0000bd9a0000be9a0000bf9a0000c09a0000c19a0000c29a0000c39a0000c49a0000c59a0000c69a0000c79a0000c89a0000c99a0000ca9a0000cb9a0000cc9a0000cd9a0000ce9a0000cf9a0000d09a0000d19a0000d29a0000d39a0000d49a0000d59a0000d69a0000d79a0000d89a0000d99a0000da9a0000db9a0000dc9a0000dd9a0000de9a0000df9a0000e09a0000e19a0000e29a0000e39a0000e49a0000e59a0000e69a0000e79a0000e89a0000e99a0000ea9a0000eb9a0000ec9a0000ed9a0000ee9a0000ef9a0000f09a0000f19a0000f29a0000f39a0000f49a0000f59a0000f69a0000f79a0000f89a0000f99a0000fa9a0000fb9a0000fc9a0000fd9a0000fe9a0000ff9a0000009b0000019b0000029b0000039b0000049b0000059b0000069b0000079b0000089b0000099b00000a9b00000b9b00000c9b00000d9b00000e9b00000f9b0000109b0000119b0000129b0000139b0000149b0000159b0000169b0000179b0000189b0000199b00001a9b00001b9b00001c9b00001d9b00001e9b00001f9b0000209b0000219b0000229b0000239b0000249b0000259b0000269b0000279b0000289b0000299b00002a9b00002b9b00002c9b00002d9b00002e9b00002f9b0000309b0000319b0000329b0000339b0000349b0000359b0000369b0000379b0000389b0000399b00003a9b00003b9b00003c9b00003d9b00003e9b00003f9b0000409b0000419b0000429b0000439b0000449b0000459b0000469b0000479b0000489b0000499b00004a9b00004b9b00004c9b00004d9b00004e9b00004f9b0000509b0000519b0000529b0000539b0000549b0000559b0000569b0000579b0000589b0000599b00005a9b00005b9b00005c9b00005d9b00005e9b00005f9b0000609b0000619b0000629b0000639b0000649b0000659b0000669b0000679b0000689b0000699b00006a9b00006b9b00006c9b00006d9b00006e9b00006f9b0000709b0000719b0000729b0000739b0000749b0000759b0000769b0000779b0000789b0000799b00007a9b00007b9b00007c9b00007d9b00007e9b00007f9b0000809b0000819b0000829b0000839b0000849b0000859b0000869b0000879b0000889b0000899b00008a9b00008b9b00008c9b00008d9b00008e9b00008f9b0000909b0000919b0000929b0000939b0000949b0000959b0000969b0000979b0000989b0000999b00009a9b00009b9b00009c9b00009d9b00009e9b00009f9b0000a09b0000a19b0000a29b0000a39b0000a49b0000a59b0000a69b0000a79b0000a89b0000a99b0000aa9b0000ab9b0000ac9b0000ad9b0000ae9b0000af9b0000b09b0000b19b0000b29b0000b39b0000b49b0000b59b0000b69b0000b79b0000b89b0000b99b0000ba9b0000bb9b0000bc9b0000bd9b0000be9b0000bf9b0000c09b0000c19b0000c29b0000c39b0000c49b0000c59b0000c69b0000c79b0000c89b0000c99b0000ca9b0000cb9b0000cc9b0000cd9b0000ce9b0000cf9b0000d09b0000d19b0000d29b0000d39b0000d49b0000d59b0000d69b0000d79b0000d89b0000d99b0000da9b0000db9b0000dc9b0000dd9b0000de9b0000df9b0000e09b0000e19b0000e29b0000e39b0000e49b0000e59b0000e69b0000e79b0000e89b0000e99b0000ea9b0000eb9b0000ec9b0000ed9b0000ee9b0000ef9b0000f09b0000f19b0000f29b0000f39b0000f49b0000f59b0000f69b0000f79b0000f89b0000f99b0000fa9b0000fb9b0000fc9b0000fd9b0000fe9b0000ff9b0000009c0000019c0000029c0000039c0000049c0000059c0000069c0000079c0000089c0000099c00000a9c00000b9c00000c9c00000d9c00000e9c00000f9c0000109c0000119c0000129c0000139c0000149c0000159c0000169c0000179c0000189c0000199c00001a9c00001b9c00001c9c00001d9c00001e9c00001f9c0000209c0000219c0000229c0000239c0000249c0000259c0000269c0000279c0000289c0000299c00002a9c00002b9c00002c9c00002d9c00002e9c00002f9c0000309c0000319c0000329c0000339c0000349c0000359c0000369c0000379c0000389c0000399c00003a9c00003b9c00003c9c00003d9c00003e9c00003f9c0000409c0000419c0000429c0000439c0000449c0000459c0000469c0000479c0000489c0000499c00004a9c00004b9c00004c9c00004d9c00004e9c00004f9c0000509c0000519c0000529c0000539c0000549c0000559c0000569c0000579c0000589c0000599c00005a9c00005b9c00005c9c00005d9c00005e9c00005f9c0000609c0000619c0000629c0000639c0000649c0000659c0000669c0000679c0000689c0000699c00006a9c00006b9c00006c9c00006d9c00006e9c00006f9c0000709c0000719c0000729c0000739c0000749c0000759c0000769c0000779c0000789c0000799c00007a9c00007b9c00007c9c00007d9c00007e9c00007f9c0000809c0000819c0000829c0000839c0000849c0000859c0000869c0000879c0000889c0000899c00008a9c00008b9c00008c9c00008d9c00008e9c00008f9c0000909c0000919c0000929c0000939c0000949c0000959c0000969c0000979c0000989c0000999c00009a9c00009b9c00009c9c00009d9c00009e9c00009f9c0000a09c0000a19c0000a29c0000a39c0000a49c0000a59c0000a69c0000a79c0000a89c0000a99c0000aa9c0000ab9c0000ac9c0000ad9c0000ae9c0000af9c0000b09c0000b19c0000b29c0000b39c0000b49c0000b59c0000b69c0000b79c0000b89c0000b99c0000ba9c0000bb9c0000bc9c0000bd9c0000be9c0000bf9c0000c09c0000c19c0000c29c0000c39c0000c49c0000c59c0000c69c0000c79c0000c89c0000c99c0000ca9c0000cb9c0000cc9c0000cd9c0000ce9c0000cf9c0000d09c0000d19c0000d29c0000d39c0000d49c0000d59c0000d69c0000d79c0000d89c0000d99c0000da9c0000db9c0000dc9c0000dd9c0000de9c0000df9c0000e09c0000e19c0000e29c0000e39c0000e49c0000e59c0000e69c0000e79c0000e89c0000e99c0000ea9c0000eb9c0000ec9c0000ed9c0000ee9c0000ef9c0000f09c0000f19c0000f29c0000f39c0000f49c0000f59c0000f69c0000f79c0000f89c0000f99c0000fa9c0000fb9c0000fc9c0000fd9c0000fe9c0000ff9c0000009d0000019d0000029d0000039d0000049d0000059d0000069d0000079d0000089d0000099d00000a9d00000b9d00000c9d00000d9d00000e9d00000f9d0000109d0000119d0000129d0000139d0000149d0000159d0000169d0000179d0000189d0000199d00001a9d00001b9d00001c9d00001d9d00001e9d00001f9d0000209d0000219d0000229d0000239d0000249d0000259d0000269d0000279d0000289d0000299d00002a9d00002b9d00002c9d00002d9d00002e9d00002f9d0000309d0000319d0000329d0000339d0000349d0000359d0000369d0000379d0000389d0000399d00003a9d00003b9d00003c9d00003d9d00003e9d00003f9d0000409d0000419d0000429d0000439d0000449d0000459d0000469d0000479d0000489d0000499d00004a9d00004b9d00004c9d00004d9d00004e9d00004f9d0000509d0000519d0000529d0000539d0000549d0000559d0000569d0000579d0000589d0000599d00005a9d00005b9d00005c9d00005d9d00005e9d00005f9d0000609d0000619d0000629d0000639d0000649d0000659d0000669d0000679d0000689d0000699d00006a9d00006b9d00006c9d00006d9d00006e9d00006f9d0000709d0000719d0000729d0000739d0000749d0000759d0000769d0000779d0000789d0000799d00007a9d00007b9d00007c9d00007d9d00007e9d00007f9d0000809d0000819d0000829d0000839d0000849d0000859d0000869d0000879d0000889d0000899d00008a9d00008b9d00008c9d00008d9d00008e9d00008f9d0000909d0000919d0000929d0000939d0000949d0000959d0000969d0000979d0000989d0000999d00009a9d00009b9d00009c9d00009d9d00009e9d00009f9d0000a09d0000a19d0000a29d0000a39d0000a49d0000a59d0000a69d0000a79d0000a89d0000a99d0000aa9d0000ab9d0000ac9d0000ad9d0000ae9d0000af9d0000b09d0000b19d0000b29d0000b39d0000b49d0000b59d0000b69d0000b79d0000b89d0000b99d0000ba9d0000bb9d0000bc9d0000bd9d0000be9d0000bf9d0000c09d0000c19d0000c29d0000c39d0000c49d0000c59d0000c69d0000c79d0000c89d0000c99d0000ca9d0000cb9d0000cc9d0000cd9d0000ce9d0000cf9d0000d09d0000d19d0000d29d0000d39d0000d49d0000d59d0000d69d0000d79d0000d89d0000d99d0000da9d0000db9d0000dc9d0000dd9d0000de9d0000df9d0000e09d0000e19d0000e29d0000e39d0000e49d0000e59d0000e69d0000e79d0000e89d0000e99d0000ea9d0000eb9d0000ec9d0000ed9d0000ee9d0000ef9d0000f09d0000f19d0000f29d0000f39d0000f49d0000f59d0000f69d0000f79d0000f89d0000f99d0000fa9d0000fb9d0000fc9d0000fd9d0000fe9d0000ff9d0000009e0000019e0000029e0000039e0000049e0000059e0000069e0000079e0000089e0000099e00000a9e00000b9e00000c9e00000d9e00000e9e00000f9e0000109e0000119e0000129e0000139e0000149e0000159e0000169e0000179e0000189e0000199e00001a9e00001b9e00001c9e00001d9e00001e9e00001f9e0000209e0000219e0000229e0000239e0000249e0000259e0000269e0000279e0000289e0000299e00002a9e00002b9e00002c9e00002d9e00002e9e00002f9e0000309e0000319e0000329e0000339e0000349e0000359e0000369e0000379e0000389e0000399e00003a9e00003b9e00003c9e00003d9e00003e9e00003f9e0000409e0000419e0000429e0000439e0000449e0000459e0000469e0000479e0000489e0000499e00004a9e00004b9e00004c9e00004d9e00004e9e00004f9e0000509e0000519e0000529e0000539e0000549e0000559e0000569e0000579e0000589e0000599e00005a9e00005b9e00005c9e00005d9e00005e9e00005f9e0000609e0000619e0000629e0000639e0000649e0000659e0000669e0000679e0000689e0000699e00006a9e00006b9e00006c9e00006d9e00006e9e00006f9e0000709e0000719e0000729e0000739e0000749e0000759e0000769e0000779e0000789e0000799e00007a9e00007b9e00007c9e00007d9e00007e9e00007f9e0000809e0000819e0000829e0000839e0000849e0000859e0000869e0000879e0000889e0000899e00008a9e00008b9e00008c9e00008d9e00008e9e00008f9e0000909e0000919e0000929e0000939e0000949e0000959e0000969e0000979e0000989e0000999e00009a9e00009b9e00009c9e00009d9e00009e9e00009f9e0000a09e0000a19e0000a29e0000a39e0000a49e0000a59e0000a69e0000a79e0000a89e0000a99e0000aa9e0000ab9e0000ac9e0000ad9e0000ae9e0000af9e0000b09e0000b19e0000b29e0000b39e0000b49e0000b59e0000b69e0000b79e0000b89e0000b99e0000ba9e0000bb9e0000bc9e0000bd9e0000be9e0000bf9e0000c09e0000c19e0000c29e0000c39e0000c49e0000c59e0000c69e0000c79e0000c89e0000c99e0000ca9e0000cb9e0000cc9e0000cd9e0000ce9e0000cf9e0000d09e0000d19e0000d29e0000d39e0000d49e0000d59e0000d69e0000d79e0000d89e0000d99e0000da9e0000db9e0000dc9e0000dd9e0000de9e0000df9e0000e09e0000e19e0000e29e0000e39e0000e49e0000e59e0000e69e0000e79e0000e89e0000e99e0000ea9e0000eb9e0000ec9e0000ed9e0000ee9e0000ef9e0000f09e0000f19e0000f29e0000f39e0000f49e0000f59e0000f69e0000f79e0000f89e0000f99e0000fa9e0000fb9e0000fc9e0000fd9e0000fe9e0000ff9e0000009f0000019f0000029f0000039f0000049f0000059f0000069f0000079f0000089f0000099f00000a9f00000b9f00000c9f00000d9f00000e9f00000f9f0000109f0000119f0000129f0000139f0000149f0000159f0000169f0000179f0000189f0000199f00001a9f00001b9f00001c9f00001d9f00001e9f00001f9f0000209f0000219f0000229f0000239f0000249f0000259f0000269f0000279f0000289f0000299f00002a9f00002b9f00002c9f00002d9f00002e9f00002f9f0000309f0000319f0000329f0000339f0000349f0000359f0000369f0000379f0000389f0000399f00003a9f00003b9f00003c9f00003d9f00003e9f00003f9f0000409f0000419f0000429f0000439f0000449f0000459f0000469f0000479f0000489f0000499f00004a9f00004b9f00004c9f00004d9f00004e9f00004f9f0000509f0000519f0000529f0000539f0000549f0000559f0000569f0000579f0000589f0000599f00005a9f00005b9f00005c9f00005d9f00005e9f00005f9f0000609f0000619f0000629f0000639f0000649f0000659f0000669f0000679f0000689f0000699f00006a9f00006b9f00006c9f00006d9f00006e9f00006f9f0000709f0000719f0000729f0000739f0000749f0000759f0000769f0000779f0000789f0000799f00007a9f00007b9f00007c9f00007d9f00007e9f00007f9f0000809f0000819f0000829f0000839f0000849f0000859f0000869f0000879f0000889f0000899f00008a9f00008b9f00008c9f00008d9f00008e9f00008f9f0000909f0000919f0000929f0000939f0000949f0000959f0000969f0000979f0000989f0000999f00009a9f00009b9f00009c9f00009d9f00009e9f00009f9f0000a09f0000a19f0000a29f0000a39f0000a49f0000a59f0000a69f0000a79f0000a89f0000a99f0000aa9f0000ab9f0000ac9f0000ad9f0000ae9f0000af9f0000b09f0000b19f0000b29f0000b39f0000b49f0000b59f0000b69f0000b79f0000b89f0000b99f0000ba9f0000bb9f0000bc9f0000bd9f0000be9f0000bf9f0000c09f0000c19f0000c29f0000c39f0000c49f0000c59f0000c69f0000c79f0000c89f0000c99f0000ca9f0000cb9f0000cc9f0000cd9f0000ce9f0000cf9f0000d09f0000d19f0000d29f0000d39f0000d49f0000d59f0000d69f0000d79f0000d89f0000d99f0000da9f0000db9f0000dc9f0000dd9f0000de9f0000df9f0000e09f0000e19f0000e29f0000e39f0000e49f0000e59f0000e69f0000e79f0000e89f0000e99f0000ea9f0000eb9f0000ec9f0000ed9f0000ee9f0000ef9f0000f09f0000f19f0000f29f0000f39f0000f49f0000f59f0000f69f0000f79f0000f89f0000f99f0000fa9f0000fb9f0000fc9f0000fd9f0000fe9f0000ff9f000000a0000001a0000002a0000003a0000004a0000005a0000006a0000007a0000008a0000009a000000aa000000ba000000ca000000da000000ea000000fa0000010a0000011a0000012a0000013a0000014a0000015a0000016a0000017a0000018a0000019a000001aa000001ba000001ca000001da000001ea000001fa0000020a0000021a0000022a0000023a0000024a0000025a0000026a0000027a0000028a0000029a000002aa000002ba000002ca000002da000002ea000002fa0000030a0000031a0000032a0000033a0000034a0000035a0000036a0000037a0000038a0000039a000003aa000003ba000003ca000003da000003ea000003fa0000040a0000041a0000042a0000043a0000044a0000045a0000046a0000047a0000048a0000049a000004aa000004ba000004ca000004da000004ea000004fa0000050a0000051a0000052a0000053a0000054a0000055a0000056a0000057a0000058a0000059a000005aa000005ba000005ca000005da000005ea000005fa0000060a0000061a0000062a0000063a0000064a0000065a0000066a0000067a0000068a0000069a000006aa000006ba000006ca000006da000006ea000006fa0000070a0000071a0000072a0000073a0000074a0000075a0000076a0000077a0000078a0000079a000007aa000007ba000007ca000007da000007ea000007fa0000080a0000081a0000082a0000083a0000084a0000085a0000086a0000087a0000088a0000089a000008aa000008ba000008ca000008da000008ea000008fa0000090a0000091a0000092a0000093a0000094a0000095a0000096a0000097a0000098a0000099a000009aa000009ba000009ca000009da000009ea000009fa00000a0a00000a1a00000a2a00000a3a00000a4a00000a5a00000a6a00000a7a00000a8a00000a9a00000aaa00000aba00000aca00000ada00000aea00000afa00000b0a00000b1a00000b2a00000b3a00000b4a00000b5a00000b6a00000b7a00000b8a00000b9a00000baa00000bba00000bca00000bda00000bea00000bfa00000c0a00000c1a00000c2a00000c3a00000c4a00000c5a00000c6a00000c7a00000c8a00000c9a00000caa00000cba00000cca00000cda00000cea00000cfa00000d0a00000d1a00000d2a00000d3a00000d4a00000d5a00000d6a00000d7a00000d8a00000d9a00000daa00000dba00000dca00000dda00000dea00000dfa00000e0a00000e1a00000e2a00000e3a00000e4a00000e5a00000e6a00000e7a00000e8a00000e9a00000eaa00000eba00000eca00000eda00000eea00000efa00000f0a00000f1a00000f2a00000f3a00000f4a00000f5a00000f6a00000f7a00000f8a00000f9a00000faa00000fba00000fca00000fda00000fea00000ffa0000000a1000001a1000002a1000003a1000004a1000005a1000006a1000007a1000008a1000009a100000aa100000ba100000ca100000da100000ea100000fa1000010a1000011a1000012a1000013a1000014a1000015a1000016a1000017a1000018a1000019a100001aa100001ba100001ca100001da100001ea100001fa1000020a1000021a1000022a1000023a1000024a1000025a1000026a1000027a1000028a1000029a100002aa100002ba100002ca100002da100002ea100002fa1000030a1000031a1000032a1000033a1000034a1000035a1000036a1000037a1000038a1000039a100003aa100003ba100003ca100003da100003ea100003fa1000040a1000041a1000042a1000043a1000044a1000045a1000046a1000047a1000048a1000049a100004aa100004ba100004ca100004da100004ea100004fa1000050a1000051a1000052a1000053a1000054a1000055a1000056a1000057a1000058a1000059a100005aa100005ba100005ca100005da100005ea100005fa1000060a1000061a1000062a1000063a1000064a1000065a1000066a1000067a1000068a1000069a100006aa100006ba100006ca100006da100006ea100006fa1000070a1000071a1000072a1000073a1000074a1000075a1000076a1000077a1000078a1000079a100007aa100007ba100007ca100007da100007ea100007fa1000080a1000081a1000082a1000083a1000084a1000085a1000086a1000087a1000088a1000089a100008aa100008ba100008ca100008da100008ea100008fa1000090a1000091a1000092a1000093a1000094a1000095a1000096a1000097a1000098a1000099a100009aa100009ba100009ca100009da100009ea100009fa10000a0a10000a1a10000a2a10000a3a10000a4a10000a5a10000a6a10000a7a10000a8a10000a9a10000aaa10000aba10000aca10000ada10000aea10000afa10000b0a10000b1a10000b2a10000b3a10000b4a10000b5a10000b6a10000b7a10000b8a10000b9a10000baa10000bba10000bca10000bda10000bea10000bfa10000c0a10000c1a10000c2a10000c3a10000c4a10000c5a10000c6a10000c7a10000c8a10000c9a10000caa10000cba10000cca10000cda10000cea10000cfa10000d0a10000d1a10000d2a10000d3a10000d4a10000d5a10000d6a10000d7a10000d8a10000d9a10000daa10000dba10000dca10000dda10000dea10000dfa10000e0a10000e1a10000e2a10000e3a10000e4a10000e5a10000e6a10000e7a10000e8a10000e9a10000eaa10000eba10000eca10000eda10000eea10000efa10000f0a10000f1a10000f2a10000f3a10000f4a10000f5a10000f6a10000f7a10000f8a10000f9a10000faa10000fba10000fca10000fda10000fea10000ffa1000000a2000001a2000002a2000003a2000004a2000005a2000006a2000007a2000008a2000009a200000aa200000ba200000ca200000da200000ea200000fa2000010a2000011a2000012a2000013a2000014a2000015a2000016a2000017a2000018a2000019a200001aa200001ba200001ca200001da200001ea200001fa2000020a2000021a2000022a2000023a2000024a2000025a2000026a2000027a2000028a2000029a200002aa200002ba200002ca200002da200002ea200002fa2000030a2000031a2000032a2000033a2000034a2000035a2000036a2000037a2000038a2000039a200003aa200003ba200003ca200003da200003ea200003fa2000040a2000041a2000042a2000043a2000044a2000045a2000046a2000047a2000048a2000049a200004aa200004ba200004ca200004da200004ea200004fa2000050a2000051a2000052a2000053a2000054a2000055a2000056a2000057a2000058a2000059a200005aa200005ba200005ca200005da200005ea200005fa2000060a2000061a2000062a2000063a2000064a2000065a2000066a2000067a2000068a2000069a200006aa200006ba200006ca200006da200006ea200006fa2000070a2000071a2000072a2000073a2000074a2000075a2000076a2000077a2000078a2000079a200007aa200007ba200007ca200007da200007ea200007fa2000080a2000081a2000082a2000083a2000084a2000085a2000086a2000087a2000088a2000089a200008aa200008ba200008ca200008da200008ea200008fa2000090a2000091a2000092a2000093a2000094a2000095a2000096a2000097a2000098a2000099a200009aa200009ba200009ca200009da200009ea200009fa20000a0a20000a1a20000a2a20000a3a20000a4a20000a5a20000a6a20000a7a20000a8a20000a9a20000aaa20000aba20000aca20000ada20000aea20000afa20000b0a20000b1a20000b2a20000b3a20000b4a20000b5a20000b6a20000b7a20000b8a20000b9a20000baa20000bba20000bca20000bda20000bea20000bfa20000c0a20000c1a20000c2a20000c3a20000c4a20000c5a20000c6a20000c7a20000c8a20000c9a20000caa20000cba20000cca20000cda20000cea20000cfa20000d0a20000d1a20000d2a20000d3a20000d4a20000d5a20000d6a20000d7a20000d8a20000d9a20000daa20000dba20000dca20000dda20000dea20000dfa20000e0a20000e1a20000e2a20000e3a20000e4a20000e5a20000e6a20000e7a20000e8a20000e9a20000eaa20000eba20000eca20000eda20000eea20000efa20000f0a20000f1a20000f2a20000f3a20000f4a20000f5a20000f6a20000f7a20000f8a20000f9a20000faa20000fba20000fca20000fda20000fea20000ffa2000000a3000001a3000002a3000003a3000004a3000005a3000006a3000007a3000008a3000009a300000aa300000ba300000ca300000da300000ea300000fa3000010a3000011a3000012a3000013a3000014a3000015a3000016a3000017a3000018a3000019a300001aa300001ba300001ca300001da300001ea300001fa3000020a3000021a3000022a3000023a3000024a3000025a3000026a3000027a3000028a3000029a300002aa300002ba300002ca300002da300002ea300002fa3000030a3000031a3000032a3000033a3000034a3000035a3000036a3000037a3000038a3000039a300003aa300003ba300003ca300003da300003ea300003fa3000040a3000041a3000042a3000043a3000044a3000045a3000046a3000047a3000048a3000049a300004aa300004ba300004ca300004da300004ea300004fa3000050a3000051a3000052a3000053a3000054a3000055a3000056a3000057a3000058a3000059a300005aa300005ba300005ca300005da300005ea300005fa3000060a3000061a3000062a3000063a3000064a3000065a3000066a3000067a3000068a3000069a300006aa300006ba300006ca300006da300006ea300006fa3000070a3000071a3000072a3000073a3000074a3000075a3000076a3000077a3000078a3000079a300007aa300007ba300007ca300007da300007ea300007fa3000080a3000081a3000082a3000083a3000084a3000085a3000086a3000087a3000088a3000089a300008aa300008ba300008ca300008da300008ea300008fa3000090a3000091a3000092a3000093a3000094a3000095a3000096a3000097a3000098a3000099a300009aa300009ba300009ca300009da300009ea300009fa30000a0a30000a1a30000a2a30000a3a30000a4a30000a5a30000a6a30000a7a30000a8a30000a9a30000aaa30000aba30000aca30000ada30000aea30000afa30000b0a30000b1a30000b2a30000b3a30000b4a30000b5a30000b6a30000b7a30000b8a30000b9a30000baa30000bba30000bca30000bda30000bea30000bfa30000c0a30000c1a30000c2a30000c3a30000c4a30000c5a30000c6a30000c7a30000c8a30000c9a30000caa30000cba30000cca30000cda30000cea30000cfa30000d0a30000d1a30000d2a30000d3a30000d4a30000d5a30000d6a30000d7a30000d8a30000d9a30000daa30000dba30000dca30000dda30000dea30000dfa30000e0a30000e1a30000e2a30000e3a30000e4a30000e5a30000e6a30000e7a30000e8a30000e9a30000eaa30000eba30000eca30000eda30000eea30000efa30000f0a30000f1a30000f2a30000f3a30000f4a30000f5a30000f6a30000f7a30000f8a30000f9a30000faa30000fba30000fca30000fda30000fea30000ffa3000000a4000001a4000002a4000003a4000004a4000005a4000006a4000007a4000008a4000009a400000aa400000ba400000ca400000da400000ea400000fa4000010a4000011a4000012a4000013a4000014a4000015a4000016a4000017a4000018a4000019a400001aa400001ba400001ca400001da400001ea400001fa4000020a4000021a4000022a4000023a4000024a4000025a4000026a4000027a4000028a4000029a400002aa400002ba400002ca400002da400002ea400002fa4000030a4000031a4000032a4000033a4000034a4000035a4000036a4000037a4000038a4000039a400003aa400003ba400003ca400003da400003ea400003fa4000040a4000041a4000042a4000043a4000044a4000045a4000046a4000047a4000048a4000049a400004aa400004ba400004ca400004da400004ea400004fa4000050a4000051a4000052a4000053a4000054a4000055a4000056a4000057a4000058a4000059a400005aa400005ba400005ca400005da400005ea400005fa4000060a4000061a4000062a4000063a4000064a4000065a4000066a4000067a4000068a4000069a400006aa400006ba400006ca400006da400006ea400006fa4000070a4000071a4000072a4000073a4000074a4000075a4000076a4000077a4000078a4000079a400007aa400007ba400007ca400007da400007ea400007fa4000080a4000081a4000082a4000083a4000084a4000085a4000086a4000087a4000088a4000089a400008aa400008ba400008ca400008da400008ea400008fa4000090a4000091a4000092a4000093a4000094a4000095a4000096a4000097a4000098a4000099a400009aa400009ba400009ca400009da400009ea400009fa40000a0a40000a1a40000a2a40000a3a40000a4a40000a5a40000a6a40000a7a40000a8a40000a9a40000aaa40000aba40000aca40000ada40000aea40000afa40000b0a40000b1a40000b2a40000b3a40000b4a40000b5a40000b6a40000b7a40000b8a40000b9a40000baa40000bba40000bca40000bda40000bea40000bfa40000c0a40000c1a40000c2a40000c3a40000c4a40000c5a40000c6a40000c7a40000c8a40000c9a40000caa40000cba40000cca40000cda40000cea40000cfa40000d0a40000d1a40000d2a40000d3a40000d4a40000d5a40000d6a40000d7a40000d8a40000d9a40000daa40000dba40000dca40000dda40000dea40000dfa40000e0a40000e1a40000e2a40000e3a40000e4a40000e5a40000e6a40000e7a40000e8a40000e9a40000eaa40000eba40000eca40000eda40000eea40000efa40000f0a40000f1a40000f2a40000f3a40000f4a40000f5a40000f6a40000f7a40000f8a40000f9a40000faa40000fba40000fca40000fda40000fea40000ffa4000000a5000001a5000002a5000003a5000004a5000005a5000006a5000007a5000008a5000009a500000aa500000ba500000ca500000da500000ea500000fa5000010a5000011a5000012a5000013a5000014a5000015a5000016a5000017a5000018a5000019a500001aa500001ba500001ca500001da500001ea500001fa5000020a5000021a5000022a5000023a5000024a5000025a5000026a5000027a5000028a5000029a500002aa500002ba500002ca500002da500002ea500002fa5000030a5000031a5000032a5000033a5000034a5000035a5000036a5000037a5000038a5000039a500003aa500003ba500003ca500003da500003ea500003fa5000040a5000041a5000042a5000043a5000044a5000045a5000046a5000047a5000048a5000049a500004aa500004ba500004ca500004da500004ea500004fa5000050a5000051a5000052a5000053a5000054a5000055a5000056a5000057a5000058a5000059a500005aa500005ba500005ca500005da500005ea500005fa5000060a5000061a5000062a5000063a5000064a5000065a5000066a5000067a5000068a5000069a500006aa500006ba500006ca500006da500006ea500006fa5000070a5000071a5000072a5000073a5000074a5000075a5000076a5000077a5000078a5000079a500007aa500007ba500007ca500007da500007ea500007fa5000080a5000081a5000082a5000083a5000084a5000085a5000086a5000087a5000088a5000089a500008aa500008ba500008ca500008da500008ea500008fa5000090a5000091a5000092a5000093a5000094a5000095a5000096a5000097a5000098a5000099a500009aa500009ba500009ca500009da500009ea500009fa50000a0a50000a1a50000a2a50000a3a50000a4a50000a5a50000a6a50000a7a50000a8a50000a9a50000aaa50000aba50000aca50000ada50000aea50000afa50000b0a50000b1a50000b2a50000b3a50000b4a50000b5a50000b6a50000b7a50000b8a50000b9a50000baa50000bba50000bca50000bda50000bea50000bfa50000c0a50000c1a50000c2a50000c3a50000c4a50000c5a50000c6a50000c7a50000c8a50000c9a50000caa50000cba50000cca50000cda50000cea50000cfa50000d0a50000d1a50000d2a50000d3a50000d4a50000d5a50000d6a50000d7a50000d8a50000d9a50000daa50000dba50000dca50000dda50000dea50000dfa50000e0a50000e1a50000e2a50000e3a50000e4a50000e5a50000e6a50000e7a50000e8a50000e9a50000eaa50000eba50000eca50000eda50000eea50000efa50000f0a50000f1a50000f2a50000f3a50000f4a50000f5a50000f6a50000f7a50000f8a50000f9a50000faa50000fba50000fca50000fda50000fea50000ffa5000000a6000001a6000002a6000003a6000004a6000005a6000006a6000007a6000008a6000009a600000aa600000ba600000ca600000da600000ea600000fa6000010a6000011a6000012a6000013a6000014a6000015a6000016a6000017a6000018a6000019a600001aa600001ba600001ca600001da600001ea600001fa6000020a6000021a6000022a6000023a6000024a6000025a6000026a6000027a6000028a6000029a600002aa600002ba600002ca600002da600002ea600002fa6000030a6000031a6000032a6000033a6000034a6000035a6000036a6000037a6000038a6000039a600003aa600003ba600003ca600003da600003ea600003fa6000040a6000041a6000042a6000043a6000044a6000045a6000046a6000047a6000048a6000049a600004aa600004ba600004ca600004da600004ea600004fa6000050a6000051a6000052a6000053a6000054a6000055a6000056a6000057a6000058a6000059a600005aa600005ba600005ca600005da600005ea600005fa6000060a6000061a6000062a6000063a6000064a6000065a6000066a6000067a6000068a6000069a600006aa600006ba600006ca600006da600006ea600006fa6000070a6000071a6000072a6000073a6000074a6000075a6000076a6000077a6000078a6000079a600007aa600007ba600007ca600007da600007ea600007fa6000080a6000081a6000082a6000083a6000084a6000085a6000086a6000087a6000088a6000089a600008aa600008ba600008ca600008da600008ea600008fa6000090a6000091a6000092a6000093a6000094a6000095a6000096a6000097a6000098a6000099a600009aa600009ba600009ca600009da600009ea600009fa60000a0a60000a1a60000a2a60000a3a60000a4a60000a5a60000a6a60000a7a60000a8a60000a9a60000aaa60000aba60000aca60000ada60000aea60000afa60000b0a60000b1a60000b2a60000b3a60000b4a60000b5a60000b6a60000b7a60000b8a60000b9a60000baa60000bba60000bca60000bda60000bea60000bfa60000c0a60000c1a60000c2a60000c3a60000c4a60000c5a60000c6a60000c7a60000c8a60000c9a60000caa60000cba60000cca60000cda60000cea60000cfa60000d0a60000d1a60000d2a60000d3a60000d4a60000d5a60000d6a60000d7a60000d8a60000d9a60000daa60000dba60000dca60000dda60000dea60000dfa60000e0a60000e1a60000e2a60000e3a60000e4a60000e5a60000e6a60000e7a60000e8a60000e9a60000eaa60000eba60000eca60000eda60000eea60000efa60000f0a60000f1a60000f2a60000f3a60000f4a60000f5a60000f6a60000f7a60000f8a60000f9a60000faa60000fba60000fca60000fda60000fea60000ffa6000000a7000001a7000002a7000003a7000004a7000005a7000006a7000007a7000008a7000009a700000aa700000ba700000ca700000da700000ea700000fa7000010a7000011a7000012a7000013a7000014a7000015a7000016a7000017a7000018a7000019a700001aa700001ba700001ca700001da700001ea700001fa7000020a7000021a7000022a7000023a7000024a7000025a7000026a7000027a7000028a7000029a700002aa700002ba700002ca700002da700002ea700002fa7000030a7000031a7000032a7000033a7000034a7000035a7000036a7000037a7000038a7000039a700003aa700003ba700003ca700003da700003ea700003fa7000040a7000041a7000042a7000043a7000044a7000045a7000046a7000047a7000048a7000049a700004aa700004ba700004ca700004da700004ea700004fa7000050a7000051a7000052a7000053a7000054a7000055a7000056a7000057a7000058a7000059a700005aa700005ba700005ca700005da700005ea700005fa7000060a7000061a7000062a7000063a7000064a7000065a7000066a7000067a7000068a7000069a700006aa700006ba700006ca700006da700006ea700006fa7000070a7000071a7000072a7000073a7000074a7000075a7000076a7000077a7000078a7000079a700007aa700007ba700007ca700007da700007ea700007fa7000080a7000081a7000082a7000083a7000084a7000085a7000086a7000087a7000088a7000089a700008aa700008ba700008ca700008da700008ea700008fa7000090a7000091a7000092a7000093a7000094a7000095a7000096a7000097a7000098a7000099a700009aa700009ba700009ca700009da700009ea700009fa70000a0a70000a1a70000a2a70000a3a70000a4a70000a5a70000a6a70000a7a70000a8a70000a9a70000aaa70000aba70000aca70000ada70000aea70000afa70000b0a70000b1a70000b2a70000b3a70000b4a70000b5a70000b6a70000b7a70000b8a70000b9a70000baa70000bba70000bca70000bda70000bea70000bfa70000c0a70000c1a70000c2a70000c3a70000c4a70000c5a70000c6a70000c7a70000c8a70000c9a70000caa70000cba70000cca70000cda70000cea70000cfa70000d0a70000d1a70000d2a70000d3a70000d4a70000d5a70000d6a70000d7a70000d8a70000d9a70000daa70000dba70000dca70000dda70000dea70000dfa70000e0a70000e1a70000e2a70000e3a70000e4a70000e5a70000e6a70000e7a70000e8a70000e9a70000eaa70000eba70000eca70000eda70000eea70000efa70000f0a70000f1a70000f2a70000f3a70000f4a70000f5a70000f6a70000f7a70000f8a70000f9a70000faa70000fba70000fca70000fda70000fea70000ffa7000000a8000001a8000002a8000003a8000004a8000005a8000006a8000007a8000008a8000009a800000aa800000ba800000ca800000da800000ea800000fa8000010a8000011a8000012a8000013a8000014a8000015a8000016a8000017a8000018a8000019a800001aa800001ba800001ca800001da800001ea800001fa8000020a8000021a8000022a8000023a8000024a8000025a8000026a8000027a8000028a8000029a800002aa800002ba800002ca800002da800002ea800002fa8000030a8000031a8000032a8000033a8000034a8000035a8000036a8000037a8000038a8000039a800003aa800003ba800003ca800003da800003ea800003fa8000040a8000041a8000042a8000043a8000044a8000045a8000046a8000047a8000048a8000049a800004aa800004ba800004ca800004da800004ea800004fa8000050a8000051a8000052a8000053a8000054a8000055a8000056a8000057a8000058a8000059a800005aa800005ba800005ca800005da800005ea800005fa8000060a8000061a8000062a8000063a8000064a8000065a8000066a8000067a8000068a8000069a800006aa800006ba800006ca800006da800006ea800006fa8000070a8000071a8000072a8000073a8000074a8000075a8000076a8000077a8000078a8000079a800007aa800007ba800007ca800007da800007ea800007fa8000080a8000081a8000082a8000083a8000084a8000085a8000086a8000087a8000088a8000089a800008aa800008ba800008ca800008da800008ea800008fa8000090a8000091a8000092a8000093a8000094a8000095a8000096a8000097a8000098a8000099a800009aa800009ba800009ca800009da800009ea800009fa80000a0a80000a1a80000a2a80000a3a80000a4a80000a5a80000a6a80000a7a80000a8a80000a9a80000aaa80000aba80000aca80000ada80000aea80000afa80000b0a80000b1a80000b2a80000b3a80000b4a80000b5a80000b6a80000b7a80000b8a80000b9a80000baa80000bba80000bca80000bda80000bea80000bfa80000c0a80000c1a80000c2a80000c3a80000c4a80000c5a80000c6a80000c7a80000c8a80000c9a80000caa80000cba80000cca80000cda80000cea80000cfa80000d0a80000d1a80000d2a80000d3a80000d4a80000d5a80000d6a80000d7a80000d8a80000d9a80000daa80000dba80000dca80000dda80000dea80000dfa80000e0a80000e1a80000e2a80000e3a80000e4a80000e5a80000e6a80000e7a80000e8a80000e9a80000eaa80000eba80000eca80000eda80000eea80000efa80000f0a80000f1a80000f2a80000f3a80000f4a80000f5a80000f6a80000f7a80000f8a80000f9a80000faa80000fba80000fca80000fda80000fea80000ffa8000000a9000001a9000002a9000003a9000004a9000005a9000006a9000007a9000008a9000009a900000aa900000ba900000ca900000da900000ea900000fa9000010a9000011a9000012a9000013a9000014a9000015a9000016a9000017a9000018a9000019a900001aa900001ba900001ca900001da900001ea900001fa9000020a9000021a9000022a9000023a9000024a9000025a9000026a9000027a9000028a9000029a900002aa900002ba900002ca900002da900002ea900002fa9000030a9000031a9000032a9000033a9000034a9000035a9000036a9000037a9000038a9000039a900003aa900003ba900003ca900003da900003ea900003fa9000040a9000041a9000042a9000043a9000044a9000045a9000046a9000047a9000048a9000049a900004aa900004ba900004ca900004da900004ea900004fa9000050a9000051a9000052a9000053a9000054a9000055a9000056a9000057a9000058a9000059a900005aa900005ba900005ca900005da900005ea900005fa9000060a9000061a9000062a9000063a9000064a9000065a9000066a9000067a9000068a9000069a900006aa900006ba900006ca900006da900006ea900006fa9000070a9000071a9000072a9000073a9000074a9000075a9000076a9000077a9000078a9000079a900007aa900007ba900007ca900007da900007ea900007fa9000080a9000081a9000082a9000083a9000084a9000085a9000086a9000087a9000088a9000089a900008aa900008ba900008ca900008da900008ea900008fa9000090a9000091a9000092a9000093a9000094a9000095a9000096a9000097a9000098a9000099a900009aa900009ba900009ca900009da900009ea900009fa90000a0a90000a1a90000a2a90000a3a90000a4a90000a5a90000a6a90000a7a90000a8a90000a9a90000aaa90000aba90000aca90000ada90000aea90000afa90000b0a90000b1a90000b2a90000b3a90000b4a90000b5a90000b6a90000b7a90000b8a90000b9a90000baa90000bba90000bca90000bda90000bea90000bfa90000c0a90000c1a90000c2a90000c3a90000c4a90000c5a90000c6a90000c7a90000c8a90000c9a90000caa90000cba90000cca90000cda90000cea90000cfa90000d0a90000d1a90000d2a90000d3a90000d4a90000d5a90000d6a90000d7a90000d8a90000d9a90000daa90000dba90000dca90000dda90000dea90000dfa90000e0a90000e1a90000e2a90000e3a90000e4a90000e5a90000e6a90000e7a90000e8a90000e9a90000eaa90000eba90000eca90000eda90000eea90000efa90000f0a90000f1a90000f2a90000f3a90000f4a90000f5a90000f6a90000f7a90000f8a90000f9a90000faa90000fba90000fca90000fda90000fea90000ffa9000000aa000001aa000002aa000003aa000004aa000005aa000006aa000007aa000008aa000009aa00000aaa00000baa00000caa00000daa00000eaa00000faa000010aa000011aa000012aa000013aa000014aa000015aa000016aa000017aa000018aa000019aa00001aaa00001baa00001caa00001daa00001eaa00001faa000020aa000021aa000022aa000023aa000024aa000025aa000026aa000027aa000028aa000029aa00002aaa00002baa00002caa00002daa00002eaa00002faa000030aa000031aa000032aa000033aa000034aa000035aa000036aa000037aa000038aa000039aa00003aaa00003baa00003caa00003daa00003eaa00003faa000040aa000041aa000042aa000043aa000044aa000045aa000046aa000047aa000048aa000049aa00004aaa00004baa00004caa00004daa00004eaa00004faa000050aa000051aa000052aa000053aa000054aa000055aa000056aa000057aa000058aa000059aa00005aaa00005baa00005caa00005daa00005eaa00005faa000060aa000061aa000062aa000063aa000064aa000065aa000066aa000067aa000068aa000069aa00006aaa00006baa00006caa00006daa00006eaa00006faa000070aa000071aa000072aa000073aa000074aa000075aa000076aa000077aa000078aa000079aa00007aaa00007baa00007caa00007daa00007eaa00007faa000080aa000081aa000082aa000083aa000084aa000085aa000086aa000087aa000088aa000089aa00008aaa00008baa00008caa00008daa00008eaa00008faa000090aa000091aa000092aa000093aa000094aa000095aa000096aa000097aa000098aa000099aa00009aaa00009baa00009caa00009daa00009eaa00009faa0000a0aa0000a1aa0000a2aa0000a3aa0000a4aa0000a5aa0000a6aa0000a7aa0000a8aa0000a9aa0000aaaa0000abaa0000acaa0000adaa0000aeaa0000afaa0000b0aa0000b1aa0000b2aa0000b3aa0000b4aa0000b5aa0000b6aa0000b7aa0000b8aa0000b9aa0000baaa0000bbaa0000bcaa0000bdaa0000beaa0000bfaa0000c0aa0000c1aa0000c2aa0000c3aa0000c4aa0000c5aa0000c6aa0000c7aa0000c8aa0000c9aa0000caaa0000cbaa0000ccaa0000cdaa0000ceaa0000cfaa0000d0aa0000d1aa0000d2aa0000d3aa0000d4aa0000d5aa0000d6aa0000d7aa0000d8aa0000d9aa0000daaa0000dbaa0000dcaa0000ddaa0000deaa0000dfaa0000e0aa0000e1aa0000e2aa0000e3aa0000e4aa0000e5aa0000e6aa0000e7aa0000e8aa0000e9aa0000eaaa0000ebaa0000ecaa0000edaa0000eeaa0000efaa0000f0aa0000f1aa0000f2aa0000f3aa0000f4aa0000f5aa0000f6aa0000f7aa0000f8aa0000f9aa0000faaa0000fbaa0000fcaa0000fdaa0000feaa0000ffaa000000ab000001ab000002ab000003ab000004ab000005ab000006ab000007ab000008ab000009ab00000aab00000bab00000cab00000dab00000eab00000fab000010ab000011ab000012ab000013ab000014ab000015ab000016ab000017ab000018ab000019ab00001aab00001bab00001cab00001dab00001eab00001fab000020ab000021ab000022ab000023ab000024ab000025ab000026ab000027ab000028ab000029ab00002aab00002bab00002cab00002dab00002eab00002fab000030ab000031ab000032ab000033ab000034ab000035ab000036ab000037ab000038ab000039ab00003aab00003bab00003cab00003dab00003eab00003fab000040ab000041ab000042ab000043ab000044ab000045ab000046ab000047ab000048ab000049ab00004aab00004bab00004cab00004dab00004eab00004fab000050ab000051ab000052ab000053ab000054ab000055ab000056ab000057ab000058ab000059ab00005aab00005bab00005cab00005dab00005eab00005fab000060ab000061ab000062ab000063ab000064ab000065ab000066ab000067ab000068ab000069ab00006aab00006bab00006cab00006dab00006eab00006fab000070ab000071ab000072ab000073ab000074ab000075ab000076ab000077ab000078ab000079ab00007aab00007bab00007cab00007dab00007eab00007fab000080ab000081ab000082ab000083ab000084ab000085ab000086ab000087ab000088ab000089ab00008aab00008bab00008cab00008dab00008eab00008fab000090ab000091ab000092ab000093ab000094ab000095ab000096ab000097ab000098ab000099ab00009aab00009bab00009cab00009dab00009eab00009fab0000a0ab0000a1ab0000a2ab0000a3ab0000a4ab0000a5ab0000a6ab0000a7ab0000a8ab0000a9ab0000aaab0000abab0000acab0000adab0000aeab0000afab0000b0ab0000b1ab0000b2ab0000b3ab0000b4ab0000b5ab0000b6ab0000b7ab0000b8ab0000b9ab0000baab0000bbab0000bcab0000bdab0000beab0000bfab0000c0ab0000c1ab0000c2ab0000c3ab0000c4ab0000c5ab0000c6ab0000c7ab0000c8ab0000c9ab0000caab0000cbab0000ccab0000cdab0000ceab0000cfab0000d0ab0000d1ab0000d2ab0000d3ab0000d4ab0000d5ab0000d6ab0000d7ab0000d8ab0000d9ab0000daab0000dbab0000dcab0000ddab0000deab0000dfab0000e0ab0000e1ab0000e2ab0000e3ab0000e4ab0000e5ab0000e6ab0000e7ab0000e8ab0000e9ab0000eaab0000ebab0000ecab0000edab0000eeab0000efab0000f0ab0000f1ab0000f2ab0000f3ab0000f4ab0000f5ab0000f6ab0000f7ab0000f8ab0000f9ab0000faab0000fbab0000fcab0000fdab0000feab0000ffab000000ac000001ac000002ac000003ac000004ac000005ac000006ac000007ac000008ac000009ac00000aac00000bac00000cac00000dac00000eac00000fac000010ac000011ac000012ac000013ac000014ac000015ac000016ac000017ac000018ac000019ac00001aac00001bac00001cac00001dac00001eac00001fac000020ac000021ac000022ac000023ac000024ac000025ac000026ac000027ac000028ac000029ac00002aac00002bac00002cac00002dac00002eac00002fac000030ac000031ac000032ac000033ac000034ac000035ac000036ac000037ac000038ac000039ac00003aac00003bac00003cac00003dac00003eac00003fac000040ac000041ac000042ac000043ac000044ac000045ac000046ac000047ac000048ac000049ac00004aac00004bac00004cac00004dac00004eac00004fac000050ac000051ac000052ac000053ac000054ac000055ac000056ac000057ac000058ac000059ac00005aac00005bac00005cac00005dac00005eac00005fac000060ac000061ac000062ac000063ac000064ac000065ac000066ac000067ac000068ac000069ac00006aac00006bac00006cac00006dac00006eac00006fac000070ac000071ac000072ac000073ac000074ac000075ac000076ac000077ac000078ac000079ac00007aac00007bac00007cac00007dac00007eac00007fac000080ac000081ac000082ac000083ac000084ac000085ac000086ac000087ac000088ac000089ac00008aac00008bac00008cac00008dac00008eac00008fac000090ac000091ac000092ac000093ac000094ac000095ac000096ac000097ac000098ac000099ac00009aac00009bac00009cac00009dac00009eac00009fac0000a0ac0000a1ac0000a2ac0000a3ac0000a4ac0000a5ac0000a6ac0000a7ac0000a8ac0000a9ac0000aaac0000abac0000acac0000adac0000aeac0000afac0000b0ac0000b1ac0000b2ac0000b3ac0000b4ac0000b5ac0000b6ac0000b7ac0000b8ac0000b9ac0000baac0000bbac0000bcac0000bdac0000beac0000bfac0000c0ac0000c1ac0000c2ac0000c3ac0000c4ac0000c5ac0000c6ac0000c7ac0000c8ac0000c9ac0000caac0000cbac0000ccac0000cdac0000ceac0000cfac0000d0ac0000d1ac0000d2ac0000d3ac0000d4ac0000d5ac0000d6ac0000d7ac0000d8ac0000d9ac0000daac0000dbac0000dcac0000ddac0000deac0000dfac0000e0ac0000e1ac0000e2ac0000e3ac0000e4ac0000e5ac0000e6ac0000e7ac0000e8ac0000e9ac0000eaac0000ebac0000ecac0000edac0000eeac0000efac0000f0ac0000f1ac0000f2ac0000f3ac0000f4ac0000f5ac0000f6ac0000f7ac0000f8ac0000f9ac0000faac0000fbac0000fcac0000fdac0000feac0000ffac000000ad000001ad000002ad000003ad000004ad000005ad000006ad000007ad000008ad000009ad00000aad00000bad00000cad00000dad00000ead00000fad000010ad000011ad000012ad000013ad000014ad000015ad000016ad000017ad000018ad000019ad00001aad00001bad00001cad00001dad00001ead00001fad000020ad000021ad000022ad000023ad000024ad000025ad000026ad000027ad000028ad000029ad00002aad00002bad00002cad00002dad00002ead00002fad000030ad000031ad000032ad000033ad000034ad000035ad000036ad000037ad000038ad000039ad00003aad00003bad00003cad00003dad00003ead00003fad000040ad000041ad000042ad000043ad000044ad000045ad000046ad000047ad000048ad000049ad00004aad00004bad00004cad00004dad00004ead00004fad000050ad000051ad000052ad000053ad000054ad000055ad000056ad000057ad000058ad000059ad00005aad00005bad00005cad00005dad00005ead00005fad000060ad000061ad000062ad000063ad000064ad000065ad000066ad000067ad000068ad000069ad00006aad00006bad00006cad00006dad00006ead00006fad000070ad000071ad000072ad000073ad000074ad000075ad000076ad000077ad000078ad000079ad00007aad00007bad00007cad00007dad00007ead00007fad000080ad000081ad000082ad000083ad000084ad000085ad000086ad000087ad000088ad000089ad00008aad00008bad00008cad00008dad00008ead00008fad000090ad000091ad000092ad000093ad000094ad000095ad000096ad000097ad000098ad000099ad00009aad00009bad00009cad00009dad00009ead00009fad0000a0ad0000a1ad0000a2ad0000a3ad0000a4ad0000a5ad0000a6ad0000a7ad0000a8ad0000a9ad0000aaad0000abad0000acad0000adad0000aead0000afad0000b0ad0000b1ad0000b2ad0000b3ad0000b4ad0000b5ad0000b6ad0000b7ad0000b8ad0000b9ad0000baad0000bbad0000bcad0000bdad0000bead0000bfad0000c0ad0000c1ad0000c2ad0000c3ad0000c4ad0000c5ad0000c6ad0000c7ad0000c8ad0000c9ad0000caad0000cbad0000ccad0000cdad0000cead0000cfad0000d0ad0000d1ad0000d2ad0000d3ad0000d4ad0000d5ad0000d6ad0000d7ad0000d8ad0000d9ad0000daad0000dbad0000dcad0000ddad0000dead0000dfad0000e0ad0000e1ad0000e2ad0000e3ad0000e4ad0000e5ad0000e6ad0000e7ad0000e8ad0000e9ad0000eaad0000ebad0000ecad0000edad0000eead0000efad0000f0ad0000f1ad0000f2ad0000f3ad0000f4ad0000f5ad0000f6ad0000f7ad0000f8ad0000f9ad0000faad0000fbad0000fcad0000fdad0000fead0000ffad000000ae000001ae000002ae000003ae000004ae000005ae000006ae000007ae000008ae000009ae00000aae00000bae00000cae00000dae00000eae00000fae000010ae000011ae000012ae000013ae000014ae000015ae000016ae000017ae000018ae000019ae00001aae00001bae00001cae00001dae00001eae00001fae000020ae000021ae000022ae000023ae000024ae000025ae000026ae000027ae000028ae000029ae00002aae00002bae00002cae00002dae00002eae00002fae000030ae000031ae000032ae000033ae000034ae000035ae000036ae000037ae000038ae000039ae00003aae00003bae00003cae00003dae00003eae00003fae000040ae000041ae000042ae000043ae000044ae000045ae000046ae000047ae000048ae000049ae00004aae00004bae00004cae00004dae00004eae00004fae000050ae000051ae000052ae000053ae000054ae000055ae000056ae000057ae000058ae000059ae00005aae00005bae00005cae00005dae00005eae00005fae000060ae000061ae000062ae000063ae000064ae000065ae000066ae000067ae000068ae000069ae00006aae00006bae00006cae00006dae00006eae00006fae000070ae000071ae000072ae000073ae000074ae000075ae000076ae000077ae000078ae000079ae00007aae00007bae00007cae00007dae00007eae00007fae000080ae000081ae000082ae000083ae000084ae000085ae000086ae000087ae000088ae000089ae00008aae00008bae00008cae00008dae00008eae00008fae000090ae000091ae000092ae000093ae000094ae000095ae000096ae000097ae000098ae000099ae00009aae00009bae00009cae00009dae00009eae00009fae0000a0ae0000a1ae0000a2ae0000a3ae0000a4ae0000a5ae0000a6ae0000a7ae0000a8ae0000a9ae0000aaae0000abae0000acae0000adae0000aeae0000afae0000b0ae0000b1ae0000b2ae0000b3ae0000b4ae0000b5ae0000b6ae0000b7ae0000b8ae0000b9ae0000baae0000bbae0000bcae0000bdae0000beae0000bfae0000c0ae0000c1ae0000c2ae0000c3ae0000c4ae0000c5ae0000c6ae0000c7ae0000c8ae0000c9ae0000caae0000cbae0000ccae0000cdae0000ceae0000cfae0000d0ae0000d1ae0000d2ae0000d3ae0000d4ae0000d5ae0000d6ae0000d7ae0000d8ae0000d9ae0000daae0000dbae0000dcae0000ddae0000deae0000dfae0000e0ae0000e1ae0000e2ae0000e3ae0000e4ae0000e5ae0000e6ae0000e7ae0000e8ae0000e9ae0000eaae0000ebae0000ecae0000edae0000eeae0000efae0000f0ae0000f1ae0000f2ae0000f3ae0000f4ae0000f5ae0000f6ae0000f7ae0000f8ae0000f9ae0000faae0000fbae0000fcae0000fdae0000feae0000ffae000000af000001af000002af000003af000004af000005af000006af000007af000008af000009af00000aaf00000baf00000caf00000daf00000eaf00000faf000010af000011af000012af000013af000014af000015af000016af000017af000018af000019af00001aaf00001baf00001caf00001daf00001eaf00001faf000020af000021af000022af000023af000024af000025af000026af000027af000028af000029af00002aaf00002baf00002caf00002daf00002eaf00002faf000030af000031af000032af000033af000034af000035af000036af000037af000038af000039af00003aaf00003baf00003caf00003daf00003eaf00003faf000040af000041af000042af000043af000044af000045af000046af000047af000048af000049af00004aaf00004baf00004caf00004daf00004eaf00004faf000050af000051af000052af000053af000054af000055af000056af000057af000058af000059af00005aaf00005baf00005caf00005daf00005eaf00005faf000060af000061af000062af000063af000064af000065af000066af000067af000068af000069af00006aaf00006baf00006caf00006daf00006eaf00006faf000070af000071af000072af000073af000074af000075af000076af000077af000078af000079af00007aaf00007baf00007caf00007daf00007eaf00007faf000080af000081af000082af000083af000084af000085af000086af000087af000088af000089af00008aaf00008baf00008caf00008daf00008eaf00008faf000090af000091af000092af000093af000094af000095af000096af000097af000098af000099af00009aaf00009baf00009caf00009daf00009eaf00009faf0000a0af0000a1af0000a2af0000a3af0000a4af0000a5af0000a6af0000a7af0000a8af0000a9af0000aaaf0000abaf0000acaf0000adaf0000aeaf0000afaf0000b0af0000b1af0000b2af0000b3af0000b4af0000b5af0000b6af0000b7af0000b8af0000b9af0000baaf0000bbaf0000bcaf0000bdaf0000beaf0000bfaf0000c0af0000c1af0000c2af0000c3af0000c4af0000c5af0000c6af0000c7af0000c8af0000c9af0000caaf0000cbaf0000ccaf0000cdaf0000ceaf0000cfaf0000d0af0000d1af0000d2af0000d3af0000d4af0000d5af0000d6af0000d7af0000d8af0000d9af0000daaf0000dbaf0000dcaf0000ddaf0000deaf0000dfaf0000e0af0000e1af0000e2af0000e3af0000e4af0000e5af0000e6af0000e7af0000e8af0000e9af0000eaaf0000ebaf0000ecaf0000edaf0000eeaf0000efaf0000f0af0000f1af0000f2af0000f3af0000f4af0000f5af0000f6af0000f7af0000f8af0000f9af0000faaf0000fbaf0000fcaf0000fdaf0000feaf0000ffaf000000b0000001b0000002b0000003b0000004b0000005b0000006b0000007b0000008b0000009b000000ab000000bb000000cb000000db000000eb000000fb0000010b0000011b0000012b0000013b0000014b0000015b0000016b0000017b0000018b0000019b000001ab000001bb000001cb000001db000001eb000001fb0000020b0000021b0000022b0000023b0000024b0000025b0000026b0000027b0000028b0000029b000002ab000002bb000002cb000002db000002eb000002fb0000030b0000031b0000032b0000033b0000034b0000035b0000036b0000037b0000038b0000039b000003ab000003bb000003cb000003db000003eb000003fb0000040b0000041b0000042b0000043b0000044b0000045b0000046b0000047b0000048b0000049b000004ab000004bb000004cb000004db000004eb000004fb0000050b0000051b0000052b0000053b0000054b0000055b0000056b0000057b0000058b0000059b000005ab000005bb000005cb000005db000005eb000005fb0000060b0000061b0000062b0000063b0000064b0000065b0000066b0000067b0000068b0000069b000006ab000006bb000006cb000006db000006eb000006fb0000070b0000071b0000072b0000073b0000074b0000075b0000076b0000077b0000078b0000079b000007ab000007bb000007cb000007db000007eb000007fb0000080b0000081b0000082b0000083b0000084b0000085b0000086b0000087b0000088b0000089b000008ab000008bb000008cb000008db000008eb000008fb0000090b0000091b0000092b0000093b0000094b0000095b0000096b0000097b0000098b0000099b000009ab000009bb000009cb000009db000009eb000009fb00000a0b00000a1b00000a2b00000a3b00000a4b00000a5b00000a6b00000a7b00000a8b00000a9b00000aab00000abb00000acb00000adb00000aeb00000afb00000b0b00000b1b00000b2b00000b3b00000b4b00000b5b00000b6b00000b7b00000b8b00000b9b00000bab00000bbb00000bcb00000bdb00000beb00000bfb00000c0b00000c1b00000c2b00000c3b00000c4b00000c5b00000c6b00000c7b00000c8b00000c9b00000cab00000cbb00000ccb00000cdb00000ceb00000cfb00000d0b00000d1b00000d2b00000d3b00000d4b00000d5b00000d6b00000d7b00000d8b00000d9b00000dab00000dbb00000dcb00000ddb00000deb00000dfb00000e0b00000e1b00000e2b00000e3b00000e4b00000e5b00000e6b00000e7b00000e8b00000e9b00000eab00000ebb00000ecb00000edb00000eeb00000efb00000f0b00000f1b00000f2b00000f3b00000f4b00000f5b00000f6b00000f7b00000f8b00000f9b00000fab00000fbb00000fcb00000fdb00000feb00000ffb0000000b1000001b1000002b1000003b1000004b1000005b1000006b1000007b1000008b1000009b100000ab100000bb100000cb100000db100000eb100000fb1000010b1000011b1000012b1000013b1000014b1000015b1000016b1000017b1000018b1000019b100001ab100001bb100001cb100001db100001eb100001fb1000020b1000021b1000022b1000023b1000024b1000025b1000026b1000027b1000028b1000029b100002ab100002bb100002cb100002db100002eb100002fb1000030b1000031b1000032b1000033b1000034b1000035b1000036b1000037b1000038b1000039b100003ab100003bb100003cb100003db100003eb100003fb1000040b1000041b1000042b1000043b1000044b1000045b1000046b1000047b1000048b1000049b100004ab100004bb100004cb100004db100004eb100004fb1000050b1000051b1000052b1000053b1000054b1000055b1000056b1000057b1000058b1000059b100005ab100005bb100005cb100005db100005eb100005fb1000060b1000061b1000062b1000063b1000064b1000065b1000066b1000067b1000068b1000069b100006ab100006bb100006cb100006db100006eb100006fb1000070b1000071b1000072b1000073b1000074b1000075b1000076b1000077b1000078b1000079b100007ab100007bb100007cb100007db100007eb100007fb1000080b1000081b1000082b1000083b1000084b1000085b1000086b1000087b1000088b1000089b100008ab100008bb100008cb100008db100008eb100008fb1000090b1000091b1000092b1000093b1000094b1000095b1000096b1000097b1000098b1000099b100009ab100009bb100009cb100009db100009eb100009fb10000a0b10000a1b10000a2b10000a3b10000a4b10000a5b10000a6b10000a7b10000a8b10000a9b10000aab10000abb10000acb10000adb10000aeb10000afb10000b0b10000b1b10000b2b10000b3b10000b4b10000b5b10000b6b10000b7b10000b8b10000b9b10000bab10000bbb10000bcb10000bdb10000beb10000bfb10000c0b10000c1b10000c2b10000c3b10000c4b10000c5b10000c6b10000c7b10000c8b10000c9b10000cab10000cbb10000ccb10000cdb10000ceb10000cfb10000d0b10000d1b10000d2b10000d3b10000d4b10000d5b10000d6b10000d7b10000d8b10000d9b10000dab10000dbb10000dcb10000ddb10000deb10000dfb10000e0b10000e1b10000e2b10000e3b10000e4b10000e5b10000e6b10000e7b10000e8b10000e9b10000eab10000ebb10000ecb10000edb10000eeb10000efb10000f0b10000f1b10000f2b10000f3b10000f4b10000f5b10000f6b10000f7b10000f8b10000f9b10000fab10000fbb10000fcb10000fdb10000feb10000ffb1000000b2000001b2000002b2000003b2000004b2000005b2000006b2000007b2000008b2000009b200000ab200000bb200000cb200000db200000eb200000fb2000010b2000011b2000012b2000013b2000014b2000015b2000016b2000017b2000018b2000019b200001ab200001bb200001cb200001db200001eb200001fb2000020b2000021b2000022b2000023b2000024b2000025b2000026b2000027b2000028b2000029b200002ab200002bb200002cb200002db200002eb200002fb2000030b2000031b2000032b2000033b2000034b2000035b2000036b2000037b2000038b2000039b200003ab200003bb200003cb200003db200003eb200003fb2000040b2000041b2000042b2000043b2000044b2000045b2000046b2000047b2000048b2000049b200004ab200004bb200004cb200004db200004eb200004fb2000050b2000051b2000052b2000053b2000054b2000055b2000056b2000057b2000058b2000059b200005ab200005bb200005cb200005db200005eb200005fb2000060b2000061b2000062b2000063b2000064b2000065b2000066b2000067b2000068b2000069b200006ab200006bb200006cb200006db200006eb200006fb2000070b2000071b2000072b2000073b2000074b2000075b2000076b2000077b2000078b2000079b200007ab200007bb200007cb200007db200007eb200007fb2000080b2000081b2000082b2000083b2000084b2000085b2000086b2000087b2000088b2000089b200008ab200008bb200008cb200008db200008eb200008fb2000090b2000091b2000092b2000093b2000094b2000095b2000096b2000097b2000098b2000099b200009ab200009bb200009cb200009db200009eb200009fb20000a0b20000a1b20000a2b20000a3b20000a4b20000a5b20000a6b20000a7b20000a8b20000a9b20000aab20000abb20000acb20000adb20000aeb20000afb20000b0b20000b1b20000b2b20000b3b20000b4b20000b5b20000b6b20000b7b20000b8b20000b9b20000bab20000bbb20000bcb20000bdb20000beb20000bfb20000c0b20000c1b20000c2b20000c3b20000c4b20000c5b20000c6b20000c7b20000c8b20000c9b20000cab20000cbb20000ccb20000cdb20000ceb20000cfb20000d0b20000d1b20000d2b20000d3b20000d4b20000d5b20000d6b20000d7b20000d8b20000d9b20000dab20000dbb20000dcb20000ddb20000deb20000dfb20000e0b20000e1b20000e2b20000e3b20000e4b20000e5b20000e6b20000e7b20000e8b20000e9b20000eab20000ebb20000ecb20000edb20000eeb20000efb20000f0b20000f1b20000f2b20000f3b20000f4b20000f5b20000f6b20000f7b20000f8b20000f9b20000fab20000fbb20000fcb20000fdb20000feb20000ffb2000000b3000001b3000002b3000003b3000004b3000005b3000006b3000007b3000008b3000009b300000ab300000bb300000cb300000db300000eb300000fb3000010b3000011b3000012b3000013b3000014b3000015b3000016b3000017b3000018b3000019b300001ab300001bb300001cb300001db300001eb300001fb3000020b3000021b3000022b3000023b3000024b3000025b3000026b3000027b3000028b3000029b300002ab300002bb300002cb300002db300002eb300002fb3000030b3000031b3000032b3000033b3000034b3000035b3000036b3000037b3000038b3000039b300003ab300003bb300003cb300003db300003eb300003fb3000040b3000041b3000042b3000043b3000044b3000045b3000046b3000047b3000048b3000049b300004ab300004bb300004cb300004db300004eb300004fb3000050b3000051b3000052b3000053b3000054b3000055b3000056b3000057b3000058b3000059b300005ab300005bb300005cb300005db300005eb300005fb3000060b3000061b3000062b3000063b3000064b3000065b3000066b3000067b3000068b3000069b300006ab300006bb300006cb300006db300006eb300006fb3000070b3000071b3000072b3000073b3000074b3000075b3000076b3000077b3000078b3000079b300007ab300007bb300007cb300007db300007eb300007fb3000080b3000081b3000082b3000083b3000084b3000085b3000086b3000087b3000088b3000089b300008ab300008bb300008cb300008db300008eb300008fb3000090b3000091b3000092b3000093b3000094b3000095b3000096b3000097b3000098b3000099b300009ab300009bb300009cb300009db300009eb300009fb30000a0b30000a1b30000a2b30000a3b30000a4b30000a5b30000a6b30000a7b30000a8b30000a9b30000aab30000abb30000acb30000adb30000aeb30000afb30000b0b30000b1b30000b2b30000b3b30000b4b30000b5b30000b6b30000b7b30000b8b30000b9b30000bab30000bbb30000bcb30000bdb30000beb30000bfb30000c0b30000c1b30000c2b30000c3b30000c4b30000c5b30000c6b30000c7b30000c8b30000c9b30000cab30000cbb30000ccb30000cdb30000ceb30000cfb30000d0b30000d1b30000d2b30000d3b30000d4b30000d5b30000d6b30000d7b30000d8b30000d9b30000dab30000dbb30000dcb30000ddb30000deb30000dfb30000e0b30000e1b30000e2b30000e3b30000e4b30000e5b30000e6b30000e7b30000e8b30000e9b30000eab30000ebb30000ecb30000edb30000eeb30000efb30000f0b30000f1b30000f2b30000f3b30000f4b30000f5b30000f6b30000f7b30000f8b30000f9b30000fab30000fbb30000fcb30000fdb30000feb30000ffb3000000b4000001b4000002b4000003b4000004b4000005b4000006b4000007b4000008b4000009b400000ab400000bb400000cb400000db400000eb400000fb4000010b4000011b4000012b4000013b4000014b4000015b4000016b4000017b4000018b4000019b400001ab400001bb400001cb400001db400001eb400001fb4000020b4000021b4000022b4000023b4000024b4000025b4000026b4000027b4000028b4000029b400002ab400002bb400002cb400002db400002eb400002fb4000030b4000031b4000032b4000033b4000034b4000035b4000036b4000037b4000038b4000039b400003ab400003bb400003cb400003db400003eb400003fb4000040b4000041b4000042b4000043b4000044b4000045b4000046b4000047b4000048b4000049b400004ab400004bb400004cb400004db400004eb400004fb4000050b4000051b4000052b4000053b4000054b4000055b4000056b4000057b4000058b4000059b400005ab400005bb400005cb400005db400005eb400005fb4000060b4000061b4000062b4000063b4000064b4000065b4000066b4000067b4000068b4000069b400006ab400006bb400006cb400006db400006eb400006fb4000070b4000071b4000072b4000073b4000074b4000075b4000076b4000077b4000078b4000079b400007ab400007bb400007cb400007db400007eb400007fb4000080b4000081b4000082b4000083b4000084b4000085b4000086b4000087b4000088b4000089b400008ab400008bb400008cb400008db400008eb400008fb4000090b4000091b4000092b4000093b4000094b4000095b4000096b4000097b4000098b4000099b400009ab400009bb400009cb400009db400009eb400009fb40000a0b40000a1b40000a2b40000a3b40000a4b40000a5b40000a6b40000a7b40000a8b40000a9b40000aab40000abb40000acb40000adb40000aeb40000afb40000b0b40000b1b40000b2b40000b3b40000b4b40000b5b40000b6b40000b7b40000b8b40000b9b40000bab40000bbb40000bcb40000bdb40000beb40000bfb40000c0b40000c1b40000c2b40000c3b40000c4b40000c5b40000c6b40000c7b40000c8b40000c9b40000cab40000cbb40000ccb40000cdb40000ceb40000cfb40000d0b40000d1b40000d2b40000d3b40000d4b40000d5b40000d6b40000d7b40000d8b40000d9b40000dab40000dbb40000dcb40000ddb40000deb40000dfb40000e0b40000e1b40000e2b40000e3b40000e4b40000e5b40000e6b40000e7b40000e8b40000e9b40000eab40000ebb40000ecb40000edb40000eeb40000efb40000f0b40000f1b40000f2b40000f3b40000f4b40000f5b40000f6b40000f7b40000f8b40000f9b40000fab40000fbb40000fcb40000fdb40000feb40000ffb4000000b5000001b5000002b5000003b5000004b5000005b5000006b5000007b5000008b5000009b500000ab500000bb500000cb500000db500000eb500000fb5000010b5000011b5000012b5000013b5000014b5000015b5000016b5000017b5000018b5000019b500001ab500001bb500001cb500001db500001eb500001fb5000020b5000021b5000022b5000023b5000024b5000025b5000026b5000027b5000028b5000029b500002ab500002bb500002cb500002db500002eb500002fb5000030b5000031b5000032b5000033b5000034b5000035b5000036b5000037b5000038b5000039b500003ab500003bb500003cb500003db500003eb500003fb5000040b5000041b5000042b5000043b5000044b5000045b5000046b5000047b5000048b5000049b500004ab500004bb500004cb500004db500004eb500004fb5000050b5000051b5000052b5000053b5000054b5000055b5000056b5000057b5000058b5000059b500005ab500005bb500005cb500005db500005eb500005fb5000060b5000061b5000062b5000063b5000064b5000065b5000066b5000067b5000068b5000069b500006ab500006bb500006cb500006db500006eb500006fb5000070b5000071b5000072b5000073b5000074b5000075b5000076b5000077b5000078b5000079b500007ab500007bb500007cb500007db500007eb500007fb5000080b5000081b5000082b5000083b5000084b5000085b5000086b5000087b5000088b5000089b500008ab500008bb500008cb500008db500008eb500008fb5000090b5000091b5000092b5000093b5000094b5000095b5000096b5000097b5000098b5000099b500009ab500009bb500009cb500009db500009eb500009fb50000a0b50000a1b50000a2b50000a3b50000a4b50000a5b50000a6b50000a7b50000a8b50000a9b50000aab50000abb50000acb50000adb50000aeb50000afb50000b0b50000b1b50000b2b50000b3b50000b4b50000b5b50000b6b50000b7b50000b8b50000b9b50000bab50000bbb50000bcb50000bdb50000beb50000bfb50000c0b50000c1b50000c2b50000c3b50000c4b50000c5b50000c6b50000c7b50000c8b50000c9b50000cab50000cbb50000ccb50000cdb50000ceb50000cfb50000d0b50000d1b50000d2b50000d3b50000d4b50000d5b50000d6b50000d7b50000d8b50000d9b50000dab50000dbb50000dcb50000ddb50000deb50000dfb50000e0b50000e1b50000e2b50000e3b50000e4b50000e5b50000e6b50000e7b50000e8b50000e9b50000eab50000ebb50000ecb50000edb50000eeb50000efb50000f0b50000f1b50000f2b50000f3b50000f4b50000f5b50000f6b50000f7b50000f8b50000f9b50000fab50000fbb50000fcb50000fdb50000feb50000ffb5000000b6000001b6000002b6000003b6000004b6000005b6000006b6000007b6000008b6000009b600000ab600000bb600000cb600000db600000eb600000fb6000010b6000011b6000012b6000013b6000014b6000015b6000016b6000017b6000018b6000019b600001ab600001bb600001cb600001db600001eb600001fb6000020b6000021b6000022b6000023b6000024b6000025b6000026b6000027b6000028b6000029b600002ab600002bb600002cb600002db600002eb600002fb6000030b6000031b6000032b6000033b6000034b6000035b6000036b6000037b6000038b6000039b600003ab600003bb600003cb600003db600003eb600003fb6000040b6000041b6000042b6000043b6000044b6000045b6000046b6000047b6000048b6000049b600004ab600004bb600004cb600004db600004eb600004fb6000050b6000051b6000052b6000053b6000054b6000055b6000056b6000057b6000058b6000059b600005ab600005bb600005cb600005db600005eb600005fb6000060b6000061b6000062b6000063b6000064b6000065b6000066b6000067b6000068b6000069b600006ab600006bb600006cb600006db600006eb600006fb6000070b6000071b6000072b6000073b6000074b6000075b6000076b6000077b6000078b6000079b600007ab600007bb600007cb600007db600007eb600007fb6000080b6000081b6000082b6000083b6000084b6000085b6000086b6000087b6000088b6000089b600008ab600008bb600008cb600008db600008eb600008fb6000090b6000091b6000092b6000093b6000094b6000095b6000096b6000097b6000098b6000099b600009ab600009bb600009cb600009db600009eb600009fb60000a0b60000a1b60000a2b60000a3b60000a4b60000a5b60000a6b60000a7b60000a8b60000a9b60000aab60000abb60000acb60000adb60000aeb60000afb60000b0b60000b1b60000b2b60000b3b60000b4b60000b5b60000b6b60000b7b60000b8b60000b9b60000bab60000bbb60000bcb60000bdb60000beb60000bfb60000c0b60000c1b60000c2b60000c3b60000c4b60000c5b60000c6b60000c7b60000c8b60000c9b60000cab60000cbb60000ccb60000cdb60000ceb60000cfb60000d0b60000d1b60000d2b60000d3b60000d4b60000d5b60000d6b60000d7b60000d8b60000d9b60000dab60000dbb60000dcb60000ddb60000deb60000dfb60000e0b60000e1b60000e2b60000e3b60000e4b60000e5b60000e6b60000e7b60000e8b60000e9b60000eab60000ebb60000ecb60000edb60000eeb60000efb60000f0b60000f1b60000f2b60000f3b60000f4b60000f5b60000f6b60000f7b60000f8b60000f9b60000fab60000fbb60000fcb60000fdb60000feb60000ffb6000000b7000001b7000002b7000003b7000004b7000005b7000006b7000007b7000008b7000009b700000ab700000bb700000cb700000db700000eb700000fb7000010b7000011b7000012b7000013b7000014b7000015b7000016b7000017b7000018b7000019b700001ab700001bb700001cb700001db700001eb700001fb7000020b7000021b7000022b7000023b7000024b7000025b7000026b7000027b7000028b7000029b700002ab700002bb700002cb700002db700002eb700002fb7000030b7000031b7000032b7000033b7000034b7000035b7000036b7000037b7000038b7000039b700003ab700003bb700003cb700003db700003eb700003fb7000040b7000041b7000042b7000043b7000044b7000045b7000046b7000047b7000048b7000049b700004ab700004bb700004cb700004db700004eb700004fb7000050b7000051b7000052b7000053b7000054b7000055b7000056b7000057b7000058b7000059b700005ab700005bb700005cb700005db700005eb700005fb7000060b7000061b7000062b7000063b7000064b7000065b7000066b7000067b7000068b7000069b700006ab700006bb700006cb700006db700006eb700006fb7000070b7000071b7000072b7000073b7000074b7000075b7000076b7000077b7000078b7000079b700007ab700007bb700007cb700007db700007eb700007fb7000080b7000081b7000082b7000083b7000084b7000085b7000086b7000087b7000088b7000089b700008ab700008bb700008cb700008db700008eb700008fb7000090b7000091b7000092b7000093b7000094b7000095b7000096b7000097b7000098b7000099b700009ab700009bb700009cb700009db700009eb700009fb70000a0b70000a1b70000a2b70000a3b70000a4b70000a5b70000a6b70000a7b70000a8b70000a9b70000aab70000abb70000acb70000adb70000aeb70000afb70000b0b70000b1b70000b2b70000b3b70000b4b70000b5b70000b6b70000b7b70000b8b70000b9b70000bab70000bbb70000bcb70000bdb70000beb70000bfb70000c0b70000c1b70000c2b70000c3b70000c4b70000c5b70000c6b70000c7b70000c8b70000c9b70000cab70000cbb70000ccb70000cdb70000ceb70000cfb70000d0b70000d1b70000d2b70000d3b70000d4b70000d5b70000d6b70000d7b70000d8b70000d9b70000dab70000dbb70000dcb70000ddb70000deb70000dfb70000e0b70000e1b70000e2b70000e3b70000e4b70000e5b70000e6b70000e7b70000e8b70000e9b70000eab70000ebb70000ecb70000edb70000eeb70000efb70000f0b70000f1b70000f2b70000f3b70000f4b70000f5b70000f6b70000f7b70000f8b70000f9b70000fab70000fbb70000fcb70000fdb70000feb70000ffb7000000b8000001b8000002b8000003b8000004b8000005b8000006b8000007b8000008b8000009b800000ab800000bb800000cb800000db800000eb800000fb8000010b8000011b8000012b8000013b8000014b8000015b8000016b8000017b8000018b8000019b800001ab800001bb800001cb800001db800001eb800001fb8000020b8000021b8000022b8000023b8000024b8000025b8000026b8000027b8000028b8000029b800002ab800002bb800002cb800002db800002eb800002fb8000030b8000031b8000032b8000033b8000034b8000035b8000036b8000037b8000038b8000039b800003ab800003bb800003cb800003db800003eb800003fb8000040b8000041b8000042b8000043b8000044b8000045b8000046b8000047b8000048b8000049b800004ab800004bb800004cb800004db800004eb800004fb8000050b8000051b8000052b8000053b8000054b8000055b8000056b8000057b8000058b8000059b800005ab800005bb800005cb800005db800005eb800005fb8000060b8000061b8000062b8000063b8000064b8000065b8000066b8000067b8000068b8000069b800006ab800006bb800006cb800006db800006eb800006fb8000070b8000071b8000072b8000073b8000074b8000075b8000076b8000077b8000078b8000079b800007ab800007bb800007cb800007db800007eb800007fb8000080b8000081b8000082b8000083b8000084b8000085b8000086b8000087b8000088b8000089b800008ab800008bb800008cb800008db800008eb800008fb8000090b8000091b8000092b8000093b8000094b8000095b8000096b8000097b8000098b8000099b800009ab800009bb800009cb800009db800009eb800009fb80000a0b80000a1b80000a2b80000a3b80000a4b80000a5b80000a6b80000a7b80000a8b80000a9b80000aab80000abb80000acb80000adb80000aeb80000afb80000b0b80000b1b80000b2b80000b3b80000b4b80000b5b80000b6b80000b7b80000b8b80000b9b80000bab80000bbb80000bcb80000bdb80000beb80000bfb80000c0b80000c1b80000c2b80000c3b80000c4b80000c5b80000c6b80000c7b80000c8b80000c9b80000cab80000cbb80000ccb80000cdb80000ceb80000cfb80000d0b80000d1b80000d2b80000d3b80000d4b80000d5b80000d6b80000d7b80000d8b80000d9b80000dab80000dbb80000dcb80000ddb80000deb80000dfb80000e0b80000e1b80000e2b80000e3b80000e4b80000e5b80000e6b80000e7b80000e8b80000e9b80000eab80000ebb80000ecb80000edb80000eeb80000efb80000f0b80000f1b80000f2b80000f3b80000f4b80000f5b80000f6b80000f7b80000f8b80000f9b80000fab80000fbb80000fcb80000fdb80000feb80000ffb8000000b9000001b9000002b9000003b9000004b9000005b9000006b9000007b9000008b9000009b900000ab900000bb900000cb900000db900000eb900000fb9000010b9000011b9000012b9000013b9000014b9000015b9000016b9000017b9000018b9000019b900001ab900001bb900001cb900001db900001eb900001fb9000020b9000021b9000022b9000023b9000024b9000025b9000026b9000027b9000028b9000029b900002ab900002bb900002cb900002db900002eb900002fb9000030b9000031b9000032b9000033b9000034b9000035b9000036b9000037b9000038b9000039b900003ab900003bb900003cb900003db900003eb900003fb9000040b9000041b9000042b9000043b9000044b9000045b9000046b9000047b9000048b9000049b900004ab900004bb900004cb900004db900004eb900004fb9000050b9000051b9000052b9000053b9000054b9000055b9000056b9000057b9000058b9000059b900005ab900005bb900005cb900005db900005eb900005fb9000060b9000061b9000062b9000063b9000064b9000065b9000066b9000067b9000068b9000069b900006ab900006bb900006cb900006db900006eb900006fb9000070b9000071b9000072b9000073b9000074b9000075b9000076b9000077b9000078b9000079b900007ab900007bb900007cb900007db900007eb900007fb9000080b9000081b9000082b9000083b9000084b9000085b9000086b9000087b9000088b9000089b900008ab900008bb900008cb900008db900008eb900008fb9000090b9000091b9000092b9000093b9000094b9000095b9000096b9000097b9000098b9000099b900009ab900009bb900009cb900009db900009eb900009fb90000a0b90000a1b90000a2b90000a3b90000a4b90000a5b90000a6b90000a7b90000a8b90000a9b90000aab90000abb90000acb90000adb90000aeb90000afb90000b0b90000b1b90000b2b90000b3b90000b4b90000b5b90000b6b90000b7b90000b8b90000b9b90000bab90000bbb90000bcb90000bdb90000beb90000bfb90000c0b90000c1b90000c2b90000c3b90000c4b90000c5b90000c6b90000c7b90000c8b90000c9b90000cab90000cbb90000ccb90000cdb90000ceb90000cfb90000d0b90000d1b90000d2b90000d3b90000d4b90000d5b90000d6b90000d7b90000d8b90000d9b90000dab90000dbb90000dcb90000ddb90000deb90000dfb90000e0b90000e1b90000e2b90000e3b90000e4b90000e5b90000e6b90000e7b90000e8b90000e9b90000eab90000ebb90000ecb90000edb90000eeb90000efb90000f0b90000f1b90000f2b90000f3b90000f4b90000f5b90000f6b90000f7b90000f8b90000f9b90000fab90000fbb90000fcb90000fdb90000feb90000ffb9000000ba000001ba000002ba000003ba000004ba000005ba000006ba000007ba000008ba000009ba00000aba00000bba00000cba00000dba00000eba00000fba000010ba000011ba000012ba000013ba000014ba000015ba000016ba000017ba000018ba000019ba00001aba00001bba00001cba00001dba00001eba00001fba000020ba000021ba000022ba000023ba000024ba000025ba000026ba000027ba000028ba000029ba00002aba00002bba00002cba00002dba00002eba00002fba000030ba000031ba000032ba000033ba000034ba000035ba000036ba000037ba000038ba000039ba00003aba00003bba00003cba00003dba00003eba00003fba000040ba000041ba000042ba000043ba000044ba000045ba000046ba000047ba000048ba000049ba00004aba00004bba00004cba00004dba00004eba00004fba000050ba000051ba000052ba000053ba000054ba000055ba000056ba000057ba000058ba000059ba00005aba00005bba00005cba00005dba00005eba00005fba000060ba000061ba000062ba000063ba000064ba000065ba000066ba000067ba000068ba000069ba00006aba00006bba00006cba00006dba00006eba00006fba000070ba000071ba000072ba000073ba000074ba000075ba000076ba000077ba000078ba000079ba00007aba00007bba00007cba00007dba00007eba00007fba000080ba000081ba000082ba000083ba000084ba000085ba000086ba000087ba000088ba000089ba00008aba00008bba00008cba00008dba00008eba00008fba000090ba000091ba000092ba000093ba000094ba000095ba000096ba000097ba000098ba000099ba00009aba00009bba00009cba00009dba00009eba00009fba0000a0ba0000a1ba0000a2ba0000a3ba0000a4ba0000a5ba0000a6ba0000a7ba0000a8ba0000a9ba0000aaba0000abba0000acba0000adba0000aeba0000afba0000b0ba0000b1ba0000b2ba0000b3ba0000b4ba0000b5ba0000b6ba0000b7ba0000b8ba0000b9ba0000baba0000bbba0000bcba0000bdba0000beba0000bfba0000c0ba0000c1ba0000c2ba0000c3ba0000c4ba0000c5ba0000c6ba0000c7ba0000c8ba0000c9ba0000caba0000cbba0000ccba0000cdba0000ceba0000cfba0000d0ba0000d1ba0000d2ba0000d3ba0000d4ba0000d5ba0000d6ba0000d7ba0000d8ba0000d9ba0000daba0000dbba0000dcba0000ddba0000deba0000dfba0000e0ba0000e1ba0000e2ba0000e3ba0000e4ba0000e5ba0000e6ba0000e7ba0000e8ba0000e9ba0000eaba0000ebba0000ecba0000edba0000eeba0000efba0000f0ba0000f1ba0000f2ba0000f3ba0000f4ba0000f5ba0000f6ba0000f7ba0000f8ba0000f9ba0000faba0000fbba0000fcba0000fdba0000feba0000ffba000000bb000001bb000002bb000003bb000004bb000005bb000006bb000007bb000008bb000009bb00000abb00000bbb00000cbb00000dbb00000ebb00000fbb000010bb000011bb000012bb000013bb000014bb000015bb000016bb000017bb000018bb000019bb00001abb00001bbb00001cbb00001dbb00001ebb00001fbb000020bb000021bb000022bb000023bb000024bb000025bb000026bb000027bb000028bb000029bb00002abb00002bbb00002cbb00002dbb00002ebb00002fbb000030bb000031bb000032bb000033bb000034bb000035bb000036bb000037bb000038bb000039bb00003abb00003bbb00003cbb00003dbb00003ebb00003fbb000040bb000041bb000042bb000043bb000044bb000045bb000046bb000047bb000048bb000049bb00004abb00004bbb00004cbb00004dbb00004ebb00004fbb000050bb000051bb000052bb000053bb000054bb000055bb000056bb000057bb000058bb000059bb00005abb00005bbb00005cbb00005dbb00005ebb00005fbb000060bb000061bb000062bb000063bb000064bb000065bb000066bb000067bb000068bb000069bb00006abb00006bbb00006cbb00006dbb00006ebb00006fbb000070bb000071bb000072bb000073bb000074bb000075bb000076bb000077bb000078bb000079bb00007abb00007bbb00007cbb00007dbb00007ebb00007fbb000080bb000081bb000082bb000083bb000084bb000085bb000086bb000087bb000088bb000089bb00008abb00008bbb00008cbb00008dbb00008ebb00008fbb000090bb000091bb000092bb000093bb000094bb000095bb000096bb000097bb000098bb000099bb00009abb00009bbb00009cbb00009dbb00009ebb00009fbb0000a0bb0000a1bb0000a2bb0000a3bb0000a4bb0000a5bb0000a6bb0000a7bb0000a8bb0000a9bb0000aabb0000abbb0000acbb0000adbb0000aebb0000afbb0000b0bb0000b1bb0000b2bb0000b3bb0000b4bb0000b5bb0000b6bb0000b7bb0000b8bb0000b9bb0000babb0000bbbb0000bcbb0000bdbb0000bebb0000bfbb0000c0bb0000c1bb0000c2bb0000c3bb0000c4bb0000c5bb0000c6bb0000c7bb0000c8bb0000c9bb0000cabb0000cbbb0000ccbb0000cdbb0000cebb0000cfbb0000d0bb0000d1bb0000d2bb0000d3bb0000d4bb0000d5bb0000d6bb0000d7bb0000d8bb0000d9bb0000dabb0000dbbb0000dcbb0000ddbb0000debb0000dfbb0000e0bb0000e1bb0000e2bb0000e3bb0000e4bb0000e5bb0000e6bb0000e7bb0000e8bb0000e9bb0000eabb0000ebbb0000ecbb0000edbb0000eebb0000efbb0000f0bb0000f1bb0000f2bb0000f3bb0000f4bb0000f5bb0000f6bb0000f7bb0000f8bb0000f9bb0000fabb0000fbbb0000fcbb0000fdbb0000febb0000ffbb000000bc000001bc000002bc000003bc000004bc000005bc000006bc000007bc000008bc000009bc00000abc00000bbc00000cbc00000dbc00000ebc00000fbc000010bc000011bc000012bc000013bc000014bc000015bc000016bc000017bc000018bc000019bc00001abc00001bbc00001cbc00001dbc00001ebc00001fbc000020bc000021bc000022bc000023bc000024bc000025bc000026bc000027bc000028bc000029bc00002abc00002bbc00002cbc00002dbc00002ebc00002fbc000030bc000031bc000032bc000033bc000034bc000035bc000036bc000037bc000038bc000039bc00003abc00003bbc00003cbc00003dbc00003ebc00003fbc000040bc000041bc000042bc000043bc000044bc000045bc000046bc000047bc000048bc000049bc00004abc00004bbc00004cbc00004dbc00004ebc00004fbc000050bc000051bc000052bc000053bc000054bc000055bc000056bc000057bc000058bc000059bc00005abc00005bbc00005cbc00005dbc00005ebc00005fbc000060bc000061bc000062bc000063bc000064bc000065bc000066bc000067bc000068bc000069bc00006abc00006bbc00006cbc00006dbc00006ebc00006fbc000070bc000071bc000072bc000073bc000074bc000075bc000076bc000077bc000078bc000079bc00007abc00007bbc00007cbc00007dbc00007ebc00007fbc000080bc000081bc000082bc000083bc000084bc000085bc000086bc000087bc000088bc000089bc00008abc00008bbc00008cbc00008dbc00008ebc00008fbc000090bc000091bc000092bc000093bc000094bc000095bc000096bc000097bc000098bc000099bc00009abc00009bbc00009cbc00009dbc00009ebc00009fbc0000a0bc0000a1bc0000a2bc0000a3bc0000a4bc0000a5bc0000a6bc0000a7bc0000a8bc0000a9bc0000aabc0000abbc0000acbc0000adbc0000aebc0000afbc0000b0bc0000b1bc0000b2bc0000b3bc0000b4bc0000b5bc0000b6bc0000b7bc0000b8bc0000b9bc0000babc0000bbbc0000bcbc0000bdbc0000bebc0000bfbc0000c0bc0000c1bc0000c2bc0000c3bc0000c4bc0000c5bc0000c6bc0000c7bc0000c8bc0000c9bc0000cabc0000cbbc0000ccbc0000cdbc0000cebc0000cfbc0000d0bc0000d1bc0000d2bc0000d3bc0000d4bc0000d5bc0000d6bc0000d7bc0000d8bc0000d9bc0000dabc0000dbbc0000dcbc0000ddbc0000debc0000dfbc0000e0bc0000e1bc0000e2bc0000e3bc0000e4bc0000e5bc0000e6bc0000e7bc0000e8bc0000e9bc0000eabc0000ebbc0000ecbc0000edbc0000eebc0000efbc0000f0bc0000f1bc0000f2bc0000f3bc0000f4bc0000f5bc0000f6bc0000f7bc0000f8bc0000f9bc0000fabc0000fbbc0000fcbc0000fdbc0000febc0000ffbc000000bd000001bd000002bd000003bd000004bd000005bd000006bd000007bd000008bd000009bd00000abd00000bbd00000cbd00000dbd00000ebd00000fbd000010bd000011bd000012bd000013bd000014bd000015bd000016bd000017bd000018bd000019bd00001abd00001bbd00001cbd00001dbd00001ebd00001fbd000020bd000021bd000022bd000023bd000024bd000025bd000026bd000027bd000028bd000029bd00002abd00002bbd00002cbd00002dbd00002ebd00002fbd000030bd000031bd000032bd000033bd000034bd000035bd000036bd000037bd000038bd000039bd00003abd00003bbd00003cbd00003dbd00003ebd00003fbd000040bd000041bd000042bd000043bd000044bd000045bd000046bd000047bd000048bd000049bd00004abd00004bbd00004cbd00004dbd00004ebd00004fbd000050bd000051bd000052bd000053bd000054bd000055bd000056bd000057bd000058bd000059bd00005abd00005bbd00005cbd00005dbd00005ebd00005fbd000060bd000061bd000062bd000063bd000064bd000065bd000066bd000067bd000068bd000069bd00006abd00006bbd00006cbd00006dbd00006ebd00006fbd000070bd000071bd000072bd000073bd000074bd000075bd000076bd000077bd000078bd000079bd00007abd00007bbd00007cbd00007dbd00007ebd00007fbd000080bd000081bd000082bd000083bd000084bd000085bd000086bd000087bd000088bd000089bd00008abd00008bbd00008cbd00008dbd00008ebd00008fbd000090bd000091bd000092bd000093bd000094bd000095bd000096bd000097bd000098bd000099bd00009abd00009bbd00009cbd00009dbd00009ebd00009fbd0000a0bd0000a1bd0000a2bd0000a3bd0000a4bd0000a5bd0000a6bd0000a7bd0000a8bd0000a9bd0000aabd0000abbd0000acbd0000adbd0000aebd0000afbd0000b0bd0000b1bd0000b2bd0000b3bd0000b4bd0000b5bd0000b6bd0000b7bd0000b8bd0000b9bd0000babd0000bbbd0000bcbd0000bdbd0000bebd0000bfbd0000c0bd0000c1bd0000c2bd0000c3bd0000c4bd0000c5bd0000c6bd0000c7bd0000c8bd0000c9bd0000cabd0000cbbd0000ccbd0000cdbd0000cebd0000cfbd0000d0bd0000d1bd0000d2bd0000d3bd0000d4bd0000d5bd0000d6bd0000d7bd0000d8bd0000d9bd0000dabd0000dbbd0000dcbd0000ddbd0000debd0000dfbd0000e0bd0000e1bd0000e2bd0000e3bd0000e4bd0000e5bd0000e6bd0000e7bd0000e8bd0000e9bd0000eabd0000ebbd0000ecbd0000edbd0000eebd0000efbd0000f0bd0000f1bd0000f2bd0000f3bd0000f4bd0000f5bd0000f6bd0000f7bd0000f8bd0000f9bd0000fabd0000fbbd0000fcbd0000fdbd0000febd0000ffbd000000be000001be000002be000003be000004be000005be000006be000007be000008be000009be00000abe00000bbe00000cbe00000dbe00000ebe00000fbe000010be000011be000012be000013be000014be000015be000016be000017be000018be000019be00001abe00001bbe00001cbe00001dbe00001ebe00001fbe000020be000021be000022be000023be000024be000025be000026be000027be000028be000029be00002abe00002bbe00002cbe00002dbe00002ebe00002fbe000030be000031be000032be000033be000034be000035be000036be000037be000038be000039be00003abe00003bbe00003cbe00003dbe00003ebe00003fbe000040be000041be000042be000043be000044be000045be000046be000047be000048be000049be00004abe00004bbe00004cbe00004dbe00004ebe00004fbe000050be000051be000052be000053be000054be000055be000056be000057be000058be000059be00005abe00005bbe00005cbe00005dbe00005ebe00005fbe000060be000061be000062be000063be000064be000065be000066be000067be000068be000069be00006abe00006bbe00006cbe00006dbe00006ebe00006fbe000070be000071be000072be000073be000074be000075be000076be000077be000078be000079be00007abe00007bbe00007cbe00007dbe00007ebe00007fbe000080be000081be000082be000083be000084be000085be000086be000087be000088be000089be00008abe00008bbe00008cbe00008dbe00008ebe00008fbe000090be000091be000092be000093be000094be000095be000096be000097be000098be000099be00009abe00009bbe00009cbe00009dbe00009ebe00009fbe0000a0be0000a1be0000a2be0000a3be0000a4be0000a5be0000a6be0000a7be0000a8be0000a9be0000aabe0000abbe0000acbe0000adbe0000aebe0000afbe0000b0be0000b1be0000b2be0000b3be0000b4be0000b5be0000b6be0000b7be0000b8be0000b9be0000babe0000bbbe0000bcbe0000bdbe0000bebe0000bfbe0000c0be0000c1be0000c2be0000c3be0000c4be0000c5be0000c6be0000c7be0000c8be0000c9be0000cabe0000cbbe0000ccbe0000cdbe0000cebe0000cfbe0000d0be0000d1be0000d2be0000d3be0000d4be0000d5be0000d6be0000d7be0000d8be0000d9be0000dabe0000dbbe0000dcbe0000ddbe0000debe0000dfbe0000e0be0000e1be0000e2be0000e3be0000e4be0000e5be0000e6be0000e7be0000e8be0000e9be0000eabe0000ebbe0000ecbe0000edbe0000eebe0000efbe0000f0be0000f1be0000f2be0000f3be0000f4be0000f5be0000f6be0000f7be0000f8be0000f9be0000fabe0000fbbe0000fcbe0000fdbe0000febe0000ffbe000000bf000001bf000002bf000003bf000004bf000005bf000006bf000007bf000008bf000009bf00000abf00000bbf00000cbf00000dbf00000ebf00000fbf000010bf000011bf000012bf000013bf000014bf000015bf000016bf000017bf000018bf000019bf00001abf00001bbf00001cbf00001dbf00001ebf00001fbf000020bf000021bf000022bf000023bf000024bf000025bf000026bf000027bf000028bf000029bf00002abf00002bbf00002cbf00002dbf00002ebf00002fbf000030bf000031bf000032bf000033bf000034bf000035bf000036bf000037bf000038bf000039bf00003abf00003bbf00003cbf00003dbf00003ebf00003fbf000040bf000041bf000042bf000043bf000044bf000045bf000046bf000047bf000048bf000049bf00004abf00004bbf00004cbf00004dbf00004ebf00004fbf000050bf000051bf000052bf000053bf000054bf000055bf000056bf000057bf000058bf000059bf00005abf00005bbf00005cbf00005dbf00005ebf00005fbf000060bf000061bf000062bf000063bf000064bf000065bf000066bf000067bf000068bf000069bf00006abf00006bbf00006cbf00006dbf00006ebf00006fbf000070bf000071bf000072bf000073bf000074bf000075bf000076bf000077bf000078bf000079bf00007abf00007bbf00007cbf00007dbf00007ebf00007fbf000080bf000081bf000082bf000083bf000084bf000085bf000086bf000087bf000088bf000089bf00008abf00008bbf00008cbf00008dbf00008ebf00008fbf000090bf000091bf000092bf000093bf000094bf000095bf000096bf000097bf000098bf000099bf00009abf00009bbf00009cbf00009dbf00009ebf00009fbf0000a0bf0000a1bf0000a2bf0000a3bf0000a4bf0000a5bf0000a6bf0000a7bf0000a8bf0000a9bf0000aabf0000abbf0000acbf0000adbf0000aebf0000afbf0000b0bf0000b1bf0000b2bf0000b3bf0000b4bf0000b5bf0000b6bf0000b7bf0000b8bf0000b9bf0000babf0000bbbf0000bcbf0000bdbf0000bebf0000bfbf0000c0bf0000c1bf0000c2bf0000c3bf0000c4bf0000c5bf0000c6bf0000c7bf0000c8bf0000c9bf0000cabf0000cbbf0000ccbf0000cdbf0000cebf0000cfbf0000d0bf0000d1bf0000d2bf0000d3bf0000d4bf0000d5bf0000d6bf0000d7bf0000d8bf0000d9bf0000dabf0000dbbf0000dcbf0000ddbf0000debf0000dfbf0000e0bf0000e1bf0000e2bf0000e3bf0000e4bf0000e5bf0000e6bf0000e7bf0000e8bf0000e9bf0000eabf0000ebbf0000ecbf0000edbf0000eebf0000efbf0000f0bf0000f1bf0000f2bf0000f3bf0000f4bf0000f5bf0000f6bf0000f7bf0000f8bf0000f9bf0000fabf0000fbbf0000fcbf0000fdbf0000febf0000ffbf000000c0000001c0000002c0000003c0000004c0000005c0000006c0000007c0000008c0000009c000000ac000000bc000000cc000000dc000000ec000000fc0000010c0000011c0000012c0000013c0000014c0000015c0000016c0000017c0000018c0000019c000001ac000001bc000001cc000001dc000001ec000001fc0000020c0000021c0000022c0000023c0000024c0000025c0000026c0000027c0000028c0000029c000002ac000002bc000002cc000002dc000002ec000002fc0000030c0000031c0000032c0000033c0000034c0000035c0000036c0000037c0000038c0000039c000003ac000003bc000003cc000003dc000003ec000003fc0000040c0000041c0000042c0000043c0000044c0000045c0000046c0000047c0000048c0000049c000004ac000004bc000004cc000004dc000004ec000004fc0000050c0000051c0000052c0000053c0000054c0000055c0000056c0000057c0000058c0000059c000005ac000005bc000005cc000005dc000005ec000005fc0000060c0000061c0000062c0000063c0000064c0000065c0000066c0000067c0000068c0000069c000006ac000006bc000006cc000006dc000006ec000006fc0000070c0000071c0000072c0000073c0000074c0000075c0000076c0000077c0000078c0000079c000007ac000007bc000007cc000007dc000007ec000007fc0000080c0000081c0000082c0000083c0000084c0000085c0000086c0000087c0000088c0000089c000008ac000008bc000008cc000008dc000008ec000008fc0000090c0000091c0000092c0000093c0000094c0000095c0000096c0000097c0000098c0000099c000009ac000009bc000009cc000009dc000009ec000009fc00000a0c00000a1c00000a2c00000a3c00000a4c00000a5c00000a6c00000a7c00000a8c00000a9c00000aac00000abc00000acc00000adc00000aec00000afc00000b0c00000b1c00000b2c00000b3c00000b4c00000b5c00000b6c00000b7c00000b8c00000b9c00000bac00000bbc00000bcc00000bdc00000bec00000bfc00000c0c00000c1c00000c2c00000c3c00000c4c00000c5c00000c6c00000c7c00000c8c00000c9c00000cac00000cbc00000ccc00000cdc00000cec00000cfc00000d0c00000d1c00000d2c00000d3c00000d4c00000d5c00000d6c00000d7c00000d8c00000d9c00000dac00000dbc00000dcc00000ddc00000dec00000dfc00000e0c00000e1c00000e2c00000e3c00000e4c00000e5c00000e6c00000e7c00000e8c00000e9c00000eac00000ebc00000ecc00000edc00000eec00000efc00000f0c00000f1c00000f2c00000f3c00000f4c00000f5c00000f6c00000f7c00000f8c00000f9c00000fac00000fbc00000fcc00000fdc00000fec00000ffc0000000c1000001c1000002c1000003c1000004c1000005c1000006c1000007c1000008c1000009c100000ac100000bc100000cc100000dc100000ec100000fc1000010c1000011c1000012c1000013c1000014c1000015c1000016c1000017c1000018c1000019c100001ac100001bc100001cc100001dc100001ec100001fc1000020c1000021c1000022c1000023c1000024c1000025c1000026c1000027c1000028c1000029c100002ac100002bc100002cc100002dc100002ec100002fc1000030c1000031c1000032c1000033c1000034c1000035c1000036c1000037c1000038c1000039c100003ac100003bc100003cc100003dc100003ec100003fc1000040c1000041c1000042c1000043c1000044c1000045c1000046c1000047c1000048c1000049c100004ac100004bc100004cc100004dc100004ec100004fc1000050c1000051c1000052c1000053c1000054c1000055c1000056c1000057c1000058c1000059c100005ac100005bc100005cc100005dc100005ec100005fc1000060c1000061c1000062c1000063c1000064c1000065c1000066c1000067c1000068c1000069c100006ac100006bc100006cc100006dc100006ec100006fc1000070c1000071c1000072c1000073c1000074c1000075c1000076c1000077c1000078c1000079c100007ac100007bc100007cc100007dc100007ec100007fc1000080c1000081c1000082c1000083c1000084c1000085c1000086c1000087c1000088c1000089c100008ac100008bc100008cc100008dc100008ec100008fc1000090c1000091c1000092c1000093c1000094c1000095c1000096c1000097c1000098c1000099c100009ac100009bc100009cc100009dc100009ec100009fc10000a0c10000a1c10000a2c10000a3c10000a4c10000a5c10000a6c10000a7c10000a8c10000a9c10000aac10000abc10000acc10000adc10000aec10000afc10000b0c10000b1c10000b2c10000b3c10000b4c10000b5c10000b6c10000b7c10000b8c10000b9c10000bac10000bbc10000bcc10000bdc10000bec10000bfc10000c0c10000c1c10000c2c10000c3c10000c4c10000c5c10000c6c10000c7c10000c8c10000c9c10000cac10000cbc10000ccc10000cdc10000cec10000cfc10000d0c10000d1c10000d2c10000d3c10000d4c10000d5c10000d6c10000d7c10000d8c10000d9c10000dac10000dbc10000dcc10000ddc10000dec10000dfc10000e0c10000e1c10000e2c10000e3c10000e4c10000e5c10000e6c10000e7c10000e8c10000e9c10000eac10000ebc10000ecc10000edc10000eec10000efc10000f0c10000f1c10000f2c10000f3c10000f4c10000f5c10000f6c10000f7c10000f8c10000f9c10000fac10000fbc10000fcc10000fdc10000fec10000ffc1000000c2000001c2000002c2000003c2000004c2000005c2000006c2000007c2000008c2000009c200000ac200000bc200000cc200000dc200000ec200000fc2000010c2000011c2000012c2000013c2000014c2000015c2000016c2000017c2000018c2000019c200001ac200001bc200001cc200001dc200001ec200001fc2000020c2000021c2000022c2000023c2000024c2000025c2000026c2000027c2000028c2000029c200002ac200002bc200002cc200002dc200002ec200002fc2000030c2000031c2000032c2000033c2000034c2000035c2000036c2000037c2000038c2000039c200003ac200003bc200003cc200003dc200003ec200003fc2000040c2000041c2000042c2000043c2000044c2000045c2000046c2000047c2000048c2000049c200004ac200004bc200004cc200004dc200004ec200004fc2000050c2000051c2000052c2000053c2000054c2000055c2000056c2000057c2000058c2000059c200005ac200005bc200005cc200005dc200005ec200005fc2000060c2000061c2000062c2000063c2000064c2000065c2000066c2000067c2000068c2000069c200006ac200006bc200006cc200006dc200006ec200006fc2000070c2000071c2000072c2000073c2000074c2000075c2000076c2000077c2000078c2000079c200007ac200007bc200007cc200007dc200007ec200007fc2000080c2000081c2000082c2000083c2000084c2000085c2000086c2000087c2000088c2000089c200008ac200008bc200008cc200008dc200008ec200008fc2000090c2000091c2000092c2000093c2000094c2000095c2000096c2000097c2000098c2000099c200009ac200009bc200009cc200009dc200009ec200009fc20000a0c20000a1c20000a2c20000a3c20000a4c20000a5c20000a6c20000a7c20000a8c20000a9c20000aac20000abc20000acc20000adc20000aec20000afc20000b0c20000b1c20000b2c20000b3c20000b4c20000b5c20000b6c20000b7c20000b8c20000b9c20000bac20000bbc20000bcc20000bdc20000bec20000bfc20000c0c20000c1c20000c2c20000c3c20000c4c20000c5c20000c6c20000c7c20000c8c20000c9c20000cac20000cbc20000ccc20000cdc20000cec20000cfc20000d0c20000d1c20000d2c20000d3c20000d4c20000d5c20000d6c20000d7c20000d8c20000d9c20000dac20000dbc20000dcc20000ddc20000dec20000dfc20000e0c20000e1c20000e2c20000e3c20000e4c20000e5c20000e6c20000e7c20000e8c20000e9c20000eac20000ebc20000ecc20000edc20000eec20000efc20000f0c20000f1c20000f2c20000f3c20000f4c20000f5c20000f6c20000f7c20000f8c20000f9c20000fac20000fbc20000fcc20000fdc20000fec20000ffc2000000c3000001c3000002c3000003c3000004c3000005c3000006c3000007c3000008c3000009c300000ac300000bc300000cc300000dc300000ec300000fc3000010c3000011c3000012c3000013c3000014c3000015c3000016c3000017c3000018c3000019c300001ac300001bc300001cc300001dc300001ec300001fc3000020c3000021c3000022c3000023c3000024c3000025c3000026c3000027c3000028c3000029c300002ac300002bc300002cc300002dc300002ec300002fc3000030c3000031c3000032c3000033c3000034c3000035c3000036c3000037c3000038c3000039c300003ac300003bc300003cc300003dc300003ec300003fc3000040c3000041c3000042c3000043c3000044c3000045c3000046c3000047c3000048c3000049c300004ac300004bc300004cc300004dc300004ec300004fc3000050c3000051c3000052c3000053c3000054c3000055c3000056c3000057c3000058c3000059c300005ac300005bc300005cc300005dc300005ec300005fc3000060c3000061c3000062c3000063c3000064c3000065c3000066c3000067c3000068c3000069c300006ac300006bc300006cc300006dc300006ec300006fc3000070c3000071c3000072c3000073c3000074c3000075c3000076c3000077c3000078c3000079c300007ac300007bc300007cc300007dc300007ec300007fc3000080c3000081c3000082c3000083c3000084c3000085c3000086c3000087c3000088c3000089c300008ac300008bc300008cc300008dc300008ec300008fc3000090c3000091c3000092c3000093c3000094c3000095c3000096c3000097c3000098c3000099c300009ac300009bc300009cc300009dc300009ec300009fc30000a0c30000a1c30000a2c30000a3c30000a4c30000a5c30000a6c30000a7c30000a8c30000a9c30000aac30000abc30000acc30000adc30000aec30000afc30000b0c30000b1c30000b2c30000b3c30000b4c30000b5c30000b6c30000b7c30000b8c30000b9c30000bac30000bbc30000bcc30000bdc30000bec30000bfc30000c0c30000c1c30000c2c30000c3c30000c4c30000c5c30000c6c30000c7c30000c8c30000c9c30000cac30000cbc30000ccc30000cdc30000cec30000cfc30000d0c30000d1c30000d2c30000d3c30000d4c30000d5c30000d6c30000d7c30000d8c30000d9c30000dac30000dbc30000dcc30000ddc30000dec30000dfc30000e0c30000e1c30000e2c30000e3c30000e4c30000e5c30000e6c30000e7c30000e8c30000e9c30000eac30000ebc30000ecc30000edc30000eec30000efc30000f0c30000f1c30000f2c30000f3c30000f4c30000f5c30000f6c30000f7c30000f8c30000f9c30000fac30000fbc30000fcc30000fdc30000fec30000ffc3000000c4000001c4000002c4000003c4000004c4000005c4000006c4000007c4000008c4000009c400000ac400000bc400000cc400000dc400000ec400000fc4000010c4000011c4000012c4000013c4000014c4000015c4000016c4000017c4000018c4000019c400001ac400001bc400001cc400001dc400001ec400001fc4000020c4000021c4000022c4000023c4000024c4000025c4000026c4000027c4000028c4000029c400002ac400002bc400002cc400002dc400002ec400002fc4000030c4000031c4000032c4000033c4000034c4000035c4000036c4000037c4000038c4000039c400003ac400003bc400003cc400003dc400003ec400003fc4000040c4000041c4000042c4000043c4000044c4000045c4000046c4000047c4000048c4000049c400004ac400004bc400004cc400004dc400004ec400004fc4000050c4000051c4000052c4000053c4000054c4000055c4000056c4000057c4000058c4000059c400005ac400005bc400005cc400005dc400005ec400005fc4000060c4000061c4000062c4000063c4000064c4000065c4000066c4000067c4000068c4000069c400006ac400006bc400006cc400006dc400006ec400006fc4000070c4000071c4000072c4000073c4000074c4000075c4000076c4000077c4000078c4000079c400007ac400007bc400007cc400007dc400007ec400007fc4000080c4000081c4000082c4000083c4000084c4000085c4000086c4000087c4000088c4000089c400008ac400008bc400008cc400008dc400008ec400008fc4000090c4000091c4000092c4000093c4000094c4000095c4000096c4000097c4000098c4000099c400009ac400009bc400009cc400009dc400009ec400009fc40000a0c40000a1c40000a2c40000a3c40000a4c40000a5c40000a6c40000a7c40000a8c40000a9c40000aac40000abc40000acc40000adc40000aec40000afc40000b0c40000b1c40000b2c40000b3c40000b4c40000b5c40000b6c40000b7c40000b8c40000b9c40000bac40000bbc40000bcc40000bdc40000bec40000bfc40000c0c40000c1c40000c2c40000c3c40000c4c40000c5c40000c6c40000c7c40000c8c40000c9c40000cac40000cbc40000ccc40000cdc40000cec40000cfc40000d0c40000d1c40000d2c40000d3c40000d4c40000d5c40000d6c40000d7c40000d8c40000d9c40000dac40000dbc40000dcc40000ddc40000dec40000dfc40000e0c40000e1c40000e2c40000e3c40000e4c40000e5c40000e6c40000e7c40000e8c40000e9c40000eac40000ebc40000ecc40000edc40000eec40000efc40000f0c40000f1c40000f2c40000f3c40000f4c40000f5c40000f6c40000f7c40000f8c40000f9c40000fac40000fbc40000fcc40000fdc40000fec40000ffc4000000c5000001c5000002c5000003c5000004c5000005c5000006c5000007c5000008c5000009c500000ac500000bc500000cc500000dc500000ec500000fc5000010c5000011c5000012c5000013c5000014c5000015c5000016c5000017c5000018c5000019c500001ac500001bc500001cc500001dc500001ec500001fc5000020c5000021c5000022c5000023c5000024c5000025c5000026c5000027c5000028c5000029c500002ac500002bc500002cc500002dc500002ec500002fc5000030c5000031c5000032c5000033c5000034c5000035c5000036c5000037c5000038c5000039c500003ac500003bc500003cc500003dc500003ec500003fc5000040c5000041c5000042c5000043c5000044c5000045c5000046c5000047c5000048c5000049c500004ac500004bc500004cc500004dc500004ec500004fc5000050c5000051c5000052c5000053c5000054c5000055c5000056c5000057c5000058c5000059c500005ac500005bc500005cc500005dc500005ec500005fc5000060c5000061c5000062c5000063c5000064c5000065c5000066c5000067c5000068c5000069c500006ac500006bc500006cc500006dc500006ec500006fc5000070c5000071c5000072c5000073c5000074c5000075c5000076c5000077c5000078c5000079c500007ac500007bc500007cc500007dc500007ec500007fc5000080c5000081c5000082c5000083c5000084c5000085c5000086c5000087c5000088c5000089c500008ac500008bc500008cc500008dc500008ec500008fc5000090c5000091c5000092c5000093c5000094c5000095c5000096c5000097c5000098c5000099c500009ac500009bc500009cc500009dc500009ec500009fc50000a0c50000a1c50000a2c50000a3c50000a4c50000a5c50000a6c50000a7c50000a8c50000a9c50000aac50000abc50000acc50000adc50000aec50000afc50000b0c50000b1c50000b2c50000b3c50000b4c50000b5c50000b6c50000b7c50000b8c50000b9c50000bac50000bbc50000bcc50000bdc50000bec50000bfc50000c0c50000c1c50000c2c50000c3c50000c4c50000c5c50000c6c50000c7c50000c8c50000c9c50000cac50000cbc50000ccc50000cdc50000cec50000cfc50000d0c50000d1c50000d2c50000d3c50000d4c50000d5c50000d6c50000d7c50000d8c50000d9c50000dac50000dbc50000dcc50000ddc50000dec50000dfc50000e0c50000e1c50000e2c50000e3c50000e4c50000e5c50000e6c50000e7c50000e8c50000e9c50000eac50000ebc50000ecc50000edc50000eec50000efc50000f0c50000f1c50000f2c50000f3c50000f4c50000f5c50000f6c50000f7c50000f8c50000f9c50000fac50000fbc50000fcc50000fdc50000fec50000ffc5000000c6000001c6000002c6000003c6000004c6000005c6000006c6000007c6000008c6000009c600000ac600000bc600000cc600000dc600000ec600000fc6000010c6000011c6000012c6000013c6000014c6000015c6000016c6000017c6000018c6000019c600001ac600001bc600001cc600001dc600001ec600001fc6000020c6000021c6000022c6000023c6000024c6000025c6000026c6000027c6000028c6000029c600002ac600002bc600002cc600002dc600002ec600002fc6000030c6000031c6000032c6000033c6000034c6000035c6000036c6000037c6000038c6000039c600003ac600003bc600003cc600003dc600003ec600003fc6000040c6000041c6000042c6000043c6000044c6000045c6000046c6000047c6000048c6000049c600004ac600004bc600004cc600004dc600004ec600004fc6000050c6000051c6000052c6000053c6000054c6000055c6000056c6000057c6000058c6000059c600005ac600005bc600005cc600005dc600005ec600005fc6000060c6000061c6000062c6000063c6000064c6000065c6000066c6000067c6000068c6000069c600006ac600006bc600006cc600006dc600006ec600006fc6000070c6000071c6000072c6000073c6000074c6000075c6000076c6000077c6000078c6000079c600007ac600007bc600007cc600007dc600007ec600007fc6000080c6000081c6000082c6000083c6000084c6000085c6000086c6000087c6000088c6000089c600008ac600008bc600008cc600008dc600008ec600008fc6000090c6000091c6000092c6000093c6000094c6000095c6000096c6000097c6000098c6000099c600009ac600009bc600009cc600009dc600009ec600009fc60000a0c60000a1c60000a2c60000a3c60000a4c60000a5c60000a6c60000a7c60000a8c60000a9c60000aac60000abc60000acc60000adc60000aec60000afc60000b0c60000b1c60000b2c60000b3c60000b4c60000b5c60000b6c60000b7c60000b8c60000b9c60000bac60000bbc60000bcc60000bdc60000bec60000bfc60000c0c60000c1c60000c2c60000c3c60000c4c60000c5c60000c6c60000c7c60000c8c60000c9c60000cac60000cbc60000ccc60000cdc60000cec60000cfc60000d0c60000d1c60000d2c60000d3c60000d4c60000d5c60000d6c60000d7c60000d8c60000d9c60000dac60000dbc60000dcc60000ddc60000dec60000dfc60000e0c60000e1c60000e2c60000e3c60000e4c60000e5c60000e6c60000e7c60000e8c60000e9c60000eac60000ebc60000ecc60000edc60000eec60000efc60000f0c60000f1c60000f2c60000f3c60000f4c60000f5c60000f6c60000f7c60000f8c60000f9c60000fac60000fbc60000fcc60000fdc60000fec60000ffc6000000c7000001c7000002c7000003c7000004c7000005c7000006c7000007c7000008c7000009c700000ac700000bc700000cc700000dc700000ec700000fc7000010c7000011c7000012c7000013c7000014c7000015c7000016c7000017c7000018c7000019c700001ac700001bc700001cc700001dc700001ec700001fc7000020c7000021c7000022c7000023c7000024c7000025c7000026c7000027c7000028c7000029c700002ac700002bc700002cc700002dc700002ec700002fc7000030c7000031c7000032c7000033c7000034c7000035c7000036c7000037c7000038c7000039c700003ac700003bc700003cc700003dc700003ec700003fc7000040c7000041c7000042c7000043c7000044c7000045c7000046c7000047c7000048c7000049c700004ac700004bc700004cc700004dc700004ec700004fc7000050c7000051c7000052c7000053c7000054c7000055c7000056c7000057c7000058c7000059c700005ac700005bc700005cc700005dc700005ec700005fc7000060c7000061c7000062c7000063c7000064c7000065c7000066c7000067c7000068c7000069c700006ac700006bc700006cc700006dc700006ec700006fc7000070c7000071c7000072c7000073c7000074c7000075c7000076c7000077c7000078c7000079c700007ac700007bc700007cc700007dc700007ec700007fc7000080c7000081c7000082c7000083c7000084c7000085c7000086c7000087c7000088c7000089c700008ac700008bc700008cc700008dc700008ec700008fc7000090c7000091c7000092c7000093c7000094c7000095c7000096c7000097c7000098c7000099c700009ac700009bc700009cc700009dc700009ec700009fc70000a0c70000a1c70000a2c70000a3c70000a4c70000a5c70000a6c70000a7c70000a8c70000a9c70000aac70000abc70000acc70000adc70000aec70000afc70000b0c70000b1c70000b2c70000b3c70000b4c70000b5c70000b6c70000b7c70000b8c70000b9c70000bac70000bbc70000bcc70000bdc70000bec70000bfc70000c0c70000c1c70000c2c70000c3c70000c4c70000c5c70000c6c70000c7c70000c8c70000c9c70000cac70000cbc70000ccc70000cdc70000cec70000cfc70000d0c70000d1c70000d2c70000d3c70000d4c70000d5c70000d6c70000d7c70000d8c70000d9c70000dac70000dbc70000dcc70000ddc70000dec70000dfc70000e0c70000e1c70000e2c70000e3c70000e4c70000e5c70000e6c70000e7c70000e8c70000e9c70000eac70000ebc70000ecc70000edc70000eec70000efc70000f0c70000f1c70000f2c70000f3c70000f4c70000f5c70000f6c70000f7c70000f8c70000f9c70000fac70000fbc70000fcc70000fdc70000fec70000ffc7000000c8000001c8000002c8000003c8000004c8000005c8000006c8000007c8000008c8000009c800000ac800000bc800000cc800000dc800000ec800000fc8000010c8000011c8000012c8000013c8000014c8000015c8000016c8000017c8000018c8000019c800001ac800001bc800001cc800001dc800001ec800001fc8000020c8000021c8000022c8000023c8000024c8000025c8000026c8000027c8000028c8000029c800002ac800002bc800002cc800002dc800002ec800002fc8000030c8000031c8000032c8000033c8000034c8000035c8000036c8000037c8000038c8000039c800003ac800003bc800003cc800003dc800003ec800003fc8000040c8000041c8000042c8000043c8000044c8000045c8000046c8000047c8000048c8000049c800004ac800004bc800004cc800004dc800004ec800004fc8000050c8000051c8000052c8000053c8000054c8000055c8000056c8000057c8000058c8000059c800005ac800005bc800005cc800005dc800005ec800005fc8000060c8000061c8000062c8000063c8000064c8000065c8000066c8000067c8000068c8000069c800006ac800006bc800006cc800006dc800006ec800006fc8000070c8000071c8000072c8000073c8000074c8000075c8000076c8000077c8000078c8000079c800007ac800007bc800007cc800007dc800007ec800007fc8000080c8000081c8000082c8000083c8000084c8000085c8000086c8000087c8000088c8000089c800008ac800008bc800008cc800008dc800008ec800008fc8000090c8000091c8000092c8000093c8000094c8000095c8000096c8000097c8000098c8000099c800009ac800009bc800009cc800009dc800009ec800009fc80000a0c80000a1c80000a2c80000a3c80000a4c80000a5c80000a6c80000a7c80000a8c80000a9c80000aac80000abc80000acc80000adc80000aec80000afc80000b0c80000b1c80000b2c80000b3c80000b4c80000b5c80000b6c80000b7c80000b8c80000b9c80000bac80000bbc80000bcc80000bdc80000bec80000bfc80000c0c80000c1c80000c2c80000c3c80000c4c80000c5c80000c6c80000c7c80000c8c80000c9c80000cac80000cbc80000ccc80000cdc80000cec80000cfc80000d0c80000d1c80000d2c80000d3c80000d4c80000d5c80000d6c80000d7c80000d8c80000d9c80000dac80000dbc80000dcc80000ddc80000dec80000dfc80000e0c80000e1c80000e2c80000e3c80000e4c80000e5c80000e6c80000e7c80000e8c80000e9c80000eac80000ebc80000ecc80000edc80000eec80000efc80000f0c80000f1c80000f2c80000f3c80000f4c80000f5c80000f6c80000f7c80000f8c80000f9c80000fac80000fbc80000fcc80000fdc80000fec80000ffc8000000c9000001c9000002c9000003c9000004c9000005c9000006c9000007c9000008c9000009c900000ac900000bc900000cc900000dc900000ec900000fc9000010c9000011c9000012c9000013c9000014c9000015c9000016c9000017c9000018c9000019c900001ac900001bc900001cc900001dc900001ec900001fc9000020c9000021c9000022c9000023c9000024c9000025c9000026c9000027c9000028c9000029c900002ac900002bc900002cc900002dc900002ec900002fc9000030c9000031c9000032c9000033c9000034c9000035c9000036c9000037c9000038c9000039c900003ac900003bc900003cc900003dc900003ec900003fc9000040c9000041c9000042c9000043c9000044c9000045c9000046c9000047c9000048c9000049c900004ac900004bc900004cc900004dc900004ec900004fc9000050c9000051c9000052c9000053c9000054c9000055c9000056c9000057c9000058c9000059c900005ac900005bc900005cc900005dc900005ec900005fc9000060c9000061c9000062c9000063c9000064c9000065c9000066c9000067c9000068c9000069c900006ac900006bc900006cc900006dc900006ec900006fc9000070c9000071c9000072c9000073c9000074c9000075c9000076c9000077c9000078c9000079c900007ac900007bc900007cc900007dc900007ec900007fc9000080c9000081c9000082c9000083c9000084c9000085c9000086c9000087c9000088c9000089c900008ac900008bc900008cc900008dc900008ec900008fc9000090c9000091c9000092c9000093c9000094c9000095c9000096c9000097c9000098c9000099c900009ac900009bc900009cc900009dc900009ec900009fc90000a0c90000a1c90000a2c90000a3c90000a4c90000a5c90000a6c90000a7c90000a8c90000a9c90000aac90000abc90000acc90000adc90000aec90000afc90000b0c90000b1c90000b2c90000b3c90000b4c90000b5c90000b6c90000b7c90000b8c90000b9c90000bac90000bbc90000bcc90000bdc90000bec90000bfc90000c0c90000c1c90000c2c90000c3c90000c4c90000c5c90000c6c90000c7c90000c8c90000c9c90000cac90000cbc90000ccc90000cdc90000cec90000cfc90000d0c90000d1c90000d2c90000d3c90000d4c90000d5c90000d6c90000d7c90000d8c90000d9c90000dac90000dbc90000dcc90000ddc90000dec90000dfc90000e0c90000e1c90000e2c90000e3c90000e4c90000e5c90000e6c90000e7c90000e8c90000e9c90000eac90000ebc90000ecc90000edc90000eec90000efc90000f0c90000f1c90000f2c90000f3c90000f4c90000f5c90000f6c90000f7c90000f8c90000f9c90000fac90000fbc90000fcc90000fdc90000fec90000ffc9000000ca000001ca000002ca000003ca000004ca000005ca000006ca000007ca000008ca000009ca00000aca00000bca00000cca00000dca00000eca00000fca000010ca000011ca000012ca000013ca000014ca000015ca000016ca000017ca000018ca000019ca00001aca00001bca00001cca00001dca00001eca00001fca000020ca000021ca000022ca000023ca000024ca000025ca000026ca000027ca000028ca000029ca00002aca00002bca00002cca00002dca00002eca00002fca000030ca000031ca000032ca000033ca000034ca000035ca000036ca000037ca000038ca000039ca00003aca00003bca00003cca00003dca00003eca00003fca000040ca000041ca000042ca000043ca000044ca000045ca000046ca000047ca000048ca000049ca00004aca00004bca00004cca00004dca00004eca00004fca000050ca000051ca000052ca000053ca000054ca000055ca000056ca000057ca000058ca000059ca00005aca00005bca00005cca00005dca00005eca00005fca000060ca000061ca000062ca000063ca000064ca000065ca000066ca000067ca000068ca000069ca00006aca00006bca00006cca00006dca00006eca00006fca000070ca000071ca000072ca000073ca000074ca000075ca000076ca000077ca000078ca000079ca00007aca00007bca00007cca00007dca00007eca00007fca000080ca000081ca000082ca000083ca000084ca000085ca000086ca000087ca000088ca000089ca00008aca00008bca00008cca00008dca00008eca00008fca000090ca000091ca000092ca000093ca000094ca000095ca000096ca000097ca000098ca000099ca00009aca00009bca00009cca00009dca00009eca00009fca0000a0ca0000a1ca0000a2ca0000a3ca0000a4ca0000a5ca0000a6ca0000a7ca0000a8ca0000a9ca0000aaca0000abca0000acca0000adca0000aeca0000afca0000b0ca0000b1ca0000b2ca0000b3ca0000b4ca0000b5ca0000b6ca0000b7ca0000b8ca0000b9ca0000baca0000bbca0000bcca0000bdca0000beca0000bfca0000c0ca0000c1ca0000c2ca0000c3ca0000c4ca0000c5ca0000c6ca0000c7ca0000c8ca0000c9ca0000caca0000cbca0000ccca0000cdca0000ceca0000cfca0000d0ca0000d1ca0000d2ca0000d3ca0000d4ca0000d5ca0000d6ca0000d7ca0000d8ca0000d9ca0000daca0000dbca0000dcca0000ddca0000deca0000dfca0000e0ca0000e1ca0000e2ca0000e3ca0000e4ca0000e5ca0000e6ca0000e7ca0000e8ca0000e9ca0000eaca0000ebca0000ecca0000edca0000eeca0000efca0000f0ca0000f1ca0000f2ca0000f3ca0000f4ca0000f5ca0000f6ca0000f7ca0000f8ca0000f9ca0000faca0000fbca0000fcca0000fdca0000feca0000ffca000000cb000001cb000002cb000003cb000004cb000005cb000006cb000007cb000008cb000009cb00000acb00000bcb00000ccb00000dcb00000ecb00000fcb000010cb000011cb000012cb000013cb000014cb000015cb000016cb000017cb000018cb000019cb00001acb00001bcb00001ccb00001dcb00001ecb00001fcb000020cb000021cb000022cb000023cb000024cb000025cb000026cb000027cb000028cb000029cb00002acb00002bcb00002ccb00002dcb00002ecb00002fcb000030cb000031cb000032cb000033cb000034cb000035cb000036cb000037cb000038cb000039cb00003acb00003bcb00003ccb00003dcb00003ecb00003fcb000040cb000041cb000042cb000043cb000044cb000045cb000046cb000047cb000048cb000049cb00004acb00004bcb00004ccb00004dcb00004ecb00004fcb000050cb000051cb000052cb000053cb000054cb000055cb000056cb000057cb000058cb000059cb00005acb00005bcb00005ccb00005dcb00005ecb00005fcb000060cb000061cb000062cb000063cb000064cb000065cb000066cb000067cb000068cb000069cb00006acb00006bcb00006ccb00006dcb00006ecb00006fcb000070cb000071cb000072cb000073cb000074cb000075cb000076cb000077cb000078cb000079cb00007acb00007bcb00007ccb00007dcb00007ecb00007fcb000080cb000081cb000082cb000083cb000084cb000085cb000086cb000087cb000088cb000089cb00008acb00008bcb00008ccb00008dcb00008ecb00008fcb000090cb000091cb000092cb000093cb000094cb000095cb000096cb000097cb000098cb000099cb00009acb00009bcb00009ccb00009dcb00009ecb00009fcb0000a0cb0000a1cb0000a2cb0000a3cb0000a4cb0000a5cb0000a6cb0000a7cb0000a8cb0000a9cb0000aacb0000abcb0000accb0000adcb0000aecb0000afcb0000b0cb0000b1cb0000b2cb0000b3cb0000b4cb0000b5cb0000b6cb0000b7cb0000b8cb0000b9cb0000bacb0000bbcb0000bccb0000bdcb0000becb0000bfcb0000c0cb0000c1cb0000c2cb0000c3cb0000c4cb0000c5cb0000c6cb0000c7cb0000c8cb0000c9cb0000cacb0000cbcb0000cccb0000cdcb0000cecb0000cfcb0000d0cb0000d1cb0000d2cb0000d3cb0000d4cb0000d5cb0000d6cb0000d7cb0000d8cb0000d9cb0000dacb0000dbcb0000dccb0000ddcb0000decb0000dfcb0000e0cb0000e1cb0000e2cb0000e3cb0000e4cb0000e5cb0000e6cb0000e7cb0000e8cb0000e9cb0000eacb0000ebcb0000eccb0000edcb0000eecb0000efcb0000f0cb0000f1cb0000f2cb0000f3cb0000f4cb0000f5cb0000f6cb0000f7cb0000f8cb0000f9cb0000facb0000fbcb0000fccb0000fdcb0000fecb0000ffcb000000cc000001cc000002cc000003cc000004cc000005cc000006cc000007cc000008cc000009cc00000acc00000bcc00000ccc00000dcc00000ecc00000fcc000010cc000011cc000012cc000013cc000014cc000015cc000016cc000017cc000018cc000019cc00001acc00001bcc00001ccc00001dcc00001ecc00001fcc000020cc000021cc000022cc000023cc000024cc000025cc000026cc000027cc000028cc000029cc00002acc00002bcc00002ccc00002dcc00002ecc00002fcc000030cc000031cc000032cc000033cc000034cc000035cc000036cc000037cc000038cc000039cc00003acc00003bcc00003ccc00003dcc00003ecc00003fcc000040cc000041cc000042cc000043cc000044cc000045cc000046cc000047cc000048cc000049cc00004acc00004bcc00004ccc00004dcc00004ecc00004fcc000050cc000051cc000052cc000053cc000054cc000055cc000056cc000057cc000058cc000059cc00005acc00005bcc00005ccc00005dcc00005ecc00005fcc000060cc000061cc000062cc000063cc000064cc000065cc000066cc000067cc000068cc000069cc00006acc00006bcc00006ccc00006dcc00006ecc00006fcc000070cc000071cc000072cc000073cc000074cc000075cc000076cc000077cc000078cc000079cc00007acc00007bcc00007ccc00007dcc00007ecc00007fcc000080cc000081cc000082cc000083cc000084cc000085cc000086cc000087cc000088cc000089cc00008acc00008bcc00008ccc00008dcc00008ecc00008fcc000090cc000091cc000092cc000093cc000094cc000095cc000096cc000097cc000098cc000099cc00009acc00009bcc00009ccc00009dcc00009ecc00009fcc0000a0cc0000a1cc0000a2cc0000a3cc0000a4cc0000a5cc0000a6cc0000a7cc0000a8cc0000a9cc0000aacc0000abcc0000accc0000adcc0000aecc0000afcc0000b0cc0000b1cc0000b2cc0000b3cc0000b4cc0000b5cc0000b6cc0000b7cc0000b8cc0000b9cc0000bacc0000bbcc0000bccc0000bdcc0000becc0000bfcc0000c0cc0000c1cc0000c2cc0000c3cc0000c4cc0000c5cc0000c6cc0000c7cc0000c8cc0000c9cc0000cacc0000cbcc0000cccc0000cdcc0000cecc0000cfcc0000d0cc0000d1cc0000d2cc0000d3cc0000d4cc0000d5cc0000d6cc0000d7cc0000d8cc0000d9cc0000dacc0000dbcc0000dccc0000ddcc0000decc0000dfcc0000e0cc0000e1cc0000e2cc0000e3cc0000e4cc0000e5cc0000e6cc0000e7cc0000e8cc0000e9cc0000eacc0000ebcc0000eccc0000edcc0000eecc0000efcc0000f0cc0000f1cc0000f2cc0000f3cc0000f4cc0000f5cc0000f6cc0000f7cc0000f8cc0000f9cc0000facc0000fbcc0000fccc0000fdcc0000fecc0000ffcc000000cd000001cd000002cd000003cd000004cd000005cd000006cd000007cd000008cd000009cd00000acd00000bcd00000ccd00000dcd00000ecd00000fcd000010cd000011cd000012cd000013cd000014cd000015cd000016cd000017cd000018cd000019cd00001acd00001bcd00001ccd00001dcd00001ecd00001fcd000020cd000021cd000022cd000023cd000024cd000025cd000026cd000027cd000028cd000029cd00002acd00002bcd00002ccd00002dcd00002ecd00002fcd000030cd000031cd000032cd000033cd000034cd000035cd000036cd000037cd000038cd000039cd00003acd00003bcd00003ccd00003dcd00003ecd00003fcd000040cd000041cd000042cd000043cd000044cd000045cd000046cd000047cd000048cd000049cd00004acd00004bcd00004ccd00004dcd00004ecd00004fcd000050cd000051cd000052cd000053cd000054cd000055cd000056cd000057cd000058cd000059cd00005acd00005bcd00005ccd00005dcd00005ecd00005fcd000060cd000061cd000062cd000063cd000064cd000065cd000066cd000067cd000068cd000069cd00006acd00006bcd00006ccd00006dcd00006ecd00006fcd000070cd000071cd000072cd000073cd000074cd000075cd000076cd000077cd000078cd000079cd00007acd00007bcd00007ccd00007dcd00007ecd00007fcd000080cd000081cd000082cd000083cd000084cd000085cd000086cd000087cd000088cd000089cd00008acd00008bcd00008ccd00008dcd00008ecd00008fcd000090cd000091cd000092cd000093cd000094cd000095cd000096cd000097cd000098cd000099cd00009acd00009bcd00009ccd00009dcd00009ecd00009fcd0000a0cd0000a1cd0000a2cd0000a3cd0000a4cd0000a5cd0000a6cd0000a7cd0000a8cd0000a9cd0000aacd0000abcd0000accd0000adcd0000aecd0000afcd0000b0cd0000b1cd0000b2cd0000b3cd0000b4cd0000b5cd0000b6cd0000b7cd0000b8cd0000b9cd0000bacd0000bbcd0000bccd0000bdcd0000becd0000bfcd0000c0cd0000c1cd0000c2cd0000c3cd0000c4cd0000c5cd0000c6cd0000c7cd0000c8cd0000c9cd0000cacd0000cbcd0000cccd0000cdcd0000cecd0000cfcd0000d0cd0000d1cd0000d2cd0000d3cd0000d4cd0000d5cd0000d6cd0000d7cd0000d8cd0000d9cd0000dacd0000dbcd0000dccd0000ddcd0000decd0000dfcd0000e0cd0000e1cd0000e2cd0000e3cd0000e4cd0000e5cd0000e6cd0000e7cd0000e8cd0000e9cd0000eacd0000ebcd0000eccd0000edcd0000eecd0000efcd0000f0cd0000f1cd0000f2cd0000f3cd0000f4cd0000f5cd0000f6cd0000f7cd0000f8cd0000f9cd0000facd0000fbcd0000fccd0000fdcd0000fecd0000ffcd000000ce000001ce000002ce000003ce000004ce000005ce000006ce000007ce000008ce000009ce00000ace00000bce00000cce00000dce00000ece00000fce000010ce000011ce000012ce000013ce000014ce000015ce000016ce000017ce000018ce000019ce00001ace00001bce00001cce00001dce00001ece00001fce000020ce000021ce000022ce000023ce000024ce000025ce000026ce000027ce000028ce000029ce00002ace00002bce00002cce00002dce00002ece00002fce000030ce000031ce000032ce000033ce000034ce000035ce000036ce000037ce000038ce000039ce00003ace00003bce00003cce00003dce00003ece00003fce000040ce000041ce000042ce000043ce000044ce000045ce000046ce000047ce000048ce000049ce00004ace00004bce00004cce00004dce00004ece00004fce000050ce000051ce000052ce000053ce000054ce000055ce000056ce000057ce000058ce000059ce00005ace00005bce00005cce00005dce00005ece00005fce000060ce000061ce000062ce000063ce000064ce000065ce000066ce000067ce000068ce000069ce00006ace00006bce00006cce00006dce00006ece00006fce000070ce000071ce000072ce000073ce000074ce000075ce000076ce000077ce000078ce000079ce00007ace00007bce00007cce00007dce00007ece00007fce000080ce000081ce000082ce000083ce000084ce000085ce000086ce000087ce000088ce000089ce00008ace00008bce00008cce00008dce00008ece00008fce000090ce000091ce000092ce000093ce000094ce000095ce000096ce000097ce000098ce000099ce00009ace00009bce00009cce00009dce00009ece00009fce0000a0ce0000a1ce0000a2ce0000a3ce0000a4ce0000a5ce0000a6ce0000a7ce0000a8ce0000a9ce0000aace0000abce0000acce0000adce0000aece0000afce0000b0ce0000b1ce0000b2ce0000b3ce0000b4ce0000b5ce0000b6ce0000b7ce0000b8ce0000b9ce0000bace0000bbce0000bcce0000bdce0000bece0000bfce0000c0ce0000c1ce0000c2ce0000c3ce0000c4ce0000c5ce0000c6ce0000c7ce0000c8ce0000c9ce0000cace0000cbce0000ccce0000cdce0000cece0000cfce0000d0ce0000d1ce0000d2ce0000d3ce0000d4ce0000d5ce0000d6ce0000d7ce0000d8ce0000d9ce0000dace0000dbce0000dcce0000ddce0000dece0000dfce0000e0ce0000e1ce0000e2ce0000e3ce0000e4ce0000e5ce0000e6ce0000e7ce0000e8ce0000e9ce0000eace0000ebce0000ecce0000edce0000eece0000efce0000f0ce0000f1ce0000f2ce0000f3ce0000f4ce0000f5ce0000f6ce0000f7ce0000f8ce0000f9ce0000face0000fbce0000fcce0000fdce0000fece0000ffce000000cf000001cf000002cf000003cf000004cf000005cf000006cf000007cf000008cf000009cf00000acf00000bcf00000ccf00000dcf00000ecf00000fcf000010cf000011cf000012cf000013cf000014cf000015cf000016cf000017cf000018cf000019cf00001acf00001bcf00001ccf00001dcf00001ecf00001fcf000020cf000021cf000022cf000023cf000024cf000025cf000026cf000027cf000028cf000029cf00002acf00002bcf00002ccf00002dcf00002ecf00002fcf000030cf000031cf000032cf000033cf000034cf000035cf000036cf000037cf000038cf000039cf00003acf00003bcf00003ccf00003dcf00003ecf00003fcf000040cf000041cf000042cf000043cf000044cf000045cf000046cf000047cf000048cf000049cf00004acf00004bcf00004ccf00004dcf00004ecf00004fcf000050cf000051cf000052cf000053cf000054cf000055cf000056cf000057cf000058cf000059cf00005acf00005bcf00005ccf00005dcf00005ecf00005fcf000060cf000061cf000062cf000063cf000064cf000065cf000066cf000067cf000068cf000069cf00006acf00006bcf00006ccf00006dcf00006ecf00006fcf000070cf000071cf000072cf000073cf000074cf000075cf000076cf000077cf000078cf000079cf00007acf00007bcf00007ccf00007dcf00007ecf00007fcf000080cf000081cf000082cf000083cf000084cf000085cf000086cf000087cf000088cf000089cf00008acf00008bcf00008ccf00008dcf00008ecf00008fcf000090cf000091cf000092cf000093cf000094cf000095cf000096cf000097cf000098cf000099cf00009acf00009bcf00009ccf00009dcf00009ecf00009fcf0000a0cf0000a1cf0000a2cf0000a3cf0000a4cf0000a5cf0000a6cf0000a7cf0000a8cf0000a9cf0000aacf0000abcf0000accf0000adcf0000aecf0000afcf0000b0cf0000b1cf0000b2cf0000b3cf0000b4cf0000b5cf0000b6cf0000b7cf0000b8cf0000b9cf0000bacf0000bbcf0000bccf0000bdcf0000becf0000bfcf0000c0cf0000c1cf0000c2cf0000c3cf0000c4cf0000c5cf0000c6cf0000c7cf0000c8cf0000c9cf0000cacf0000cbcf0000cccf0000cdcf0000cecf0000cfcf0000d0cf0000d1cf0000d2cf0000d3cf0000d4cf0000d5cf0000d6cf0000d7cf0000d8cf0000d9cf0000dacf0000dbcf0000dccf0000ddcf0000decf0000dfcf0000e0cf0000e1cf0000e2cf0000e3cf0000e4cf0000e5cf0000e6cf0000e7cf0000e8cf0000e9cf0000eacf0000ebcf0000eccf0000edcf0000eecf0000efcf0000f0cf0000f1cf0000f2cf0000f3cf0000f4cf0000f5cf0000f6cf0000f7cf0000f8cf0000f9cf0000facf0000fbcf0000fccf0000fdcf0000fecf0000ffcf000000d0000001d0000002d0000003d0000004d0000005d0000006d0000007d0000008d0000009d000000ad000000bd000000cd000000dd000000ed000000fd0000010d0000011d0000012d0000013d0000014d0000015d0000016d0000017d0000018d0000019d000001ad000001bd000001cd000001dd000001ed000001fd0000020d0000021d0000022d0000023d0000024d0000025d0000026d0000027d0000028d0000029d000002ad000002bd000002cd000002dd000002ed000002fd0000030d0000031d0000032d0000033d0000034d0000035d0000036d0000037d0000038d0000039d000003ad000003bd000003cd000003dd000003ed000003fd0000040d0000041d0000042d0000043d0000044d0000045d0000046d0000047d0000048d0000049d000004ad000004bd000004cd000004dd000004ed000004fd0000050d0000051d0000052d0000053d0000054d0000055d0000056d0000057d0000058d0000059d000005ad000005bd000005cd000005dd000005ed000005fd0000060d0000061d0000062d0000063d0000064d0000065d0000066d0000067d0000068d0000069d000006ad000006bd000006cd000006dd000006ed000006fd0000070d0000071d0000072d0000073d0000074d0000075d0000076d0000077d0000078d0000079d000007ad000007bd000007cd000007dd000007ed000007fd0000080d0000081d0000082d0000083d0000084d0000085d0000086d0000087d0000088d0000089d000008ad000008bd000008cd000008dd000008ed000008fd0000090d0000091d0000092d0000093d0000094d0000095d0000096d0000097d0000098d0000099d000009ad000009bd000009cd000009dd000009ed000009fd00000a0d00000a1d00000a2d00000a3d00000a4d00000a5d00000a6d00000a7d00000a8d00000a9d00000aad00000abd00000acd00000add00000aed00000afd00000b0d00000b1d00000b2d00000b3d00000b4d00000b5d00000b6d00000b7d00000b8d00000b9d00000bad00000bbd00000bcd00000bdd00000bed00000bfd00000c0d00000c1d00000c2d00000c3d00000c4d00000c5d00000c6d00000c7d00000c8d00000c9d00000cad00000cbd00000ccd00000cdd00000ced00000cfd00000d0d00000d1d00000d2d00000d3d00000d4d00000d5d00000d6d00000d7d00000d8d00000d9d00000dad00000dbd00000dcd00000ddd00000ded00000dfd00000e0d00000e1d00000e2d00000e3d00000e4d00000e5d00000e6d00000e7d00000e8d00000e9d00000ead00000ebd00000ecd00000edd00000eed00000efd00000f0d00000f1d00000f2d00000f3d00000f4d00000f5d00000f6d00000f7d00000f8d00000f9d00000fad00000fbd00000fcd00000fdd00000fed00000ffd0000000d1000001d1000002d1000003d1000004d1000005d1000006d1000007d1000008d1000009d100000ad100000bd100000cd100000dd100000ed100000fd1000010d1000011d1000012d1000013d1000014d1000015d1000016d1000017d1000018d1000019d100001ad100001bd100001cd100001dd100001ed100001fd1000020d1000021d1000022d1000023d1000024d1000025d1000026d1000027d1000028d1000029d100002ad100002bd100002cd100002dd100002ed100002fd1000030d1000031d1000032d1000033d1000034d1000035d1000036d1000037d1000038d1000039d100003ad100003bd100003cd100003dd100003ed100003fd1000040d1000041d1000042d1000043d1000044d1000045d1000046d1000047d1000048d1000049d100004ad100004bd100004cd100004dd100004ed100004fd1000050d1000051d1000052d1000053d1000054d1000055d1000056d1000057d1000058d1000059d100005ad100005bd100005cd100005dd100005ed100005fd1000060d1000061d1000062d1000063d1000064d1000065d1000066d1000067d1000068d1000069d100006ad100006bd100006cd100006dd100006ed100006fd1000070d1000071d1000072d1000073d1000074d1000075d1000076d1000077d1000078d1000079d100007ad100007bd100007cd100007dd100007ed100007fd1000080d1000081d1000082d1000083d1000084d1000085d1000086d1000087d1000088d1000089d100008ad100008bd100008cd100008dd100008ed100008fd1000090d1000091d1000092d1000093d1000094d1000095d1000096d1000097d1000098d1000099d100009ad100009bd100009cd100009dd100009ed100009fd10000a0d10000a1d10000a2d10000a3d10000a4d10000a5d10000a6d10000a7d10000a8d10000a9d10000aad10000abd10000acd10000add10000aed10000afd10000b0d10000b1d10000b2d10000b3d10000b4d10000b5d10000b6d10000b7d10000b8d10000b9d10000bad10000bbd10000bcd10000bdd10000bed10000bfd10000c0d10000c1d10000c2d10000c3d10000c4d10000c5d10000c6d10000c7d10000c8d10000c9d10000cad10000cbd10000ccd10000cdd10000ced10000cfd10000d0d10000d1d10000d2d10000d3d10000d4d10000d5d10000d6d10000d7d10000d8d10000d9d10000dad10000dbd10000dcd10000ddd10000ded10000dfd10000e0d10000e1d10000e2d10000e3d10000e4d10000e5d10000e6d10000e7d10000e8d10000e9d10000ead10000ebd10000ecd10000edd10000eed10000efd10000f0d10000f1d10000f2d10000f3d10000f4d10000f5d10000f6d10000f7d10000f8d10000f9d10000fad10000fbd10000fcd10000fdd10000fed10000ffd1000000d2000001d2000002d2000003d2000004d2000005d2000006d2000007d2000008d2000009d200000ad200000bd200000cd200000dd200000ed200000fd2000010d2000011d2000012d2000013d2000014d2000015d2000016d2000017d2000018d2000019d200001ad200001bd200001cd200001dd200001ed200001fd2000020d2000021d2000022d2000023d2000024d2000025d2000026d2000027d2000028d2000029d200002ad200002bd200002cd200002dd200002ed200002fd2000030d2000031d2000032d2000033d2000034d2000035d2000036d2000037d2000038d2000039d200003ad200003bd200003cd200003dd200003ed200003fd2000040d2000041d2000042d2000043d2000044d2000045d2000046d2000047d2000048d2000049d200004ad200004bd200004cd200004dd200004ed200004fd2000050d2000051d2000052d2000053d2000054d2000055d2000056d2000057d2000058d2000059d200005ad200005bd200005cd200005dd200005ed200005fd2000060d2000061d2000062d2000063d2000064d2000065d2000066d2000067d2000068d2000069d200006ad200006bd200006cd200006dd200006ed200006fd2000070d2000071d2000072d2000073d2000074d2000075d2000076d2000077d2000078d2000079d200007ad200007bd200007cd200007dd200007ed200007fd2000080d2000081d2000082d2000083d2000084d2000085d2000086d2000087d2000088d2000089d200008ad200008bd200008cd200008dd200008ed200008fd2000090d2000091d2000092d2000093d2000094d2000095d2000096d2000097d2000098d2000099d200009ad200009bd200009cd200009dd200009ed200009fd20000a0d20000a1d20000a2d20000a3d20000a4d20000a5d20000a6d20000a7d20000a8d20000a9d20000aad20000abd20000acd20000add20000aed20000afd20000b0d20000b1d20000b2d20000b3d20000b4d20000b5d20000b6d20000b7d20000b8d20000b9d20000bad20000bbd20000bcd20000bdd20000bed20000bfd20000c0d20000c1d20000c2d20000c3d20000c4d20000c5d20000c6d20000c7d20000c8d20000c9d20000cad20000cbd20000ccd20000cdd20000ced20000cfd20000d0d20000d1d20000d2d20000d3d20000d4d20000d5d20000d6d20000d7d20000d8d20000d9d20000dad20000dbd20000dcd20000ddd20000ded20000dfd20000e0d20000e1d20000e2d20000e3d20000e4d20000e5d20000e6d20000e7d20000e8d20000e9d20000ead20000ebd20000ecd20000edd20000eed20000efd20000f0d20000f1d20000f2d20000f3d20000f4d20000f5d20000f6d20000f7d20000f8d20000f9d20000fad20000fbd20000fcd20000fdd20000fed20000ffd2000000d3000001d3000002d3000003d3000004d3000005d3000006d3000007d3000008d3000009d300000ad300000bd300000cd300000dd300000ed300000fd3000010d3000011d3000012d3000013d3000014d3000015d3000016d3000017d3000018d3000019d300001ad300001bd300001cd300001dd300001ed300001fd3000020d3000021d3000022d3000023d3000024d3000025d3000026d3000027d3000028d3000029d300002ad300002bd300002cd300002dd300002ed300002fd3000030d3000031d3000032d3000033d3000034d3000035d3000036d3000037d3000038d3000039d300003ad300003bd300003cd300003dd300003ed300003fd3000040d3000041d3000042d3000043d3000044d3000045d3000046d3000047d3000048d3000049d300004ad300004bd300004cd300004dd300004ed300004fd3000050d3000051d3000052d3000053d3000054d3000055d3000056d3000057d3000058d3000059d300005ad300005bd300005cd300005dd300005ed300005fd3000060d3000061d3000062d3000063d3000064d3000065d3000066d3000067d3000068d3000069d300006ad300006bd300006cd300006dd300006ed300006fd3000070d3000071d3000072d3000073d3000074d3000075d3000076d3000077d3000078d3000079d300007ad300007bd300007cd300007dd300007ed300007fd3000080d3000081d3000082d3000083d3000084d3000085d3000086d3000087d3000088d3000089d300008ad300008bd300008cd300008dd300008ed300008fd3000090d3000091d3000092d3000093d3000094d3000095d3000096d3000097d3000098d3000099d300009ad300009bd300009cd300009dd300009ed300009fd30000a0d30000a1d30000a2d30000a3d30000a4d30000a5d30000a6d30000a7d30000a8d30000a9d30000aad30000abd30000acd30000add30000aed30000afd30000b0d30000b1d30000b2d30000b3d30000b4d30000b5d30000b6d30000b7d30000b8d30000b9d30000bad30000bbd30000bcd30000bdd30000bed30000bfd30000c0d30000c1d30000c2d30000c3d30000c4d30000c5d30000c6d30000c7d30000c8d30000c9d30000cad30000cbd30000ccd30000cdd30000ced30000cfd30000d0d30000d1d30000d2d30000d3d30000d4d30000d5d30000d6d30000d7d30000d8d30000d9d30000dad30000dbd30000dcd30000ddd30000ded30000dfd30000e0d30000e1d30000e2d30000e3d30000e4d30000e5d30000e6d30000e7d30000e8d30000e9d30000ead30000ebd30000ecd30000edd30000eed30000efd30000f0d30000f1d30000f2d30000f3d30000f4d30000f5d30000f6d30000f7d30000f8d30000f9d30000fad30000fbd30000fcd30000fdd30000fed30000ffd3000000d4000001d4000002d4000003d4000004d4000005d4000006d4000007d4000008d4000009d400000ad400000bd400000cd400000dd400000ed400000fd4000010d4000011d4000012d4000013d4000014d4000015d4000016d4000017d4000018d4000019d400001ad400001bd400001cd400001dd400001ed400001fd4000020d4000021d4000022d4000023d4000024d4000025d4000026d4000027d4000028d4000029d400002ad400002bd400002cd400002dd400002ed400002fd4000030d4000031d4000032d4000033d4000034d4000035d4000036d4000037d4000038d4000039d400003ad400003bd400003cd400003dd400003ed400003fd4000040d4000041d4000042d4000043d4000044d4000045d4000046d4000047d4000048d4000049d400004ad400004bd400004cd400004dd400004ed400004fd4000050d4000051d4000052d4000053d4000054d4000055d4000056d4000057d4000058d4000059d400005ad400005bd400005cd400005dd400005ed400005fd4000060d4000061d4000062d4000063d4000064d4000065d4000066d4000067d4000068d4000069d400006ad400006bd400006cd400006dd400006ed400006fd4000070d4000071d4000072d4000073d4000074d4000075d4000076d4000077d4000078d4000079d400007ad400007bd400007cd400007dd400007ed400007fd4000080d4000081d4000082d4000083d4000084d4000085d4000086d4000087d4000088d4000089d400008ad400008bd400008cd400008dd400008ed400008fd4000090d4000091d4000092d4000093d4000094d4000095d4000096d4000097d4000098d4000099d400009ad400009bd400009cd400009dd400009ed400009fd40000a0d40000a1d40000a2d40000a3d40000a4d40000a5d40000a6d40000a7d40000a8d40000a9d40000aad40000abd40000acd40000add40000aed40000afd40000b0d40000b1d40000b2d40000b3d40000b4d40000b5d40000b6d40000b7d40000b8d40000b9d40000bad40000bbd40000bcd40000bdd40000bed40000bfd40000c0d40000c1d40000c2d40000c3d40000c4d40000c5d40000c6d40000c7d40000c8d40000c9d40000cad40000cbd40000ccd40000cdd40000ced40000cfd40000d0d40000d1d40000d2d40000d3d40000d4d40000d5d40000d6d40000d7d40000d8d40000d9d40000dad40000dbd40000dcd40000ddd40000ded40000dfd40000e0d40000e1d40000e2d40000e3d40000e4d40000e5d40000e6d40000e7d40000e8d40000e9d40000ead40000ebd40000ecd40000edd40000eed40000efd40000f0d40000f1d40000f2d40000f3d40000f4d40000f5d40000f6d40000f7d40000f8d40000f9d40000fad40000fbd40000fcd40000fdd40000fed40000ffd4000000d5000001d5000002d5000003d5000004d5000005d5000006d5000007d5000008d5000009d500000ad500000bd500000cd500000dd500000ed500000fd5000010d5000011d5000012d5000013d5000014d5000015d5000016d5000017d5000018d5000019d500001ad500001bd500001cd500001dd500001ed500001fd5000020d5000021d5000022d5000023d5000024d5000025d5000026d5000027d5000028d5000029d500002ad500002bd500002cd500002dd500002ed500002fd5000030d5000031d5000032d5000033d5000034d5000035d5000036d5000037d5000038d5000039d500003ad500003bd500003cd500003dd500003ed500003fd5000040d5000041d5000042d5000043d5000044d5000045d5000046d5000047d5000048d5000049d500004ad500004bd500004cd500004dd500004ed500004fd5000050d5000051d5000052d5000053d5000054d5000055d5000056d5000057d5000058d5000059d500005ad500005bd500005cd500005dd500005ed500005fd5000060d5000061d5000062d5000063d5000064d5000065d5000066d5000067d5000068d5000069d500006ad500006bd500006cd500006dd500006ed500006fd5000070d5000071d5000072d5000073d5000074d5000075d5000076d5000077d5000078d5000079d500007ad500007bd500007cd500007dd500007ed500007fd5000080d5000081d5000082d5000083d5000084d5000085d5000086d5000087d5000088d5000089d500008ad500008bd500008cd500008dd500008ed500008fd5000090d5000091d5000092d5000093d5000094d5000095d5000096d5000097d5000098d5000099d500009ad500009bd500009cd500009dd500009ed500009fd50000a0d50000a1d50000a2d50000a3d50000a4d50000a5d50000a6d50000a7d50000a8d50000a9d50000aad50000abd50000acd50000add50000aed50000afd50000b0d50000b1d50000b2d50000b3d50000b4d50000b5d50000b6d50000b7d50000b8d50000b9d50000bad50000bbd50000bcd50000bdd50000bed50000bfd50000c0d50000c1d50000c2d50000c3d50000c4d50000c5d50000c6d50000c7d50000c8d50000c9d50000cad50000cbd50000ccd50000cdd50000ced50000cfd50000d0d50000d1d50000d2d50000d3d50000d4d50000d5d50000d6d50000d7d50000d8d50000d9d50000dad50000dbd50000dcd50000ddd50000ded50000dfd50000e0d50000e1d50000e2d50000e3d50000e4d50000e5d50000e6d50000e7d50000e8d50000e9d50000ead50000ebd50000ecd50000edd50000eed50000efd50000f0d50000f1d50000f2d50000f3d50000f4d50000f5d50000f6d50000f7d50000f8d50000f9d50000fad50000fbd50000fcd50000fdd50000fed50000ffd5000000d6000001d6000002d6000003d6000004d6000005d6000006d6000007d6000008d6000009d600000ad600000bd600000cd600000dd600000ed600000fd6000010d6000011d6000012d6000013d6000014d6000015d6000016d6000017d6000018d6000019d600001ad600001bd600001cd600001dd600001ed600001fd6000020d6000021d6000022d6000023d6000024d6000025d6000026d6000027d6000028d6000029d600002ad600002bd600002cd600002dd600002ed600002fd6000030d6000031d6000032d6000033d6000034d6000035d6000036d6000037d6000038d6000039d600003ad600003bd600003cd600003dd600003ed600003fd6000040d6000041d6000042d6000043d6000044d6000045d6000046d6000047d6000048d6000049d600004ad600004bd600004cd600004dd600004ed600004fd6000050d6000051d6000052d6000053d6000054d6000055d6000056d6000057d6000058d6000059d600005ad600005bd600005cd600005dd600005ed600005fd6000060d6000061d6000062d6000063d6000064d6000065d6000066d6000067d6000068d6000069d600006ad600006bd600006cd600006dd600006ed600006fd6000070d6000071d6000072d6000073d6000074d6000075d6000076d6000077d6000078d6000079d600007ad600007bd600007cd600007dd600007ed600007fd6000080d6000081d6000082d6000083d6000084d6000085d6000086d6000087d6000088d6000089d600008ad600008bd600008cd600008dd600008ed600008fd6000090d6000091d6000092d6000093d6000094d6000095d6000096d6000097d6000098d6000099d600009ad600009bd600009cd600009dd600009ed600009fd60000a0d60000a1d60000a2d60000a3d60000a4d60000a5d60000a6d60000a7d60000a8d60000a9d60000aad60000abd60000acd60000add60000aed60000afd60000b0d60000b1d60000b2d60000b3d60000b4d60000b5d60000b6d60000b7d60000b8d60000b9d60000bad60000bbd60000bcd60000bdd60000bed60000bfd60000c0d60000c1d60000c2d60000c3d60000c4d60000c5d60000c6d60000c7d60000c8d60000c9d60000cad60000cbd60000ccd60000cdd60000ced60000cfd60000d0d60000d1d60000d2d60000d3d60000d4d60000d5d60000d6d60000d7d60000d8d60000d9d60000dad60000dbd60000dcd60000ddd60000ded60000dfd60000e0d60000e1d60000e2d60000e3d60000e4d60000e5d60000e6d60000e7d60000e8d60000e9d60000ead60000ebd60000ecd60000edd60000eed60000efd60000f0d60000f1d60000f2d60000f3d60000f4d60000f5d60000f6d60000f7d60000f8d60000f9d60000fad60000fbd60000fcd60000fdd60000fed60000ffd6000000d7000001d7000002d7000003d7000004d7000005d7000006d7000007d7000008d7000009d700000ad700000bd700000cd700000dd700000ed700000fd7000010d7000011d7000012d7000013d7000014d7000015d7000016d7000017d7000018d7000019d700001ad700001bd700001cd700001dd700001ed700001fd7000020d7000021d7000022d7000023d7000024d7000025d7000026d7000027d7000028d7000029d700002ad700002bd700002cd700002dd700002ed700002fd7000030d7000031d7000032d7000033d7000034d7000035d7000036d7000037d7000038d7000039d700003ad700003bd700003cd700003dd700003ed700003fd7000040d7000041d7000042d7000043d7000044d7000045d7000046d7000047d7000048d7000049d700004ad700004bd700004cd700004dd700004ed700004fd7000050d7000051d7000052d7000053d7000054d7000055d7000056d7000057d7000058d7000059d700005ad700005bd700005cd700005dd700005ed700005fd7000060d7000061d7000062d7000063d7000064d7000065d7000066d7000067d7000068d7000069d700006ad700006bd700006cd700006dd700006ed700006fd7000070d7000071d7000072d7000073d7000074d7000075d7000076d7000077d7000078d7000079d700007ad700007bd700007cd700007dd700007ed700007fd7000080d7000081d7000082d7000083d7000084d7000085d7000086d7000087d7000088d7000089d700008ad700008bd700008cd700008dd700008ed700008fd7000090d7000091d7000092d7000093d7000094d7000095d7000096d7000097d7000098d7000099d700009ad700009bd700009cd700009dd700009ed700009fd70000a0d70000a1d70000a2d70000a3d70000a4d70000a5d70000a6d70000a7d70000a8d70000a9d70000aad70000abd70000acd70000add70000aed70000afd70000b0d70000b1d70000b2d70000b3d70000b4d70000b5d70000b6d70000b7d70000b8d70000b9d70000bad70000bbd70000bcd70000bdd70000bed70000bfd70000c0d70000c1d70000c2d70000c3d70000c4d70000c5d70000c6d70000c7d70000c8d70000c9d70000cad70000cbd70000ccd70000cdd70000ced70000cfd70000d0d70000d1d70000d2d70000d3d70000d4d70000d5d70000d6d70000d7d70000d8d70000d9d70000dad70000dbd70000dcd70000ddd70000ded70000dfd70000e0d70000e1d70000e2d70000e3d70000e4d70000e5d70000e6d70000e7d70000e8d70000e9d70000ead70000ebd70000ecd70000edd70000eed70000efd70000f0d70000f1d70000f2d70000f3d70000f4d70000f5d70000f6d70000f7d70000f8d70000f9d70000fad70000fbd70000fcd70000fdd70000fed70000ffd7000000d8000001d8000002d8000003d8000004d8000005d8000006d8000007d8000008d8000009d800000ad800000bd800000cd800000dd800000ed800000fd8000010d8000011d8000012d8000013d8000014d8000015d8000016d8000017d8000018d8000019d800001ad800001bd800001cd800001dd800001ed800001fd8000020d8000021d8000022d8000023d8000024d8000025d8000026d8000027d8000028d8000029d800002ad800002bd800002cd800002dd800002ed800002fd8000030d8000031d8000032d8000033d8000034d8000035d8000036d8000037d8000038d8000039d800003ad800003bd800003cd800003dd800003ed800003fd8000040d8000041d8000042d8000043d8000044d8000045d8000046d8000047d8000048d8000049d800004ad800004bd800004cd800004dd800004ed800004fd8000050d8000051d8000052d8000053d8000054d8000055d8000056d8000057d8000058d8000059d800005ad800005bd800005cd800005dd800005ed800005fd8000060d8000061d8000062d8000063d8000064d8000065d8000066d8000067d8000068d8000069d800006ad800006bd800006cd800006dd800006ed800006fd8000070d8000071d8000072d8000073d8000074d8000075d8000076d8000077d8000078d8000079d800007ad800007bd800007cd800007dd800007ed800007fd8000080d8000081d8000082d8000083d8000084d8000085d8000086d8000087d8000088d8000089d800008ad800008bd800008cd800008dd800008ed800008fd8000090d8000091d8000092d8000093d8000094d8000095d8000096d8000097d8000098d8000099d800009ad800009bd800009cd800009dd800009ed800009fd80000a0d80000a1d80000a2d80000a3d80000a4d80000a5d80000a6d80000a7d80000a8d80000a9d80000aad80000abd80000acd80000add80000aed80000afd80000b0d80000b1d80000b2d80000b3d80000b4d80000b5d80000b6d80000b7d80000b8d80000b9d80000bad80000bbd80000bcd80000bdd80000bed80000bfd80000c0d80000c1d80000c2d80000c3d80000c4d80000c5d80000c6d80000c7d80000c8d80000c9d80000cad80000cbd80000ccd80000cdd80000ced80000cfd80000d0d80000d1d80000d2d80000d3d80000d4d80000d5d80000d6d80000d7d80000d8d80000d9d80000dad80000dbd80000dcd80000ddd80000ded80000dfd80000e0d80000e1d80000e2d80000e3d80000e4d80000e5d80000e6d80000e7d80000e8d80000e9d80000ead80000ebd80000ecd80000edd80000eed80000efd80000f0d80000f1d80000f2d80000f3d80000f4d80000f5d80000f6d80000f7d80000f8d80000f9d80000fad80000fbd80000fcd80000fdd80000fed80000ffd8000000d9000001d9000002d9000003d9000004d9000005d9000006d9000007d9000008d9000009d900000ad900000bd900000cd900000dd900000ed900000fd9000010d9000011d9000012d9000013d9000014d9000015d9000016d9000017d9000018d9000019d900001ad900001bd900001cd900001dd900001ed900001fd9000020d9000021d9000022d9000023d9000024d9000025d9000026d9000027d9000028d9000029d900002ad900002bd900002cd900002dd900002ed900002fd9000030d9000031d9000032d9000033d9000034d9000035d9000036d9000037d9000038d9000039d900003ad900003bd900003cd900003dd900003ed900003fd9000040d9000041d9000042d9000043d9000044d9000045d9000046d9000047d9000048d9000049d900004ad900004bd900004cd900004dd900004ed900004fd9000050d9000051d9000052d9000053d9000054d9000055d9000056d9000057d9000058d9000059d900005ad900005bd900005cd900005dd900005ed900005fd9000060d9000061d9000062d9000063d9000064d9000065d9000066d9000067d9000068d9000069d900006ad900006bd900006cd900006dd900006ed900006fd9000070d9000071d9000072d9000073d9000074d9000075d9000076d9000077d9000078d9000079d900007ad900007bd900007cd900007dd900007ed900007fd9000080d9000081d9000082d9000083d9000084d9000085d9000086d9000087d9000088d9000089d900008ad900008bd900008cd900008dd900008ed900008fd9000090d9000091d9000092d9000093d9000094d9000095d9000096d9000097d9000098d9000099d900009ad900009bd900009cd900009dd900009ed900009fd90000a0d90000a1d90000a2d90000a3d90000a4d90000a5d90000a6d90000a7d90000a8d90000a9d90000aad90000abd90000acd90000add90000aed90000afd90000b0d90000b1d90000b2d90000b3d90000b4d90000b5d90000b6d90000b7d90000b8d90000b9d90000bad90000bbd90000bcd90000bdd90000bed90000bfd90000c0d90000c1d90000c2d90000c3d90000c4d90000c5d90000c6d90000c7d90000c8d90000c9d90000cad90000cbd90000ccd90000cdd90000ced90000cfd90000d0d90000d1d90000d2d90000d3d90000d4d90000d5d90000d6d90000d7d90000d8d90000d9d90000dad90000dbd90000dcd90000ddd90000ded90000dfd90000e0d90000e1d90000e2d90000e3d90000e4d90000e5d90000e6d90000e7d90000e8d90000e9d90000ead90000ebd90000ecd90000edd90000eed90000efd90000f0d90000f1d90000f2d90000f3d90000f4d90000f5d90000f6d90000f7d90000f8d90000f9d90000fad90000fbd90000fcd90000fdd90000fed90000ffd9000000da000001da000002da000003da000004da000005da000006da000007da000008da000009da00000ada00000bda00000cda00000dda00000eda00000fda000010da000011da000012da000013da000014da000015da000016da000017da000018da000019da00001ada00001bda00001cda00001dda00001eda00001fda000020da000021da000022da000023da000024da000025da000026da000027da000028da000029da00002ada00002bda00002cda00002dda00002eda00002fda000030da000031da000032da000033da000034da000035da000036da000037da000038da000039da00003ada00003bda00003cda00003dda00003eda00003fda000040da000041da000042da000043da000044da000045da000046da000047da000048da000049da00004ada00004bda00004cda00004dda00004eda00004fda000050da000051da000052da000053da000054da000055da000056da000057da000058da000059da00005ada00005bda00005cda00005dda00005eda00005fda000060da000061da000062da000063da000064da000065da000066da000067da000068da000069da00006ada00006bda00006cda00006dda00006eda00006fda000070da000071da000072da000073da000074da000075da000076da000077da000078da000079da00007ada00007bda00007cda00007dda00007eda00007fda000080da000081da000082da000083da000084da000085da000086da000087da000088da000089da00008ada00008bda00008cda00008dda00008eda00008fda000090da000091da000092da000093da000094da000095da000096da000097da000098da000099da00009ada00009bda00009cda00009dda00009eda00009fda0000a0da0000a1da0000a2da0000a3da0000a4da0000a5da0000a6da0000a7da0000a8da0000a9da0000aada0000abda0000acda0000adda0000aeda0000afda0000b0da0000b1da0000b2da0000b3da0000b4da0000b5da0000b6da0000b7da0000b8da0000b9da0000bada0000bbda0000bcda0000bdda0000beda0000bfda0000c0da0000c1da0000c2da0000c3da0000c4da0000c5da0000c6da0000c7da0000c8da0000c9da0000cada0000cbda0000ccda0000cdda0000ceda0000cfda0000d0da0000d1da0000d2da0000d3da0000d4da0000d5da0000d6da0000d7da0000d8da0000d9da0000dada0000dbda0000dcda0000ddda0000deda0000dfda0000e0da0000e1da0000e2da0000e3da0000e4da0000e5da0000e6da0000e7da0000e8da0000e9da0000eada0000ebda0000ecda0000edda0000eeda0000efda0000f0da0000f1da0000f2da0000f3da0000f4da0000f5da0000f6da0000f7da0000f8da0000f9da0000fada0000fbda0000fcda0000fdda0000feda0000ffda000000db000001db000002db000003db000004db000005db000006db000007db000008db000009db00000adb00000bdb00000cdb00000ddb00000edb00000fdb000010db000011db000012db000013db000014db000015db000016db000017db000018db000019db00001adb00001bdb00001cdb00001ddb00001edb00001fdb000020db000021db000022db000023db000024db000025db000026db000027db000028db000029db00002adb00002bdb00002cdb00002ddb00002edb00002fdb000030db000031db000032db000033db000034db000035db000036db000037db000038db000039db00003adb00003bdb00003cdb00003ddb00003edb00003fdb000040db000041db000042db000043db000044db000045db000046db000047db000048db000049db00004adb00004bdb00004cdb00004ddb00004edb00004fdb000050db000051db000052db000053db000054db000055db000056db000057db000058db000059db00005adb00005bdb00005cdb00005ddb00005edb00005fdb000060db000061db000062db000063db000064db000065db000066db000067db000068db000069db00006adb00006bdb00006cdb00006ddb00006edb00006fdb000070db000071db000072db000073db000074db000075db000076db000077db000078db000079db00007adb00007bdb00007cdb00007ddb00007edb00007fdb000080db000081db000082db000083db000084db000085db000086db000087db000088db000089db00008adb00008bdb00008cdb00008ddb00008edb00008fdb000090db000091db000092db000093db000094db000095db000096db000097db000098db000099db00009adb00009bdb00009cdb00009ddb00009edb00009fdb0000a0db0000a1db0000a2db0000a3db0000a4db0000a5db0000a6db0000a7db0000a8db0000a9db0000aadb0000abdb0000acdb0000addb0000aedb0000afdb0000b0db0000b1db0000b2db0000b3db0000b4db0000b5db0000b6db0000b7db0000b8db0000b9db0000badb0000bbdb0000bcdb0000bddb0000bedb0000bfdb0000c0db0000c1db0000c2db0000c3db0000c4db0000c5db0000c6db0000c7db0000c8db0000c9db0000cadb0000cbdb0000ccdb0000cddb0000cedb0000cfdb0000d0db0000d1db0000d2db0000d3db0000d4db0000d5db0000d6db0000d7db0000d8db0000d9db0000dadb0000dbdb0000dcdb0000dddb0000dedb0000dfdb0000e0db0000e1db0000e2db0000e3db0000e4db0000e5db0000e6db0000e7db0000e8db0000e9db0000eadb0000ebdb0000ecdb0000eddb0000eedb0000efdb0000f0db0000f1db0000f2db0000f3db0000f4db0000f5db0000f6db0000f7db0000f8db0000f9db0000fadb0000fbdb0000fcdb0000fddb0000fedb0000ffdb000000dc000001dc000002dc000003dc000004dc000005dc000006dc000007dc000008dc000009dc00000adc00000bdc00000cdc00000ddc00000edc00000fdc000010dc000011dc000012dc000013dc000014dc000015dc000016dc000017dc000018dc000019dc00001adc00001bdc00001cdc00001ddc00001edc00001fdc000020dc000021dc000022dc000023dc000024dc000025dc000026dc000027dc000028dc000029dc00002adc00002bdc00002cdc00002ddc00002edc00002fdc000030dc000031dc000032dc000033dc000034dc000035dc000036dc000037dc000038dc000039dc00003adc00003bdc00003cdc00003ddc00003edc00003fdc000040dc000041dc000042dc000043dc000044dc000045dc000046dc000047dc000048dc000049dc00004adc00004bdc00004cdc00004ddc00004edc00004fdc000050dc000051dc000052dc000053dc000054dc000055dc000056dc000057dc000058dc000059dc00005adc00005bdc00005cdc00005ddc00005edc00005fdc000060dc000061dc000062dc000063dc000064dc000065dc000066dc000067dc000068dc000069dc00006adc00006bdc00006cdc00006ddc00006edc00006fdc000070dc000071dc000072dc000073dc000074dc000075dc000076dc000077dc000078dc000079dc00007adc00007bdc00007cdc00007ddc00007edc00007fdc000080dc000081dc000082dc000083dc000084dc000085dc000086dc000087dc000088dc000089dc00008adc00008bdc00008cdc00008ddc00008edc00008fdc000090dc000091dc000092dc000093dc000094dc000095dc000096dc000097dc000098dc000099dc00009adc00009bdc00009cdc00009ddc00009edc00009fdc0000a0dc0000a1dc0000a2dc0000a3dc0000a4dc0000a5dc0000a6dc0000a7dc0000a8dc0000a9dc0000aadc0000abdc0000acdc0000addc0000aedc0000afdc0000b0dc0000b1dc0000b2dc0000b3dc0000b4dc0000b5dc0000b6dc0000b7dc0000b8dc0000b9dc0000badc0000bbdc0000bcdc0000bddc0000bedc0000bfdc0000c0dc0000c1dc0000c2dc0000c3dc0000c4dc0000c5dc0000c6dc0000c7dc0000c8dc0000c9dc0000cadc0000cbdc0000ccdc0000cddc0000cedc0000cfdc0000d0dc0000d1dc0000d2dc0000d3dc0000d4dc0000d5dc0000d6dc0000d7dc0000d8dc0000d9dc0000dadc0000dbdc0000dcdc0000dddc0000dedc0000dfdc0000e0dc0000e1dc0000e2dc0000e3dc0000e4dc0000e5dc0000e6dc0000e7dc0000e8dc0000e9dc0000eadc0000ebdc0000ecdc0000eddc0000eedc0000efdc0000f0dc0000f1dc0000f2dc0000f3dc0000f4dc0000f5dc0000f6dc0000f7dc0000f8dc0000f9dc0000fadc0000fbdc0000fcdc0000fddc0000fedc0000ffdc000000dd000001dd000002dd000003dd000004dd000005dd000006dd000007dd000008dd000009dd00000add00000bdd00000cdd00000ddd00000edd00000fdd000010dd000011dd000012dd000013dd000014dd000015dd000016dd000017dd000018dd000019dd00001add00001bdd00001cdd00001ddd00001edd00001fdd000020dd000021dd000022dd000023dd000024dd000025dd000026dd000027dd000028dd000029dd00002add00002bdd00002cdd00002ddd00002edd00002fdd000030dd000031dd000032dd000033dd000034dd000035dd000036dd000037dd000038dd000039dd00003add00003bdd00003cdd00003ddd00003edd00003fdd000040dd000041dd000042dd000043dd000044dd000045dd000046dd000047dd000048dd000049dd00004add00004bdd00004cdd00004ddd00004edd00004fdd000050dd000051dd000052dd000053dd000054dd000055dd000056dd000057dd000058dd000059dd00005add00005bdd00005cdd00005ddd00005edd00005fdd000060dd000061dd000062dd000063dd000064dd000065dd000066dd000067dd000068dd000069dd00006add00006bdd00006cdd00006ddd00006edd00006fdd000070dd000071dd000072dd000073dd000074dd000075dd000076dd000077dd000078dd000079dd00007add00007bdd00007cdd00007ddd00007edd00007fdd000080dd000081dd000082dd000083dd000084dd000085dd000086dd000087dd000088dd000089dd00008add00008bdd00008cdd00008ddd00008edd00008fdd000090dd000091dd000092dd000093dd000094dd000095dd000096dd000097dd000098dd000099dd00009add00009bdd00009cdd00009ddd00009edd00009fdd0000a0dd0000a1dd0000a2dd0000a3dd0000a4dd0000a5dd0000a6dd0000a7dd0000a8dd0000a9dd0000aadd0000abdd0000acdd0000addd0000aedd0000afdd0000b0dd0000b1dd0000b2dd0000b3dd0000b4dd0000b5dd0000b6dd0000b7dd0000b8dd0000b9dd0000badd0000bbdd0000bcdd0000bddd0000bedd0000bfdd0000c0dd0000c1dd0000c2dd0000c3dd0000c4dd0000c5dd0000c6dd0000c7dd0000c8dd0000c9dd0000cadd0000cbdd0000ccdd0000cddd0000cedd0000cfdd0000d0dd0000d1dd0000d2dd0000d3dd0000d4dd0000d5dd0000d6dd0000d7dd0000d8dd0000d9dd0000dadd0000dbdd0000dcdd0000dddd0000dedd0000dfdd0000e0dd0000e1dd0000e2dd0000e3dd0000e4dd0000e5dd0000e6dd0000e7dd0000e8dd0000e9dd0000eadd0000ebdd0000ecdd0000eddd0000eedd0000efdd0000f0dd0000f1dd0000f2dd0000f3dd0000f4dd0000f5dd0000f6dd0000f7dd0000f8dd0000f9dd0000fadd0000fbdd0000fcdd0000fddd0000fedd0000ffdd000000de000001de000002de000003de000004de000005de000006de000007de000008de000009de00000ade00000bde00000cde00000dde00000ede00000fde000010de000011de000012de000013de000014de000015de000016de000017de000018de000019de00001ade00001bde00001cde00001dde00001ede00001fde000020de000021de000022de000023de000024de000025de000026de000027de000028de000029de00002ade00002bde00002cde00002dde00002ede00002fde000030de000031de000032de000033de000034de000035de000036de000037de000038de000039de00003ade00003bde00003cde00003dde00003ede00003fde000040de000041de000042de000043de000044de000045de000046de000047de000048de000049de00004ade00004bde00004cde00004dde00004ede00004fde000050de000051de000052de000053de000054de000055de000056de000057de000058de000059de00005ade00005bde00005cde00005dde00005ede00005fde000060de000061de000062de000063de000064de000065de000066de000067de000068de000069de00006ade00006bde00006cde00006dde00006ede00006fde000070de000071de000072de000073de000074de000075de000076de000077de000078de000079de00007ade00007bde00007cde00007dde00007ede00007fde000080de000081de000082de000083de000084de000085de000086de000087de000088de000089de00008ade00008bde00008cde00008dde00008ede00008fde000090de000091de000092de000093de000094de000095de000096de000097de000098de000099de00009ade00009bde00009cde00009dde00009ede00009fde0000a0de0000a1de0000a2de0000a3de0000a4de0000a5de0000a6de0000a7de0000a8de0000a9de0000aade0000abde0000acde0000adde0000aede0000afde0000b0de0000b1de0000b2de0000b3de0000b4de0000b5de0000b6de0000b7de0000b8de0000b9de0000bade0000bbde0000bcde0000bdde0000bede0000bfde0000c0de0000c1de0000c2de0000c3de0000c4de0000c5de0000c6de0000c7de0000c8de0000c9de0000cade0000cbde0000ccde0000cdde0000cede0000cfde0000d0de0000d1de0000d2de0000d3de0000d4de0000d5de0000d6de0000d7de0000d8de0000d9de0000dade0000dbde0000dcde0000ddde0000dede0000dfde0000e0de0000e1de0000e2de0000e3de0000e4de0000e5de0000e6de0000e7de0000e8de0000e9de0000eade0000ebde0000ecde0000edde0000eede0000efde0000f0de0000f1de0000f2de0000f3de0000f4de0000f5de0000f6de0000f7de0000f8de0000f9de0000fade0000fbde0000fcde0000fdde0000fede0000ffde000000df000001df000002df000003df000004df000005df000006df000007df000008df000009df00000adf00000bdf00000cdf00000ddf00000edf00000fdf000010df000011df000012df000013df000014df000015df000016df000017df000018df000019df00001adf00001bdf00001cdf00001ddf00001edf00001fdf000020df000021df000022df000023df000024df000025df000026df000027df000028df000029df00002adf00002bdf00002cdf00002ddf00002edf00002fdf000030df000031df000032df000033df000034df000035df000036df000037df000038df000039df00003adf00003bdf00003cdf00003ddf00003edf00003fdf000040df000041df000042df000043df000044df000045df000046df000047df000048df000049df00004adf00004bdf00004cdf00004ddf00004edf00004fdf000050df000051df000052df000053df000054df000055df000056df000057df000058df000059df00005adf00005bdf00005cdf00005ddf00005edf00005fdf000060df000061df000062df000063df000064df000065df000066df000067df000068df000069df00006adf00006bdf00006cdf00006ddf00006edf00006fdf000070df000071df000072df000073df000074df000075df000076df000077df000078df000079df00007adf00007bdf00007cdf00007ddf00007edf00007fdf000080df000081df000082df000083df000084df000085df000086df000087df000088df000089df00008adf00008bdf00008cdf00008ddf00008edf00008fdf000090df000091df000092df000093df000094df000095df000096df000097df000098df000099df00009adf00009bdf00009cdf00009ddf00009edf00009fdf0000a0df0000a1df0000a2df0000a3df0000a4df0000a5df0000a6df0000a7df0000a8df0000a9df0000aadf0000abdf0000acdf0000addf0000aedf0000afdf0000b0df0000b1df0000b2df0000b3df0000b4df0000b5df0000b6df0000b7df0000b8df0000b9df0000badf0000bbdf0000bcdf0000bddf0000bedf0000bfdf0000c0df0000c1df0000c2df0000c3df0000c4df0000c5df0000c6df0000c7df0000c8df0000c9df0000cadf0000cbdf0000ccdf0000cddf0000cedf0000cfdf0000d0df0000d1df0000d2df0000d3df0000d4df0000d5df0000d6df0000d7df0000d8df0000d9df0000dadf0000dbdf0000dcdf0000dddf0000dedf0000dfdf0000e0df0000e1df0000e2df0000e3df0000e4df0000e5df0000e6df0000e7df0000e8df0000e9df0000eadf0000ebdf0000ecdf0000eddf0000eedf0000efdf0000f0df0000f1df0000f2df0000f3df0000f4df0000f5df0000f6df0000f7df0000f8df0000f9df0000fadf0000fbdf0000fcdf0000fddf0000fedf0000ffdf000000e0000001e0000002e0000003e0000004e0000005e0000006e0000007e0000008e0000009e000000ae000000be000000ce000000de000000ee000000fe0000010e0000011e0000012e0000013e0000014e0000015e0000016e0000017e0000018e0000019e000001ae000001be000001ce000001de000001ee000001fe0000020e0000021e0000022e0000023e0000024e0000025e0000026e0000027e0000028e0000029e000002ae000002be000002ce000002de000002ee000002fe0000030e0000031e0000032e0000033e0000034e0000035e0000036e0000037e0000038e0000039e000003ae000003be000003ce000003de000003ee000003fe0000040e0000041e0000042e0000043e0000044e0000045e0000046e0000047e0000048e0000049e000004ae000004be000004ce000004de000004ee000004fe0000050e0000051e0000052e0000053e0000054e0000055e0000056e0000057e0000058e0000059e000005ae000005be000005ce000005de000005ee000005fe0000060e0000061e0000062e0000063e0000064e0000065e0000066e0000067e0000068e0000069e000006ae000006be000006ce000006de000006ee000006fe0000070e0000071e0000072e0000073e0000074e0000075e0000076e0000077e0000078e0000079e000007ae000007be000007ce000007de000007ee000007fe0000080e0000081e0000082e0000083e0000084e0000085e0000086e0000087e0000088e0000089e000008ae000008be000008ce000008de000008ee000008fe0000090e0000091e0000092e0000093e0000094e0000095e0000096e0000097e0000098e0000099e000009ae000009be000009ce000009de000009ee000009fe00000a0e00000a1e00000a2e00000a3e00000a4e00000a5e00000a6e00000a7e00000a8e00000a9e00000aae00000abe00000ace00000ade00000aee00000afe00000b0e00000b1e00000b2e00000b3e00000b4e00000b5e00000b6e00000b7e00000b8e00000b9e00000bae00000bbe00000bce00000bde00000bee00000bfe00000c0e00000c1e00000c2e00000c3e00000c4e00000c5e00000c6e00000c7e00000c8e00000c9e00000cae00000cbe00000cce00000cde00000cee00000cfe00000d0e00000d1e00000d2e00000d3e00000d4e00000d5e00000d6e00000d7e00000d8e00000d9e00000dae00000dbe00000dce00000dde00000dee00000dfe00000e0e00000e1e00000e2e00000e3e00000e4e00000e5e00000e6e00000e7e00000e8e00000e9e00000eae00000ebe00000ece00000ede00000eee00000efe00000f0e00000f1e00000f2e00000f3e00000f4e00000f5e00000f6e00000f7e00000f8e00000f9e00000fae00000fbe00000fce00000fde00000fee00000ffe0000000e1000001e1000002e1000003e1000004e1000005e1000006e1000007e1000008e1000009e100000ae100000be100000ce100000de100000ee100000fe1000010e1000011e1000012e1000013e1000014e1000015e1000016e1000017e1000018e1000019e100001ae100001be100001ce100001de100001ee100001fe1000020e1000021e1000022e1000023e1000024e1000025e1000026e1000027e1000028e1000029e100002ae100002be100002ce100002de100002ee100002fe1000030e1000031e1000032e1000033e1000034e1000035e1000036e1000037e1000038e1000039e100003ae100003be100003ce100003de100003ee100003fe1000040e1000041e1000042e1000043e1000044e1000045e1000046e1000047e1000048e1000049e100004ae100004be100004ce100004de100004ee100004fe1000050e1000051e1000052e1000053e1000054e1000055e1000056e1000057e1000058e1000059e100005ae100005be100005ce100005de100005ee100005fe1000060e1000061e1000062e1000063e1000064e1000065e1000066e1000067e1000068e1000069e100006ae100006be100006ce100006de100006ee100006fe1000070e1000071e1000072e1000073e1000074e1000075e1000076e1000077e1000078e1000079e100007ae100007be100007ce100007de100007ee100007fe1000080e1000081e1000082e1000083e1000084e1000085e1000086e1000087e1000088e1000089e100008ae100008be100008ce100008de100008ee100008fe1000090e1000091e1000092e1000093e1000094e1000095e1000096e1000097e1000098e1000099e100009ae100009be100009ce100009de100009ee100009fe10000a0e10000a1e10000a2e10000a3e10000a4e10000a5e10000a6e10000a7e10000a8e10000a9e10000aae10000abe10000ace10000ade10000aee10000afe10000b0e10000b1e10000b2e10000b3e10000b4e10000b5e10000b6e10000b7e10000b8e10000b9e10000bae10000bbe10000bce10000bde10000bee10000bfe10000c0e10000c1e10000c2e10000c3e10000c4e10000c5e10000c6e10000c7e10000c8e10000c9e10000cae10000cbe10000cce10000cde10000cee10000cfe10000d0e10000d1e10000d2e10000d3e10000d4e10000d5e10000d6e10000d7e10000d8e10000d9e10000dae10000dbe10000dce10000dde10000dee10000dfe10000e0e10000e1e10000e2e10000e3e10000e4e10000e5e10000e6e10000e7e10000e8e10000e9e10000eae10000ebe10000ece10000ede10000eee10000efe10000f0e10000f1e10000f2e10000f3e10000f4e10000f5e10000f6e10000f7e10000f8e10000f9e10000fae10000fbe10000fce10000fde10000fee10000ffe1000000e2000001e2000002e2000003e2000004e2000005e2000006e2000007e2000008e2000009e200000ae200000be200000ce200000de200000ee200000fe2000010e2000011e2000012e2000013e2000014e2000015e2000016e2000017e2000018e2000019e200001ae200001be200001ce200001de200001ee200001fe2000020e2000021e2000022e2000023e2000024e2000025e2000026e2000027e2000028e2000029e200002ae200002be200002ce200002de200002ee200002fe2000030e2000031e2000032e2000033e2000034e2000035e2000036e2000037e2000038e2000039e200003ae200003be200003ce200003de200003ee200003fe2000040e2000041e2000042e2000043e2000044e2000045e2000046e2000047e2000048e2000049e200004ae200004be200004ce200004de200004ee200004fe2000050e2000051e2000052e2000053e2000054e2000055e2000056e2000057e2000058e2000059e200005ae200005be200005ce200005de200005ee200005fe2000060e2000061e2000062e2000063e2000064e2000065e2000066e2000067e2000068e2000069e200006ae200006be200006ce200006de200006ee200006fe2000070e2000071e2000072e2000073e2000074e2000075e2000076e2000077e2000078e2000079e200007ae200007be200007ce200007de200007ee200007fe2000080e2000081e2000082e2000083e2000084e2000085e2000086e2000087e2000088e2000089e200008ae200008be200008ce200008de200008ee200008fe2000090e2000091e2000092e2000093e2000094e2000095e2000096e2000097e2000098e2000099e200009ae200009be200009ce200009de200009ee200009fe20000a0e20000a1e20000a2e20000a3e20000a4e20000a5e20000a6e20000a7e20000a8e20000a9e20000aae20000abe20000ace20000ade20000aee20000afe20000b0e20000b1e20000b2e20000b3e20000b4e20000b5e20000b6e20000b7e20000b8e20000b9e20000bae20000bbe20000bce20000bde20000bee20000bfe20000c0e20000c1e20000c2e20000c3e20000c4e20000c5e20000c6e20000c7e20000c8e20000c9e20000cae20000cbe20000cce20000cde20000cee20000cfe20000d0e20000d1e20000d2e20000d3e20000d4e20000d5e20000d6e20000d7e20000d8e20000d9e20000dae20000dbe20000dce20000dde20000dee20000dfe20000e0e20000e1e20000e2e20000e3e20000e4e20000e5e20000e6e20000e7e20000e8e20000e9e20000eae20000ebe20000ece20000ede20000eee20000efe20000f0e20000f1e20000f2e20000f3e20000f4e20000f5e20000f6e20000f7e20000f8e20000f9e20000fae20000fbe20000fce20000fde20000fee20000ffe2000000e3000001e3000002e3000003e3000004e3000005e3000006e3000007e3000008e3000009e300000ae300000be300000ce300000de300000ee300000fe3000010e3000011e3000012e3000013e3000014e3000015e3000016e3000017e3000018e3000019e300001ae300001be300001ce300001de300001ee300001fe3000020e3000021e3000022e3000023e3000024e3000025e3000026e3000027e3000028e3000029e300002ae300002be300002ce300002de300002ee300002fe3000030e3000031e3000032e3000033e3000034e3000035e3000036e3000037e3000038e3000039e300003ae300003be300003ce300003de300003ee300003fe3000040e3000041e3000042e3000043e3000044e3000045e3000046e3000047e3000048e3000049e300004ae300004be300004ce300004de300004ee300004fe3000050e3000051e3000052e3000053e3000054e3000055e3000056e3000057e3000058e3000059e300005ae300005be300005ce300005de300005ee300005fe3000060e3000061e3000062e3000063e3000064e3000065e3000066e3000067e3000068e3000069e300006ae300006be300006ce300006de300006ee300006fe3000070e3000071e3000072e3000073e3000074e3000075e3000076e3000077e3000078e3000079e300007ae300007be300007ce300007de300007ee300007fe3000080e3000081e3000082e3000083e3000084e3000085e3000086e3000087e3000088e3000089e300008ae300008be300008ce300008de300008ee300008fe3000090e3000091e3000092e3000093e3000094e3000095e3000096e3000097e3000098e3000099e300009ae300009be300009ce300009de300009ee300009fe30000a0e30000a1e30000a2e30000a3e30000a4e30000a5e30000a6e30000a7e30000a8e30000a9e30000aae30000abe30000ace30000ade30000aee30000afe30000b0e30000b1e30000b2e30000b3e30000b4e30000b5e30000b6e30000b7e30000b8e30000b9e30000bae30000bbe30000bce30000bde30000bee30000bfe30000c0e30000c1e30000c2e30000c3e30000c4e30000c5e30000c6e30000c7e30000c8e30000c9e30000cae30000cbe30000cce30000cde30000cee30000cfe30000d0e30000d1e30000d2e30000d3e30000d4e30000d5e30000d6e30000d7e30000d8e30000d9e30000dae30000dbe30000dce30000dde30000dee30000dfe30000e0e30000e1e30000e2e30000e3e30000e4e30000e5e30000e6e30000e7e30000e8e30000e9e30000eae30000ebe30000ece30000ede30000eee30000efe30000f0e30000f1e30000f2e30000f3e30000f4e30000f5e30000f6e30000f7e30000f8e30000f9e30000fae30000fbe30000fce30000fde30000fee30000ffe3000000e4000001e4000002e4000003e4000004e4000005e4000006e4000007e4000008e4000009e400000ae400000be400000ce400000de400000ee400000fe4000010e4000011e4000012e4000013e4000014e4000015e4000016e4000017e4000018e4000019e400001ae400001be400001ce400001de400001ee400001fe4000020e4000021e4000022e4000023e4000024e4000025e4000026e4000027e4000028e4000029e400002ae400002be400002ce400002de400002ee400002fe4000030e4000031e4000032e4000033e4000034e4000035e4000036e4000037e4000038e4000039e400003ae400003be400003ce400003de400003ee400003fe4000040e4000041e4000042e4000043e4000044e4000045e4000046e4000047e4000048e4000049e400004ae400004be400004ce400004de400004ee400004fe4000050e4000051e4000052e4000053e4000054e4000055e4000056e4000057e4000058e4000059e400005ae400005be400005ce400005de400005ee400005fe4000060e4000061e4000062e4000063e4000064e4000065e4000066e4000067e4000068e4000069e400006ae400006be400006ce400006de400006ee400006fe4000070e4000071e4000072e4000073e4000074e4000075e4000076e4000077e4000078e4000079e400007ae400007be400007ce400007de400007ee400007fe4000080e4000081e4000082e4000083e4000084e4000085e4000086e4000087e4000088e4000089e400008ae400008be400008ce400008de400008ee400008fe4000090e4000091e4000092e4000093e4000094e4000095e4000096e4000097e4000098e4000099e400009ae400009be400009ce400009de400009ee400009fe40000a0e40000a1e40000a2e40000a3e40000a4e40000a5e40000a6e40000a7e40000a8e40000a9e40000aae40000abe40000ace40000ade40000aee40000afe40000b0e40000b1e40000b2e40000b3e40000b4e40000b5e40000b6e40000b7e40000b8e40000b9e40000bae40000bbe40000bce40000bde40000bee40000bfe40000c0e40000c1e40000c2e40000c3e40000c4e40000c5e40000c6e40000c7e40000c8e40000c9e40000cae40000cbe40000cce40000cde40000cee40000cfe40000d0e40000d1e40000d2e40000d3e40000d4e40000d5e40000d6e40000d7e40000d8e40000d9e40000dae40000dbe40000dce40000dde40000dee40000dfe40000e0e40000e1e40000e2e40000e3e40000e4e40000e5e40000e6e40000e7e40000e8e40000e9e40000eae40000ebe40000ece40000ede40000eee40000efe40000f0e40000f1e40000f2e40000f3e40000f4e40000f5e40000f6e40000f7e40000f8e40000f9e40000fae40000fbe40000fce40000fde40000fee40000ffe4000000e5000001e5000002e5000003e5000004e5000005e5000006e5000007e5000008e5000009e500000ae500000be500000ce500000de500000ee500000fe5000010e5000011e5000012e5000013e5000014e5000015e5000016e5000017e5000018e5000019e500001ae500001be500001ce500001de500001ee500001fe5000020e5000021e5000022e5000023e5000024e5000025e5000026e5000027e5000028e5000029e500002ae500002be500002ce500002de500002ee500002fe5000030e5000031e5000032e5000033e5000034e5000035e5000036e5000037e5000038e5000039e500003ae500003be500003ce500003de500003ee500003fe5000040e5000041e5000042e5000043e5000044e5000045e5000046e5000047e5000048e5000049e500004ae500004be500004ce500004de500004ee500004fe5000050e5000051e5000052e5000053e5000054e5000055e5000056e5000057e5000058e5000059e500005ae500005be500005ce500005de500005ee500005fe5000060e5000061e5000062e5000063e5000064e5000065e5000066e5000067e5000068e5000069e500006ae500006be500006ce500006de500006ee500006fe5000070e5000071e5000072e5000073e5000074e5000075e5000076e5000077e5000078e5000079e500007ae500007be500007ce500007de500007ee500007fe5000080e5000081e5000082e5000083e5000084e5000085e5000086e5000087e5000088e5000089e500008ae500008be500008ce500008de500008ee500008fe5000090e5000091e5000092e5000093e5000094e5000095e5000096e5000097e5000098e5000099e500009ae500009be500009ce500009de500009ee500009fe50000a0e50000a1e50000a2e50000a3e50000a4e50000a5e50000a6e50000a7e50000a8e50000a9e50000aae50000abe50000ace50000ade50000aee50000afe50000b0e50000b1e50000b2e50000b3e50000b4e50000b5e50000b6e50000b7e50000b8e50000b9e50000bae50000bbe50000bce50000bde50000bee50000bfe50000c0e50000c1e50000c2e50000c3e50000c4e50000c5e50000c6e50000c7e50000c8e50000c9e50000cae50000cbe50000cce50000cde50000cee50000cfe50000d0e50000d1e50000d2e50000d3e50000d4e50000d5e50000d6e50000d7e50000d8e50000d9e50000dae50000dbe50000dce50000dde50000dee50000dfe50000e0e50000e1e50000e2e50000e3e50000e4e50000e5e50000e6e50000e7e50000e8e50000e9e50000eae50000ebe50000ece50000ede50000eee50000efe50000f0e50000f1e50000f2e50000f3e50000f4e50000f5e50000f6e50000f7e50000f8e50000f9e50000fae50000fbe50000fce50000fde50000fee50000ffe5000000e6000001e6000002e6000003e6000004e6000005e6000006e6000007e6000008e6000009e600000ae600000be600000ce600000de600000ee600000fe6000010e6000011e6000012e6000013e6000014e6000015e6000016e6000017e6000018e6000019e600001ae600001be600001ce600001de600001ee600001fe6000020e6000021e6000022e6000023e6000024e6000025e6000026e6000027e6000028e6000029e600002ae600002be600002ce600002de600002ee600002fe6000030e6000031e6000032e6000033e6000034e6000035e6000036e6000037e6000038e6000039e600003ae600003be600003ce600003de600003ee600003fe6000040e6000041e6000042e6000043e6000044e6000045e6000046e6000047e6000048e6000049e600004ae600004be600004ce600004de600004ee600004fe6000050e6000051e6000052e6000053e6000054e6000055e6000056e6000057e6000058e6000059e600005ae600005be600005ce600005de600005ee600005fe6000060e6000061e6000062e6000063e6000064e6000065e6000066e6000067e6000068e6000069e600006ae600006be600006ce600006de600006ee600006fe6000070e6000071e6000072e6000073e6000074e6000075e6000076e6000077e6000078e6000079e600007ae600007be600007ce600007de600007ee600007fe6000080e6000081e6000082e6000083e6000084e6000085e6000086e6000087e6000088e6000089e600008ae600008be600008ce600008de600008ee600008fe6000090e6000091e6000092e6000093e6000094e6000095e6000096e6000097e6000098e6000099e600009ae600009be600009ce600009de600009ee600009fe60000a0e60000a1e60000a2e60000a3e60000a4e60000a5e60000a6e60000a7e60000a8e60000a9e60000aae60000abe60000ace60000ade60000aee60000afe60000b0e60000b1e60000b2e60000b3e60000b4e60000b5e60000b6e60000b7e60000b8e60000b9e60000bae60000bbe60000bce60000bde60000bee60000bfe60000c0e60000c1e60000c2e60000c3e60000c4e60000c5e60000c6e60000c7e60000c8e60000c9e60000cae60000cbe60000cce60000cde60000cee60000cfe60000d0e60000d1e60000d2e60000d3e60000d4e60000d5e60000d6e60000d7e60000d8e60000d9e60000dae60000dbe60000dce60000dde60000dee60000dfe60000e0e60000e1e60000e2e60000e3e60000e4e60000e5e60000e6e60000e7e60000e8e60000e9e60000eae60000ebe60000ece60000ede60000eee60000efe60000f0e60000f1e60000f2e60000f3e60000f4e60000f5e60000f6e60000f7e60000f8e60000f9e60000fae60000fbe60000fce60000fde60000fee60000ffe6000000e7000001e7000002e7000003e7000004e7000005e7000006e7000007e7000008e7000009e700000ae700000be700000ce700000de700000ee700000fe7000010e7000011e7000012e7000013e7000014e7000015e7000016e7000017e7000018e7000019e700001ae700001be700001ce700001de700001ee700001fe7000020e7000021e7000022e7000023e7000024e7000025e7000026e7000027e7000028e7000029e700002ae700002be700002ce700002de700002ee700002fe7000030e7000031e7000032e7000033e7000034e7000035e7000036e7000037e7000038e7000039e700003ae700003be700003ce700003de700003ee700003fe7000040e7000041e7000042e7000043e7000044e7000045e7000046e7000047e7000048e7000049e700004ae700004be700004ce700004de700004ee700004fe7000050e7000051e7000052e7000053e7000054e7000055e7000056e7000057e7000058e7000059e700005ae700005be700005ce700005de700005ee700005fe7000060e7000061e7000062e7000063e7000064e7000065e7000066e7000067e7000068e7000069e700006ae700006be700006ce700006de700006ee700006fe7000070e7000071e7000072e7000073e7000074e7000075e7000076e7000077e7000078e7000079e700007ae700007be700007ce700007de700007ee700007fe7000080e7000081e7000082e7000083e7000084e7000085e7000086e7000087e7000088e7000089e700008ae700008be700008ce700008de700008ee700008fe7000090e7000091e7000092e7000093e7000094e7000095e7000096e7000097e7000098e7000099e700009ae700009be700009ce700009de700009ee700009fe70000a0e70000a1e70000a2e70000a3e70000a4e70000a5e70000a6e70000a7e70000a8e70000a9e70000aae70000abe70000ace70000ade70000aee70000afe70000b0e70000b1e70000b2e70000b3e70000b4e70000b5e70000b6e70000b7e70000b8e70000b9e70000bae70000bbe70000bce70000bde70000bee70000bfe70000c0e70000c1e70000c2e70000c3e70000c4e70000c5e70000c6e70000c7e70000c8e70000c9e70000cae70000cbe70000cce70000cde70000cee70000cfe70000d0e70000d1e70000d2e70000d3e70000d4e70000d5e70000d6e70000d7e70000d8e70000d9e70000dae70000dbe70000dce70000dde70000dee70000dfe70000e0e70000e1e70000e2e70000e3e70000e4e70000e5e70000e6e70000e7e70000e8e70000e9e70000eae70000ebe70000ece70000ede70000eee70000efe70000f0e70000f1e70000f2e70000f3e70000f4e70000f5e70000f6e70000f7e70000f8e70000f9e70000fae70000fbe70000fce70000fde70000fee70000ffe7000000e8000001e8000002e8000003e8000004e8000005e8000006e8000007e8000008e8000009e800000ae800000be800000ce800000de800000ee800000fe8000010e8000011e8000012e8000013e8000014e8000015e8000016e8000017e8000018e8000019e800001ae800001be800001ce800001de800001ee800001fe8000020e8000021e8000022e8000023e8000024e8000025e8000026e8000027e8000028e8000029e800002ae800002be800002ce800002de800002ee800002fe8000030e8000031e8000032e8000033e8000034e8000035e8000036e8000037e8000038e8000039e800003ae800003be800003ce800003de800003ee800003fe8000040e8000041e8000042e8000043e8000044e8000045e8000046e8000047e8000048e8000049e800004ae800004be800004ce800004de800004ee800004fe8000050e8000051e8000052e8000053e8000054e8000055e8000056e8000057e8000058e8000059e800005ae800005be800005ce800005de800005ee800005fe8000060e8000061e8000062e8000063e8000064e8000065e8000066e8000067e8000068e8000069e800006ae800006be800006ce800006de800006ee800006fe8000070e8000071e8000072e8000073e8000074e8000075e8000076e8000077e8000078e8000079e800007ae800007be800007ce800007de800007ee800007fe8000080e8000081e8000082e8000083e8000084e8000085e8000086e8000087e8000088e8000089e800008ae800008be800008ce800008de800008ee800008fe8000090e8000091e8000092e8000093e8000094e8000095e8000096e8000097e8000098e8000099e800009ae800009be800009ce800009de800009ee800009fe80000a0e80000a1e80000a2e80000a3e80000a4e80000a5e80000a6e80000a7e80000a8e80000a9e80000aae80000abe80000ace80000ade80000aee80000afe80000b0e80000b1e80000b2e80000b3e80000b4e80000b5e80000b6e80000b7e80000b8e80000b9e80000bae80000bbe80000bce80000bde80000bee80000bfe80000c0e80000c1e80000c2e80000c3e80000c4e80000c5e80000c6e80000c7e80000c8e80000c9e80000cae80000cbe80000cce80000cde80000cee80000cfe80000d0e80000d1e80000d2e80000d3e80000d4e80000d5e80000d6e80000d7e80000d8e80000d9e80000dae80000dbe80000dce80000dde80000dee80000dfe80000e0e80000e1e80000e2e80000e3e80000e4e80000e5e80000e6e80000e7e80000e8e80000e9e80000eae80000ebe80000ece80000ede80000eee80000efe80000f0e80000f1e80000f2e80000f3e80000f4e80000f5e80000f6e80000f7e80000f8e80000f9e80000fae80000fbe80000fce80000fde80000fee80000ffe8000000e9000001e9000002e9000003e9000004e9000005e9000006e9000007e9000008e9000009e900000ae900000be900000ce900000de900000ee900000fe9000010e9000011e9000012e9000013e9000014e9000015e9000016e9000017e9000018e9000019e900001ae900001be900001ce900001de900001ee900001fe9000020e9000021e9000022e9000023e9000024e9000025e9000026e9000027e9000028e9000029e900002ae900002be900002ce900002de900002ee900002fe9000030e9000031e9000032e9000033e9000034e9000035e9000036e9000037e9000038e9000039e900003ae900003be900003ce900003de900003ee900003fe9000040e9000041e9000042e9000043e9000044e9000045e9000046e9000047e9000048e9000049e900004ae900004be900004ce900004de900004ee900004fe9000050e9000051e9000052e9000053e9000054e9000055e9000056e9000057e9000058e9000059e900005ae900005be900005ce900005de900005ee900005fe9000060e9000061e9000062e9000063e9000064e9000065e9000066e9000067e9000068e9000069e900006ae900006be900006ce900006de900006ee900006fe9000070e9000071e9000072e9000073e9000074e9000075e9000076e9000077e9000078e9000079e900007ae900007be900007ce900007de900007ee900007fe9000080e9000081e9000082e9000083e9000084e9000085e9000086e9000087e9000088e9000089e900008ae900008be900008ce900008de900008ee900008fe9000090e9000091e9000092e9000093e9000094e9000095e9000096e9000097e9000098e9000099e900009ae900009be900009ce900009de900009ee900009fe90000a0e90000a1e90000a2e90000a3e90000a4e90000a5e90000a6e90000a7e90000a8e90000a9e90000aae90000abe90000ace90000ade90000aee90000afe90000b0e90000b1e90000b2e90000b3e90000b4e90000b5e90000b6e90000b7e90000b8e90000b9e90000bae90000bbe90000bce90000bde90000bee90000bfe90000c0e90000c1e90000c2e90000c3e90000c4e90000c5e90000c6e90000c7e90000c8e90000c9e90000cae90000cbe90000cce90000cde90000cee90000cfe90000d0e90000d1e90000d2e90000d3e90000d4e90000d5e90000d6e90000d7e90000d8e90000d9e90000dae90000dbe90000dce90000dde90000dee90000dfe90000e0e90000e1e90000e2e90000e3e90000e4e90000e5e90000e6e90000e7e90000e8e90000e9e90000eae90000ebe90000ece90000ede90000eee90000efe90000f0e90000f1e90000f2e90000f3e90000f4e90000f5e90000f6e90000f7e90000f8e90000f9e90000fae90000fbe90000fce90000fde90000fee90000ffe9000000ea000001ea000002ea000003ea000004ea000005ea000006ea000007ea000008ea000009ea00000aea00000bea00000cea00000dea00000eea00000fea000010ea000011ea000012ea000013ea000014ea000015ea000016ea000017ea000018ea000019ea00001aea00001bea00001cea00001dea00001eea00001fea000020ea000021ea000022ea000023ea000024ea000025ea000026ea000027ea000028ea000029ea00002aea00002bea00002cea00002dea00002eea00002fea000030ea000031ea000032ea000033ea000034ea000035ea000036ea000037ea000038ea000039ea00003aea00003bea00003cea00003dea00003eea00003fea000040ea000041ea000042ea000043ea000044ea000045ea000046ea000047ea000048ea000049ea00004aea00004bea00004cea00004dea00004eea00004fea000050ea000051ea000052ea000053ea000054ea000055ea000056ea000057ea000058ea000059ea00005aea00005bea00005cea00005dea00005eea00005fea000060ea000061ea000062ea000063ea000064ea000065ea000066ea000067ea000068ea000069ea00006aea00006bea00006cea00006dea00006eea00006fea000070ea000071ea000072ea000073ea000074ea000075ea000076ea000077ea000078ea000079ea00007aea00007bea00007cea00007dea00007eea00007fea000080ea000081ea000082ea000083ea000084ea000085ea000086ea000087ea000088ea000089ea00008aea00008bea00008cea00008dea00008eea00008fea000090ea000091ea000092ea000093ea000094ea000095ea000096ea000097ea000098ea000099ea00009aea00009bea00009cea00009dea00009eea00009fea0000a0ea0000a1ea0000a2ea0000a3ea0000a4ea0000a5ea0000a6ea0000a7ea0000a8ea0000a9ea0000aaea0000abea0000acea0000adea0000aeea0000afea0000b0ea0000b1ea0000b2ea0000b3ea0000b4ea0000b5ea0000b6ea0000b7ea0000b8ea0000b9ea0000baea0000bbea0000bcea0000bdea0000beea0000bfea0000c0ea0000c1ea0000c2ea0000c3ea0000c4ea0000c5ea0000c6ea0000c7ea0000c8ea0000c9ea0000caea0000cbea0000ccea0000cdea0000ceea0000cfea0000d0ea0000d1ea0000d2ea0000d3ea0000d4ea0000d5ea0000d6ea0000d7ea0000d8ea0000d9ea0000daea0000dbea0000dcea0000ddea0000deea0000dfea0000e0ea0000e1ea0000e2ea0000e3ea0000e4ea0000e5ea0000e6ea0000e7ea0000e8ea0000e9ea0000eaea0000ebea0000ecea0000edea0000eeea0000efea0000f0ea0000f1ea0000f2ea0000f3ea0000f4ea0000f5ea0000f6ea0000f7ea0000f8ea0000f9ea0000faea0000fbea0000fcea0000fdea0000feea0000ffea000000eb000001eb000002eb000003eb000004eb000005eb000006eb000007eb000008eb000009eb00000aeb00000beb00000ceb00000deb00000eeb00000feb000010eb000011eb000012eb000013eb000014eb000015eb000016eb000017eb000018eb000019eb00001aeb00001beb00001ceb00001deb00001eeb00001feb000020eb000021eb000022eb000023eb000024eb000025eb000026eb000027eb000028eb000029eb00002aeb00002beb00002ceb00002deb00002eeb00002feb000030eb000031eb000032eb000033eb000034eb000035eb000036eb000037eb000038eb000039eb00003aeb00003beb00003ceb00003deb00003eeb00003feb000040eb000041eb000042eb000043eb000044eb000045eb000046eb000047eb000048eb000049eb00004aeb00004beb00004ceb00004deb00004eeb00004feb000050eb000051eb000052eb000053eb000054eb000055eb000056eb000057eb000058eb000059eb00005aeb00005beb00005ceb00005deb00005eeb00005feb000060eb000061eb000062eb000063eb000064eb000065eb000066eb000067eb000068eb000069eb00006aeb00006beb00006ceb00006deb00006eeb00006feb000070eb000071eb000072eb000073eb000074eb000075eb000076eb000077eb000078eb000079eb00007aeb00007beb00007ceb00007deb00007eeb00007feb000080eb000081eb000082eb000083eb000084eb000085eb000086eb000087eb000088eb000089eb00008aeb00008beb00008ceb00008deb00008eeb00008feb000090eb000091eb000092eb000093eb000094eb000095eb000096eb000097eb000098eb000099eb00009aeb00009beb00009ceb00009deb00009eeb00009feb0000a0eb0000a1eb0000a2eb0000a3eb0000a4eb0000a5eb0000a6eb0000a7eb0000a8eb0000a9eb0000aaeb0000abeb0000aceb0000adeb0000aeeb0000afeb0000b0eb0000b1eb0000b2eb0000b3eb0000b4eb0000b5eb0000b6eb0000b7eb0000b8eb0000b9eb0000baeb0000bbeb0000bceb0000bdeb0000beeb0000bfeb0000c0eb0000c1eb0000c2eb0000c3eb0000c4eb0000c5eb0000c6eb0000c7eb0000c8eb0000c9eb0000caeb0000cbeb0000cceb0000cdeb0000ceeb0000cfeb0000d0eb0000d1eb0000d2eb0000d3eb0000d4eb0000d5eb0000d6eb0000d7eb0000d8eb0000d9eb0000daeb0000dbeb0000dceb0000ddeb0000deeb0000dfeb0000e0eb0000e1eb0000e2eb0000e3eb0000e4eb0000e5eb0000e6eb0000e7eb0000e8eb0000e9eb0000eaeb0000ebeb0000eceb0000edeb0000eeeb0000efeb0000f0eb0000f1eb0000f2eb0000f3eb0000f4eb0000f5eb0000f6eb0000f7eb0000f8eb0000f9eb0000faeb0000fbeb0000fceb0000fdeb0000feeb0000ffeb000000ec000001ec000002ec000003ec000004ec000005ec000006ec000007ec000008ec000009ec00000aec00000bec00000cec00000dec00000eec00000fec000010ec000011ec000012ec000013ec000014ec000015ec000016ec000017ec000018ec000019ec00001aec00001bec00001cec00001dec00001eec00001fec000020ec000021ec000022ec000023ec000024ec000025ec000026ec000027ec000028ec000029ec00002aec00002bec00002cec00002dec00002eec00002fec000030ec000031ec000032ec000033ec000034ec000035ec000036ec000037ec000038ec000039ec00003aec00003bec00003cec00003dec00003eec00003fec000040ec000041ec000042ec000043ec000044ec000045ec000046ec000047ec000048ec000049ec00004aec00004bec00004cec00004dec00004eec00004fec000050ec000051ec000052ec000053ec000054ec000055ec000056ec000057ec000058ec000059ec00005aec00005bec00005cec00005dec00005eec00005fec000060ec000061ec000062ec000063ec000064ec000065ec000066ec000067ec000068ec000069ec00006aec00006bec00006cec00006dec00006eec00006fec000070ec000071ec000072ec000073ec000074ec000075ec000076ec000077ec000078ec000079ec00007aec00007bec00007cec00007dec00007eec00007fec000080ec000081ec000082ec000083ec000084ec000085ec000086ec000087ec000088ec000089ec00008aec00008bec00008cec00008dec00008eec00008fec000090ec000091ec000092ec000093ec000094ec000095ec000096ec000097ec000098ec000099ec00009aec00009bec00009cec00009dec00009eec00009fec0000a0ec0000a1ec0000a2ec0000a3ec0000a4ec0000a5ec0000a6ec0000a7ec0000a8ec0000a9ec0000aaec0000abec0000acec0000adec0000aeec0000afec0000b0ec0000b1ec0000b2ec0000b3ec0000b4ec0000b5ec0000b6ec0000b7ec0000b8ec0000b9ec0000baec0000bbec0000bcec0000bdec0000beec0000bfec0000c0ec0000c1ec0000c2ec0000c3ec0000c4ec0000c5ec0000c6ec0000c7ec0000c8ec0000c9ec0000caec0000cbec0000ccec0000cdec0000ceec0000cfec0000d0ec0000d1ec0000d2ec0000d3ec0000d4ec0000d5ec0000d6ec0000d7ec0000d8ec0000d9ec0000daec0000dbec0000dcec0000ddec0000deec0000dfec0000e0ec0000e1ec0000e2ec0000e3ec0000e4ec0000e5ec0000e6ec0000e7ec0000e8ec0000e9ec0000eaec0000ebec0000ecec0000edec0000eeec0000efec0000f0ec0000f1ec0000f2ec0000f3ec0000f4ec0000f5ec0000f6ec0000f7ec0000f8ec0000f9ec0000faec0000fbec0000fcec0000fdec0000feec0000ffec000000ed000001ed000002ed000003ed000004ed000005ed000006ed000007ed000008ed000009ed00000aed00000bed00000ced00000ded00000eed00000fed000010ed000011ed000012ed000013ed000014ed000015ed000016ed000017ed000018ed000019ed00001aed00001bed00001ced00001ded00001eed00001fed000020ed000021ed000022ed000023ed000024ed000025ed000026ed000027ed000028ed000029ed00002aed00002bed00002ced00002ded00002eed00002fed000030ed000031ed000032ed000033ed000034ed000035ed000036ed000037ed000038ed000039ed00003aed00003bed00003ced00003ded00003eed00003fed000040ed000041ed000042ed000043ed000044ed000045ed000046ed000047ed000048ed000049ed00004aed00004bed00004ced00004ded00004eed00004fed000050ed000051ed000052ed000053ed000054ed000055ed000056ed000057ed000058ed000059ed00005aed00005bed00005ced00005ded00005eed00005fed000060ed000061ed000062ed000063ed000064ed000065ed000066ed000067ed000068ed000069ed00006aed00006bed00006ced00006ded00006eed00006fed000070ed000071ed000072ed000073ed000074ed000075ed000076ed000077ed000078ed000079ed00007aed00007bed00007ced00007ded00007eed00007fed000080ed000081ed000082ed000083ed000084ed000085ed000086ed000087ed000088ed000089ed00008aed00008bed00008ced00008ded00008eed00008fed000090ed000091ed000092ed000093ed000094ed000095ed000096ed000097ed000098ed000099ed00009aed00009bed00009ced00009ded00009eed00009fed0000a0ed0000a1ed0000a2ed0000a3ed0000a4ed0000a5ed0000a6ed0000a7ed0000a8ed0000a9ed0000aaed0000abed0000aced0000aded0000aeed0000afed0000b0ed0000b1ed0000b2ed0000b3ed0000b4ed0000b5ed0000b6ed0000b7ed0000b8ed0000b9ed0000baed0000bbed0000bced0000bded0000beed0000bfed0000c0ed0000c1ed0000c2ed0000c3ed0000c4ed0000c5ed0000c6ed0000c7ed0000c8ed0000c9ed0000caed0000cbed0000cced0000cded0000ceed0000cfed0000d0ed0000d1ed0000d2ed0000d3ed0000d4ed0000d5ed0000d6ed0000d7ed0000d8ed0000d9ed0000daed0000dbed0000dced0000dded0000deed0000dfed0000e0ed0000e1ed0000e2ed0000e3ed0000e4ed0000e5ed0000e6ed0000e7ed0000e8ed0000e9ed0000eaed0000ebed0000eced0000eded0000eeed0000efed0000f0ed0000f1ed0000f2ed0000f3ed0000f4ed0000f5ed0000f6ed0000f7ed0000f8ed0000f9ed0000faed0000fbed0000fced0000fded0000feed0000ffed000000ee000001ee000002ee000003ee000004ee000005ee000006ee000007ee000008ee000009ee00000aee00000bee00000cee00000dee00000eee00000fee000010ee000011ee000012ee000013ee000014ee000015ee000016ee000017ee000018ee000019ee00001aee00001bee00001cee00001dee00001eee00001fee000020ee000021ee000022ee000023ee000024ee000025ee000026ee000027ee000028ee000029ee00002aee00002bee00002cee00002dee00002eee00002fee000030ee000031ee000032ee000033ee000034ee000035ee000036ee000037ee000038ee000039ee00003aee00003bee00003cee00003dee00003eee00003fee000040ee000041ee000042ee000043ee000044ee000045ee000046ee000047ee000048ee000049ee00004aee00004bee00004cee00004dee00004eee00004fee000050ee000051ee000052ee000053ee000054ee000055ee000056ee000057ee000058ee000059ee00005aee00005bee00005cee00005dee00005eee00005fee000060ee000061ee000062ee000063ee000064ee000065ee000066ee000067ee000068ee000069ee00006aee00006bee00006cee00006dee00006eee00006fee000070ee000071ee000072ee000073ee000074ee000075ee000076ee000077ee000078ee000079ee00007aee00007bee00007cee00007dee00007eee00007fee000080ee000081ee000082ee000083ee000084ee000085ee000086ee000087ee000088ee000089ee00008aee00008bee00008cee00008dee00008eee00008fee000090ee000091ee000092ee000093ee000094ee000095ee000096ee000097ee000098ee000099ee00009aee00009bee00009cee00009dee00009eee00009fee0000a0ee0000a1ee0000a2ee0000a3ee0000a4ee0000a5ee0000a6ee0000a7ee0000a8ee0000a9ee0000aaee0000abee0000acee0000adee0000aeee0000afee0000b0ee0000b1ee0000b2ee0000b3ee0000b4ee0000b5ee0000b6ee0000b7ee0000b8ee0000b9ee0000baee0000bbee0000bcee0000bdee0000beee0000bfee0000c0ee0000c1ee0000c2ee0000c3ee0000c4ee0000c5ee0000c6ee0000c7ee0000c8ee0000c9ee0000caee0000cbee0000ccee0000cdee0000ceee0000cfee0000d0ee0000d1ee0000d2ee0000d3ee0000d4ee0000d5ee0000d6ee0000d7ee0000d8ee0000d9ee0000daee0000dbee0000dcee0000ddee0000deee0000dfee0000e0ee0000e1ee0000e2ee0000e3ee0000e4ee0000e5ee0000e6ee0000e7ee0000e8ee0000e9ee0000eaee0000ebee0000ecee0000edee0000eeee0000efee0000f0ee0000f1ee0000f2ee0000f3ee0000f4ee0000f5ee0000f6ee0000f7ee0000f8ee0000f9ee0000faee0000fbee0000fcee0000fdee0000feee0000ffee000000ef000001ef000002ef000003ef000004ef000005ef000006ef000007ef000008ef000009ef00000aef00000bef00000cef00000def00000eef00000fef000010ef000011ef000012ef000013ef000014ef000015ef000016ef000017ef000018ef000019ef00001aef00001bef00001cef00001def00001eef00001fef000020ef000021ef000022ef000023ef000024ef000025ef000026ef000027ef000028ef000029ef00002aef00002bef00002cef00002def00002eef00002fef000030ef000031ef000032ef000033ef000034ef000035ef000036ef000037ef000038ef000039ef00003aef00003bef00003cef00003def00003eef00003fef000040ef000041ef000042ef000043ef000044ef000045ef000046ef000047ef000048ef000049ef00004aef00004bef00004cef00004def00004eef00004fef000050ef000051ef000052ef000053ef000054ef000055ef000056ef000057ef000058ef000059ef00005aef00005bef00005cef00005def00005eef00005fef000060ef000061ef000062ef000063ef000064ef000065ef000066ef000067ef000068ef000069ef00006aef00006bef00006cef00006def00006eef00006fef000070ef000071ef000072ef000073ef000074ef000075ef000076ef000077ef000078ef000079ef00007aef00007bef00007cef00007def00007eef00007fef000080ef000081ef000082ef000083ef000084ef000085ef000086ef000087ef000088ef000089ef00008aef00008bef00008cef00008def00008eef00008fef000090ef000091ef000092ef000093ef000094ef000095ef000096ef000097ef000098ef000099ef00009aef00009bef00009cef00009def00009eef00009fef0000a0ef0000a1ef0000a2ef0000a3ef0000a4ef0000a5ef0000a6ef0000a7ef0000a8ef0000a9ef0000aaef0000abef0000acef0000adef0000aeef0000afef0000b0ef0000b1ef0000b2ef0000b3ef0000b4ef0000b5ef0000b6ef0000b7ef0000b8ef0000b9ef0000baef0000bbef0000bcef0000bdef0000beef0000bfef0000c0ef0000c1ef0000c2ef0000c3ef0000c4ef0000c5ef0000c6ef0000c7ef0000c8ef0000c9ef0000caef0000cbef0000ccef0000cdef0000ceef0000cfef0000d0ef0000d1ef0000d2ef0000d3ef0000d4ef0000d5ef0000d6ef0000d7ef0000d8ef0000d9ef0000daef0000dbef0000dcef0000ddef0000deef0000dfef0000e0ef0000e1ef0000e2ef0000e3ef0000e4ef0000e5ef0000e6ef0000e7ef0000e8ef0000e9ef0000eaef0000ebef0000ecef0000edef0000eeef0000efef0000f0ef0000f1ef0000f2ef0000f3ef0000f4ef0000f5ef0000f6ef0000f7ef0000f8ef0000f9ef0000faef0000fbef0000fcef0000fdef0000feef0000ffef000000f0000001f0000002f0000003f0000004f0000005f0000006f0000007f0000008f0000009f000000af000000bf000000cf000000df000000ef000000ff0000010f0000011f0000012f0000013f0000014f0000015f0000016f0000017f0000018f0000019f000001af000001bf000001cf000001df000001ef000001ff0000020f0000021f0000022f0000023f0000024f0000025f0000026f0000027f0000028f0000029f000002af000002bf000002cf000002df000002ef000002ff0000030f0000031f0000032f0000033f0000034f0000035f0000036f0000037f0000038f0000039f000003af000003bf000003cf000003df000003ef000003ff0000040f0000041f0000042f0000043f0000044f0000045f0000046f0000047f0000048f0000049f000004af000004bf000004cf000004df000004ef000004ff0000050f0000051f0000052f0000053f0000054f0000055f0000056f0000057f0000058f0000059f000005af000005bf000005cf000005df000005ef000005ff0000060f0000061f0000062f0000063f0000064f0000065f0000066f0000067f0000068f0000069f000006af000006bf000006cf000006df000006ef000006ff0000070f0000071f0000072f0000073f0000074f0000075f0000076f0000077f0000078f0000079f000007af000007bf000007cf000007df000007ef000007ff0000080f0000081f0000082f0000083f0000084f0000085f0000086f0000087f0000088f0000089f000008af000008bf000008cf000008df000008ef000008ff0000090f0000091f0000092f0000093f0000094f0000095f0000096f0000097f0000098f0000099f000009af000009bf000009cf000009df000009ef000009ff00000a0f00000a1f00000a2f00000a3f00000a4f00000a5f00000a6f00000a7f00000a8f00000a9f00000aaf00000abf00000acf00000adf00000aef00000aff00000b0f00000b1f00000b2f00000b3f00000b4f00000b5f00000b6f00000b7f00000b8f00000b9f00000baf00000bbf00000bcf00000bdf00000bef00000bff00000c0f00000c1f00000c2f00000c3f00000c4f00000c5f00000c6f00000c7f00000c8f00000c9f00000caf00000cbf00000ccf00000cdf00000cef00000cff00000d0f00000d1f00000d2f00000d3f00000d4f00000d5f00000d6f00000d7f00000d8f00000d9f00000daf00000dbf00000dcf00000ddf00000def00000dff00000e0f00000e1f00000e2f00000e3f00000e4f00000e5f00000e6f00000e7f00000e8f00000e9f00000eaf00000ebf00000ecf00000edf00000eef00000eff00000f0f00000f1f00000f2f00000f3f00000f4f00000f5f00000f6f00000f7f00000f8f00000f9f00000faf00000fbf00000fcf00000fdf00000fef00000fff0000000f1000001f1000002f1000003f1000004f1000005f1000006f1000007f1000008f1000009f100000af100000bf100000cf100000df100000ef100000ff1000010f1000011f1000012f1000013f1000014f1000015f1000016f1000017f1000018f1000019f100001af100001bf100001cf100001df100001ef100001ff1000020f1000021f1000022f1000023f1000024f1000025f1000026f1000027f1000028f1000029f100002af100002bf100002cf100002df100002ef100002ff1000030f1000031f1000032f1000033f1000034f1000035f1000036f1000037f1000038f1000039f100003af100003bf100003cf100003df100003ef100003ff1000040f1000041f1000042f1000043f1000044f1000045f1000046f1000047f1000048f1000049f100004af100004bf100004cf100004df100004ef100004ff1000050f1000051f1000052f1000053f1000054f1000055f1000056f1000057f1000058f1000059f100005af100005bf100005cf100005df100005ef100005ff1000060f1000061f1000062f1000063f1000064f1000065f1000066f1000067f1000068f1000069f100006af100006bf100006cf100006df100006ef100006ff1000070f1000071f1000072f1000073f1000074f1000075f1000076f1000077f1000078f1000079f100007af100007bf100007cf100007df100007ef100007ff1000080f1000081f1000082f1000083f1000084f1000085f1000086f1000087f1000088f1000089f100008af100008bf100008cf100008df100008ef100008ff1000090f1000091f1000092f1000093f1000094f1000095f1000096f1000097f1000098f1000099f100009af100009bf100009cf100009df100009ef100009ff10000a0f10000a1f10000a2f10000a3f10000a4f10000a5f10000a6f10000a7f10000a8f10000a9f10000aaf10000abf10000acf10000adf10000aef10000aff10000b0f10000b1f10000b2f10000b3f10000b4f10000b5f10000b6f10000b7f10000b8f10000b9f10000baf10000bbf10000bcf10000bdf10000bef10000bff10000c0f10000c1f10000c2f10000c3f10000c4f10000c5f10000c6f10000c7f10000c8f10000c9f10000caf10000cbf10000ccf10000cdf10000cef10000cff10000d0f10000d1f10000d2f10000d3f10000d4f10000d5f10000d6f10000d7f10000d8f10000d9f10000daf10000dbf10000dcf10000ddf10000def10000dff10000e0f10000e1f10000e2f10000e3f10000e4f10000e5f10000e6f10000e7f10000e8f10000e9f10000eaf10000ebf10000ecf10000edf10000eef10000eff10000f0f10000f1f10000f2f10000f3f10000f4f10000f5f10000f6f10000f7f10000f8f10000f9f10000faf10000fbf10000fcf10000fdf10000fef10000fff1000000f2000001f2000002f2000003f2000004f2000005f2000006f2000007f2000008f2000009f200000af200000bf200000cf200000df200000ef200000ff2000010f2000011f2000012f2000013f2000014f2000015f2000016f2000017f2000018f2000019f200001af200001bf200001cf200001df200001ef200001ff2000020f2000021f2000022f2000023f2000024f2000025f2000026f2000027f2000028f2000029f200002af200002bf200002cf200002df200002ef200002ff2000030f2000031f2000032f2000033f2000034f2000035f2000036f2000037f2000038f2000039f200003af200003bf200003cf200003df200003ef200003ff2000040f2000041f2000042f2000043f2000044f2000045f2000046f2000047f2000048f2000049f200004af200004bf200004cf200004df200004ef200004ff2000050f2000051f2000052f2000053f2000054f2000055f2000056f2000057f2000058f2000059f200005af200005bf200005cf200005df200005ef200005ff2000060f2000061f2000062f2000063f2000064f2000065f2000066f2000067f2000068f2000069f200006af200006bf200006cf200006df200006ef200006ff2000070f2000071f2000072f2000073f2000074f2000075f2000076f2000077f2000078f2000079f200007af200007bf200007cf200007df200007ef200007ff2000080f2000081f2000082f2000083f2000084f2000085f2000086f2000087f2000088f2000089f200008af200008bf200008cf200008df200008ef200008ff2000090f2000091f2000092f2000093f2000094f2000095f2000096f2000097f2000098f2000099f200009af200009bf200009cf200009df200009ef200009ff20000a0f20000a1f20000a2f20000a3f20000a4f20000a5f20000a6f20000a7f20000a8f20000a9f20000aaf20000abf20000acf20000adf20000aef20000aff20000b0f20000b1f20000b2f20000b3f20000b4f20000b5f20000b6f20000b7f20000b8f20000b9f20000baf20000bbf20000bcf20000bdf20000bef20000bff20000c0f20000c1f20000c2f20000c3f20000c4f20000c5f20000c6f20000c7f20000c8f20000c9f20000caf20000cbf20000ccf20000cdf20000cef20000cff20000d0f20000d1f20000d2f20000d3f20000d4f20000d5f20000d6f20000d7f20000d8f20000d9f20000daf20000dbf20000dcf20000ddf20000def20000dff20000e0f20000e1f20000e2f20000e3f20000e4f20000e5f20000e6f20000e7f20000e8f20000e9f20000eaf20000ebf20000ecf20000edf20000eef20000eff20000f0f20000f1f20000f2f20000f3f20000f4f20000f5f20000f6f20000f7f20000f8f20000f9f20000faf20000fbf20000fcf20000fdf20000fef20000fff2000000f3000001f3000002f3000003f3000004f3000005f3000006f3000007f3000008f3000009f300000af300000bf300000cf300000df300000ef300000ff3000010f3000011f3000012f3000013f3000014f3000015f3000016f3000017f3000018f3000019f300001af300001bf300001cf300001df300001ef300001ff3000020f3000021f3000022f3000023f3000024f3000025f3000026f3000027f3000028f3000029f300002af300002bf300002cf300002df300002ef300002ff3000030f3000031f3000032f3000033f3000034f3000035f3000036f3000037f3000038f3000039f300003af300003bf300003cf300003df300003ef300003ff3000040f3000041f3000042f3000043f3000044f3000045f3000046f3000047f3000048f3000049f300004af300004bf300004cf300004df300004ef300004ff3000050f3000051f3000052f3000053f3000054f3000055f3000056f3000057f3000058f3000059f300005af300005bf300005cf300005df300005ef300005ff3000060f3000061f3000062f3000063f3000064f3000065f3000066f3000067f3000068f3000069f300006af300006bf300006cf300006df300006ef300006ff3000070f3000071f3000072f3000073f3000074f3000075f3000076f3000077f3000078f3000079f300007af300007bf300007cf300007df300007ef300007ff3000080f3000081f3000082f3000083f3000084f3000085f3000086f3000087f3000088f3000089f300008af300008bf300008cf300008df300008ef300008ff3000090f3000091f3000092f3000093f3000094f3000095f3000096f3000097f3000098f3000099f300009af300009bf300009cf300009df300009ef300009ff30000a0f30000a1f30000a2f30000a3f30000a4f30000a5f30000a6f30000a7f30000a8f30000a9f30000aaf30000abf30000acf30000adf30000aef30000aff30000b0f30000b1f30000b2f30000b3f30000b4f30000b5f30000b6f30000b7f30000b8f30000b9f30000baf30000bbf30000bcf30000bdf30000bef30000bff30000c0f30000c1f30000c2f30000c3f30000c4f30000c5f30000c6f30000c7f30000c8f30000c9f30000caf30000cbf30000ccf30000cdf30000cef30000cff30000d0f30000d1f30000d2f30000d3f30000d4f30000d5f30000d6f30000d7f30000d8f30000d9f30000daf30000dbf30000dcf30000ddf30000def30000dff30000e0f30000e1f30000e2f30000e3f30000e4f30000e5f30000e6f30000e7f30000e8f30000e9f30000eaf30000ebf30000ecf30000edf30000eef30000eff30000f0f30000f1f30000f2f30000f3f30000f4f30000f5f30000f6f30000f7f30000f8f30000f9f30000faf30000fbf30000fcf30000fdf30000fef30000fff3000000f4000001f4000002f4000003f4000004f4000005f4000006f4000007f4000008f4000009f400000af400000bf400000cf400000df400000ef400000ff4000010f4000011f4000012f4000013f4000014f4000015f4000016f4000017f4000018f4000019f400001af400001bf400001cf400001df400001ef400001ff4000020f4000021f4000022f4000023f4000024f4000025f4000026f4000027f4000028f4000029f400002af400002bf400002cf400002df400002ef400002ff4000030f4000031f4000032f4000033f4000034f4000035f4000036f4000037f4000038f4000039f400003af400003bf400003cf400003df400003ef400003ff4000040f4000041f4000042f4000043f4000044f4000045f4000046f4000047f4000048f4000049f400004af400004bf400004cf400004df400004ef400004ff4000050f4000051f4000052f4000053f4000054f4000055f4000056f4000057f4000058f4000059f400005af400005bf400005cf400005df400005ef400005ff4000060f4000061f4000062f4000063f4000064f4000065f4000066f4000067f4000068f4000069f400006af400006bf400006cf400006df400006ef400006ff4000070f4000071f4000072f4000073f4000074f4000075f4000076f4000077f4000078f4000079f400007af400007bf400007cf400007df400007ef400007ff4000080f4000081f4000082f4000083f4000084f4000085f4000086f4000087f4000088f4000089f400008af400008bf400008cf400008df400008ef400008ff4000090f4000091f4000092f4000093f4000094f4000095f4000096f4000097f4000098f4000099f400009af400009bf400009cf400009df400009ef400009ff40000a0f40000a1f40000a2f40000a3f40000a4f40000a5f40000a6f40000a7f40000a8f40000a9f40000aaf40000abf40000acf40000adf40000aef40000aff40000b0f40000b1f40000b2f40000b3f40000b4f40000b5f40000b6f40000b7f40000b8f40000b9f40000baf40000bbf40000bcf40000bdf40000bef40000bff40000c0f40000c1f40000c2f40000c3f40000c4f40000c5f40000c6f40000c7f40000c8f40000c9f40000caf40000cbf40000ccf40000cdf40000cef40000cff40000d0f40000d1f40000d2f40000d3f40000d4f40000d5f40000d6f40000d7f40000d8f40000d9f40000daf40000dbf40000dcf40000ddf40000def40000dff40000e0f40000e1f40000e2f40000e3f40000e4f40000e5f40000e6f40000e7f40000e8f40000e9f40000eaf40000ebf40000ecf40000edf40000eef40000eff40000f0f40000f1f40000f2f40000f3f40000f4f40000f5f40000f6f40000f7f40000f8f40000f9f40000faf40000fbf40000fcf40000fdf40000fef40000fff4000000f5000001f5000002f5000003f5000004f5000005f5000006f5000007f5000008f5000009f500000af500000bf500000cf500000df500000ef500000ff5000010f5000011f5000012f5000013f5000014f5000015f5000016f5000017f5000018f5000019f500001af500001bf500001cf500001df500001ef500001ff5000020f5000021f5000022f5000023f5000024f5000025f5000026f5000027f5000028f5000029f500002af500002bf500002cf500002df500002ef500002ff5000030f5000031f5000032f5000033f5000034f5000035f5000036f5000037f5000038f5000039f500003af500003bf500003cf500003df500003ef500003ff5000040f5000041f5000042f5000043f5000044f5000045f5000046f5000047f5000048f5000049f500004af500004bf500004cf500004df500004ef500004ff5000050f5000051f5000052f5000053f5000054f5000055f5000056f5000057f5000058f5000059f500005af500005bf500005cf500005df500005ef500005ff5000060f5000061f5000062f5000063f5000064f5000065f5000066f5000067f5000068f5000069f500006af500006bf500006cf500006df500006ef500006ff5000070f5000071f5000072f5000073f5000074f5000075f5000076f5000077f5000078f5000079f500007af500007bf500007cf500007df500007ef500007ff5000080f5000081f5000082f5000083f5000084f5000085f5000086f5000087f5000088f5000089f500008af500008bf500008cf500008df500008ef500008ff5000090f5000091f5000092f5000093f5000094f5000095f5000096f5000097f5000098f5000099f500009af500009bf500009cf500009df500009ef500009ff50000a0f50000a1f50000a2f50000a3f50000a4f50000a5f50000a6f50000a7f50000a8f50000a9f50000aaf50000abf50000acf50000adf50000aef50000aff50000b0f50000b1f50000b2f50000b3f50000b4f50000b5f50000b6f50000b7f50000b8f50000b9f50000baf50000bbf50000bcf50000bdf50000bef50000bff50000c0f50000c1f50000c2f50000c3f50000c4f50000c5f50000c6f50000c7f50000c8f50000c9f50000caf50000cbf50000ccf50000cdf50000cef50000cff50000d0f50000d1f50000d2f50000d3f50000d4f50000d5f50000d6f50000d7f50000d8f50000d9f50000daf50000dbf50000dcf50000ddf50000def50000dff50000e0f50000e1f50000e2f50000e3f50000e4f50000e5f50000e6f50000e7f50000e8f50000e9f50000eaf50000ebf50000ecf50000edf50000eef50000eff50000f0f50000f1f50000f2f50000f3f50000f4f50000f5f50000f6f50000f7f50000f8f50000f9f50000faf50000fbf50000fcf50000fdf50000fef50000fff5000000f6000001f6000002f6000003f6000004f6000005f6000006f6000007f6000008f6000009f600000af600000bf600000cf600000df600000ef600000ff6000010f6000011f6000012f6000013f6000014f6000015f6000016f6000017f6000018f6000019f600001af600001bf600001cf600001df600001ef600001ff6000020f6000021f6000022f6000023f6000024f6000025f6000026f6000027f6000028f6000029f600002af600002bf600002cf600002df600002ef600002ff6000030f6000031f6000032f6000033f6000034f6000035f6000036f6000037f6000038f6000039f600003af600003bf600003cf600003df600003ef600003ff6000040f6000041f6000042f6000043f6000044f6000045f6000046f6000047f6000048f6000049f600004af600004bf600004cf600004df600004ef600004ff6000050f6000051f6000052f6000053f6000054f6000055f6000056f6000057f6000058f6000059f600005af600005bf600005cf600005df600005ef600005ff6000060f6000061f6000062f6000063f6000064f6000065f6000066f6000067f6000068f6000069f600006af600006bf600006cf600006df600006ef600006ff6000070f6000071f6000072f6000073f6000074f6000075f6000076f6000077f6000078f6000079f600007af600007bf600007cf600007df600007ef600007ff6000080f6000081f6000082f6000083f6000084f6000085f6000086f6000087f6000088f6000089f600008af600008bf600008cf600008df600008ef600008ff6000090f6000091f6000092f6000093f6000094f6000095f6000096f6000097f6000098f6000099f600009af600009bf600009cf600009df600009ef600009ff60000a0f60000a1f60000a2f60000a3f60000a4f60000a5f60000a6f60000a7f60000a8f60000a9f60000aaf60000abf60000acf60000adf60000aef60000aff60000b0f60000b1f60000b2f60000b3f60000b4f60000b5f60000b6f60000b7f60000b8f60000b9f60000baf60000bbf60000bcf60000bdf60000bef60000bff60000c0f60000c1f60000c2f60000c3f60000c4f60000c5f60000c6f60000c7f60000c8f60000c9f60000caf60000cbf60000ccf60000cdf60000cef60000cff60000d0f60000d1f60000d2f60000d3f60000d4f60000d5f60000d6f60000d7f60000d8f60000d9f60000daf60000dbf60000dcf60000ddf60000def60000dff60000e0f60000e1f60000e2f60000e3f60000e4f60000e5f60000e6f60000e7f60000e8f60000e9f60000eaf60000ebf60000ecf60000edf60000eef60000eff60000f0f60000f1f60000f2f60000f3f60000f4f60000f5f60000f6f60000f7f60000f8f60000f9f60000faf60000fbf60000fcf60000fdf60000fef60000fff6000000f7000001f7000002f7000003f7000004f7000005f7000006f7000007f7000008f7000009f700000af700000bf700000cf700000df700000ef700000ff7000010f7000011f7000012f7000013f7000014f7000015f7000016f7000017f7000018f7000019f700001af700001bf700001cf700001df700001ef700001ff7000020f7000021f7000022f7000023f7000024f7000025f7000026f7000027f7000028f7000029f700002af700002bf700002cf700002df700002ef700002ff7000030f7000031f7000032f7000033f7000034f7000035f7000036f7000037f7000038f7000039f700003af700003bf700003cf700003df700003ef700003ff7000040f7000041f7000042f7000043f7000044f7000045f7000046f7000047f7000048f7000049f700004af700004bf700004cf700004df700004ef700004ff7000050f7000051f7000052f7000053f7000054f7000055f7000056f7000057f7000058f7000059f700005af700005bf700005cf700005df700005ef700005ff7000060f7000061f7000062f7000063f7000064f7000065f7000066f7000067f7000068f7000069f700006af700006bf700006cf700006df700006ef700006ff7000070f7000071f7000072f7000073f7000074f7000075f7000076f7000077f7000078f7000079f700007af700007bf700007cf700007df700007ef700007ff7000080f7000081f7000082f7000083f7000084f7000085f7000086f7000087f7000088f7000089f700008af700008bf700008cf700008df700008ef700008ff7000090f7000091f7000092f7000093f7000094f7000095f7000096f7000097f7000098f7000099f700009af700009bf700009cf700009df700009ef700009ff70000a0f70000a1f70000a2f70000a3f70000a4f70000a5f70000a6f70000a7f70000a8f70000a9f70000aaf70000abf70000acf70000adf70000aef70000aff70000b0f70000b1f70000b2f70000b3f70000b4f70000b5f70000b6f70000b7f70000b8f70000b9f70000baf70000bbf70000bcf70000bdf70000bef70000bff70000c0f70000c1f70000c2f70000c3f70000c4f70000c5f70000c6f70000c7f70000c8f70000c9f70000caf70000cbf70000ccf70000cdf70000cef70000cff70000d0f70000d1f70000d2f70000d3f70000d4f70000d5f70000d6f70000d7f70000d8f70000d9f70000daf70000dbf70000dcf70000ddf70000def70000dff70000e0f70000e1f70000e2f70000e3f70000e4f70000e5f70000e6f70000e7f70000e8f70000e9f70000eaf70000ebf70000ecf70000edf70000eef70000eff70000f0f70000f1f70000f2f70000f3f70000f4f70000f5f70000f6f70000f7f70000f8f70000f9f70000faf70000fbf70000fcf70000fdf70000fef70000fff7000000f8000001f8000002f8000003f8000004f8000005f8000006f8000007f8000008f8000009f800000af800000bf800000cf800000df800000ef800000ff8000010f8000011f8000012f8000013f8000014f8000015f8000016f8000017f8000018f8000019f800001af800001bf800001cf800001df800001ef800001ff8000020f8000021f8000022f8000023f8000024f8000025f8000026f8000027f8000028f8000029f800002af800002bf800002cf800002df800002ef800002ff8000030f8000031f8000032f8000033f8000034f8000035f8000036f8000037f8000038f8000039f800003af800003bf800003cf800003df800003ef800003ff8000040f8000041f8000042f8000043f8000044f8000045f8000046f8000047f8000048f8000049f800004af800004bf800004cf800004df800004ef800004ff8000050f8000051f8000052f8000053f8000054f8000055f8000056f8000057f8000058f8000059f800005af800005bf800005cf800005df800005ef800005ff8000060f8000061f8000062f8000063f8000064f8000065f8000066f8000067f8000068f8000069f800006af800006bf800006cf800006df800006ef800006ff8000070f8000071f8000072f8000073f8000074f8000075f8000076f8000077f8000078f8000079f800007af800007bf800007cf800007df800007ef800007ff8000080f8000081f8000082f8000083f8000084f8000085f8000086f8000087f8000088f8000089f800008af800008bf800008cf800008df800008ef800008ff8000090f8000091f8000092f8000093f8000094f8000095f8000096f8000097f8000098f8000099f800009af800009bf800009cf800009df800009ef800009ff80000a0f80000a1f80000a2f80000a3f80000a4f80000a5f80000a6f80000a7f80000a8f80000a9f80000aaf80000abf80000acf80000adf80000aef80000aff80000b0f80000b1f80000b2f80000b3f80000b4f80000b5f80000b6f80000b7f80000b8f80000b9f80000baf80000bbf80000bcf80000bdf80000bef80000bff80000c0f80000c1f80000c2f80000c3f80000c4f80000c5f80000c6f80000c7f80000c8f80000c9f80000caf80000cbf80000ccf80000cdf80000cef80000cff80000d0f80000d1f80000d2f80000d3f80000d4f80000d5f80000d6f80000d7f80000d8f80000d9f80000daf80000dbf80000dcf80000ddf80000def80000dff80000e0f80000e1f80000e2f80000e3f80000e4f80000e5f80000e6f80000e7f80000e8f80000e9f80000eaf80000ebf80000ecf80000edf80000eef80000eff80000f0f80000f1f80000f2f80000f3f80000f4f80000f5f80000f6f80000f7f80000f8f80000f9f80000faf80000fbf80000fcf80000fdf80000fef80000fff8000000f9000001f9000002f9000003f9000004f9000005f9000006f9000007f9000008f9000009f900000af900000bf900000cf900000df900000ef900000ff9000010f9000011f9000012f9000013f9000014f9000015f9000016f9000017f9000018f9000019f900001af900001bf900001cf900001df900001ef900001ff9000020f9000021f9000022f9000023f9000024f9000025f9000026f9000027f9000028f9000029f900002af900002bf900002cf900002df900002ef900002ff9000030f9000031f9000032f9000033f9000034f9000035f9000036f9000037f9000038f9000039f900003af900003bf900003cf900003df900003ef900003ff9000040f9000041f9000042f9000043f9000044f9000045f9000046f9000047f9000048f9000049f900004af900004bf900004cf900004df900004ef900004ff9000050f9000051f9000052f9000053f9000054f9000055f9000056f9000057f9000058f9000059f900005af900005bf900005cf900005df900005ef900005ff9000060f9000061f9000062f9000063f9000064f9000065f9000066f9000067f9000068f9000069f900006af900006bf900006cf900006df900006ef900006ff9000070f9000071f9000072f9000073f9000074f9000075f9000076f9000077f9000078f9000079f900007af900007bf900007cf900007df900007ef900007ff9000080f9000081f9000082f9000083f9000084f9000085f9000086f9000087f9000088f9000089f900008af900008bf900008cf900008df900008ef900008ff9000090f9000091f9000092f9000093f9000094f9000095f9000096f9000097f9000098f9000099f900009af900009bf900009cf900009df900009ef900009ff90000a0f90000a1f90000a2f90000a3f90000a4f90000a5f90000a6f90000a7f90000a8f90000a9f90000aaf90000abf90000acf90000adf90000aef90000aff90000b0f90000b1f90000b2f90000b3f90000b4f90000b5f90000b6f90000b7f90000b8f90000b9f90000baf90000bbf90000bcf90000bdf90000bef90000bff90000c0f90000c1f90000c2f90000c3f90000c4f90000c5f90000c6f90000c7f90000c8f90000c9f90000caf90000cbf90000ccf90000cdf90000cef90000cff90000d0f90000d1f90000d2f90000d3f90000d4f90000d5f90000d6f90000d7f90000d8f90000d9f90000daf90000dbf90000dcf90000ddf90000def90000dff90000e0f90000e1f90000e2f90000e3f90000e4f90000e5f90000e6f90000e7f90000e8f90000e9f90000eaf90000ebf90000ecf90000edf90000eef90000eff90000f0f90000f1f90000f2f90000f3f90000f4f90000f5f90000f6f90000f7f90000f8f90000f9f90000faf90000fbf90000fcf90000fdf90000fef90000fff9000000fa000001fa000002fa000003fa000004fa000005fa000006fa000007fa000008fa000009fa00000afa00000bfa00000cfa00000dfa00000efa00000ffa000010fa000011fa000012fa000013fa000014fa000015fa000016fa000017fa000018fa000019fa00001afa00001bfa00001cfa00001dfa00001efa00001ffa000020fa000021fa000022fa000023fa000024fa000025fa000026fa000027fa000028fa000029fa00002afa00002bfa00002cfa00002dfa00002efa00002ffa000030fa000031fa000032fa000033fa000034fa000035fa000036fa000037fa000038fa000039fa00003afa00003bfa00003cfa00003dfa00003efa00003ffa000040fa000041fa000042fa000043fa000044fa000045fa000046fa000047fa000048fa000049fa00004afa00004bfa00004cfa00004dfa00004efa00004ffa000050fa000051fa000052fa000053fa000054fa000055fa000056fa000057fa000058fa000059fa00005afa00005bfa00005cfa00005dfa00005efa00005ffa000060fa000061fa000062fa000063fa000064fa000065fa000066fa000067fa000068fa000069fa00006afa00006bfa00006cfa00006dfa00006efa00006ffa000070fa000071fa000072fa000073fa000074fa000075fa000076fa000077fa000078fa000079fa00007afa00007bfa00007cfa00007dfa00007efa00007ffa000080fa000081fa000082fa000083fa000084fa000085fa000086fa000087fa000088fa000089fa00008afa00008bfa00008cfa00008dfa00008efa00008ffa000090fa000091fa000092fa000093fa000094fa000095fa000096fa000097fa000098fa000099fa00009afa00009bfa00009cfa00009dfa00009efa00009ffa0000a0fa0000a1fa0000a2fa0000a3fa0000a4fa0000a5fa0000a6fa0000a7fa0000a8fa0000a9fa0000aafa0000abfa0000acfa0000adfa0000aefa0000affa0000b0fa0000b1fa0000b2fa0000b3fa0000b4fa0000b5fa0000b6fa0000b7fa0000b8fa0000b9fa0000bafa0000bbfa0000bcfa0000bdfa0000befa0000bffa0000c0fa0000c1fa0000c2fa0000c3fa0000c4fa0000c5fa0000c6fa0000c7fa0000c8fa0000c9fa0000cafa0000cbfa0000ccfa0000cdfa0000cefa0000cffa0000d0fa0000d1fa0000d2fa0000d3fa0000d4fa0000d5fa0000d6fa0000d7fa0000d8fa0000d9fa0000dafa0000dbfa0000dcfa0000ddfa0000defa0000dffa0000e0fa0000e1fa0000e2fa0000e3fa0000e4fa0000e5fa0000e6fa0000e7fa0000e8fa0000e9fa0000eafa0000ebfa0000ecfa0000edfa0000eefa0000effa0000f0fa0000f1fa0000f2fa0000f3fa0000f4fa0000f5fa0000f6fa0000f7fa0000f8fa0000f9fa0000fafa0000fbfa0000fcfa0000fdfa0000fefa0000fffa000000fb000001fb000002fb000003fb000004fb000005fb000006fb000007fb000008fb000009fb00000afb00000bfb00000cfb00000dfb00000efb00000ffb000010fb000011fb000012fb000013fb000014fb000015fb000016fb000017fb000018fb000019fb00001afb00001bfb00001cfb00001dfb00001efb00001ffb000020fb000021fb000022fb000023fb000024fb000025fb000026fb000027fb000028fb000029fb00002afb00002bfb00002cfb00002dfb00002efb00002ffb000030fb000031fb000032fb000033fb000034fb000035fb000036fb000037fb000038fb000039fb00003afb00003bfb00003cfb00003dfb00003efb00003ffb000040fb000041fb000042fb000043fb000044fb000045fb000046fb000047fb000048fb000049fb00004afb00004bfb00004cfb00004dfb00004efb00004ffb000050fb000051fb000052fb000053fb000054fb000055fb000056fb000057fb000058fb000059fb00005afb00005bfb00005cfb00005dfb00005efb00005ffb000060fb000061fb000062fb000063fb000064fb000065fb000066fb000067fb000068fb000069fb00006afb00006bfb00006cfb00006dfb00006efb00006ffb000070fb000071fb000072fb000073fb000074fb000075fb000076fb000077fb000078fb000079fb00007afb00007bfb00007cfb00007dfb00007efb00007ffb000080fb000081fb000082fb000083fb000084fb000085fb000086fb000087fb000088fb000089fb00008afb00008bfb00008cfb00008dfb00008efb00008ffb000090fb000091fb000092fb000093fb000094fb000095fb000096fb000097fb000098fb000099fb00009afb00009bfb00009cfb00009dfb00009efb00009ffb0000a0fb0000a1fb0000a2fb0000a3fb0000a4fb0000a5fb0000a6fb0000a7fb0000a8fb0000a9fb0000aafb0000abfb0000acfb0000adfb0000aefb0000affb0000b0fb0000b1fb0000b2fb0000b3fb0000b4fb0000b5fb0000b6fb0000b7fb0000b8fb0000b9fb0000bafb0000bbfb0000bcfb0000bdfb0000befb0000bffb0000c0fb0000c1fb0000c2fb0000c3fb0000c4fb0000c5fb0000c6fb0000c7fb0000c8fb0000c9fb0000cafb0000cbfb0000ccfb0000cdfb0000cefb0000cffb0000d0fb0000d1fb0000d2fb0000d3fb0000d4fb0000d5fb0000d6fb0000d7fb0000d8fb0000d9fb0000dafb0000dbfb0000dcfb0000ddfb0000defb0000dffb0000e0fb0000e1fb0000e2fb0000e3fb0000e4fb0000e5fb0000e6fb0000e7fb0000e8fb0000e9fb0000eafb0000ebfb0000ecfb0000edfb0000eefb0000effb0000f0fb0000f1fb0000f2fb0000f3fb0000f4fb0000f5fb0000f6fb0000f7fb0000f8fb0000f9fb0000fafb0000fbfb0000fcfb0000fdfb0000fefb0000fffb000000fc000001fc000002fc000003fc000004fc000005fc000006fc000007fc000008fc000009fc00000afc00000bfc00000cfc00000dfc00000efc00000ffc000010fc000011fc000012fc000013fc000014fc000015fc000016fc000017fc000018fc000019fc00001afc00001bfc00001cfc00001dfc00001efc00001ffc000020fc000021fc000022fc000023fc000024fc000025fc000026fc000027fc000028fc000029fc00002afc00002bfc00002cfc00002dfc00002efc00002ffc000030fc000031fc000032fc000033fc000034fc000035fc000036fc000037fc000038fc000039fc00003afc00003bfc00003cfc00003dfc00003efc00003ffc000040fc000041fc000042fc000043fc000044fc000045fc000046fc000047fc000048fc000049fc00004afc00004bfc00004cfc00004dfc00004efc00004ffc000050fc000051fc000052fc000053fc000054fc000055fc000056fc000057fc000058fc000059fc00005afc00005bfc00005cfc00005dfc00005efc00005ffc000060fc000061fc000062fc000063fc000064fc000065fc000066fc000067fc000068fc000069fc00006afc00006bfc00006cfc00006dfc00006efc00006ffc000070fc000071fc000072fc000073fc000074fc000075fc000076fc000077fc000078fc000079fc00007afc00007bfc00007cfc00007dfc00007efc00007ffc000080fc000081fc000082fc000083fc000084fc000085fc000086fc000087fc000088fc000089fc00008afc00008bfc00008cfc00008dfc00008efc00008ffc000090fc000091fc000092fc000093fc000094fc000095fc000096fc000097fc000098fc000099fc00009afc00009bfc00009cfc00009dfc00009efc00009ffc0000a0fc0000a1fc0000a2fc0000a3fc0000a4fc0000a5fc0000a6fc0000a7fc0000a8fc0000a9fc0000aafc0000abfc0000acfc0000adfc0000aefc0000affc0000b0fc0000b1fc0000b2fc0000b3fc0000b4fc0000b5fc0000b6fc0000b7fc0000b8fc0000b9fc0000bafc0000bbfc0000bcfc0000bdfc0000befc0000bffc0000c0fc0000c1fc0000c2fc0000c3fc0000c4fc0000c5fc0000c6fc0000c7fc0000c8fc0000c9fc0000cafc0000cbfc0000ccfc0000cdfc0000cefc0000cffc0000d0fc0000d1fc0000d2fc0000d3fc0000d4fc0000d5fc0000d6fc0000d7fc0000d8fc0000d9fc0000dafc0000dbfc0000dcfc0000ddfc0000defc0000dffc0000e0fc0000e1fc0000e2fc0000e3fc0000e4fc0000e5fc0000e6fc0000e7fc0000e8fc0000e9fc0000eafc0000ebfc0000ecfc0000edfc0000eefc0000effc0000f0fc0000f1fc0000f2fc0000f3fc0000f4fc0000f5fc0000f6fc0000f7fc0000f8fc0000f9fc0000fafc0000fbfc0000fcfc0000fdfc0000fefc0000fffc000000fd000001fd000002fd000003fd000004fd000005fd000006fd000007fd000008fd000009fd00000afd00000bfd00000cfd00000dfd00000efd00000ffd000010fd000011fd000012fd000013fd000014fd000015fd000016fd000017fd000018fd000019fd00001afd00001bfd00001cfd00001dfd00001efd00001ffd000020fd000021fd000022fd000023fd000024fd000025fd000026fd000027fd000028fd000029fd00002afd00002bfd00002cfd00002dfd00002efd00002ffd000030fd000031fd000032fd000033fd000034fd000035fd000036fd000037fd000038fd000039fd00003afd00003bfd00003cfd00003dfd00003efd00003ffd000040fd000041fd000042fd000043fd000044fd000045fd000046fd000047fd000048fd000049fd00004afd00004bfd00004cfd00004dfd00004efd00004ffd000050fd000051fd000052fd000053fd000054fd000055fd000056fd000057fd000058fd000059fd00005afd00005bfd00005cfd00005dfd00005efd00005ffd000060fd000061fd000062fd000063fd000064fd000065fd000066fd000067fd000068fd000069fd00006afd00006bfd00006cfd00006dfd00006efd00006ffd000070fd000071fd000072fd000073fd000074fd000075fd000076fd000077fd000078fd000079fd00007afd00007bfd00007cfd00007dfd00007efd00007ffd000080fd000081fd000082fd000083fd000084fd000085fd000086fd000087fd000088fd000089fd00008afd00008bfd00008cfd00008dfd00008efd00008ffd000090fd000091fd000092fd000093fd000094fd000095fd000096fd000097fd000098fd000099fd00009afd00009bfd00009cfd00009dfd00009efd00009ffd0000a0fd0000a1fd0000a2fd0000a3fd0000a4fd0000a5fd0000a6fd0000a7fd0000a8fd0000a9fd0000aafd0000abfd0000acfd0000adfd0000aefd0000affd0000b0fd0000b1fd0000b2fd0000b3fd0000b4fd0000b5fd0000b6fd0000b7fd0000b8fd0000b9fd0000bafd0000bbfd0000bcfd0000bdfd0000befd0000bffd0000c0fd0000c1fd0000c2fd0000c3fd0000c4fd0000c5fd0000c6fd0000c7fd0000c8fd0000c9fd0000cafd0000cbfd0000ccfd0000cdfd0000cefd0000cffd0000d0fd0000d1fd0000d2fd0000d3fd0000d4fd0000d5fd0000d6fd0000d7fd0000d8fd0000d9fd0000dafd0000dbfd0000dcfd0000ddfd0000defd0000dffd0000e0fd0000e1fd0000e2fd0000e3fd0000e4fd0000e5fd0000e6fd0000e7fd0000e8fd0000e9fd0000eafd0000ebfd0000ecfd0000edfd0000eefd0000effd0000f0fd0000f1fd0000f2fd0000f3fd0000f4fd0000f5fd0000f6fd0000f7fd0000f8fd0000f9fd0000fafd0000fbfd0000fcfd0000fdfd0000fefd0000fffd000000fe000001fe000002fe000003fe000004fe000005fe000006fe000007fe000008fe000009fe00000afe00000bfe00000cfe00000dfe00000efe00000ffe000010fe000011fe000012fe000013fe000014fe000015fe000016fe000017fe000018fe000019fe00001afe00001bfe00001cfe00001dfe00001efe00001ffe000020fe000021fe000022fe000023fe000024fe000025fe000026fe000027fe000028fe000029fe00002afe00002bfe00002cfe00002dfe00002efe00002ffe000030fe000031fe000032fe000033fe000034fe000035fe000036fe000037fe000038fe000039fe00003afe00003bfe00003cfe00003dfe00003efe00003ffe000040fe000041fe000042fe000043fe000044fe000045fe000046fe000047fe000048fe000049fe00004afe00004bfe00004cfe00004dfe00004efe00004ffe000050fe000051fe000052fe000053fe000054fe000055fe000056fe000057fe000058fe000059fe00005afe00005bfe00005cfe00005dfe00005efe00005ffe000060fe000061fe000062fe000063fe000064fe000065fe000066fe000067fe000068fe000069fe00006afe00006bfe00006cfe00006dfe00006efe00006ffe000070fe000071fe000072fe000073fe000074fe000075fe000076fe000077fe000078fe000079fe00007afe00007bfe00007cfe00007dfe00007efe00007ffe000080fe000081fe000082fe000083fe000084fe000085fe000086fe000087fe000088fe000089fe00008afe00008bfe00008cfe00008dfe00008efe00008ffe000090fe000091fe000092fe000093fe000094fe000095fe000096fe000097fe000098fe000099fe00009afe00009bfe00009cfe00009dfe00009efe00009ffe0000a0fe0000a1fe0000a2fe0000a3fe0000a4fe0000a5fe0000a6fe0000a7fe0000a8fe0000a9fe0000aafe0000abfe0000acfe0000adfe0000aefe0000affe0000b0fe0000b1fe0000b2fe0000b3fe0000b4fe0000b5fe0000b6fe0000b7fe0000b8fe0000b9fe0000bafe0000bbfe0000bcfe0000bdfe0000befe0000bffe0000c0fe0000c1fe0000c2fe0000c3fe0000c4fe0000c5fe0000c6fe0000c7fe0000c8fe0000c9fe0000cafe0000cbfe0000ccfe0000cdfe0000cefe0000cffe0000d0fe0000d1fe0000d2fe0000d3fe0000d4fe0000d5fe0000d6fe0000d7fe0000d8fe0000d9fe0000dafe0000dbfe0000dcfe0000ddfe0000defe0000dffe0000e0fe0000e1fe0000e2fe0000e3fe0000e4fe0000e5fe0000e6fe0000e7fe0000e8fe0000e9fe0000eafe0000ebfe0000ecfe0000edfe0000eefe0000effe0000f0fe0000f1fe0000f2fe0000f3fe0000f4fe0000f5fe0000f6fe0000f7fe0000f8fe0000f9fe0000fafe0000fbfe0000fcfe0000fdfe0000fefe0000fffe000000ff000001ff000002ff000003ff000004ff000005ff000006ff000007ff000008ff000009ff00000aff00000bff00000cff00000dff00000eff00000fff000010ff000011ff000012ff000013ff000014ff000015ff000016ff000017ff000018ff000019ff00001aff00001bff00001cff00001dff00001eff00001fff000020ff000021ff000022ff000023ff000024ff000025ff000026ff000027ff000028ff000029ff00002aff00002bff00002cff00002dff00002eff00002fff000030ff000031ff000032ff000033ff000034ff000035ff000036ff000037ff000038ff000039ff00003aff00003bff00003cff00003dff00003eff00003fff000040ff000041ff000042ff000043ff000044ff000045ff000046ff000047ff000048ff000049ff00004aff00004bff00004cff00004dff00004eff00004fff000050ff000051ff000052ff000053ff000054ff000055ff000056ff000057ff000058ff000059ff00005aff00005bff00005cff00005dff00005eff00005fff000060ff000061ff000062ff000063ff000064ff000065ff000066ff000067ff000068ff000069ff00006aff00006bff00006cff00006dff00006eff00006fff000070ff000071ff000072ff000073ff000074ff000075ff000076ff000077ff000078ff000079ff00007aff00007bff00007cff00007dff00007eff00007fff000080ff000081ff000082ff000083ff000084ff000085ff000086ff000087ff000088ff000089ff00008aff00008bff00008cff00008dff00008eff00008fff000090ff000091ff000092ff000093ff000094ff000095ff000096ff000097ff000098ff000099ff00009aff00009bff00009cff00009dff00009eff00009fff0000a0ff0000a1ff0000a2ff0000a3ff0000a4ff0000a5ff0000a6ff0000a7ff0000a8ff0000a9ff0000aaff0000abff0000acff0000adff0000aeff0000afff0000b0ff0000b1ff0000b2ff0000b3ff0000b4ff0000b5ff0000b6ff0000b7ff0000b8ff0000b9ff0000baff0000bbff0000bcff0000bdff0000beff0000bfff0000c0ff0000c1ff0000c2ff0000c3ff0000c4ff0000c5ff0000c6ff0000c7ff0000c8ff0000c9ff0000caff0000cbff0000ccff0000cdff0000ceff0000cfff0000d0ff0000d1ff0000d2ff0000d3ff0000d4ff0000d5ff0000d6ff0000d7ff0000d8ff0000d9ff0000daff0000dbff0000dcff0000ddff0000deff0000dfff0000e0ff0000e1ff0000e2ff0000e3ff0000e4ff0000e5ff0000e6ff0000e7ff0000e8ff0000e9ff0000eaff0000ebff0000ecff0000edff0000eeff0000efff0000f0ff0000f1ff0000f2ff0000f3ff0000f4ff0000f5ff0000f6ff0000f7ff0000f8ff0000f9ff0000faff0000fbff0000fcff0000fdff0000feff0000ffff0000000001000100010002000100030001000400010005000100060001000700010008000100090001000a0001000b0001000c0001000d0001000e0001000f000100100001001100010012000100130001001400010015000100160001001700010018000100190001001a0001001b0001001c0001001d0001001e0001001f000100200001002100010022000100230001002400010025000100260001002700010028000100290001002a0001002b0001002c0001002d0001002e0001002f000100300001003100010032000100330001003400010035000100360001003700010038000100390001003a0001003b0001003c0001003d0001003e0001003f000100400001004100010042000100430001004400010045000100460001004700010048000100490001004a0001004b0001004c0001004d0001004e0001004f000100500001005100010052000100530001005400010055000100560001005700010058000100590001005a0001005b0001005c0001005d0001005e0001005f000100600001006100010062000100630001006400010065000100660001006700010068000100690001006a0001006b0001006c0001006d0001006e0001006f000100700001007100010072000100730001007400010075000100760001007700010078000100790001007a0001007b0001007c0001007d0001007e0001007f000100800001008100010082000100830001008400010085000100860001008700010088000100890001008a0001008b0001008c0001008d0001008e0001008f000100900001009100010092000100930001009400010095000100960001009700010098000100990001009a0001009b0001009c0001009d0001009e0001009f000100a0000100a1000100a2000100a3000100a4000100a5000100a6000100a7000100a8000100a9000100aa000100ab000100ac000100ad000100ae000100af000100b0000100b1000100b2000100b3000100b4000100b5000100b6000100b7000100b8000100b9000100ba000100bb000100bc000100bd000100be000100bf000100c0000100c1000100c2000100c3000100c4000100c5000100c6000100c7000100c8000100c9000100ca000100cb000100cc000100cd000100ce000100cf000100d0000100d1000100d2000100d3000100d4000100d5000100d6000100d7000100d8000100d9000100da000100db000100dc000100dd000100de000100df000100e0000100e1000100e2000100e3000100e4000100e5000100e6000100e7000100e8000100e9000100ea000100eb000100ec000100ed000100ee000100ef000100f0000100f1000100f2000100f3000100f4000100f5000100f6000100f7000100f8000100f9000100fa000100fb000100fc000100fd000100fe000100ff000100000101000101010002010100030101000401010005010100060101000701010008010100090101000a0101000b0101000c0101000d0101000e0101000f010100100101001101010012010100130101001401010015010100160101001701010018010100190101001a0101001b0101001c0101001d0101001e0101001f010100200101002101010022010100230101002401010025010100260101002701010028010100290101002a0101002b0101002c0101002d0101002e0101002f010100300101003101010032010100330101003401010035010100360101003701010038010100390101003a0101003b0101003c0101003d0101003e0101003f010100400101004101010042010100430101004401010045010100460101004701010048010100490101004a0101004b0101004c0101004d0101004e0101004f010100500101005101010052010100530101005401010055010100560101005701010058010100590101005a0101005b0101005c0101005d0101005e0101005f010100600101006101010062010100630101006401010065010100660101006701010068010100690101006a0101006b0101006c0101006d0101006e0101006f010100700101007101010072010100730101007401010075010100760101007701010078010100790101007a0101007b0101007c0101007d0101007e0101007f010100800101008101010082010100830101008401010085010100860101008701010088010100890101008a0101008b0101008c0101008d0101008e0101008f010100900101009101010092010100930101009401010095010100960101009701010098010100990101009a0101009b0101009c0101009d0101009e0101009f010100a0010100a1010100a2010100a3010100a4010100a5010100a6010100a7010100a8010100a9010100aa010100ab010100ac010100ad010100ae010100af010100b0010100b1010100b2010100b3010100b4010100b5010100b6010100b7010100b8010100b9010100ba010100bb010100bc010100bd010100be010100bf010100c0010100c1010100c2010100c3010100c4010100c5010100c6010100c7010100c8010100c9010100ca010100cb010100cc010100cd010100ce010100cf010100d0010100d1010100d2010100d3010100d4010100d5010100d6010100d7010100d8010100d9010100da010100db010100dc010100dd010100de010100df010100e0010100e1010100e2010100e3010100e4010100e5010100e6010100e7010100e8010100e9010100ea010100eb010100ec010100ed010100ee010100ef010100f0010100f1010100f2010100f3010100f4010100f5010100f6010100f7010100f8010100f9010100fa010100fb010100fc010100fd010100fe010100ff010100000201000102010002020100030201000402010005020100060201000702010008020100090201000a0201000b0201000c0201000d0201000e0201000f020100100201001102010012020100130201001402010015020100160201001702010018020100190201001a0201001b0201001c0201001d0201001e0201001f020100200201002102010022020100230201002402010025020100260201002702010028020100290201002a0201002b0201002c0201002d0201002e0201002f020100300201003102010032020100330201003402010035020100360201003702010038020100390201003a0201003b0201003c0201003d0201003e0201003f020100400201004102010042020100430201004402010045020100460201004702010048020100490201004a0201004b0201004c0201004d0201004e0201004f020100500201005102010052020100530201005402010055020100560201005702010058020100590201005a0201005b0201005c0201005d0201005e0201005f020100600201006102010062020100630201006402010065020100660201006702010068020100690201006a0201006b0201006c0201006d0201006e0201006f020100700201007102010072020100730201007402010075020100760201007702010078020100790201007a0201007b0201007c0201007d0201007e0201007f020100800201008102010082020100830201008402010085020100860201008702010088020100890201008a0201008b0201008c0201008d0201008e0201008f020100900201009102010092020100930201009402010095020100960201009702010098020100990201009a0201009b0201009c0201009d0201009e0201009f020100a0020100a1020100a2020100a3020100a4020100a5020100a6020100a7020100a8020100a9020100aa020100ab020100ac020100ad020100ae020100af020100b0020100b1020100b2020100b3020100b4020100b5020100b6020100b7020100b8020100b9020100ba020100bb020100bc020100bd020100be020100bf020100c0020100c1020100c2020100c3020100c4020100c5020100c6020100c7020100c8020100c9020100ca020100cb020100cc020100cd020100ce020100cf020100d0020100d1020100d2020100d3020100d4020100d5020100d6020100d7020100d8020100d9020100da020100db020100dc020100dd020100de020100df020100e0020100e1020100e2020100e3020100e4020100e5020100e6020100e7020100e8020100e9020100ea020100eb020100ec020100ed020100ee020100ef020100f0020100f1020100f2020100f3020100f4020100f5020100f6020100f7020100f8020100f9020100fa020100fb020100fc020100fd020100fe020100ff020100000301000103010002030100030301000403010005030100060301000703010008030100090301000a0301000b0301000c0301000d0301000e0301000f030100100301001103010012030100130301001403010015030100160301001703010018030100190301001a0301001b0301001c0301001d0301001e0301001f030100200301002103010022030100230301002403010025030100260301002703010028030100290301002a0301002b0301002c0301002d0301002e0301002f030100300301003103010032030100330301003403010035030100360301003703010038030100390301003a0301003b0301003c0301003d0301003e0301003f030100400301004103010042030100430301004403010045030100460301004703010048030100490301004a0301004b0301004c0301004d0301004e0301004f030100500301005103010052030100530301005403010055030100560301005703010058030100590301005a0301005b0301005c0301005d0301005e0301005f030100600301006103010062030100630301006403010065030100660301006703010068030100690301006a0301006b0301006c0301006d0301006e0301006f030100700301007103010072030100730301007403010075030100760301007703010078030100790301007a0301007b0301007c0301007d0301007e0301007f030100800301008103010082030100830301008403010085030100860301008703010088030100890301008a0301008b0301008c0301008d0301008e0301008f030100900301009103010092030100930301009403010095030100960301009703010098030100990301009a0301009b0301009c0301009d0301009e0301009f030100a0030100a1030100a2030100a3030100a4030100a5030100a6030100a7030100a8030100a9030100aa030100ab030100ac030100ad030100ae030100af030100b0030100b1030100b2030100b3030100b4030100b5030100b6030100b7030100b8030100b9030100ba030100bb030100bc030100bd030100be030100bf030100c0030100c1030100c2030100c3030100c4030100c5030100c6030100c7030100c8030100c9030100ca030100cb030100cc030100cd030100ce030100cf030100d0030100d1030100d2030100d3030100d4030100d5030100d6030100d7030100d8030100d9030100da030100db030100dc030100dd030100de030100df030100e0030100e1030100e2030100e3030100e4030100e5030100e6030100e7030100e8030100e9030100ea030100eb030100ec030100ed030100ee030100ef030100f0030100f1030100f2030100f3030100f4030100f5030100f6030100f7030100f8030100f9030100fa030100fb030100fc030100fd030100fe030100ff030100000401000104010002040100030401000404010005040100060401000704010008040100090401000a0401000b0401000c0401000d0401000e0401000f040100100401001104010012040100130401001404010015040100160401001704010018040100190401001a0401001b0401001c0401001d0401001e0401001f040100200401002104010022040100230401002404010025040100260401002704010028040100290401002a0401002b0401002c0401002d0401002e0401002f040100300401003104010032040100330401003404010035040100360401003704010038040100390401003a0401003b0401003c0401003d0401003e0401003f040100400401004104010042040100430401004404010045040100460401004704010048040100490401004a0401004b0401004c0401004d0401004e0401004f040100500401005104010052040100530401005404010055040100560401005704010058040100590401005a0401005b0401005c0401005d0401005e0401005f040100600401006104010062040100630401006404010065040100660401006704010068040100690401006a0401006b0401006c0401006d0401006e0401006f040100700401007104010072040100730401007404010075040100760401007704010078040100790401007a0401007b0401007c0401007d0401007e0401007f040100800401008104010082040100830401008404010085040100860401008704010088040100890401008a0401008b0401008c0401008d0401008e0401008f040100900401009104010092040100930401009404010095040100960401009704010098040100990401009a0401009b0401009c0401009d0401009e0401009f040100a0040100a1040100a2040100a3040100a4040100a5040100a6040100a7040100a8040100a9040100aa040100ab040100ac040100ad040100ae040100af040100b0040100b1040100b2040100b3040100b4040100b5040100b6040100b7040100b8040100b9040100ba040100bb040100bc040100bd040100be040100bf040100c0040100c1040100c2040100c3040100c4040100c5040100c6040100c7040100c8040100c9040100ca040100cb040100cc040100cd040100ce040100cf040100d0040100d1040100d2040100d3040100d4040100d5040100d6040100d7040100d8040100d9040100da040100db040100dc040100dd040100de040100df040100e0040100e1040100e2040100e3040100e4040100e5040100e6040100e7040100e8040100e9040100ea040100eb040100ec040100ed040100ee040100ef040100f0040100f1040100f2040100f3040100f4040100f5040100f6040100f7040100f8040100f9040100fa040100fb040100fc040100fd040100fe040100ff040100000501000105010002050100030501000405010005050100060501000705010008050100090501000a0501000b0501000c0501000d0501000e0501000f050100100501001105010012050100130501001405010015050100160501001705010018050100190501001a0501001b0501001c0501001d0501001e0501001f050100200501002105010022050100230501002405010025050100260501002705010028050100290501002a0501002b0501002c0501002d0501002e0501002f050100300501003105010032050100330501003405010035050100360501003705010038050100390501003a0501003b0501003c0501003d0501003e0501003f050100400501004105010042050100430501004405010045050100460501004705010048050100490501004a0501004b0501004c0501004d0501004e0501004f050100500501005105010052050100530501005405010055050100560501005705010058050100590501005a0501005b0501005c0501005d0501005e0501005f050100600501006105010062050100630501006405010065050100660501006705010068050100690501006a0501006b0501006c0501006d0501006e0501006f050100700501007105010072050100730501007405010075050100760501007705010078050100790501007a0501007b0501007c0501007d0501007e0501007f050100800501008105010082050100830501008405010085050100860501008705010088050100890501008a0501008b0501008c0501008d0501008e0501008f050100900501009105010092050100930501009405010095050100960501009705010098050100990501009a0501009b0501009c0501009d0501009e0501009f050100a0050100a1050100a2050100a3050100a4050100a5050100a6050100a7050100a8050100a9050100aa050100ab050100ac050100ad050100ae050100af050100b0050100b1050100b2050100b3050100b4050100b5050100b6050100b7050100b8050100b9050100ba050100bb050100bc050100bd050100be050100bf050100c0050100c1050100c2050100c3050100c4050100c5050100c6050100c7050100c8050100c9050100ca050100cb050100cc050100cd050100ce050100cf050100d0050100d1050100d2050100d3050100d4050100d5050100d6050100d7050100d8050100d9050100da050100db050100dc050100dd050100de050100df050100e0050100e1050100e2050100e3050100e4050100e5050100e6050100e7050100e8050100e9050100ea050100eb050100ec050100ed050100ee050100ef050100f0050100f1050100f2050100f3050100f4050100f5050100f6050100f7050100f8050100f9050100fa050100fb050100fc050100fd050100fe050100ff050100000601000106010002060100030601000406010005060100060601000706010008060100090601000a0601000b0601000c0601000d0601000e0601000f060100100601001106010012060100130601001406010015060100160601001706010018060100190601001a0601001b0601001c0601001d0601001e0601001f060100200601002106010022060100230601002406010025060100260601002706010028060100290601002a0601002b0601002c0601002d0601002e0601002f060100300601003106010032060100330601003406010035060100360601003706010038060100390601003a0601003b0601003c0601003d0601003e0601003f060100400601004106010042060100430601004406010045060100460601004706010048060100490601004a0601004b0601004c0601004d0601004e0601004f060100500601005106010052060100530601005406010055060100560601005706010058060100590601005a0601005b0601005c0601005d0601005e0601005f060100600601006106010062060100630601006406010065060100660601006706010068060100690601006a0601006b0601006c0601006d0601006e0601006f060100700601007106010072060100730601007406010075060100760601007706010078060100790601007a0601007b0601007c0601007d0601007e0601007f060100800601008106010082060100830601008406010085060100860601008706010088060100890601008a0601008b0601008c0601008d0601008e0601008f060100900601009106010092060100930601009406010095060100960601009706010098060100990601009a0601009b0601009c0601009d0601009e0601009f060100a0060100a1060100a2060100a3060100a4060100a5060100a6060100a7060100a8060100a9060100aa060100ab060100ac060100ad060100ae060100af060100b0060100b1060100b2060100b3060100b4060100b5060100b6060100b7060100b8060100b9060100ba060100bb060100bc060100bd060100be060100bf060100c0060100c1060100c2060100c3060100c4060100c5060100c6060100c7060100c8060100c9060100ca060100cb060100cc060100cd060100ce060100cf060100d0060100d1060100d2060100d3060100d4060100d5060100d6060100d7060100d8060100d9060100da060100db060100dc060100dd060100de060100df060100e0060100e1060100e2060100e3060100e4060100e5060100e6060100e7060100e8060100e9060100ea060100eb060100ec060100ed060100ee060100ef060100f0060100f1060100f2060100f3060100f4060100f5060100f6060100f7060100f8060100f9060100fa060100fb060100fc060100fd060100fe060100ff060100000701000107010002070100030701000407010005070100060701000707010008070100090701000a0701000b0701000c0701000d0701000e0701000f070100100701001107010012070100130701001407010015070100160701001707010018070100190701001a0701001b0701001c0701001d0701001e0701001f070100200701002107010022070100230701002407010025070100260701002707010028070100290701002a0701002b0701002c0701002d0701002e0701002f070100300701003107010032070100330701003407010035070100360701003707010038070100390701003a0701003b0701003c0701003d0701003e0701003f070100400701004107010042070100430701004407010045070100460701004707010048070100490701004a0701004b0701004c0701004d0701004e0701004f070100500701005107010052070100530701005407010055070100560701005707010058070100590701005a0701005b0701005c0701005d0701005e0701005f070100600701006107010062070100630701006407010065070100660701006707010068070100690701006a0701006b0701006c0701006d0701006e0701006f070100700701007107010072070100730701007407010075070100760701007707010078070100790701007a0701007b0701007c0701007d0701007e0701007f070100800701008107010082070100830701008407010085070100860701008707010088070100890701008a0701008b0701008c0701008d0701008e0701008f070100900701009107010092070100930701009407010095070100960701009707010098070100990701009a0701009b0701009c0701009d0701009e0701009f070100a0070100a1070100a2070100a3070100a4070100a5070100a6070100a7070100a8070100a9070100aa070100ab070100ac070100ad070100ae070100af070100b0070100b1070100b2070100b3070100b4070100b5070100b6070100b7070100b8070100b9070100ba070100bb070100bc070100bd070100be070100bf070100c0070100c1070100c2070100c3070100c4070100c5070100c6070100c7070100c8070100c9070100ca070100cb070100cc070100cd070100ce070100cf070100d0070100d1070100d2070100d3070100d4070100d5070100d6070100d7070100d8070100d9070100da070100db070100dc070100dd070100de070100df070100e0070100e1070100e2070100e3070100e4070100e5070100e6070100e7070100e8070100e9070100ea070100eb070100ec070100ed070100ee070100ef070100f0070100f1070100f2070100f3070100f4070100f5070100f6070100f7070100f8070100f9070100fa070100fb070100fc070100fd070100fe070100ff070100000801000108010002080100030801000408010005080100060801000708010008080100090801000a0801000b0801000c0801000d0801000e0801000f080100100801001108010012080100130801001408010015080100160801001708010018080100190801001a0801001b0801001c0801001d0801001e0801001f080100200801002108010022080100230801002408010025080100260801002708010028080100290801002a0801002b0801002c0801002d0801002e0801002f080100300801003108010032080100330801003408010035080100360801003708010038080100390801003a0801003b0801003c0801003d0801003e0801003f080100400801004108010042080100430801004408010045080100460801004708010048080100490801004a0801004b0801004c0801004d0801004e0801004f080100500801005108010052080100530801005408010055080100560801005708010058080100590801005a0801005b0801005c0801005d0801005e0801005f080100600801006108010062080100630801006408010065080100660801006708010068080100690801006a0801006b0801006c0801006d0801006e0801006f080100700801007108010072080100730801007408010075080100760801007708010078080100790801007a0801007b0801007c0801007d0801007e0801007f080100800801008108010082080100830801008408010085080100860801008708010088080100890801008a0801008b0801008c0801008d0801008e0801008f080100900801009108010092080100930801009408010095080100960801009708010098080100990801009a0801009b0801009c0801009d0801009e0801009f080100a0080100a1080100a2080100a3080100a4080100a5080100a6080100a7080100a8080100a9080100aa080100ab080100ac080100ad080100ae080100af080100b0080100b1080100b2080100b3080100b4080100b5080100b6080100b7080100b8080100b9080100ba080100bb080100bc080100bd080100be080100bf080100c0080100c1080100c2080100c3080100c4080100c5080100c6080100c7080100c8080100c9080100ca080100cb080100cc080100cd080100ce080100cf080100d0080100d1080100d2080100d3080100d4080100d5080100d6080100d7080100d8080100d9080100da080100db080100dc080100dd080100de080100df080100e0080100e1080100e2080100e3080100e4080100e5080100e6080100e7080100e8080100e9080100ea080100eb080100ec080100ed080100ee080100ef080100f0080100f1080100f2080100f3080100f4080100f5080100f6080100f7080100f8080100f9080100fa080100fb080100fc080100fd080100fe080100ff080100000901000109010002090100030901000409010005090100060901000709010008090100090901000a0901000b0901000c0901000d0901000e0901000f090100100901001109010012090100130901001409010015090100160901001709010018090100190901001a0901001b0901001c0901001d0901001e0901001f090100200901002109010022090100230901002409010025090100260901002709010028090100290901002a0901002b0901002c0901002d0901002e0901002f090100300901003109010032090100330901003409010035090100360901003709010038090100390901003a0901003b0901003c0901003d0901003e0901003f090100400901004109010042090100430901004409010045090100460901004709010048090100490901004a0901004b0901004c0901004d0901004e0901004f090100500901005109010052090100530901005409010055090100560901005709010058090100590901005a0901005b0901005c0901005d0901005e0901005f090100600901006109010062090100630901006409010065090100660901006709010068090100690901006a0901006b0901006c0901006d0901006e0901006f090100700901007109010072090100730901007409010075090100760901007709010078090100790901007a0901007b0901007c0901007d0901007e0901007f090100800901008109010082090100830901008409010085090100860901008709010088090100890901008a0901008b0901008c0901008d0901008e0901008f090100900901009109010092090100930901009409010095090100960901009709010098090100990901009a0901009b0901009c0901009d0901009e0901009f090100a0090100a1090100a2090100a3090100a4090100a5090100a6090100a7090100a8090100a9090100aa090100ab090100ac090100ad090100ae090100af090100b0090100b1090100b2090100b3090100b4090100b5090100b6090100b7090100b8090100b9090100ba090100bb090100bc090100bd090100be090100bf090100c0090100c1090100c2090100c3090100c4090100c5090100c6090100c7090100c8090100c9090100ca090100cb090100cc090100cd090100ce090100cf090100d0090100d1090100d2090100d3090100d4090100d5090100d6090100d7090100d8090100d9090100da090100db090100dc090100dd090100de090100df090100e0090100e1090100e2090100e3090100e4090100e5090100e6090100e7090100e8090100e9090100ea090100eb090100ec090100ed090100ee090100ef090100f0090100f1090100f2090100f3090100f4090100f5090100f6090100f7090100f8090100f9090100fa090100fb090100fc090100fd090100fe090100ff090100000a0100010a0100020a0100030a0100040a0100050a0100060a0100070a0100080a0100090a01000a0a01000b0a01000c0a01000d0a01000e0a01000f0a0100100a0100110a0100120a0100130a0100140a0100150a0100160a0100170a0100180a0100190a01001a0a01001b0a01001c0a01001d0a01001e0a01001f0a0100200a0100210a0100220a0100230a0100240a0100250a0100260a0100270a0100280a0100290a01002a0a01002b0a01002c0a01002d0a01002e0a01002f0a0100300a0100310a0100320a0100330a0100340a0100350a0100360a0100370a0100380a0100390a01003a0a01003b0a01003c0a01003d0a01003e0a01003f0a0100400a0100410a0100420a0100430a0100440a0100450a0100460a0100470a0100480a0100490a01004a0a01004b0a01004c0a01004d0a01004e0a01004f0a0100500a0100510a0100520a0100530a0100540a0100550a0100560a0100570a0100580a0100590a01005a0a01005b0a01005c0a01005d0a01005e0a01005f0a0100600a0100610a0100620a0100630a0100640a0100650a0100660a0100670a0100680a0100690a01006a0a01006b0a01006c0a01006d0a01006e0a01006f0a0100700a0100710a0100720a0100730a0100740a0100750a0100760a0100770a0100780a0100790a01007a0a01007b0a01007c0a01007d0a01007e0a01007f0a0100800a0100810a0100820a0100830a0100840a0100850a0100860a0100870a0100880a0100890a01008a0a01008b0a01008c0a01008d0a01008e0a01008f0a0100900a0100910a0100920a0100930a0100940a0100950a0100960a0100970a0100980a0100990a01009a0a01009b0a01009c0a01009d0a01009e0a01009f0a0100a00a0100a10a0100a20a0100a30a0100a40a0100a50a0100a60a0100a70a0100a80a0100a90a0100aa0a0100ab0a0100ac0a0100ad0a0100ae0a0100af0a0100b00a0100b10a0100b20a0100b30a0100b40a0100b50a0100b60a0100b70a0100b80a0100b90a0100ba0a0100bb0a0100bc0a0100bd0a0100be0a0100bf0a0100c00a0100c10a0100c20a0100c30a0100c40a0100c50a0100c60a0100c70a0100c80a0100c90a0100ca0a0100cb0a0100cc0a0100cd0a0100ce0a0100cf0a0100d00a0100d10a0100d20a0100d30a0100d40a0100d50a0100d60a0100d70a0100d80a0100d90a0100da0a0100db0a0100dc0a0100dd0a0100de0a0100df0a0100e00a0100e10a0100e20a0100e30a0100e40a0100e50a0100e60a0100e70a0100e80a0100e90a0100ea0a0100eb0a0100ec0a0100ed0a0100ee0a0100ef0a0100f00a0100f10a0100f20a0100f30a0100f40a0100f50a0100f60a0100f70a0100f80a0100f90a0100fa0a0100fb0a0100fc0a0100fd0a0100fe0a0100ff0a0100000b0100010b0100020b0100030b0100040b0100050b0100060b0100070b0100080b0100090b01000a0b01000b0b01000c0b01000d0b01000e0b01000f0b0100100b0100110b0100120b0100130b0100140b0100150b0100160b0100170b0100180b0100190b01001a0b01001b0b01001c0b01001d0b01001e0b01001f0b0100200b0100210b0100220b0100230b0100240b0100250b0100260b0100270b0100280b0100290b01002a0b01002b0b01002c0b01002d0b01002e0b01002f0b0100300b0100310b0100320b0100330b0100340b0100350b0100360b0100370b0100380b0100390b01003a0b01003b0b01003c0b01003d0b01003e0b01003f0b0100400b0100410b0100420b0100430b0100440b0100450b0100460b0100470b0100480b0100490b01004a0b01004b0b01004c0b01004d0b01004e0b01004f0b0100500b0100510b0100520b0100530b0100540b0100550b0100560b0100570b0100580b0100590b01005a0b01005b0b01005c0b01005d0b01005e0b01005f0b0100600b0100610b0100620b0100630b0100640b0100650b0100660b0100670b0100680b0100690b01006a0b01006b0b01006c0b01006d0b01006e0b01006f0b0100700b0100710b0100720b0100730b0100740b0100750b0100760b0100770b0100780b0100790b01007a0b01007b0b01007c0b01007d0b01007e0b01007f0b0100800b0100810b0100820b0100830b0100840b0100850b0100860b0100870b0100880b0100890b01008a0b01008b0b01008c0b01008d0b01008e0b01008f0b0100900b0100910b0100920b0100930b0100940b0100950b0100960b0100970b0100980b0100990b01009a0b01009b0b01009c0b01009d0b01009e0b01009f0b0100a00b0100a10b0100a20b0100a30b0100a40b0100a50b0100a60b0100a70b0100a80b0100a90b0100aa0b0100ab0b0100ac0b0100ad0b0100ae0b0100af0b0100b00b0100b10b0100b20b0100b30b0100b40b0100b50b0100b60b0100b70b0100b80b0100b90b0100ba0b0100bb0b0100bc0b0100bd0b0100be0b0100bf0b0100c00b0100c10b0100c20b0100c30b0100c40b0100c50b0100c60b0100c70b0100c80b0100c90b0100ca0b0100cb0b0100cc0b0100cd0b0100ce0b0100cf0b0100d00b0100d10b0100d20b0100d30b0100d40b0100d50b0100d60b0100d70b0100d80b0100d90b0100da0b0100db0b0100dc0b0100dd0b0100de0b0100df0b0100e00b0100e10b0100e20b0100e30b0100e40b0100e50b0100e60b0100e70b0100e80b0100e90b0100ea0b0100eb0b0100ec0b0100ed0b0100ee0b0100ef0b0100f00b0100f10b0100f20b0100f30b0100f40b0100f50b0100f60b0100f70b0100f80b0100f90b0100fa0b0100fb0b0100fc0b0100fd0b0100fe0b0100ff0b0100000c0100010c0100020c0100030c0100040c0100050c0100060c0100070c0100080c0100090c01000a0c01000b0c01000c0c01000d0c01000e0c01000f0c0100100c0100110c0100120c0100130c0100140c0100150c0100160c0100170c0100180c0100190c01001a0c01001b0c01001c0c01001d0c01001e0c01001f0c0100200c0100210c0100220c0100230c0100240c0100250c0100260c0100270c0100280c0100290c01002a0c01002b0c01002c0c01002d0c01002e0c01002f0c0100300c0100310c0100320c0100330c0100340c0100350c0100360c0100370c0100380c0100390c01003a0c01003b0c01003c0c01003d0c01003e0c01003f0c0100400c0100410c0100420c0100430c0100440c0100450c0100460c0100470c0100480c0100490c01004a0c01004b0c01004c0c01004d0c01004e0c01004f0c0100500c0100510c0100520c0100530c0100540c0100550c0100560c0100570c0100580c0100590c01005a0c01005b0c01005c0c01005d0c01005e0c01005f0c0100600c0100610c0100620c0100630c0100640c0100650c0100660c0100670c0100680c0100690c01006a0c01006b0c01006c0c01006d0c01006e0c01006f0c0100700c0100710c0100720c0100730c0100740c0100750c0100760c0100770c0100780c0100790c01007a0c01007b0c01007c0c01007d0c01007e0c01007f0c0100800c0100810c0100820c0100830c0100840c0100850c0100860c0100870c0100880c0100890c01008a0c01008b0c01008c0c01008d0c01008e0c01008f0c0100900c0100910c0100920c0100930c0100940c0100950c0100960c0100970c0100980c0100990c01009a0c01009b0c01009c0c01009d0c01009e0c01009f0c0100a00c0100a10c0100a20c0100a30c0100a40c0100a50c0100a60c0100a70c0100a80c0100a90c0100aa0c0100ab0c0100ac0c0100ad0c0100ae0c0100af0c0100b00c0100b10c0100b20c0100b30c0100b40c0100b50c0100b60c0100b70c0100b80c0100b90c0100ba0c0100bb0c0100bc0c0100bd0c0100be0c0100bf0c0100c00c0100c10c0100c20c0100c30c0100c40c0100c50c0100c60c0100c70c0100c80c0100c90c0100ca0c0100cb0c0100cc0c0100cd0c0100ce0c0100cf0c0100d00c0100d10c0100d20c0100d30c0100d40c0100d50c0100d60c0100d70c0100d80c0100d90c0100da0c0100db0c0100dc0c0100dd0c0100de0c0100df0c0100e00c0100e10c0100e20c0100e30c0100e40c0100e50c0100e60c0100e70c0100e80c0100e90c0100ea0c0100eb0c0100ec0c0100ed0c0100ee0c0100ef0c0100f00c0100f10c0100f20c0100f30c0100f40c0100f50c0100f60c0100f70c0100f80c0100f90c0100fa0c0100fb0c0100fc0c0100fd0c0100fe0c0100ff0c0100000d0100010d0100020d0100030d0100040d0100050d0100060d0100070d0100080d0100090d01000a0d01000b0d01000c0d01000d0d01000e0d01000f0d0100100d0100110d0100120d0100130d0100140d0100150d0100160d0100170d0100180d0100190d01001a0d01001b0d01001c0d01001d0d01001e0d01001f0d0100200d0100210d0100220d0100230d0100240d0100250d0100260d0100270d0100280d0100290d01002a0d01002b0d01002c0d01002d0d01002e0d01002f0d0100300d0100310d0100320d0100330d0100340d0100350d0100360d0100370d0100380d0100390d01003a0d01003b0d01003c0d01003d0d01003e0d01003f0d0100400d0100410d0100420d0100430d0100440d0100450d0100460d0100470d0100480d0100490d01004a0d01004b0d01004c0d01004d0d01004e0d01004f0d0100500d0100510d0100520d0100530d0100540d0100550d0100560d0100570d0100580d0100590d01005a0d01005b0d01005c0d01005d0d01005e0d01005f0d0100600d0100610d0100620d0100630d0100640d0100650d0100660d0100670d0100680d0100690d01006a0d01006b0d01006c0d01006d0d01006e0d01006f0d0100700d0100710d0100720d0100730d0100740d0100750d0100760d0100770d0100780d0100790d01007a0d01007b0d01007c0d01007d0d01007e0d01007f0d0100800d0100810d0100820d0100830d0100840d0100850d0100860d0100870d0100880d0100890d01008a0d01008b0d01008c0d01008d0d01008e0d01008f0d0100900d0100910d0100920d0100930d0100940d0100950d0100960d0100970d0100980d0100990d01009a0d01009b0d01009c0d01009d0d01009e0d01009f0d0100a00d0100a10d0100a20d0100a30d0100a40d0100a50d0100a60d0100a70d0100a80d0100a90d0100aa0d0100ab0d0100ac0d0100ad0d0100ae0d0100af0d0100b00d0100b10d0100b20d0100b30d0100b40d0100b50d0100b60d0100b70d0100b80d0100b90d0100ba0d0100bb0d0100bc0d0100bd0d0100be0d0100bf0d0100c00d0100c10d0100c20d0100c30d0100c40d0100c50d0100c60d0100c70d0100c80d0100c90d0100ca0d0100cb0d0100cc0d0100cd0d0100ce0d0100cf0d0100d00d0100d10d0100d20d0100d30d0100d40d0100d50d0100d60d0100d70d0100d80d0100d90d0100da0d0100db0d0100dc0d0100dd0d0100de0d0100df0d0100e00d0100e10d0100e20d0100e30d0100e40d0100e50d0100e60d0100e70d0100e80d0100e90d0100ea0d0100eb0d0100ec0d0100ed0d0100ee0d0100ef0d0100f00d0100f10d0100f20d0100f30d0100f40d0100f50d0100f60d0100f70d0100f80d0100f90d0100fa0d0100fb0d0100fc0d0100fd0d0100fe0d0100ff0d0100000e0100010e0100020e0100030e0100040e0100050e0100060e0100070e0100080e0100090e01000a0e01000b0e01000c0e01000d0e01000e0e01000f0e0100100e0100110e0100120e0100130e0100140e0100150e0100160e0100170e0100180e0100190e01001a0e01001b0e01001c0e01001d0e01001e0e01001f0e0100200e0100210e0100220e0100230e0100240e0100250e0100260e0100270e0100280e0100290e01002a0e01002b0e01002c0e01002d0e01002e0e01002f0e0100300e0100310e0100320e0100330e0100340e0100350e0100360e0100370e0100380e0100390e01003a0e01003b0e01003c0e01003d0e01003e0e01003f0e0100400e0100410e0100420e0100430e0100440e0100450e0100460e0100470e0100480e0100490e01004a0e01004b0e01004c0e01004d0e01004e0e01004f0e0100500e0100510e0100520e0100530e0100540e0100550e0100560e0100570e0100580e0100590e01005a0e01005b0e01005c0e01005d0e01005e0e01005f0e0100600e0100610e0100620e0100630e0100640e0100650e0100660e0100670e0100680e0100690e01006a0e01006b0e01006c0e01006d0e01006e0e01006f0e0100700e0100710e0100720e0100730e0100740e0100750e0100760e0100770e0100780e0100790e01007a0e01007b0e01007c0e01007d0e01007e0e01007f0e0100800e0100810e0100820e0100830e0100840e0100850e0100860e0100870e0100880e0100890e01008a0e01008b0e01008c0e01008d0e01008e0e01008f0e0100900e0100910e0100920e0100930e0100940e0100950e0100960e0100970e0100980e0100990e01009a0e01009b0e01009c0e01009d0e01009e0e01009f0e0100a00e0100a10e0100a20e0100a30e0100a40e0100a50e0100a60e0100a70e0100a80e0100a90e0100aa0e0100ab0e0100ac0e0100ad0e0100ae0e0100af0e0100b00e0100b10e0100b20e0100b30e0100b40e0100b50e0100b60e0100b70e0100b80e0100b90e0100ba0e0100bb0e0100bc0e0100bd0e0100be0e0100bf0e0100c00e0100c10e0100c20e0100c30e0100c40e0100c50e0100c60e0100c70e0100c80e0100c90e0100ca0e0100cb0e0100cc0e0100cd0e0100ce0e0100cf0e0100d00e0100d10e0100d20e0100d30e0100d40e0100d50e0100d60e0100d70e0100d80e0100d90e0100da0e0100db0e0100dc0e0100dd0e0100de0e0100df0e0100e00e0100e10e0100e20e0100e30e0100e40e0100e50e0100e60e0100e70e0100e80e0100e90e0100ea0e0100eb0e0100ec0e0100ed0e0100ee0e0100ef0e0100f00e0100f10e0100f20e0100f30e0100f40e0100f50e0100f60e0100f70e0100f80e0100f90e0100fa0e0100fb0e0100fc0e0100fd0e0100fe0e0100ff0e0100000f0100010f0100020f0100030f0100040f0100050f0100060f0100070f0100080f0100090f01000a0f01000b0f01000c0f01000d0f01000e0f01000f0f0100100f0100110f0100120f0100130f0100140f0100150f0100160f0100170f0100180f0100190f01001a0f01001b0f01001c0f01001d0f01001e0f01001f0f0100200f0100210f0100220f0100230f0100240f0100250f0100260f0100270f0100280f0100290f01002a0f01002b0f01002c0f01002d0f01002e0f01002f0f0100300f0100310f0100320f0100330f0100340f0100350f0100360f0100370f0100380f0100390f01003a0f01003b0f01003c0f01003d0f01003e0f01003f0f0100400f0100410f0100420f0100430f0100440f0100450f0100460f0100470f0100480f0100490f01004a0f01004b0f01004c0f01004d0f01004e0f01004f0f0100500f0100510f0100520f0100530f0100540f0100550f0100560f0100570f0100580f0100590f01005a0f01005b0f01005c0f01005d0f01005e0f01005f0f0100600f0100610f0100620f0100630f0100640f0100650f0100660f0100670f0100680f0100690f01006a0f01006b0f01006c0f01006d0f01006e0f01006f0f0100700f0100710f0100720f0100730f0100740f0100750f0100760f0100770f0100780f0100790f01007a0f01007b0f01007c0f01007d0f01007e0f01007f0f0100800f0100810f0100820f0100830f0100840f0100850f0100860f0100870f0100880f0100890f01008a0f01008b0f01008c0f01008d0f01008e0f01008f0f0100900f0100910f0100920f0100930f0100940f0100950f0100960f0100970f0100980f0100990f01009a0f01009b0f01009c0f01009d0f01009e0f01009f0f0100a00f0100a10f0100a20f0100a30f0100a40f0100a50f0100a60f0100a70f0100a80f0100a90f0100aa0f0100ab0f0100ac0f0100ad0f0100ae0f0100af0f0100b00f0100b10f0100b20f0100b30f0100b40f0100b50f0100b60f0100b70f0100b80f0100b90f0100ba0f0100bb0f0100bc0f0100bd0f0100be0f0100bf0f0100c00f0100c10f0100c20f0100c30f0100c40f0100c50f0100c60f0100c70f0100c80f0100c90f0100ca0f0100cb0f0100cc0f0100cd0f0100ce0f0100cf0f0100d00f0100d10f0100d20f0100d30f0100d40f0100d50f0100d60f0100d70f0100d80f0100d90f0100da0f0100db0f0100dc0f0100dd0f0100de0f0100df0f0100e00f0100e10f0100e20f0100e30f0100e40f0100e50f0100e60f0100e70f0100e80f0100e90f0100ea0f0100eb0f0100ec0f0100ed0f0100ee0f0100ef0f0100f00f0100f10f0100f20f0100f30f0100f40f0100f50f0100f60f0100f70f0100f80f0100f90f0100fa0f0100fb0f0100fc0f0100fd0f0100fe0f0100ff0f0100001001000110010002100100031001000410010005100100061001000710010008100100091001000a1001000b1001000c1001000d1001000e1001000f100100101001001110010012100100131001001410010015100100161001001710010018100100191001001a1001001b1001001c1001001d1001001e1001001f100100201001002110010022100100231001002410010025100100261001002710010028100100291001002a1001002b1001002c1001002d1001002e1001002f100100301001003110010032100100331001003410010035100100361001003710010038100100391001003a1001003b1001003c1001003d1001003e1001003f100100401001004110010042100100431001004410010045100100461001004710010048100100491001004a1001004b1001004c1001004d1001004e1001004f100100501001005110010052100100531001005410010055100100561001005710010058100100591001005a1001005b1001005c1001005d1001005e1001005f100100601001006110010062100100631001006410010065100100661001006710010068100100691001006a1001006b1001006c1001006d1001006e1001006f100100701001007110010072100100731001007410010075100100761001007710010078100100791001007a1001007b1001007c1001007d1001007e1001007f100100801001008110010082100100831001008410010085100100861001008710010088100100891001008a1001008b1001008c1001008d1001008e1001008f100100901001009110010092100100931001009410010095100100961001009710010098100100991001009a1001009b1001009c1001009d1001009e1001009f100100a0100100a1100100a2100100a3100100a4100100a5100100a6100100a7100100a8100100a9100100aa100100ab100100ac100100ad100100ae100100af100100b0100100b1100100b2100100b3100100b4100100b5100100b6100100b7100100b8100100b9100100ba100100bb100100bc100100bd100100be100100bf100100c0100100c1100100c2100100c3100100c4100100c5100100c6100100c7100100c8100100c9100100ca100100cb100100cc100100cd100100ce100100cf100100d0100100d1100100d2100100d3100100d4100100d5100100d6100100d7100100d8100100d9100100da100100db100100dc100100dd100100de100100df100100e0100100e1100100e2100100e3100100e4100100e5100100e6100100e7100100e8100100e9100100ea100100eb100100ec100100ed100100ee100100ef100100f0100100f1100100f2100100f3100100f4100100f5100100f6100100f7100100f8100100f9100100fa100100fb100100fc100100fd100100fe100100ff100100001101000111010002110100031101000411010005110100061101000711010008110100091101000a1101000b1101000c1101000d1101000e1101000f110100101101001111010012110100131101001411010015110100161101001711010018110100191101001a1101001b1101001c1101001d1101001e1101001f110100201101002111010022110100231101002411010025110100261101002711010028110100291101002a1101002b1101002c1101002d1101002e1101002f110100301101003111010032110100331101003411010035110100361101003711010038110100391101003a1101003b1101003c1101003d1101003e1101003f110100401101004111010042110100431101004411010045110100461101004711010048110100491101004a1101004b1101004c1101004d1101004e1101004f110100501101005111010052110100531101005411010055110100561101005711010058110100591101005a1101005b1101005c1101005d1101005e1101005f110100601101006111010062110100631101006411010065110100661101006711010068110100691101006a1101006b1101006c1101006d1101006e1101006f110100701101007111010072110100731101007411010075110100761101007711010078110100791101007a1101007b1101007c1101007d1101007e1101007f110100801101008111010082110100831101008411010085110100861101008711010088110100891101008a1101008b1101008c1101008d1101008e1101008f110100901101009111010092110100931101009411010095110100961101009711010098110100991101009a1101009b1101009c1101009d1101009e1101009f110100a0110100a1110100a2110100a3110100a4110100a5110100a6110100a7110100a8110100a9110100aa110100ab110100ac110100ad110100ae110100af110100b0110100b1110100b2110100b3110100b4110100b5110100b6110100b7110100b8110100b9110100ba110100bb110100bc110100bd110100be110100bf110100c0110100c1110100c2110100c3110100c4110100c5110100c6110100c7110100c8110100c9110100ca110100cb110100cc110100cd110100ce110100cf110100d0110100d1110100d2110100d3110100d4110100d5110100d6110100d7110100d8110100d9110100da110100db110100dc110100dd110100de110100df110100e0110100e1110100e2110100e3110100e4110100e5110100e6110100e7110100e8110100e9110100ea110100eb110100ec110100ed110100ee110100ef110100f0110100f1110100f2110100f3110100f4110100f5110100f6110100f7110100f8110100f9110100fa110100fb110100fc110100fd110100fe110100ff110100001201000112010002120100031201000412010005120100061201000712010008120100091201000a1201000b1201000c1201000d1201000e1201000f120100101201001112010012120100131201001412010015120100161201001712010018120100191201001a1201001b1201001c1201001d1201001e1201001f120100201201002112010022120100231201002412010025120100261201002712010028120100291201002a1201002b1201002c1201002d1201002e1201002f120100301201003112010032120100331201003412010035120100361201003712010038120100391201003a1201003b1201003c1201003d1201003e1201003f120100401201004112010042120100431201004412010045120100461201004712010048120100491201004a1201004b1201004c1201004d1201004e1201004f120100501201005112010052120100531201005412010055120100561201005712010058120100591201005a1201005b1201005c1201005d1201005e1201005f120100601201006112010062120100631201006412010065120100661201006712010068120100691201006a1201006b1201006c1201006d1201006e1201006f120100701201007112010072120100731201007412010075120100761201007712010078120100791201007a1201007b1201007c1201007d1201007e1201007f120100801201008112010082120100831201008412010085120100861201008712010088120100891201008a1201008b1201008c1201008d1201008e1201008f120100901201009112010092120100931201009412010095120100961201009712010098120100991201009a1201009b1201009c1201009d1201009e1201009f120100a0120100a1120100a2120100a3120100a4120100a5120100a6120100a7120100a8120100a9120100aa120100ab120100ac120100ad120100ae120100af120100b0120100b1120100b2120100b3120100b4120100b5120100b6120100b7120100b8120100b9120100ba120100bb120100bc120100bd120100be120100bf120100c0120100c1120100c2120100c3120100c4120100c5120100c6120100c7120100c8120100c9120100ca120100cb120100cc120100cd120100ce120100cf120100d0120100d1120100d2120100d3120100d4120100d5120100d6120100d7120100d8120100d9120100da120100db120100dc120100dd120100de120100df120100e0120100e1120100e2120100e3120100e4120100e5120100e6120100e7120100e8120100e9120100ea120100eb120100ec120100ed120100ee120100ef120100f0120100f1120100f2120100f3120100f4120100f5120100f6120100f7120100f8120100f9120100fa120100fb120100fc120100fd120100fe120100ff120100001301000113010002130100031301000413010005130100061301000713010008130100091301000a1301000b1301000c1301000d1301000e1301000f130100101301001113010012130100131301001413010015130100161301001713010018130100191301001a1301001b1301001c1301001d1301001e1301001f130100201301002113010022130100231301002413010025130100261301002713010028130100291301002a1301002b1301002c1301002d1301002e1301002f130100301301003113010032130100331301003413010035130100361301003713010038130100391301003a1301003b1301003c1301003d1301003e1301003f130100401301004113010042130100431301004413010045130100461301004713010048130100491301004a1301004b1301004c1301004d1301004e1301004f130100501301005113010052130100531301005413010055130100561301005713010058130100591301005a1301005b1301005c1301005d1301005e1301005f130100601301006113010062130100631301006413010065130100661301006713010068130100691301006a1301006b1301006c1301006d1301006e1301006f130100701301007113010072130100731301007413010075130100761301007713010078130100791301007a1301007b1301007c1301007d1301007e1301007f130100801301008113010082130100831301008413010085130100861301008713010088130100891301008a1301008b1301008c1301008d1301008e1301008f130100901301009113010092130100931301009413010095130100961301009713010098130100991301009a1301009b1301009c1301009d1301009e1301009f130100a0130100a1130100a2130100a3130100a4130100a5130100a6130100a7130100a8130100a9130100aa130100ab130100ac130100ad130100ae130100af130100b0130100b1130100b2130100b3130100b4130100b5130100b6130100b7130100b8130100b9130100ba130100bb130100bc130100bd130100be130100bf130100c0130100c1130100c2130100c3130100c4130100c5130100c6130100c7130100c8130100c9130100ca130100cb130100cc130100cd130100ce130100cf130100d0130100d1130100d2130100d3130100d4130100d5130100d6130100d7130100d8130100d9130100da130100db130100dc130100dd130100de130100df130100e0130100e1130100e2130100e3130100e4130100e5130100e6130100e7130100e8130100e9130100ea130100eb130100ec130100ed130100ee130100ef130100f0130100f1130100f2130100f3130100f4130100f5130100f6130100f7130100f8130100f9130100fa130100fb130100fc130100fd130100fe130100ff130100001401000114010002140100031401000414010005140100061401000714010008140100091401000a1401000b1401000c1401000d1401000e1401000f140100101401001114010012140100131401001414010015140100161401001714010018140100191401001a1401001b1401001c1401001d1401001e1401001f140100201401002114010022140100231401002414010025140100261401002714010028140100291401002a1401002b1401002c1401002d1401002e1401002f140100301401003114010032140100331401003414010035140100361401003714010038140100391401003a1401003b1401003c1401003d1401003e1401003f140100401401004114010042140100431401004414010045140100461401004714010048140100491401004a1401004b1401004c1401004d1401004e1401004f140100501401005114010052140100531401005414010055140100561401005714010058140100591401005a1401005b1401005c1401005d1401005e1401005f140100601401006114010062140100631401006414010065140100661401006714010068140100691401006a1401006b1401006c1401006d1401006e1401006f140100701401007114010072140100731401007414010075140100761401007714010078140100791401007a1401007b1401007c1401007d1401007e1401007f140100801401008114010082140100831401008414010085140100861401008714010088140100891401008a1401008b1401008c1401008d1401008e1401008f140100901401009114010092140100931401009414010095140100961401009714010098140100991401009a1401009b1401009c1401009d1401009e1401009f140100a0140100a1140100a2140100a3140100a4140100a5140100a6140100a7140100a8140100a9140100aa140100ab140100ac140100ad140100ae140100af140100b0140100b1140100b2140100b3140100b4140100b5140100b6140100b7140100b8140100b9140100ba140100bb140100bc140100bd140100be140100bf140100c0140100c1140100c2140100c3140100c4140100c5140100c6140100c7140100c8140100c9140100ca140100cb140100cc140100cd140100ce140100cf140100d0140100d1140100d2140100d3140100d4140100d5140100d6140100d7140100d8140100d9140100da140100db140100dc140100dd140100de140100df140100e0140100e1140100e2140100e3140100e4140100e5140100e6140100e7140100e8140100e9140100ea140100eb140100ec140100ed140100ee140100ef140100f0140100f1140100f2140100f3140100f4140100f5140100f6140100f7140100f8140100f9140100fa140100fb140100fc140100fd140100fe140100ff140100001501000115010002150100031501000415010005150100061501000715010008150100091501000a1501000b1501000c1501000d1501000e1501000f150100101501001115010012150100131501001415010015150100161501001715010018150100191501001a1501001b1501001c1501001d1501001e1501001f150100201501002115010022150100231501002415010025150100261501002715010028150100291501002a1501002b1501002c1501002d1501002e1501002f150100301501003115010032150100331501003415010035150100361501003715010038150100391501003a1501003b1501003c1501003d1501003e1501003f150100401501004115010042150100431501004415010045150100461501004715010048150100491501004a1501004b1501004c1501004d1501004e1501004f150100501501005115010052150100531501005415010055150100561501005715010058150100591501005a1501005b1501005c1501005d1501005e1501005f150100601501006115010062150100631501006415010065150100661501006715010068150100691501006a1501006b1501006c1501006d1501006e1501006f150100701501007115010072150100731501007415010075150100761501007715010078150100791501007a1501007b1501007c1501007d1501007e1501007f150100801501008115010082150100831501008415010085150100861501008715010088150100891501008a1501008b1501008c1501008d1501008e1501008f150100901501009115010092150100931501009415010095150100961501009715010098150100991501009a1501009b1501009c1501009d1501009e1501009f150100a0150100a1150100a2150100a3150100a4150100a5150100a6150100a7150100a8150100a9150100aa150100ab150100ac150100ad150100ae150100af150100b0150100b1150100b2150100b3150100b4150100b5150100b6150100b7150100b8150100b9150100ba150100bb150100bc150100bd150100be150100bf150100c0150100c1150100c2150100c3150100c4150100c5150100c6150100c7150100c8150100c9150100ca150100cb150100cc150100cd150100ce150100cf150100d0150100d1150100d2150100d3150100d4150100d5150100d6150100d7150100d8150100d9150100da150100db150100dc150100dd150100de150100df150100e0150100e1150100e2150100e3150100e4150100e5150100e6150100e7150100e8150100e9150100ea150100eb150100ec150100ed150100ee150100ef150100f0150100f1150100f2150100f3150100f4150100f5150100f6150100f7150100f8150100f9150100fa150100fb150100fc150100fd150100fe150100ff150100001601000116010002160100031601000416010005160100061601000716010008160100091601000a1601000b1601000c1601000d1601000e1601000f160100101601001116010012160100131601001416010015160100161601001716010018160100191601001a1601001b1601001c1601001d1601001e1601001f160100201601002116010022160100231601002416010025160100261601002716010028160100291601002a1601002b1601002c1601002d1601002e1601002f160100301601003116010032160100331601003416010035160100361601003716010038160100391601003a1601003b1601003c1601003d1601003e1601003f160100401601004116010042160100431601004416010045160100461601004716010048160100491601004a1601004b1601004c1601004d1601004e1601004f160100501601005116010052160100531601005416010055160100561601005716010058160100591601005a1601005b1601005c1601005d1601005e1601005f160100601601006116010062160100631601006416010065160100661601006716010068160100691601006a1601006b1601006c1601006d1601006e1601006f160100701601007116010072160100731601007416010075160100761601007716010078160100791601007a1601007b1601007c1601007d1601007e1601007f160100801601008116010082160100831601008416010085160100861601008716010088160100891601008a1601008b1601008c1601008d1601008e1601008f160100901601009116010092160100931601009416010095160100961601009716010098160100991601009a1601009b1601009c1601009d1601009e1601009f160100a0160100a1160100a2160100a3160100a4160100a5160100a6160100a7160100a8160100a9160100aa160100ab160100ac160100ad160100ae160100af160100b0160100b1160100b2160100b3160100b4160100b5160100b6160100b7160100b8160100b9160100ba160100bb160100bc160100bd160100be160100bf160100c0160100c1160100c2160100c3160100c4160100c5160100c6160100c7160100c8160100c9160100ca160100cb160100cc160100cd160100ce160100cf160100d0160100d1160100d2160100d3160100d4160100d5160100d6160100d7160100d8160100d9160100da160100db160100dc160100dd160100de160100df160100e0160100e1160100e2160100e3160100e4160100e5160100e6160100e7160100e8160100e9160100ea160100eb160100ec160100ed160100ee160100ef160100f0160100f1160100f2160100f3160100f4160100f5160100f6160100f7160100f8160100f9160100fa160100fb160100fc160100fd160100fe160100ff160100001701000117010002170100031701000417010005170100061701000717010008170100091701000a1701000b1701000c1701000d1701000e1701000f170100101701001117010012170100131701001417010015170100161701001717010018170100191701001a1701001b1701001c1701001d1701001e1701001f170100201701002117010022170100231701002417010025170100261701002717010028170100291701002a1701002b1701002c1701002d1701002e1701002f170100301701003117010032170100331701003417010035170100361701003717010038170100391701003a1701003b1701003c1701003d1701003e1701003f170100401701004117010042170100431701004417010045170100461701004717010048170100491701004a1701004b1701004c1701004d1701004e1701004f170100501701005117010052170100531701005417010055170100561701005717010058170100591701005a1701005b1701005c1701005d1701005e1701005f170100601701006117010062170100631701006417010065170100661701006717010068170100691701006a1701006b1701006c1701006d1701006e1701006f170100701701007117010072170100731701007417010075170100761701007717010078170100791701007a1701007b1701007c1701007d1701007e1701007f170100801701008117010082170100831701008417010085170100861701008717010088170100891701008a1701008b1701008c1701008d1701008e1701008f170100901701009117010092170100931701009417010095170100961701009717010098170100991701009a1701009b1701009c1701009d1701009e1701009f170100a0170100a1170100a2170100a3170100a4170100a5170100a6170100a7170100a8170100a9170100aa170100ab170100ac170100ad170100ae170100af170100b0170100b1170100b2170100b3170100b4170100b5170100b6170100b7170100b8170100b9170100ba170100bb170100bc170100bd170100be170100bf170100c0170100c1170100c2170100c3170100c4170100c5170100c6170100c7170100c8170100c9170100ca170100cb170100cc170100cd170100ce170100cf170100d0170100d1170100d2170100d3170100d4170100d5170100d6170100d7170100d8170100d9170100da170100db170100dc170100dd170100de170100df170100e0170100e1170100e2170100e3170100e4170100e5170100e6170100e7170100e8170100e9170100ea170100eb170100ec170100ed170100ee170100ef170100f0170100f1170100f2170100f3170100f4170100f5170100f6170100f7170100f8170100f9170100fa170100fb170100fc170100fd170100fe170100ff170100001801000118010002180100031801000418010005180100061801000718010008180100091801000a1801000b1801000c1801000d1801000e1801000f180100101801001118010012180100131801001418010015180100161801001718010018180100191801001a1801001b1801001c1801001d1801001e1801001f180100201801002118010022180100231801002418010025180100261801002718010028180100291801002a1801002b1801002c1801002d1801002e1801002f180100301801003118010032180100331801003418010035180100361801003718010038180100391801003a1801003b1801003c1801003d1801003e1801003f180100401801004118010042180100431801004418010045180100461801004718010048180100491801004a1801004b1801004c1801004d1801004e1801004f180100501801005118010052180100531801005418010055180100561801005718010058180100591801005a1801005b1801005c1801005d1801005e1801005f180100601801006118010062180100631801006418010065180100661801006718010068180100691801006a1801006b1801006c1801006d1801006e1801006f180100701801007118010072180100731801007418010075180100761801007718010078180100791801007a1801007b1801007c1801007d1801007e1801007f180100801801008118010082180100831801008418010085180100861801008718010088180100891801008a1801008b1801008c1801008d1801008e1801008f180100901801009118010092180100931801009418010095180100961801009718010098180100991801009a1801009b1801009c1801009d1801009e1801009f180100a0180100a1180100a2180100a3180100a4180100a5180100a6180100a7180100a8180100a9180100aa180100ab180100ac180100ad180100ae180100af180100b0180100b1180100b2180100b3180100b4180100b5180100b6180100b7180100b8180100b9180100ba180100bb180100bc180100bd180100be180100bf180100c0180100c1180100c2180100c3180100c4180100c5180100c6180100c7180100c8180100c9180100ca180100cb180100cc180100cd180100ce180100cf180100d0180100d1180100d2180100d3180100d4180100d5180100d6180100d7180100d8180100d9180100da180100db180100dc180100dd180100de180100df180100e0180100e1180100e2180100e3180100e4180100e5180100e6180100e7180100e8180100e9180100ea180100eb180100ec180100ed180100ee180100ef180100f0180100f1180100f2180100f3180100f4180100f5180100f6180100f7180100f8180100f9180100fa180100fb180100fc180100fd180100fe180100ff180100001901000119010002190100031901000419010005190100061901000719010008190100091901000a1901000b1901000c1901000d1901000e1901000f190100101901001119010012190100131901001419010015190100161901001719010018190100191901001a1901001b1901001c1901001d1901001e1901001f190100201901002119010022190100231901002419010025190100261901002719010028190100291901002a1901002b1901002c1901002d1901002e1901002f190100301901003119010032190100331901003419010035190100361901003719010038190100391901003a1901003b1901003c1901003d1901003e1901003f190100401901004119010042190100431901004419010045190100461901004719010048190100491901004a1901004b1901004c1901004d1901004e1901004f190100501901005119010052190100531901005419010055190100561901005719010058190100591901005a1901005b1901005c1901005d1901005e1901005f190100601901006119010062190100631901006419010065190100661901006719010068190100691901006a1901006b1901006c1901006d1901006e1901006f190100701901007119010072190100731901007419010075190100761901007719010078190100791901007a1901007b1901007c1901007d1901007e1901007f190100801901008119010082190100831901008419010085190100861901008719010088190100891901008a1901008b1901008c1901008d1901008e1901008f190100901901009119010092190100931901009419010095190100961901009719010098190100991901009a1901009b1901009c1901009d1901009e1901009f190100a0190100a1190100a2190100a3190100a4190100a5190100a6190100a7190100a8190100a9190100aa190100ab190100ac190100ad190100ae190100af190100b0190100b1190100b2190100b3190100b4190100b5190100b6190100b7190100b8190100b9190100ba190100bb190100bc190100bd190100be190100bf190100c0190100c1190100c2190100c3190100c4190100c5190100c6190100c7190100c8190100c9190100ca190100cb190100cc190100cd190100ce190100cf190100d0190100d1190100d2190100d3190100d4190100d5190100d6190100d7190100d8190100d9190100da190100db190100dc190100dd190100de190100df190100e0190100e1190100e2190100e3190100e4190100e5190100e6190100e7190100e8190100e9190100ea190100eb190100ec190100ed190100ee190100ef190100f0190100f1190100f2190100f3190100f4190100f5190100f6190100f7190100f8190100f9190100fa190100fb190100fc190100fd190100fe190100ff190100001a0100011a0100021a0100031a0100041a0100051a0100061a0100071a0100081a0100091a01000a1a01000b1a01000c1a01000d1a01000e1a01000f1a0100101a0100111a0100121a0100131a0100141a0100151a0100161a0100171a0100181a0100191a01001a1a01001b1a01001c1a01001d1a01001e1a01001f1a0100201a0100211a0100221a0100231a0100241a0100251a0100261a0100271a0100281a0100291a01002a1a01002b1a01002c1a01002d1a01002e1a01002f1a0100301a0100311a0100321a0100331a0100341a0100351a0100361a0100371a0100381a0100391a01003a1a01003b1a01003c1a01003d1a01003e1a01003f1a0100401a0100411a0100421a0100431a0100441a0100451a0100461a0100471a0100481a0100491a01004a1a01004b1a01004c1a01004d1a01004e1a01004f1a0100501a0100511a0100521a0100531a0100541a0100551a0100561a0100571a0100581a0100591a01005a1a01005b1a01005c1a01005d1a01005e1a01005f1a0100601a0100611a0100621a0100631a0100641a0100651a0100661a0100671a0100681a0100691a01006a1a01006b1a01006c1a01006d1a01006e1a01006f1a0100701a0100711a0100721a0100731a0100741a0100751a0100761a0100771a0100781a0100791a01007a1a01007b1a01007c1a01007d1a01007e1a01007f1a0100801a0100811a0100821a0100831a0100841a0100851a0100861a0100871a0100881a0100891a01008a1a01008b1a01008c1a01008d1a01008e1a01008f1a0100901a0100911a0100921a0100931a0100941a0100951a0100961a0100971a0100981a0100991a01009a1a01009b1a01009c1a01009d1a01009e1a01009f1a0100a01a0100a11a0100a21a0100a31a0100a41a0100a51a0100a61a0100a71a0100a81a0100a91a0100aa1a0100ab1a0100ac1a0100ad1a0100ae1a0100af1a0100b01a0100b11a0100b21a0100b31a0100b41a0100b51a0100b61a0100b71a0100b81a0100b91a0100ba1a0100bb1a0100bc1a0100bd1a0100be1a0100bf1a0100c01a0100c11a0100c21a0100c31a0100c41a0100c51a0100c61a0100c71a0100c81a0100c91a0100ca1a0100cb1a0100cc1a0100cd1a0100ce1a0100cf1a0100d01a0100d11a0100d21a0100d31a0100d41a0100d51a0100d61a0100d71a0100d81a0100d91a0100da1a0100db1a0100dc1a0100dd1a0100de1a0100df1a0100e01a0100e11a0100e21a0100e31a0100e41a0100e51a0100e61a0100e71a0100e81a0100e91a0100ea1a0100eb1a0100ec1a0100ed1a0100ee1a0100ef1a0100f01a0100f11a0100f21a0100f31a0100f41a0100f51a0100f61a0100f71a0100f81a0100f91a0100fa1a0100fb1a0100fc1a0100fd1a0100fe1a0100ff1a0100001b0100011b0100021b0100031b0100041b0100051b0100061b0100071b0100081b0100091b01000a1b01000b1b01000c1b01000d1b01000e1b01000f1b0100101b0100111b0100121b0100131b0100141b0100151b0100161b0100171b0100181b0100191b01001a1b01001b1b01001c1b01001d1b01001e1b01001f1b0100201b0100211b0100221b0100231b0100241b0100251b0100261b0100271b0100281b0100291b01002a1b01002b1b01002c1b01002d1b01002e1b01002f1b0100301b0100311b0100321b0100331b0100341b0100351b0100361b0100371b0100381b0100391b01003a1b01003b1b01003c1b01003d1b01003e1b01003f1b0100401b0100411b0100421b0100431b0100441b0100451b0100461b0100471b0100481b0100491b01004a1b01004b1b01004c1b01004d1b01004e1b01004f1b0100501b0100511b0100521b0100531b0100541b0100551b0100561b0100571b0100581b0100591b01005a1b01005b1b01005c1b01005d1b01005e1b01005f1b0100601b0100611b0100621b0100631b0100641b0100651b0100661b0100671b0100681b0100691b01006a1b01006b1b01006c1b01006d1b01006e1b01006f1b0100701b0100711b0100721b0100731b0100741b0100751b0100761b0100771b0100781b0100791b01007a1b01007b1b01007c1b01007d1b01007e1b01007f1b0100801b0100811b0100821b0100831b0100841b0100851b0100861b0100871b0100881b0100891b01008a1b01008b1b01008c1b01008d1b01008e1b01008f1b0100901b0100911b0100921b0100931b0100941b0100951b0100961b0100971b0100981b0100991b01009a1b01009b1b01009c1b01009d1b01009e1b01009f1b0100a01b0100a11b0100a21b0100a31b0100a41b0100a51b0100a61b0100a71b0100a81b0100a91b0100aa1b0100ab1b0100ac1b0100ad1b0100ae1b0100af1b0100b01b0100b11b0100b21b0100b31b0100b41b0100b51b0100b61b0100b71b0100b81b0100b91b0100ba1b0100bb1b0100bc1b0100bd1b0100be1b0100bf1b0100c01b0100c11b0100c21b0100c31b0100c41b0100c51b0100c61b0100c71b0100c81b0100c91b0100ca1b0100cb1b0100cc1b0100cd1b0100ce1b0100cf1b0100d01b0100d11b0100d21b0100d31b0100d41b0100d51b0100d61b0100d71b0100d81b0100d91b0100da1b0100db1b0100dc1b0100dd1b0100de1b0100df1b0100e01b0100e11b0100e21b0100e31b0100e41b0100e51b0100e61b0100e71b0100e81b0100e91b0100ea1b0100eb1b0100ec1b0100ed1b0100ee1b0100ef1b0100f01b0100f11b0100f21b0100f31b0100f41b0100f51b0100f61b0100f71b0100f81b0100f91b0100fa1b0100fb1b0100fc1b0100fd1b0100fe1b0100ff1b0100001c0100011c0100021c0100031c0100041c0100051c0100061c0100071c0100081c0100091c01000a1c01000b1c01000c1c01000d1c01000e1c01000f1c0100101c0100111c0100121c0100131c0100141c0100151c0100161c0100171c0100181c0100191c01001a1c01001b1c01001c1c01001d1c01001e1c01001f1c0100201c0100211c0100221c0100231c0100241c0100251c0100261c0100271c0100281c0100291c01002a1c01002b1c01002c1c01002d1c01002e1c01002f1c0100301c0100311c0100321c0100331c0100341c0100351c0100361c0100371c0100381c0100391c01003a1c01003b1c01003c1c01003d1c01003e1c01003f1c0100401c0100411c0100421c0100431c0100441c0100451c0100461c0100471c0100481c0100491c01004a1c01004b1c01004c1c01004d1c01004e1c01004f1c0100501c0100511c0100521c0100531c0100541c0100551c0100561c0100571c0100581c0100591c01005a1c01005b1c01005c1c01005d1c01005e1c01005f1c0100601c0100611c0100621c0100631c0100641c0100651c0100661c0100671c0100681c0100691c01006a1c01006b1c01006c1c01006d1c01006e1c01006f1c0100701c0100711c0100721c0100731c0100741c0100751c0100761c0100771c0100781c0100791c01007a1c01007b1c01007c1c01007d1c01007e1c01007f1c0100801c0100811c0100821c0100831c0100841c0100851c0100861c0100871c0100881c0100891c01008a1c01008b1c01008c1c01008d1c01008e1c01008f1c0100901c0100911c0100921c0100931c0100941c0100951c0100961c0100971c0100981c0100991c01009a1c01009b1c01009c1c01009d1c01009e1c01009f1c0100a01c0100a11c0100a21c0100a31c0100a41c0100a51c0100a61c0100a71c0100a81c0100a91c0100aa1c0100ab1c0100ac1c0100ad1c0100ae1c0100af1c0100b01c0100b11c0100b21c0100b31c0100b41c0100b51c0100b61c0100b71c0100b81c0100b91c0100ba1c0100bb1c0100bc1c0100bd1c0100be1c0100bf1c0100c01c0100c11c0100c21c0100c31c0100c41c0100c51c0100c61c0100c71c0100c81c0100c91c0100ca1c0100cb1c0100cc1c0100cd1c0100ce1c0100cf1c0100d01c0100d11c0100d21c0100d31c0100d41c0100d51c0100d61c0100d71c0100d81c0100d91c0100da1c0100db1c0100dc1c0100dd1c0100de1c0100df1c0100e01c0100e11c0100e21c0100e31c0100e41c0100e51c0100e61c0100e71c0100e81c0100e91c0100ea1c0100eb1c0100ec1c0100ed1c0100ee1c0100ef1c0100f01c0100f11c0100f21c0100f31c0100f41c0100f51c0100f61c0100f71c0100f81c0100f91c0100fa1c0100fb1c0100fc1c0100fd1c0100fe1c0100ff1c0100001d0100011d0100021d0100031d0100041d0100051d0100061d0100071d0100081d0100091d01000a1d01000b1d01000c1d01000d1d01000e1d01000f1d0100101d0100111d0100121d0100131d0100141d0100151d0100161d0100171d0100181d0100191d01001a1d01001b1d01001c1d01001d1d01001e1d01001f1d0100201d0100211d0100221d0100231d0100241d0100251d0100261d0100271d0100281d0100291d01002a1d01002b1d01002c1d01002d1d01002e1d01002f1d0100301d0100311d0100321d0100331d0100341d0100351d0100361d0100371d0100381d0100391d01003a1d01003b1d01003c1d01003d1d01003e1d01003f1d0100401d0100411d0100421d0100431d0100441d0100451d0100461d0100471d0100481d0100491d01004a1d01004b1d01004c1d01004d1d01004e1d01004f1d0100501d0100511d0100521d0100531d0100541d0100551d0100561d0100571d0100581d0100591d01005a1d01005b1d01005c1d01005d1d01005e1d01005f1d0100601d0100611d0100621d0100631d0100641d0100651d0100661d0100671d0100681d0100691d01006a1d01006b1d01006c1d01006d1d01006e1d01006f1d0100701d0100711d0100721d0100731d0100741d0100751d0100761d0100771d0100781d0100791d01007a1d01007b1d01007c1d01007d1d01007e1d01007f1d0100801d0100811d0100821d0100831d0100841d0100851d0100861d0100871d0100881d0100891d01008a1d01008b1d01008c1d01008d1d01008e1d01008f1d0100901d0100911d0100921d0100931d0100941d0100951d0100961d0100971d0100981d0100991d01009a1d01009b1d01009c1d01009d1d01009e1d01009f1d0100a01d0100a11d0100a21d0100a31d0100a41d0100a51d0100a61d0100a71d0100a81d0100a91d0100aa1d0100ab1d0100ac1d0100ad1d0100ae1d0100af1d0100b01d0100b11d0100b21d0100b31d0100b41d0100b51d0100b61d0100b71d0100b81d0100b91d0100ba1d0100bb1d0100bc1d0100bd1d0100be1d0100bf1d0100c01d0100c11d0100c21d0100c31d0100c41d0100c51d0100c61d0100c71d0100c81d0100c91d0100ca1d0100cb1d0100cc1d0100cd1d0100ce1d0100cf1d0100d01d0100d11d0100d21d0100d31d0100d41d0100d51d0100d61d0100d71d0100d81d0100d91d0100da1d0100db1d0100dc1d0100dd1d0100de1d0100df1d0100e01d0100e11d0100e21d0100e31d0100e41d0100e51d0100e61d0100e71d0100e81d0100e91d0100ea1d0100eb1d0100ec1d0100ed1d0100ee1d0100ef1d0100f01d0100f11d0100f21d0100f31d0100f41d0100f51d0100f61d0100f71d0100f81d0100f91d0100fa1d0100fb1d0100fc1d0100fd1d0100fe1d0100ff1d0100001e0100011e0100021e0100031e0100041e0100051e0100061e0100071e0100081e0100091e01000a1e01000b1e01000c1e01000d1e01000e1e01000f1e0100101e0100111e0100121e0100131e0100141e0100151e0100161e0100171e0100181e0100191e01001a1e01001b1e01001c1e01001d1e01001e1e01001f1e0100201e0100211e0100221e0100231e0100241e0100251e0100261e0100271e0100281e0100291e01002a1e01002b1e01002c1e01002d1e01002e1e01002f1e0100301e0100311e0100321e0100331e0100341e0100351e0100361e0100371e0100381e0100391e01003a1e01003b1e01003c1e01003d1e01003e1e01003f1e0100401e0100411e0100421e0100431e0100441e0100451e0100461e0100471e0100481e0100491e01004a1e01004b1e01004c1e01004d1e01004e1e01004f1e0100501e0100511e0100521e0100531e0100541e0100551e0100561e0100571e0100581e0100591e01005a1e01005b1e01005c1e01005d1e01005e1e01005f1e0100601e0100611e0100621e0100631e0100641e0100651e0100661e0100671e0100681e0100691e01006a1e01006b1e01006c1e01006d1e01006e1e01006f1e0100701e0100711e0100721e0100731e0100741e0100751e0100761e0100771e0100781e0100791e01007a1e01007b1e01007c1e01007d1e01007e1e01007f1e0100801e0100811e0100821e0100831e0100841e0100851e0100861e0100871e0100881e0100891e01008a1e01008b1e01008c1e01008d1e01008e1e01008f1e0100901e0100911e0100921e0100931e0100941e0100951e0100961e0100971e0100981e0100991e01009a1e01009b1e01009c1e01009d1e01009e1e01009f1e0100a01e0100a11e0100a21e0100a31e0100a41e0100a51e0100a61e0100a71e0100a81e0100a91e0100aa1e0100ab1e0100ac1e0100ad1e0100ae1e0100af1e0100b01e0100b11e0100b21e0100b31e0100b41e0100b51e0100b61e0100b71e0100b81e0100b91e0100ba1e0100bb1e0100bc1e0100bd1e0100be1e0100bf1e0100c01e0100c11e0100c21e0100c31e0100c41e0100c51e0100c61e0100c71e0100c81e0100c91e0100ca1e0100cb1e0100cc1e0100cd1e0100ce1e0100cf1e0100d01e0100d11e0100d21e0100d31e0100d41e0100d51e0100d61e0100d71e0100d81e0100d91e0100da1e0100db1e0100dc1e0100dd1e0100de1e0100df1e0100e01e0100e11e0100e21e0100e31e0100e41e0100e51e0100e61e0100e71e0100e81e0100e91e0100ea1e0100eb1e0100ec1e0100ed1e0100ee1e0100ef1e0100f01e0100f11e0100f21e0100f31e0100f41e0100f51e0100f61e0100f71e0100f81e0100f91e0100fa1e0100fb1e0100fc1e0100fd1e0100fe1e0100ff1e0100001f0100011f0100021f0100031f0100041f0100051f0100061f0100071f0100081f0100091f01000a1f01000b1f01000c1f01000d1f01000e1f01000f1f0100101f0100111f0100121f0100131f0100141f0100151f0100161f0100171f0100181f0100191f01001a1f01001b1f01001c1f01001d1f01001e1f01001f1f0100201f0100211f0100221f0100231f0100241f0100251f0100261f0100271f0100281f0100291f01002a1f01002b1f01002c1f01002d1f01002e1f01002f1f0100301f0100311f0100321f0100331f0100341f0100351f0100361f0100371f0100381f0100391f01003a1f01003b1f01003c1f01003d1f01003e1f01003f1f0100401f0100411f0100421f0100431f0100441f0100451f0100461f0100471f0100481f0100491f01004a1f01004b1f01004c1f01004d1f01004e1f01004f1f0100501f0100511f0100521f0100531f0100541f0100551f0100561f0100571f0100581f0100591f01005a1f01005b1f01005c1f01005d1f01005e1f01005f1f0100601f0100611f0100621f0100631f0100641f0100651f0100661f0100671f0100681f0100691f01006a1f01006b1f01006c1f01006d1f01006e1f01006f1f0100701f0100711f0100721f0100731f0100741f0100751f0100761f0100771f0100781f0100791f01007a1f01007b1f01007c1f01007d1f01007e1f01007f1f0100801f0100811f0100821f0100831f0100841f0100851f0100861f0100871f0100881f0100891f01008a1f01008b1f01008c1f01008d1f01008e1f01008f1f0100901f0100911f0100921f0100931f0100941f0100951f0100961f0100971f0100981f0100991f01009a1f01009b1f01009c1f01009d1f01009e1f01009f1f0100a01f0100a11f0100a21f0100a31f0100a41f0100a51f0100a61f0100a71f0100a81f0100a91f0100aa1f0100ab1f0100ac1f0100ad1f0100ae1f0100af1f0100b01f0100b11f0100b21f0100b31f0100b41f0100b51f0100b61f0100b71f0100b81f0100b91f0100ba1f0100bb1f0100bc1f0100bd1f0100be1f0100bf1f0100c01f0100c11f0100c21f0100c31f0100c41f0100c51f0100c61f0100c71f0100c81f0100c91f0100ca1f0100cb1f0100cc1f0100cd1f0100ce1f0100cf1f0100d01f0100d11f0100d21f0100d31f0100d41f0100d51f0100d61f0100d71f0100d81f0100d91f0100da1f0100db1f0100dc1f0100dd1f0100de1f0100df1f0100e01f0100e11f0100e21f0100e31f0100e41f0100e51f0100e61f0100e71f0100e81f0100e91f0100ea1f0100eb1f0100ec1f0100ed1f0100ee1f0100ef1f0100f01f0100f11f0100f21f0100f31f0100f41f0100f51f0100f61f0100f71f0100f81f0100f91f0100fa1f0100fb1f0100fc1f0100fd1f0100fe1f0100ff1f0100002001000120010002200100032001000420010005200100062001000720010008200100092001000a2001000b2001000c2001000d2001000e2001000f200100102001001120010012200100132001001420010015200100162001001720010018200100192001001a2001001b2001001c2001001d2001001e2001001f200100202001002120010022200100232001002420010025200100262001002720010028200100292001002a2001002b2001002c2001002d2001002e2001002f200100302001003120010032200100332001003420010035200100362001003720010038200100392001003a2001003b2001003c2001003d2001003e2001003f200100402001004120010042200100432001004420010045200100462001004720010048200100492001004a2001004b2001004c2001004d2001004e2001004f200100502001005120010052200100532001005420010055200100562001005720010058200100592001005a2001005b2001005c2001005d2001005e2001005f200100602001006120010062200100632001006420010065200100662001006720010068200100692001006a2001006b2001006c2001006d2001006e2001006f200100702001007120010072200100732001007420010075200100762001007720010078200100792001007a2001007b2001007c2001007d2001007e2001007f200100802001008120010082200100832001008420010085200100862001008720010088200100892001008a2001008b2001008c2001008d2001008e2001008f200100902001009120010092200100932001009420010095200100962001009720010098200100992001009a2001009b2001009c2001009d2001009e2001009f200100a0200100a1200100a2200100a3200100a4200100a5200100a6200100a7200100a8200100a9200100aa200100ab200100ac200100ad200100ae200100af200100b0200100b1200100b2200100b3200100b4200100b5200100b6200100b7200100b8200100b9200100ba200100bb200100bc200100bd200100be200100bf200100c0200100c1200100c2200100c3200100c4200100c5200100c6200100c7200100c8200100c9200100ca200100cb200100cc200100cd200100ce200100cf200100d0200100d1200100d2200100d3200100d4200100d5200100d6200100d7200100d8200100d9200100da200100db200100dc200100dd200100de200100df200100e0200100e1200100e2200100e3200100e4200100e5200100e6200100e7200100e8200100e9200100ea200100eb200100ec200100ed200100ee200100ef200100f0200100f1200100f2200100f3200100f4200100f5200100f6200100f7200100f8200100f9200100fa200100fb200100fc200100fd200100fe200100ff200100002101000121010002210100032101000421010005210100062101000721010008210100092101000a2101000b2101000c2101000d2101000e2101000f210100102101001121010012210100132101001421010015210100162101001721010018210100192101001a2101001b2101001c2101001d2101001e2101001f210100202101002121010022210100232101002421010025210100262101002721010028210100292101002a2101002b2101002c2101002d2101002e2101002f210100302101003121010032210100332101003421010035210100362101003721010038210100392101003a2101003b2101003c2101003d2101003e2101003f210100402101004121010042210100432101004421010045210100462101004721010048210100492101004a2101004b2101004c2101004d2101004e2101004f210100502101005121010052210100532101005421010055210100562101005721010058210100592101005a2101005b2101005c2101005d2101005e2101005f210100602101006121010062210100632101006421010065210100662101006721010068210100692101006a2101006b2101006c2101006d2101006e2101006f210100702101007121010072210100732101007421010075210100762101007721010078210100792101007a2101007b2101007c2101007d2101007e2101007f210100802101008121010082210100832101008421010085210100862101008721010088210100892101008a2101008b2101008c2101008d2101008e2101008f210100902101009121010092210100932101009421010095210100962101009721010098210100992101009a2101009b2101009c2101009d2101009e2101009f210100a0210100a1210100a2210100a3210100a4210100a5210100a6210100a7210100a8210100a9210100aa210100ab210100ac210100ad210100ae210100af210100b0210100b1210100b2210100b3210100b4210100b5210100b6210100b7210100b8210100b9210100ba210100bb210100bc210100bd210100be210100bf210100c0210100c1210100c2210100c3210100c4210100c5210100c6210100c7210100c8210100c9210100ca210100cb210100cc210100cd210100ce210100cf210100d0210100d1210100d2210100d3210100d4210100d5210100d6210100d7210100d8210100d9210100da210100db210100dc210100dd210100de210100df210100e0210100e1210100e2210100e3210100e4210100e5210100e6210100e7210100e8210100e9210100ea210100eb210100ec210100ed210100ee210100ef210100f0210100f1210100f2210100f3210100f4210100f5210100f6210100f7210100f8210100f9210100fa210100fb210100fc210100fd210100fe210100ff210100002201000122010002220100032201000422010005220100062201000722010008220100092201000a2201000b2201000c2201000d2201000e2201000f220100102201001122010012220100132201001422010015220100162201001722010018220100192201001a2201001b2201001c2201001d2201001e2201001f220100202201002122010022220100232201002422010025220100262201002722010028220100292201002a2201002b2201002c2201002d2201002e2201002f220100302201003122010032220100332201003422010035220100362201003722010038220100392201003a2201003b2201003c2201003d2201003e2201003f220100402201004122010042220100432201004422010045220100462201004722010048220100492201004a2201004b2201004c2201004d2201004e2201004f220100502201005122010052220100532201005422010055220100562201005722010058220100592201005a2201005b2201005c2201005d2201005e2201005f220100602201006122010062220100632201006422010065220100662201006722010068220100692201006a2201006b2201006c2201006d2201006e2201006f220100702201007122010072220100732201007422010075220100762201007722010078220100792201007a2201007b2201007c2201007d2201007e2201007f220100802201008122010082220100832201008422010085220100862201008722010088220100892201008a2201008b2201008c2201008d2201008e2201008f220100902201009122010092220100932201009422010095220100962201009722010098220100992201009a2201009b2201009c2201009d2201009e2201009f220100a0220100a1220100a2220100a3220100a4220100a5220100a6220100a7220100a8220100a9220100aa220100ab220100ac220100ad220100ae220100af220100b0220100b1220100b2220100b3220100b4220100b5220100b6220100b7220100b8220100b9220100ba220100bb220100bc220100bd220100be220100bf220100c0220100c1220100c2220100c3220100c4220100c5220100c6220100c7220100c8220100c9220100ca220100cb220100cc220100cd220100ce220100cf220100d0220100d1220100d2220100d3220100d4220100d5220100d6220100d7220100d8220100d9220100da220100db220100dc220100dd220100de220100df220100e0220100e1220100e2220100e3220100e4220100e5220100e6220100e7220100e8220100e9220100ea220100eb220100ec220100ed220100ee220100ef220100f0220100f1220100f2220100f3220100f4220100f5220100f6220100f7220100f8220100f9220100fa220100fb220100fc220100fd220100fe220100ff220100002301000123010002230100032301000423010005230100062301000723010008230100092301000a2301000b2301000c2301000d2301000e2301000f230100102301001123010012230100132301001423010015230100162301001723010018230100192301001a2301001b2301001c2301001d2301001e2301001f230100202301002123010022230100232301002423010025230100262301002723010028230100292301002a2301002b2301002c2301002d2301002e2301002f230100302301003123010032230100332301003423010035230100362301003723010038230100392301003a2301003b2301003c2301003d2301003e2301003f230100402301004123010042230100432301004423010045230100462301004723010048230100492301004a2301004b2301004c2301004d2301004e2301004f230100502301005123010052230100532301005423010055230100562301005723010058230100592301005a2301005b2301005c2301005d2301005e2301005f230100602301006123010062230100632301006423010065230100662301006723010068230100692301006a2301006b2301006c2301006d2301006e2301006f230100702301007123010072230100732301007423010075230100762301007723010078230100792301007a2301007b2301007c2301007d2301007e2301007f230100802301008123010082230100832301008423010085230100862301008723010088230100892301008a2301008b2301008c2301008d2301008e2301008f230100902301009123010092230100932301009423010095230100962301009723010098230100992301009a2301009b2301009c2301009d2301009e2301009f230100a0230100a1230100a2230100a3230100a4230100a5230100a6230100a7230100a8230100a9230100aa230100ab230100ac230100ad230100ae230100af230100b0230100b1230100b2230100b3230100b4230100b5230100b6230100b7230100b8230100b9230100ba230100bb230100bc230100bd230100be230100bf230100c0230100c1230100c2230100c3230100c4230100c5230100c6230100c7230100c8230100c9230100ca230100cb230100cc230100cd230100ce230100cf230100d0230100d1230100d2230100d3230100d4230100d5230100d6230100d7230100d8230100d9230100da230100db230100dc230100dd230100de230100df230100e0230100e1230100e2230100e3230100e4230100e5230100e6230100e7230100e8230100e9230100ea230100eb230100ec230100ed230100ee230100ef230100f0230100f1230100f2230100f3230100f4230100f5230100f6230100f7230100f8230100f9230100fa230100fb230100fc230100fd230100fe230100ff230100002401000124010002240100032401000424010005240100062401000724010008240100092401000a2401000b2401000c2401000d2401000e2401000f240100102401001124010012240100132401001424010015240100162401001724010018240100192401001a2401001b2401001c2401001d2401001e2401001f240100202401002124010022240100232401002424010025240100262401002724010028240100292401002a2401002b2401002c2401002d2401002e2401002f240100302401003124010032240100332401003424010035240100362401003724010038240100392401003a2401003b2401003c2401003d2401003e2401003f240100402401004124010042240100432401004424010045240100462401004724010048240100492401004a2401004b2401004c2401004d2401004e2401004f240100502401005124010052240100532401005424010055240100562401005724010058240100592401005a2401005b2401005c2401005d2401005e2401005f240100602401006124010062240100632401006424010065240100662401006724010068240100692401006a2401006b2401006c2401006d2401006e2401006f240100702401007124010072240100732401007424010075240100762401007724010078240100792401007a2401007b2401007c2401007d2401007e2401007f240100802401008124010082240100832401008424010085240100862401008724010088240100892401008a2401008b2401008c2401008d2401008e2401008f240100902401009124010092240100932401009424010095240100962401009724010098240100992401009a2401009b2401009c2401009d2401009e2401009f240100a0240100a1240100a2240100a3240100a4240100a5240100a6240100a7240100a8240100a9240100aa240100ab240100ac240100ad240100ae240100af240100b0240100b1240100b2240100b3240100b4240100b5240100b6240100b7240100b8240100b9240100ba240100bb240100bc240100bd240100be240100bf240100c0240100c1240100c2240100c3240100c4240100c5240100c6240100c7240100c8240100c9240100ca240100cb240100cc240100cd240100ce240100cf240100d0240100d1240100d2240100d3240100d4240100d5240100d6240100d7240100d8240100d9240100da240100db240100dc240100dd240100de240100df240100e0240100e1240100e2240100e3240100e4240100e5240100e6240100e7240100e8240100e9240100ea240100eb240100ec240100ed240100ee240100ef240100f0240100f1240100f2240100f3240100f4240100f5240100f6240100f7240100f8240100f9240100fa240100fb240100fc240100fd240100fe240100ff240100002501000125010002250100032501000425010005250100062501000725010008250100092501000a2501000b2501000c2501000d2501000e2501000f250100102501001125010012250100132501001425010015250100162501001725010018250100192501001a2501001b2501001c2501001d2501001e2501001f250100202501002125010022250100232501002425010025250100262501002725010028250100292501002a2501002b2501002c2501002d2501002e2501002f250100302501003125010032250100332501003425010035250100362501003725010038250100392501003a2501003b2501003c2501003d2501003e2501003f250100402501004125010042250100432501004425010045250100462501004725010048250100492501004a2501004b2501004c2501004d2501004e2501004f250100502501005125010052250100532501005425010055250100562501005725010058250100592501005a2501005b2501005c2501005d2501005e2501005f250100602501006125010062250100632501006425010065250100662501006725010068250100692501006a2501006b2501006c2501006d2501006e2501006f250100702501007125010072250100732501007425010075250100762501007725010078250100792501007a2501007b2501007c2501007d2501007e2501007f250100802501008125010082250100832501008425010085250100862501008725010088250100892501008a2501008b2501008c2501008d2501008e2501008f250100902501009125010092250100932501009425010095250100962501009725010098250100992501009a2501009b2501009c2501009d2501009e2501009f250100a0250100a1250100a2250100a3250100a4250100a5250100a6250100a7250100a8250100a9250100aa250100ab250100ac250100ad250100ae250100af250100b0250100b1250100b2250100b3250100b4250100b5250100b6250100b7250100b8250100b9250100ba250100bb250100bc250100bd250100be250100bf250100c0250100c1250100c2250100c3250100c4250100c5250100c6250100c7250100c8250100c9250100ca250100cb250100cc250100cd250100ce250100cf250100d0250100d1250100d2250100d3250100d4250100d5250100d6250100d7250100d8250100d9250100da250100db250100dc250100dd250100de250100df250100e0250100e1250100e2250100e3250100e4250100e5250100e6250100e7250100e8250100e9250100ea250100eb250100ec250100ed250100ee250100ef250100f0250100f1250100f2250100f3250100f4250100f5250100f6250100f7250100f8250100f9250100fa250100fb250100fc250100fd250100fe250100ff250100002601000126010002260100032601000426010005260100062601000726010008260100092601000a2601000b2601000c2601000d2601000e2601000f260100102601001126010012260100132601001426010015260100162601001726010018260100192601001a2601001b2601001c2601001d2601001e2601001f260100202601002126010022260100232601002426010025260100262601002726010028260100292601002a2601002b2601002c2601002d2601002e2601002f260100302601003126010032260100332601003426010035260100362601003726010038260100392601003a2601003b2601003c2601003d2601003e2601003f260100402601004126010042260100432601004426010045260100462601004726010048260100492601004a2601004b2601004c2601004d2601004e2601004f260100502601005126010052260100532601005426010055260100562601005726010058260100592601005a2601005b2601005c2601005d2601005e2601005f260100602601006126010062260100632601006426010065260100662601006726010068260100692601006a2601006b2601006c2601006d2601006e2601006f260100702601007126010072260100732601007426010075260100762601007726010078260100792601007a2601007b2601007c2601007d2601007e2601007f260100802601008126010082260100832601008426010085260100862601008726010088260100892601008a2601008b2601008c2601008d2601008e2601008f260100902601009126010092260100932601009426010095260100962601009726010098260100992601009a2601009b2601009c2601009d2601009e2601009f260100a0260100a1260100a2260100a3260100a4260100a5260100a6260100a7260100a8260100a9260100aa260100ab260100ac260100ad260100ae260100af260100b0260100b1260100b2260100b3260100b4260100b5260100b6260100b7260100b8260100b9260100ba260100bb260100bc260100bd260100be260100bf260100c0260100c1260100c2260100c3260100c4260100c5260100c6260100c7260100c8260100c9260100ca260100cb260100cc260100cd260100ce260100cf260100d0260100d1260100d2260100d3260100d4260100d5260100d6260100d7260100d8260100d9260100da260100db260100dc260100dd260100de260100df260100e0260100e1260100e2260100e3260100e4260100e5260100e6260100e7260100e8260100e9260100ea260100eb260100ec260100ed260100ee260100ef260100f0260100f1260100f2260100f3260100f4260100f5260100f6260100f7260100f8260100f9260100fa260100fb260100fc260100fd260100fe260100ff260100002701000127010002270100032701000427010005270100062701000727010008270100092701000a2701000b2701000c2701000d2701000e2701000f270100102701001127010012270100132701001427010015270100162701001727010018270100192701001a2701001b2701001c2701001d2701001e2701001f270100202701002127010022270100232701002427010025270100262701002727010028270100292701002a2701002b2701002c2701002d2701002e2701002f270100302701003127010032270100332701003427010035270100362701003727010038270100392701003a2701003b2701003c2701003d2701003e2701003f270100402701004127010042270100432701004427010045270100462701004727010048270100492701004a2701004b2701004c2701004d2701004e2701004f270100502701005127010052270100532701005427010055270100562701005727010058270100592701005a2701005b2701005c2701005d2701005e2701005f270100602701006127010062270100632701006427010065270100662701006727010068270100692701006a2701006b2701006c2701006d2701006e2701006f270100702701007127010072270100732701007427010075270100762701007727010078270100792701007a2701007b2701007c2701007d2701007e2701007f270100802701008127010082270100832701008427010085270100862701008727010088270100892701008a2701008b2701008c2701008d2701008e2701008f270100902701009127010092270100932701009427010095270100962701009727010098270100992701009a2701009b2701009c2701009d2701009e2701009f270100a0270100a1270100a2270100a3270100a4270100a5270100a6270100a7270100a8270100a9270100aa270100ab270100ac270100ad270100ae270100af270100b0270100b1270100b2270100b3270100b4270100b5270100b6270100b7270100b8270100b9270100ba270100bb270100bc270100bd270100be270100bf270100c0270100c1270100c2270100c3270100c4270100c5270100c6270100c7270100c8270100c9270100ca270100cb270100cc270100cd270100ce270100cf270100d0270100d1270100d2270100d3270100d4270100d5270100d6270100d7270100d8270100d9270100da270100db270100dc270100dd270100de270100df270100e0270100e1270100e2270100e3270100e4270100e5270100e6270100e7270100e8270100e9270100ea270100eb270100ec270100ed270100ee270100ef270100f0270100f1270100f2270100f3270100f4270100f5270100f6270100f7270100f8270100f9270100fa270100fb270100fc270100fd270100fe270100ff270100002801000128010002280100032801000428010005280100062801000728010008280100092801000a2801000b2801000c2801000d2801000e2801000f280100102801001128010012280100132801001428010015280100162801001728010018280100192801001a2801001b2801001c2801001d2801001e2801001f280100202801002128010022280100232801002428010025280100262801002728010028280100292801002a2801002b2801002c2801002d2801002e2801002f280100302801003128010032280100332801003428010035280100362801003728010038280100392801003a2801003b2801003c2801003d2801003e2801003f280100402801004128010042280100432801004428010045280100462801004728010048280100492801004a2801004b2801004c2801004d2801004e2801004f280100502801005128010052280100532801005428010055280100562801005728010058280100592801005a2801005b2801005c2801005d2801005e2801005f280100602801006128010062280100632801006428010065280100662801006728010068280100692801006a2801006b2801006c2801006d2801006e2801006f280100702801007128010072280100732801007428010075280100762801007728010078280100792801007a2801007b2801007c2801007d2801007e2801007f280100802801008128010082280100832801008428010085280100862801008728010088280100892801008a2801008b2801008c2801008d2801008e2801008f280100902801009128010092280100932801009428010095280100962801009728010098280100992801009a2801009b2801009c2801009d2801009e2801009f280100a0280100a1280100a2280100a3280100a4280100a5280100a6280100a7280100a8280100a9280100aa280100ab280100ac280100ad280100ae280100af280100b0280100b1280100b2280100b3280100b4280100b5280100b6280100b7280100b8280100b9280100ba280100bb280100bc280100bd280100be280100bf280100c0280100c1280100c2280100c3280100c4280100c5280100c6280100c7280100c8280100c9280100ca280100cb280100cc280100cd280100ce280100cf280100d0280100d1280100d2280100d3280100d4280100d5280100d6280100d7280100d8280100d9280100da280100db280100dc280100dd280100de280100df280100e0280100e1280100e2280100e3280100e4280100e5280100e6280100e7280100e8280100e9280100ea280100eb280100ec280100ed280100ee280100ef280100f0280100f1280100f2280100f3280100f4280100f5280100f6280100f7280100f8280100f9280100fa280100fb280100fc280100fd280100fe280100ff280100002901000129010002290100032901000429010005290100062901000729010008290100092901000a2901000b2901000c2901000d2901000e2901000f290100102901001129010012290100132901001429010015290100162901001729010018290100192901001a2901001b2901001c2901001d2901001e2901001f290100202901002129010022290100232901002429010025290100262901002729010028290100292901002a2901002b2901002c2901002d2901002e2901002f290100302901003129010032290100332901003429010035290100362901003729010038290100392901003a2901003b2901003c2901003d2901003e2901003f290100402901004129010042290100432901004429010045290100462901004729010048290100492901004a2901004b2901004c2901004d2901004e2901004f290100502901005129010052290100532901005429010055290100562901005729010058290100592901005a2901005b2901005c2901005d2901005e2901005f290100602901006129010062290100632901006429010065290100662901006729010068290100692901006a2901006b2901006c2901006d2901006e2901006f290100702901007129010072290100732901007429010075290100762901007729010078290100792901007a2901007b2901007c2901007d2901007e2901007f290100802901008129010082290100832901008429010085290100862901008729010088290100892901008a2901008b2901008c2901008d2901008e2901008f290100902901009129010092290100932901009429010095290100962901009729010098290100992901009a2901009b2901009c2901009d2901009e2901009f290100a0290100a1290100a2290100a3290100a4290100a5290100a6290100a7290100a8290100a9290100aa290100ab290100ac290100ad290100ae290100af290100b0290100b1290100b2290100b3290100b4290100b5290100b6290100b7290100b8290100b9290100ba290100bb290100bc290100bd290100be290100bf290100c0290100c1290100c2290100c3290100c4290100c5290100c6290100c7290100c8290100c9290100ca290100cb290100cc290100cd290100ce290100cf290100d0290100d1290100d2290100d3290100d4290100d5290100d6290100d7290100d8290100d9290100da290100db290100dc290100dd290100de290100df290100e0290100e1290100e2290100e3290100e4290100e5290100e6290100e7290100e8290100e9290100ea290100eb290100ec290100ed290100ee290100ef290100f0290100f1290100f2290100f3290100f4290100f5290100f6290100f7290100f8290100f9290100fa290100fb290100fc290100fd290100fe290100ff290100002a0100012a0100022a0100032a0100042a0100052a0100062a0100072a0100082a0100092a01000a2a01000b2a01000c2a01000d2a01000e2a01000f2a0100102a0100112a0100122a0100132a0100142a0100152a0100162a0100172a0100182a0100192a01001a2a01001b2a01001c2a01001d2a01001e2a01001f2a0100202a0100212a0100222a0100232a0100242a0100252a0100262a0100272a0100282a0100292a01002a2a01002b2a01002c2a01002d2a01002e2a01002f2a0100302a0100312a0100322a0100332a0100342a0100352a0100362a0100372a0100382a0100392a01003a2a01003b2a01003c2a01003d2a01003e2a01003f2a0100402a0100412a0100422a0100432a0100442a0100452a0100462a0100472a0100482a0100492a01004a2a01004b2a01004c2a01004d2a01004e2a01004f2a0100502a0100512a0100522a0100532a0100542a0100552a0100562a0100572a0100582a0100592a01005a2a01005b2a01005c2a01005d2a01005e2a01005f2a0100602a0100612a0100622a0100632a0100642a0100652a0100662a0100672a0100682a0100692a01006a2a01006b2a01006c2a01006d2a01006e2a01006f2a0100702a0100712a0100722a0100732a0100742a0100752a0100762a0100772a0100782a0100792a01007a2a01007b2a01007c2a01007d2a01007e2a01007f2a0100802a0100812a0100822a0100832a0100842a0100852a0100862a0100872a0100882a0100892a01008a2a01008b2a01008c2a01008d2a01008e2a01008f2a0100902a0100912a0100922a0100932a0100942a0100952a0100962a0100972a0100982a0100992a01009a2a01009b2a01009c2a01009d2a01009e2a01009f2a0100a02a0100a12a0100a22a0100a32a0100a42a0100a52a0100a62a0100a72a0100a82a0100a92a0100aa2a0100ab2a0100ac2a0100ad2a0100ae2a0100af2a0100b02a0100b12a0100b22a0100b32a0100b42a0100b52a0100b62a0100b72a0100b82a0100b92a0100ba2a0100bb2a0100bc2a0100bd2a0100be2a0100bf2a0100c02a0100c12a0100c22a0100c32a0100c42a0100c52a0100c62a0100c72a0100c82a0100c92a0100ca2a0100cb2a0100cc2a0100cd2a0100ce2a0100cf2a0100d02a0100d12a0100d22a0100d32a0100d42a0100d52a0100d62a0100d72a0100d82a0100d92a0100da2a0100db2a0100dc2a0100dd2a0100de2a0100df2a0100e02a0100e12a0100e22a0100e32a0100e42a0100e52a0100e62a0100e72a0100e82a0100e92a0100ea2a0100eb2a0100ec2a0100ed2a0100ee2a0100ef2a0100f02a0100f12a0100f22a0100f32a0100f42a0100f52a0100f62a0100f72a0100f82a0100f92a0100fa2a0100fb2a0100fc2a0100fd2a0100fe2a0100ff2a0100002b0100012b0100022b0100032b0100042b0100052b0100062b0100072b0100082b0100092b01000a2b01000b2b01000c2b01000d2b01000e2b01000f2b0100102b0100112b0100122b0100132b0100142b0100152b0100162b0100172b0100182b0100192b01001a2b01001b2b01001c2b01001d2b01001e2b01001f2b0100202b0100212b0100222b0100232b0100242b0100252b0100262b0100272b0100282b0100292b01002a2b01002b2b01002c2b01002d2b01002e2b01002f2b0100302b0100312b0100322b0100332b0100342b0100352b0100362b0100372b0100382b0100392b01003a2b01003b2b01003c2b01003d2b01003e2b01003f2b0100402b0100412b0100422b0100432b0100442b0100452b0100462b0100472b0100482b0100492b01004a2b01004b2b01004c2b01004d2b01004e2b01004f2b0100502b0100512b0100522b0100532b0100542b0100552b0100562b0100572b0100582b0100592b01005a2b01005b2b01005c2b01005d2b01005e2b01005f2b0100602b0100612b0100622b0100632b0100642b0100652b0100662b0100672b0100682b0100692b01006a2b01006b2b01006c2b01006d2b01006e2b01006f2b0100702b0100712b0100722b0100732b0100742b0100752b0100762b0100772b0100782b0100792b01007a2b01007b2b01007c2b01007d2b01007e2b01007f2b0100802b0100812b0100822b0100832b0100842b0100852b0100862b0100872b0100882b0100892b01008a2b01008b2b01008c2b01008d2b01008e2b01008f2b0100902b0100912b0100922b0100932b0100942b0100952b0100962b0100972b0100982b0100992b01009a2b01009b2b01009c2b01009d2b01009e2b01009f2b0100a02b0100a12b0100a22b0100a32b0100a42b0100a52b0100a62b0100a72b0100a82b0100a92b0100aa2b0100ab2b0100ac2b0100ad2b0100ae2b0100af2b0100b02b0100b12b0100b22b0100b32b0100b42b0100b52b0100b62b0100b72b0100b82b0100b92b0100ba2b0100bb2b0100bc2b0100bd2b0100be2b0100bf2b0100c02b0100c12b0100c22b0100c32b0100c42b0100c52b0100c62b0100c72b0100c82b0100c92b0100ca2b0100cb2b0100cc2b0100cd2b0100ce2b0100cf2b0100d02b0100d12b0100d22b0100d32b0100d42b0100d52b0100d62b0100d72b0100d82b0100d92b0100da2b0100db2b0100dc2b0100dd2b0100de2b0100df2b0100e02b0100e12b0100e22b0100e32b0100e42b0100e52b0100e62b0100e72b0100e82b0100e92b0100ea2b0100eb2b0100ec2b0100ed2b0100ee2b0100ef2b0100f02b0100f12b0100f22b0100f32b0100f42b0100f52b0100f62b0100f72b0100f82b0100f92b0100fa2b0100fb2b0100fc2b0100fd2b0100fe2b0100ff2b0100002c0100012c0100022c0100032c0100042c0100052c0100062c0100072c0100082c0100092c01000a2c01000b2c01000c2c01000d2c01000e2c01000f2c0100102c0100112c0100122c0100132c0100142c0100152c0100162c0100172c0100182c0100192c01001a2c01001b2c01001c2c01001d2c01001e2c01001f2c0100202c0100212c0100222c0100232c0100242c0100252c0100262c0100272c0100282c0100292c01002a2c01002b2c01002c2c01002d2c01002e2c01002f2c0100302c0100312c0100322c0100332c0100342c0100352c0100362c0100372c0100382c0100392c01003a2c01003b2c01003c2c01003d2c01003e2c01003f2c0100402c0100412c0100422c0100432c0100442c0100452c0100462c0100472c0100482c0100492c01004a2c01004b2c01004c2c01004d2c01004e2c01004f2c0100502c0100512c0100522c0100532c0100542c0100552c0100562c0100572c0100582c0100592c01005a2c01005b2c01005c2c01005d2c01005e2c01005f2c0100602c0100612c0100622c0100632c0100642c0100652c0100662c0100672c0100682c0100692c01006a2c01006b2c01006c2c01006d2c01006e2c01006f2c0100702c0100712c0100722c0100732c0100742c0100752c0100762c0100772c0100782c0100792c01007a2c01007b2c01007c2c01007d2c01007e2c01007f2c0100802c0100812c0100822c0100832c0100842c0100852c0100862c0100872c0100882c0100892c01008a2c01008b2c01008c2c01008d2c01008e2c01008f2c0100902c0100912c0100922c0100932c0100942c0100952c0100962c0100972c0100982c0100992c01009a2c01009b2c01009c2c01009d2c01009e2c01009f2c0100a02c0100a12c0100a22c0100a32c0100a42c0100a52c0100a62c0100a72c0100a82c0100a92c0100aa2c0100ab2c0100ac2c0100ad2c0100ae2c0100af2c0100b02c0100b12c0100b22c0100b32c0100b42c0100b52c0100b62c0100b72c0100b82c0100b92c0100ba2c0100bb2c0100bc2c0100bd2c0100be2c0100bf2c0100c02c0100c12c0100c22c0100c32c0100c42c0100c52c0100c62c0100c72c0100c82c0100c92c0100ca2c0100cb2c0100cc2c0100cd2c0100ce2c0100cf2c0100d02c0100d12c0100d22c0100d32c0100d42c0100d52c0100d62c0100d72c0100d82c0100d92c0100da2c0100db2c0100dc2c0100dd2c0100de2c0100df2c0100e02c0100e12c0100e22c0100e32c0100e42c0100e52c0100e62c0100e72c0100e82c0100e92c0100ea2c0100eb2c0100ec2c0100ed2c0100ee2c0100ef2c0100f02c0100f12c0100f22c0100f32c0100f42c0100f52c0100f62c0100f72c0100f82c0100f92c0100fa2c0100fb2c0100fc2c0100fd2c0100fe2c0100ff2c0100002d0100012d0100022d0100032d0100042d0100052d0100062d0100072d0100082d0100092d01000a2d01000b2d01000c2d01000d2d01000e2d01000f2d0100102d0100112d0100122d0100132d0100142d0100152d0100162d0100172d0100182d0100192d01001a2d01001b2d01001c2d01001d2d01001e2d01001f2d0100202d0100212d0100222d0100232d0100242d0100252d0100262d0100272d0100282d0100292d01002a2d01002b2d01002c2d01002d2d01002e2d01002f2d0100302d0100312d0100322d0100332d0100342d0100352d0100362d0100372d0100382d0100392d01003a2d01003b2d01003c2d01003d2d01003e2d01003f2d0100402d0100412d0100422d0100432d0100442d0100452d0100462d0100472d0100482d0100492d01004a2d01004b2d01004c2d01004d2d01004e2d01004f2d0100502d0100512d0100522d0100532d0100542d0100552d0100562d0100572d0100582d0100592d01005a2d01005b2d01005c2d01005d2d01005e2d01005f2d0100602d0100612d0100622d0100632d0100642d0100652d0100662d0100672d0100682d0100692d01006a2d01006b2d01006c2d01006d2d01006e2d01006f2d0100702d0100712d0100722d0100732d0100742d0100752d0100762d0100772d0100782d0100792d01007a2d01007b2d01007c2d01007d2d01007e2d01007f2d0100802d0100812d0100822d0100832d0100842d0100852d0100862d0100872d0100882d0100892d01008a2d01008b2d01008c2d01008d2d01008e2d01008f2d0100902d0100912d0100922d0100932d0100942d0100952d0100962d0100972d0100982d0100992d01009a2d01009b2d01009c2d01009d2d01009e2d01009f2d0100a02d0100a12d0100a22d0100a32d0100a42d0100a52d0100a62d0100a72d0100a82d0100a92d0100aa2d0100ab2d0100ac2d0100ad2d0100ae2d0100af2d0100b02d0100b12d0100b22d0100b32d0100b42d0100b52d0100b62d0100b72d0100b82d0100b92d0100ba2d0100bb2d0100bc2d0100bd2d0100be2d0100bf2d0100c02d0100c12d0100c22d0100c32d0100c42d0100c52d0100c62d0100c72d0100c82d0100c92d0100ca2d0100cb2d0100cc2d0100cd2d0100ce2d0100cf2d0100d02d0100d12d0100d22d0100d32d0100d42d0100d52d0100d62d0100d72d0100d82d0100d92d0100da2d0100db2d0100dc2d0100dd2d0100de2d0100df2d0100e02d0100e12d0100e22d0100e32d0100e42d0100e52d0100e62d0100e72d0100e82d0100e92d0100ea2d0100eb2d0100ec2d0100ed2d0100ee2d0100ef2d0100f02d0100f12d0100f22d0100f32d0100f42d0100f52d0100f62d0100f72d0100f82d0100f92d0100fa2d0100fb2d0100fc2d0100fd2d0100fe2d0100ff2d0100002e0100012e0100022e0100032e0100042e0100052e0100062e0100072e0100082e0100092e01000a2e01000b2e01000c2e01000d2e01000e2e01000f2e0100102e0100112e0100122e0100132e0100142e0100152e0100162e0100172e0100182e0100192e01001a2e01001b2e01001c2e01001d2e01001e2e01001f2e0100202e0100212e0100222e0100232e0100242e0100252e0100262e0100272e0100282e0100292e01002a2e01002b2e01002c2e01002d2e01002e2e01002f2e0100302e0100312e0100322e0100332e0100342e0100352e0100362e0100372e0100382e0100392e01003a2e01003b2e01003c2e01003d2e01003e2e01003f2e0100402e0100412e0100422e0100432e0100442e0100452e0100462e0100472e0100482e0100492e01004a2e01004b2e01004c2e01004d2e01004e2e01004f2e0100502e0100512e0100522e0100532e0100542e0100552e0100562e0100572e0100582e0100592e01005a2e01005b2e01005c2e01005d2e01005e2e01005f2e0100602e0100612e0100622e0100632e0100642e0100652e0100662e0100672e0100682e0100692e01006a2e01006b2e01006c2e01006d2e01006e2e01006f2e0100702e0100712e0100722e0100732e0100742e0100752e0100762e0100772e0100782e0100792e01007a2e01007b2e01007c2e01007d2e01007e2e01007f2e0100802e0100812e0100822e0100832e0100842e0100852e0100862e0100872e0100882e0100892e01008a2e01008b2e01008c2e01008d2e01008e2e01008f2e0100902e0100912e0100922e0100932e0100942e0100952e0100962e0100972e0100982e0100992e01009a2e01009b2e01009c2e01009d2e01009e2e01009f2e0100a02e0100a12e0100a22e0100a32e0100a42e0100a52e0100a62e0100a72e0100a82e0100a92e0100aa2e0100ab2e0100ac2e0100ad2e0100ae2e0100af2e0100b02e0100b12e0100b22e0100b32e0100b42e0100b52e0100b62e0100b72e0100b82e0100b92e0100ba2e0100bb2e0100bc2e0100bd2e0100be2e0100bf2e0100c02e0100c12e0100c22e0100c32e0100c42e0100c52e0100c62e0100c72e0100c82e0100c92e0100ca2e0100cb2e0100cc2e0100cd2e0100ce2e0100cf2e0100d02e0100d12e0100d22e0100d32e0100d42e0100d52e0100d62e0100d72e0100d82e0100d92e0100da2e0100db2e0100dc2e0100dd2e0100de2e0100df2e0100e02e0100e12e0100e22e0100e32e0100e42e0100e52e0100e62e0100e72e0100e82e0100e92e0100ea2e0100eb2e0100ec2e0100ed2e0100ee2e0100ef2e0100f02e0100f12e0100f22e0100f32e0100f42e0100f52e0100f62e0100f72e0100f82e0100f92e0100fa2e0100fb2e0100fc2e0100fd2e0100fe2e0100ff2e0100002f0100012f0100022f0100032f0100042f0100052f0100062f0100072f0100082f0100092f01000a2f01000b2f01000c2f01000d2f01000e2f01000f2f0100102f0100112f0100122f0100132f0100142f0100152f0100162f0100172f0100182f0100192f01001a2f01001b2f01001c2f01001d2f01001e2f01001f2f0100202f0100212f0100222f0100232f0100242f0100252f0100262f0100272f0100282f0100292f01002a2f01002b2f01002c2f01002d2f01002e2f01002f2f0100302f0100312f0100322f0100332f0100342f0100352f0100362f0100372f0100382f0100392f01003a2f01003b2f01003c2f01003d2f01003e2f01003f2f0100402f0100412f0100422f0100432f0100442f0100452f0100462f0100472f0100482f0100492f01004a2f01004b2f01004c2f01004d2f01004e2f01004f2f0100502f0100512f0100522f0100532f0100542f0100552f0100562f0100572f0100582f0100592f01005a2f01005b2f01005c2f01005d2f01005e2f01005f2f0100602f0100612f0100622f0100632f0100642f0100652f0100662f0100672f0100682f0100692f01006a2f01006b2f01006c2f01006d2f01006e2f01006f2f0100702f0100712f0100722f0100732f0100742f0100752f0100762f0100772f0100782f0100792f01007a2f01007b2f01007c2f01007d2f01007e2f01007f2f0100802f0100812f0100822f0100832f0100842f0100852f0100862f0100872f0100882f0100892f01008a2f01008b2f01008c2f01008d2f01008e2f01008f2f0100902f0100912f0100922f0100932f0100942f0100952f0100962f0100972f0100982f0100992f01009a2f01009b2f01009c2f01009d2f01009e2f01009f2f0100a02f0100a12f0100a22f0100a32f0100a42f0100a52f0100a62f0100a72f0100a82f0100a92f0100aa2f0100ab2f0100ac2f0100ad2f0100ae2f0100af2f0100b02f0100b12f0100b22f0100b32f0100b42f0100b52f0100b62f0100b72f0100b82f0100b92f0100ba2f0100bb2f0100bc2f0100bd2f0100be2f0100bf2f0100c02f0100c12f0100c22f0100c32f0100c42f0100c52f0100c62f0100c72f0100c82f0100c92f0100ca2f0100cb2f0100cc2f0100cd2f0100ce2f0100cf2f0100d02f0100d12f0100d22f0100d32f0100d42f0100d52f0100d62f0100d72f0100d82f0100d92f0100da2f0100db2f0100dc2f0100dd2f0100de2f0100df2f0100e02f0100e12f0100e22f0100e32f0100e42f0100e52f0100e62f0100e72f0100e82f0100e92f0100ea2f0100eb2f0100ec2f0100ed2f0100ee2f0100ef2f0100f02f0100f12f0100f22f0100f32f0100f42f0100f52f0100f62f0100f72f0100f82f0100f92f0100fa2f0100fb2f0100fc2f0100fd2f0100fe2f0100ff2f0100003001000130010002300100033001000430010005300100063001000730010008300100093001000a3001000b3001000c3001000d3001000e3001000f300100103001001130010012300100133001001430010015300100163001001730010018300100193001001a3001001b3001001c3001001d3001001e3001001f300100203001002130010022300100233001002430010025300100263001002730010028300100293001002a3001002b3001002c3001002d3001002e3001002f300100303001003130010032300100333001003430010035300100363001003730010038300100393001003a3001003b3001003c3001003d3001003e3001003f300100403001004130010042300100433001004430010045300100463001004730010048300100493001004a3001004b3001004c3001004d3001004e3001004f300100503001005130010052300100533001005430010055300100563001005730010058300100593001005a3001005b3001005c3001005d3001005e3001005f300100603001006130010062300100633001006430010065300100663001006730010068300100693001006a3001006b3001006c3001006d3001006e3001006f300100703001007130010072300100733001007430010075300100763001007730010078300100793001007a3001007b3001007c3001007d3001007e3001007f300100803001008130010082300100833001008430010085300100863001008730010088300100893001008a3001008b3001008c3001008d3001008e3001008f300100903001009130010092300100933001009430010095300100963001009730010098300100993001009a3001009b3001009c3001009d3001009e3001009f300100a0300100a1300100a2300100a3300100a4300100a5300100a6300100a7300100a8300100a9300100aa300100ab300100ac300100ad300100ae300100af300100b0300100b1300100b2300100b3300100b4300100b5300100b6300100b7300100b8300100b9300100ba300100bb300100bc300100bd300100be300100bf300100c0300100c1300100c2300100c3300100c4300100c5300100c6300100c7300100c8300100c9300100ca300100cb300100cc300100cd300100ce300100cf300100d0300100d1300100d2300100d3300100d4300100d5300100d6300100d7300100d8300100d9300100da300100db300100dc300100dd300100de300100df300100e0300100e1300100e2300100e3300100e4300100e5300100e6300100e7300100e8300100e9300100ea300100eb300100ec300100ed300100ee300100ef300100f0300100f1300100f2300100f3300100f4300100f5300100f6300100f7300100f8300100f9300100fa300100fb300100fc300100fd300100fe300100ff300100003101000131010002310100033101000431010005310100063101000731010008310100093101000a3101000b3101000c3101000d3101000e3101000f310100103101001131010012310100133101001431010015310100163101001731010018310100193101001a3101001b3101001c3101001d3101001e3101001f310100203101002131010022310100233101002431010025310100263101002731010028310100293101002a3101002b3101002c3101002d3101002e3101002f310100303101003131010032310100333101003431010035310100363101003731010038310100393101003a3101003b3101003c3101003d3101003e3101003f310100403101004131010042310100433101004431010045310100463101004731010048310100493101004a3101004b3101004c3101004d3101004e3101004f310100503101005131010052310100533101005431010055310100563101005731010058310100593101005a3101005b3101005c3101005d3101005e3101005f310100603101006131010062310100633101006431010065310100663101006731010068310100693101006a3101006b3101006c3101006d3101006e3101006f310100703101007131010072310100733101007431010075310100763101007731010078310100793101007a3101007b3101007c3101007d3101007e3101007f310100803101008131010082310100833101008431010085310100863101008731010088310100893101008a3101008b3101008c3101008d3101008e3101008f310100903101009131010092310100933101009431010095310100963101009731010098310100993101009a3101009b3101009c3101009d3101009e3101009f310100a0310100a1310100a2310100a3310100a4310100a5310100a6310100a7310100a8310100a9310100aa310100ab310100ac310100ad310100ae310100af310100b0310100b1310100b2310100b3310100b4310100b5310100b6310100b7310100b8310100b9310100ba310100bb310100bc310100bd310100be310100bf310100c0310100c1310100c2310100c3310100c4310100c5310100c6310100c7310100c8310100c9310100ca310100cb310100cc310100cd310100ce310100cf310100d0310100d1310100d2310100d3310100d4310100d5310100d6310100d7310100d8310100d9310100da310100db310100dc310100dd310100de310100df310100e0310100e1310100e2310100e3310100e4310100e5310100e6310100e7310100e8310100e9310100ea310100eb310100ec310100ed310100ee310100ef310100f0310100f1310100f2310100f3310100f4310100f5310100f6310100f7310100f8310100f9310100fa310100fb310100fc310100fd310100fe310100ff310100003201000132010002320100033201000432010005320100063201000732010008320100093201000a3201000b3201000c3201000d3201000e3201000f320100103201001132010012320100133201001432010015320100163201001732010018320100193201001a3201001b3201001c3201001d3201001e3201001f320100203201002132010022320100233201002432010025320100263201002732010028320100293201002a3201002b3201002c3201002d3201002e3201002f320100303201003132010032320100333201003432010035320100363201003732010038320100393201003a3201003b3201003c3201003d3201003e3201003f320100403201004132010042320100433201004432010045320100463201004732010048320100493201004a3201004b3201004c3201004d3201004e3201004f320100503201005132010052320100533201005432010055320100563201005732010058320100593201005a3201005b3201005c3201005d3201005e3201005f320100603201006132010062320100633201006432010065320100663201006732010068320100693201006a3201006b3201006c3201006d3201006e3201006f320100703201007132010072320100733201007432010075320100763201007732010078320100793201007a3201007b3201007c3201007d3201007e3201007f320100803201008132010082320100833201008432010085320100863201008732010088320100893201008a3201008b3201008c3201008d3201008e3201008f320100903201009132010092320100933201009432010095320100963201009732010098320100993201009a3201009b3201009c3201009d3201009e3201009f320100a0320100a1320100a2320100a3320100a4320100a5320100a6320100a7320100a8320100a9320100aa320100ab320100ac320100ad320100ae320100af320100b0320100b1320100b2320100b3320100b4320100b5320100b6320100b7320100b8320100b9320100ba320100bb320100bc320100bd320100be320100bf320100c0320100c1320100c2320100c3320100c4320100c5320100c6320100c7320100c8320100c9320100ca320100cb320100cc320100cd320100ce320100cf320100d0320100d1320100d2320100d3320100d4320100d5320100d6320100d7320100d8320100d9320100da320100db320100dc320100dd320100de320100df320100e0320100e1320100e2320100e3320100e4320100e5320100e6320100e7320100e8320100e9320100ea320100eb320100ec320100ed320100ee320100ef320100f0320100f1320100f2320100f3320100f4320100f5320100f6320100f7320100f8320100f9320100fa320100fb320100fc320100fd320100fe320100ff320100003301000133010002330100033301000433010005330100063301000733010008330100093301000a3301000b3301000c3301000d3301000e3301000f330100103301001133010012330100133301001433010015330100163301001733010018330100193301001a3301001b3301001c3301001d3301001e3301001f330100203301002133010022330100233301002433010025330100263301002733010028330100293301002a3301002b3301002c3301002d3301002e3301002f330100303301003133010032330100333301003433010035330100363301003733010038330100393301003a3301003b3301003c3301003d3301003e3301003f330100403301004133010042330100433301004433010045330100463301004733010048330100493301004a3301004b3301004c3301004d3301004e3301004f330100503301005133010052330100533301005433010055330100563301005733010058330100593301005a3301005b3301005c3301005d3301005e3301005f330100603301006133010062330100633301006433010065330100663301006733010068330100693301006a3301006b3301006c3301006d3301006e3301006f330100703301007133010072330100733301007433010075330100763301007733010078330100793301007a3301007b3301007c3301007d3301007e3301007f330100803301008133010082330100833301008433010085330100863301008733010088330100893301008a3301008b3301008c3301008d3301008e3301008f330100903301009133010092330100933301009433010095330100963301009733010098330100993301009a3301009b3301009c3301009d3301009e3301009f330100a0330100a1330100a2330100a3330100a4330100a5330100a6330100a7330100a8330100a9330100aa330100ab330100ac330100ad330100ae330100af330100b0330100b1330100b2330100b3330100b4330100b5330100b6330100b7330100b8330100b9330100ba330100bb330100bc330100bd330100be330100bf330100c0330100c1330100c2330100c3330100c4330100c5330100c6330100c7330100c8330100c9330100ca330100cb330100cc330100cd330100ce330100cf330100d0330100d1330100d2330100d3330100d4330100d5330100d6330100d7330100d8330100d9330100da330100db330100dc330100dd330100de330100df330100e0330100e1330100e2330100e3330100e4330100e5330100e6330100e7330100e8330100e9330100ea330100eb330100ec330100ed330100ee330100ef330100f0330100f1330100f2330100f3330100f4330100f5330100f6330100f7330100f8330100f9330100fa330100fb330100fc330100fd330100fe330100ff330100003401000134010002340100033401000434010005340100063401000734010008340100093401000a3401000b3401000c3401000d3401000e3401000f340100103401001134010012340100133401001434010015340100163401001734010018340100193401001a3401001b3401001c3401001d3401001e3401001f340100203401002134010022340100233401002434010025340100263401002734010028340100293401002a3401002b3401002c3401002d3401002e3401002f340100303401003134010032340100333401003434010035340100363401003734010038340100393401003a3401003b3401003c3401003d3401003e3401003f340100403401004134010042340100433401004434010045340100463401004734010048340100493401004a3401004b3401004c3401004d3401004e3401004f340100503401005134010052340100533401005434010055340100563401005734010058340100593401005a3401005b3401005c3401005d3401005e3401005f340100603401006134010062340100633401006434010065340100663401006734010068340100693401006a3401006b3401006c3401006d3401006e3401006f340100703401007134010072340100733401007434010075340100763401007734010078340100793401007a3401007b3401007c3401007d3401007e3401007f340100803401008134010082340100833401008434010085340100863401008734010088340100893401008a3401008b3401008c3401008d3401008e3401008f340100903401009134010092340100933401009434010095340100963401009734010098340100993401009a3401009b3401009c3401009d3401009e3401009f340100a0340100a1340100a2340100a3340100a4340100a5340100a6340100a7340100a8340100a9340100aa340100ab340100ac340100ad340100ae340100af340100b0340100b1340100b2340100b3340100b4340100b5340100b6340100b7340100b8340100b9340100ba340100bb340100bc340100bd340100be340100bf340100c0340100c1340100c2340100c3340100c4340100c5340100c6340100c7340100c8340100c9340100ca340100cb340100cc340100cd340100ce340100cf340100d0340100d1340100d2340100d3340100d4340100d5340100d6340100d7340100d8340100d9340100da340100db340100dc340100dd340100de340100df340100e0340100e1340100e2340100e3340100e4340100e5340100e6340100e7340100e8340100e9340100ea340100eb340100ec340100ed340100ee340100ef340100f0340100f1340100f2340100f3340100f4340100f5340100f6340100f7340100f8340100f9340100fa340100fb340100fc340100fd340100fe340100ff340100003501000135010002350100033501000435010005350100063501000735010008350100093501000a3501000b3501000c3501000d3501000e3501000f350100103501001135010012350100133501001435010015350100163501001735010018350100193501001a3501001b3501001c3501001d3501001e3501001f350100203501002135010022350100233501002435010025350100263501002735010028350100293501002a3501002b3501002c3501002d3501002e3501002f350100303501003135010032350100333501003435010035350100363501003735010038350100393501003a3501003b3501003c3501003d3501003e3501003f350100403501004135010042350100433501004435010045350100463501004735010048350100493501004a3501004b3501004c3501004d3501004e3501004f350100503501005135010052350100533501005435010055350100563501005735010058350100593501005a3501005b3501005c3501005d3501005e3501005f350100603501006135010062350100633501006435010065350100663501006735010068350100693501006a3501006b3501006c3501006d3501006e3501006f350100703501007135010072350100733501007435010075350100763501007735010078350100793501007a3501007b3501007c3501007d3501007e3501007f350100803501008135010082350100833501008435010085350100863501008735010088350100893501008a3501008b3501008c3501008d3501008e3501008f350100903501009135010092350100933501009435010095350100963501009735010098350100993501009a3501009b3501009c3501009d3501009e3501009f350100a0350100a1350100a2350100a3350100a4350100a5350100a6350100a7350100a8350100a9350100aa350100ab350100ac350100ad350100ae350100af350100b0350100b1350100b2350100b3350100b4350100b5350100b6350100b7350100b8350100b9350100ba350100bb350100bc350100bd350100be350100bf350100c0350100c1350100c2350100c3350100c4350100c5350100c6350100c7350100c8350100c9350100ca350100cb350100cc350100cd350100ce350100cf350100d0350100d1350100d2350100d3350100d4350100d5350100d6350100d7350100d8350100d9350100da350100db350100dc350100dd350100de350100df350100e0350100e1350100e2350100e3350100e4350100e5350100e6350100e7350100e8350100e9350100ea350100eb350100ec350100ed350100ee350100ef350100f0350100f1350100f2350100f3350100f4350100f5350100f6350100f7350100f8350100f9350100fa350100fb350100fc350100fd350100fe350100ff350100003601000136010002360100033601000436010005360100063601000736010008360100093601000a3601000b3601000c3601000d3601000e3601000f360100103601001136010012360100133601001436010015360100163601001736010018360100193601001a3601001b3601001c3601001d3601001e3601001f360100203601002136010022360100233601002436010025360100263601002736010028360100293601002a3601002b3601002c3601002d3601002e3601002f360100303601003136010032360100333601003436010035360100363601003736010038360100393601003a3601003b3601003c3601003d3601003e3601003f360100403601004136010042360100433601004436010045360100463601004736010048360100493601004a3601004b3601004c3601004d3601004e3601004f360100503601005136010052360100533601005436010055360100563601005736010058360100593601005a3601005b3601005c3601005d3601005e3601005f360100603601006136010062360100633601006436010065360100663601006736010068360100693601006a3601006b3601006c3601006d3601006e3601006f360100703601007136010072360100733601007436010075360100763601007736010078360100793601007a3601007b3601007c3601007d3601007e3601007f360100803601008136010082360100833601008436010085360100863601008736010088360100893601008a3601008b3601008c3601008d3601008e3601008f360100903601009136010092360100933601009436010095360100963601009736010098360100993601009a3601009b3601009c3601009d3601009e3601009f360100a0360100a1360100a2360100a3360100a4360100a5360100a6360100a7360100a8360100a9360100aa360100ab360100ac360100ad360100ae360100af360100b0360100b1360100b2360100b3360100b4360100b5360100b6360100b7360100b8360100b9360100ba360100bb360100bc360100bd360100be360100bf360100c0360100c1360100c2360100c3360100c4360100c5360100c6360100c7360100c8360100c9360100ca360100cb360100cc360100cd360100ce360100cf360100d0360100d1360100d2360100d3360100d4360100d5360100d6360100d7360100d8360100d9360100da360100db360100dc360100dd360100de360100df360100e0360100e1360100e2360100e3360100e4360100e5360100e6360100e7360100e8360100e9360100ea360100eb360100ec360100ed360100ee360100ef360100f0360100f1360100f2360100f3360100f4360100f5360100f6360100f7360100f8360100f9360100fa360100fb360100fc360100fd360100fe360100ff360100003701000137010002370100033701000437010005370100063701000737010008370100093701000a3701000b3701000c3701000d3701000e3701000f370100103701001137010012370100133701001437010015370100163701001737010018370100193701001a3701001b3701001c3701001d3701001e3701001f370100203701002137010022370100233701002437010025370100263701002737010028370100293701002a3701002b3701002c3701002d3701002e3701002f370100303701003137010032370100333701003437010035370100363701003737010038370100393701003a3701003b3701003c3701003d3701003e3701003f370100403701004137010042370100433701004437010045370100463701004737010048370100493701004a3701004b3701004c3701004d3701004e3701004f370100503701005137010052370100533701005437010055370100563701005737010058370100593701005a3701005b3701005c3701005d3701005e3701005f370100603701006137010062370100633701006437010065370100663701006737010068370100693701006a3701006b3701006c3701006d3701006e3701006f370100703701007137010072370100733701007437010075370100763701007737010078370100793701007a3701007b3701007c3701007d3701007e3701007f370100803701008137010082370100833701008437010085370100863701008737010088370100893701008a3701008b3701008c3701008d3701008e3701008f370100903701009137010092370100933701009437010095370100963701009737010098370100993701009a3701009b3701009c3701009d3701009e3701009f370100a0370100a1370100a2370100a3370100a4370100a5370100a6370100a7370100a8370100a9370100aa370100ab370100ac370100ad370100ae370100af370100b0370100b1370100b2370100b3370100b4370100b5370100b6370100b7370100b8370100b9370100ba370100bb370100bc370100bd370100be370100bf370100c0370100c1370100c2370100c3370100c4370100c5370100c6370100c7370100c8370100c9370100ca370100cb370100cc370100cd370100ce370100cf370100d0370100d1370100d2370100d3370100d4370100d5370100d6370100d7370100d8370100d9370100da370100db370100dc370100dd370100de370100df370100e0370100e1370100e2370100e3370100e4370100e5370100e6370100e7370100e8370100e9370100ea370100eb370100ec370100ed370100ee370100ef370100f0370100f1370100f2370100f3370100f4370100f5370100f6370100f7370100f8370100f9370100fa370100fb370100fc370100fd370100fe370100ff370100003801000138010002380100033801000438010005380100063801000738010008380100093801000a3801000b3801000c3801000d3801000e3801000f380100103801001138010012380100133801001438010015380100163801001738010018380100193801001a3801001b3801001c3801001d3801001e3801001f380100203801002138010022380100233801002438010025380100263801002738010028380100293801002a3801002b3801002c3801002d3801002e3801002f380100303801003138010032380100333801003438010035380100363801003738010038380100393801003a3801003b3801003c3801003d3801003e3801003f380100403801004138010042380100433801004438010045380100463801004738010048380100493801004a3801004b3801004c3801004d3801004e3801004f380100503801005138010052380100533801005438010055380100563801005738010058380100593801005a3801005b3801005c3801005d3801005e3801005f380100603801006138010062380100633801006438010065380100663801006738010068380100693801006a3801006b3801006c3801006d3801006e3801006f380100703801007138010072380100733801007438010075380100763801007738010078380100793801007a3801007b3801007c3801007d3801007e3801007f380100803801008138010082380100833801008438010085380100863801008738010088380100893801008a3801008b3801008c3801008d3801008e3801008f380100903801009138010092380100933801009438010095380100963801009738010098380100993801009a3801009b3801009c3801009d3801009e3801009f380100a0380100a1380100a2380100a3380100a4380100a5380100a6380100a7380100a8380100a9380100aa380100ab380100ac380100ad380100ae380100af380100b0380100b1380100b2380100b3380100b4380100b5380100b6380100b7380100b8380100b9380100ba380100bb380100bc380100bd380100be380100bf380100c0380100c1380100c2380100c3380100c4380100c5380100c6380100c7380100c8380100c9380100ca380100cb380100cc380100cd380100ce380100cf380100d0380100d1380100d2380100d3380100d4380100d5380100d6380100d7380100d8380100d9380100da380100db380100dc380100dd380100de380100df380100e0380100e1380100e2380100e3380100e4380100e5380100e6380100e7380100e8380100e9380100ea380100eb380100ec380100ed380100ee380100ef380100f0380100f1380100f2380100f3380100f4380100f5380100f6380100f7380100f8380100f9380100fa380100fb380100fc380100fd380100fe380100ff380100003901000139010002390100033901000439010005390100063901000739010008390100093901000a3901000b3901000c3901000d3901000e3901000f390100103901001139010012390100133901001439010015390100163901001739010018390100193901001a3901001b3901001c3901001d3901001e3901001f390100203901002139010022390100233901002439010025390100263901002739010028390100293901002a3901002b3901002c3901002d3901002e3901002f390100303901003139010032390100333901003439010035390100363901003739010038390100393901003a3901003b3901003c3901003d3901003e3901003f390100403901004139010042390100433901004439010045390100463901004739010048390100493901004a3901004b3901004c3901004d3901004e3901004f390100503901005139010052390100533901005439010055390100563901005739010058390100593901005a3901005b3901005c3901005d3901005e3901005f390100603901006139010062390100633901006439010065390100663901006739010068390100693901006a3901006b3901006c3901006d3901006e3901006f390100703901007139010072390100733901007439010075390100763901007739010078390100793901007a3901007b3901007c3901007d3901007e3901007f390100803901008139010082390100833901008439010085390100863901008739010088390100893901008a3901008b3901008c3901008d3901008e3901008f390100903901009139010092390100933901009439010095390100963901009739010098390100993901009a3901009b3901009c3901009d3901009e3901009f390100a0390100a1390100a2390100a3390100a4390100a5390100a6390100a7390100a8390100a9390100aa390100ab390100ac390100ad390100ae390100af390100b0390100b1390100b2390100b3390100b4390100b5390100b6390100b7390100b8390100b9390100ba390100bb390100bc390100bd390100be390100bf390100c0390100c1390100c2390100c3390100c4390100c5390100c6390100c7390100c8390100c9390100ca390100cb390100cc390100cd390100ce390100cf390100d0390100d1390100d2390100d3390100d4390100d5390100d6390100d7390100d8390100d9390100da390100db390100dc390100dd390100de390100df390100e0390100e1390100e2390100e3390100e4390100e5390100e6390100e7390100e8390100e9390100ea390100eb390100ec390100ed390100ee390100ef390100f0390100f1390100f2390100f3390100f4390100f5390100f6390100f7390100f8390100f9390100fa390100fb390100fc390100fd390100fe390100ff390100003a0100013a0100023a0100033a0100043a0100053a0100063a0100073a0100083a0100093a01000a3a01000b3a01000c3a01000d3a01000e3a01000f3a0100103a0100113a0100123a0100133a0100143a0100153a0100163a0100173a0100183a0100193a01001a3a01001b3a01001c3a01001d3a01001e3a01001f3a0100203a0100213a0100223a0100233a0100243a0100253a0100263a0100273a0100283a0100293a01002a3a01002b3a01002c3a01002d3a01002e3a01002f3a0100303a0100313a0100323a0100333a0100343a0100353a0100363a0100373a0100383a0100393a01003a3a01003b3a01003c3a01003d3a01003e3a01003f3a0100403a0100413a0100423a0100433a0100443a0100453a0100463a0100473a0100483a0100493a01004a3a01004b3a01004c3a01004d3a01004e3a01004f3a0100503a0100513a0100523a0100533a0100543a0100553a0100563a0100573a0100583a0100593a01005a3a01005b3a01005c3a01005d3a01005e3a01005f3a0100603a0100613a0100623a0100633a0100643a0100653a0100663a0100673a0100683a0100693a01006a3a01006b3a01006c3a01006d3a01006e3a01006f3a0100703a0100713a0100723a0100733a0100743a0100753a0100763a0100773a0100783a0100793a01007a3a01007b3a01007c3a01007d3a01007e3a01007f3a0100803a0100813a0100823a0100833a0100843a0100853a0100863a0100873a0100883a0100893a01008a3a01008b3a01008c3a01008d3a01008e3a01008f3a0100903a0100913a0100923a0100933a0100943a0100953a0100963a0100973a0100983a0100993a01009a3a01009b3a01009c3a01009d3a01009e3a01009f3a0100a03a0100a13a0100a23a0100a33a0100a43a0100a53a0100a63a0100a73a0100a83a0100a93a0100aa3a0100ab3a0100ac3a0100ad3a0100ae3a0100af3a0100b03a0100b13a0100b23a0100b33a0100b43a0100b53a0100b63a0100b73a0100b83a0100b93a0100ba3a0100bb3a0100bc3a0100bd3a0100be3a0100bf3a0100c03a0100c13a0100c23a0100c33a0100c43a0100c53a0100c63a0100c73a0100c83a0100c93a0100ca3a0100cb3a0100cc3a0100cd3a0100ce3a0100cf3a0100d03a0100d13a0100d23a0100d33a0100d43a0100d53a0100d63a0100d73a0100d83a0100d93a0100da3a0100db3a0100dc3a0100dd3a0100de3a0100df3a0100e03a0100e13a0100e23a0100e33a0100e43a0100e53a0100e63a0100e73a0100e83a0100e93a0100ea3a0100eb3a0100ec3a0100ed3a0100ee3a0100ef3a0100f03a0100f13a0100f23a0100f33a0100f43a0100f53a0100f63a0100f73a0100f83a0100f93a0100fa3a0100fb3a0100fc3a0100fd3a0100fe3a0100ff3a0100003b0100013b0100023b0100033b0100043b0100053b0100063b0100073b0100083b0100093b01000a3b01000b3b01000c3b01000d3b01000e3b01000f3b0100103b0100113b0100123b0100133b0100143b0100153b0100163b0100173b0100183b0100193b01001a3b01001b3b01001c3b01001d3b01001e3b01001f3b0100203b0100213b0100223b0100233b0100243b0100253b0100263b0100273b0100283b0100293b01002a3b01002b3b01002c3b01002d3b01002e3b01002f3b0100303b0100313b0100323b0100333b0100343b0100353b0100363b0100373b0100383b0100393b01003a3b01003b3b01003c3b01003d3b01003e3b01003f3b0100403b0100413b0100423b0100433b0100443b0100453b0100463b0100473b0100483b0100493b01004a3b01004b3b01004c3b01004d3b01004e3b01004f3b0100503b0100513b0100523b0100533b0100543b0100553b0100563b0100573b0100583b0100593b01005a3b01005b3b01005c3b01005d3b01005e3b01005f3b0100603b0100613b0100623b0100633b0100643b0100653b0100663b0100673b0100683b0100693b01006a3b01006b3b01006c3b01006d3b01006e3b01006f3b0100703b0100713b0100723b0100733b0100743b0100753b0100763b0100773b0100783b0100793b01007a3b01007b3b01007c3b01007d3b01007e3b01007f3b0100803b0100813b0100823b0100833b0100843b0100853b0100863b0100873b0100883b0100893b01008a3b01008b3b01008c3b01008d3b01008e3b01008f3b0100903b0100913b0100923b0100933b0100943b0100953b0100963b0100973b0100983b0100993b01009a3b01009b3b01009c3b01009d3b01009e3b01009f3b0100a03b0100a13b0100a23b0100a33b0100a43b0100a53b0100a63b0100a73b0100a83b0100a93b0100aa3b0100ab3b0100ac3b0100ad3b0100ae3b0100af3b0100b03b0100b13b0100b23b0100b33b0100b43b0100b53b0100b63b0100b73b0100b83b0100b93b0100ba3b0100bb3b0100bc3b0100bd3b0100be3b0100bf3b0100c03b0100c13b0100c23b0100c33b0100c43b0100c53b0100c63b0100c73b0100c83b0100c93b0100ca3b0100cb3b0100cc3b0100cd3b0100ce3b0100cf3b0100d03b0100d13b0100d23b0100d33b0100d43b0100d53b0100d63b0100d73b0100d83b0100d93b0100da3b0100db3b0100dc3b0100dd3b0100de3b0100df3b0100e03b0100e13b0100e23b0100e33b0100e43b0100e53b0100e63b0100e73b0100e83b0100e93b0100ea3b0100eb3b0100ec3b0100ed3b0100ee3b0100ef3b0100f03b0100f13b0100f23b0100f33b0100f43b0100f53b0100f63b0100f73b0100f83b0100f93b0100fa3b0100fb3b0100fc3b0100fd3b0100fe3b0100ff3b0100003c0100013c0100023c0100033c0100043c0100053c0100063c0100073c0100083c0100093c01000a3c01000b3c01000c3c01000d3c01000e3c01000f3c0100103c0100113c0100123c0100133c0100143c0100153c0100163c0100173c0100183c0100193c01001a3c01001b3c01001c3c01001d3c01001e3c01001f3c0100203c0100213c0100223c0100233c0100243c0100253c0100263c0100273c0100283c0100293c01002a3c01002b3c01002c3c01002d3c01002e3c01002f3c0100303c0100313c0100323c0100333c0100343c0100353c0100363c0100373c0100383c0100393c01003a3c01003b3c01003c3c01003d3c01003e3c01003f3c0100403c0100413c0100423c0100433c0100443c0100453c0100463c0100473c0100483c0100493c01004a3c01004b3c01004c3c01004d3c01004e3c01004f3c0100503c0100513c0100523c0100533c0100543c0100553c0100563c0100573c0100583c0100593c01005a3c01005b3c01005c3c01005d3c01005e3c01005f3c0100603c0100613c0100623c0100633c0100643c0100653c0100663c0100673c0100683c0100693c01006a3c01006b3c01006c3c01006d3c01006e3c01006f3c0100703c0100713c0100723c0100733c0100743c0100753c0100763c0100773c0100783c0100793c01007a3c01007b3c01007c3c01007d3c01007e3c01007f3c0100803c0100813c0100823c0100833c0100843c0100853c0100863c0100873c0100883c0100893c01008a3c01008b3c01008c3c01008d3c01008e3c01008f3c0100903c0100913c0100923c0100933c0100943c0100953c0100963c0100973c0100983c0100993c01009a3c01009b3c01009c3c01009d3c01009e3c01009f3c0100a03c0100a13c0100a23c0100a33c0100a43c0100a53c0100a63c0100a73c0100a83c0100a93c0100aa3c0100ab3c0100ac3c0100ad3c0100ae3c0100af3c0100b03c0100b13c0100b23c0100b33c0100b43c0100b53c0100b63c0100b73c0100b83c0100b93c0100ba3c0100bb3c0100bc3c0100bd3c0100be3c0100bf3c0100c03c0100c13c0100c23c0100c33c0100c43c0100c53c0100c63c0100c73c0100c83c0100c93c0100ca3c0100cb3c0100cc3c0100cd3c0100ce3c0100cf3c0100d03c0100d13c0100d23c0100d33c0100d43c0100d53c0100d63c0100d73c0100d83c0100d93c0100da3c0100db3c0100dc3c0100dd3c0100de3c0100df3c0100e03c0100e13c0100e23c0100e33c0100e43c0100e53c0100e63c0100e73c0100e83c0100e93c0100ea3c0100eb3c0100ec3c0100ed3c0100ee3c0100ef3c0100f03c0100f13c0100f23c0100f33c0100f43c0100f53c0100f63c0100f73c0100f83c0100f93c0100fa3c0100fb3c0100fc3c0100fd3c0100fe3c0100ff3c0100003d0100013d0100023d0100033d0100043d0100053d0100063d0100073d0100083d0100093d01000a3d01000b3d01000c3d01000d3d01000e3d01000f3d0100103d0100113d0100123d0100133d0100143d0100153d0100163d0100173d0100183d0100193d01001a3d01001b3d01001c3d01001d3d01001e3d01001f3d0100203d0100213d0100223d0100233d0100243d0100253d0100263d0100273d0100283d0100293d01002a3d01002b3d01002c3d01002d3d01002e3d01002f3d0100303d0100313d0100323d0100333d0100343d0100353d0100363d0100373d0100383d0100393d01003a3d01003b3d01003c3d01003d3d01003e3d01003f3d0100403d0100413d0100423d0100433d0100443d0100453d0100463d0100473d0100483d0100493d01004a3d01004b3d01004c3d01004d3d01004e3d01004f3d0100503d0100513d0100523d0100533d0100543d0100553d0100563d0100573d0100583d0100593d01005a3d01005b3d01005c3d01005d3d01005e3d01005f3d0100603d0100613d0100623d0100633d0100643d0100653d0100663d0100673d0100683d0100693d01006a3d01006b3d01006c3d01006d3d01006e3d01006f3d0100703d0100713d0100723d0100733d0100743d0100753d0100763d0100773d0100783d0100793d01007a3d01007b3d01007c3d01007d3d01007e3d01007f3d0100803d0100813d0100823d0100833d0100843d0100853d0100863d0100873d0100883d0100893d01008a3d01008b3d01008c3d01008d3d01008e3d01008f3d0100903d0100913d0100923d0100933d0100943d0100953d0100963d0100973d0100983d0100993d01009a3d01009b3d01009c3d01009d3d01009e3d01009f3d0100a03d0100a13d0100a23d0100a33d0100a43d0100a53d0100a63d0100a73d0100a83d0100a93d0100aa3d0100ab3d0100ac3d0100ad3d0100ae3d0100af3d0100b03d0100b13d0100b23d0100b33d0100b43d0100b53d0100b63d0100b73d0100b83d0100b93d0100ba3d0100bb3d0100bc3d0100bd3d0100be3d0100bf3d0100c03d0100c13d0100c23d0100c33d0100c43d0100c53d0100c63d0100c73d0100c83d0100c93d0100ca3d0100cb3d0100cc3d0100cd3d0100ce3d0100cf3d0100d03d0100d13d0100d23d0100d33d0100d43d0100d53d0100d63d0100d73d0100d83d0100d93d0100da3d0100db3d0100dc3d0100dd3d0100de3d0100df3d0100e03d0100e13d0100e23d0100e33d0100e43d0100e53d0100e63d0100e73d0100e83d0100e93d0100ea3d0100eb3d0100ec3d0100ed3d0100ee3d0100ef3d0100f03d0100f13d0100f23d0100f33d0100f43d0100f53d0100f63d0100f73d0100f83d0100f93d0100fa3d0100fb3d0100fc3d0100fd3d0100fe3d0100ff3d0100003e0100013e0100023e0100033e0100043e0100053e0100063e0100073e0100083e0100093e01000a3e01000b3e01000c3e01000d3e01000e3e01000f3e0100103e0100113e0100123e0100133e0100143e0100153e0100163e0100173e0100183e0100193e01001a3e01001b3e01001c3e01001d3e01001e3e01001f3e0100203e0100213e0100223e0100233e0100243e0100253e0100263e0100273e0100283e0100293e01002a3e01002b3e01002c3e01002d3e01002e3e01002f3e0100303e0100313e0100323e0100333e0100343e0100353e0100363e0100373e0100383e0100393e01003a3e01003b3e01003c3e01003d3e01003e3e01003f3e0100403e0100413e0100423e0100433e0100443e0100453e0100463e0100473e0100483e0100493e01004a3e01004b3e01004c3e01004d3e01004e3e01004f3e0100503e0100513e0100523e0100533e0100543e0100553e0100563e0100573e0100583e0100593e01005a3e01005b3e01005c3e01005d3e01005e3e01005f3e0100603e0100613e0100623e0100633e0100643e0100653e0100663e0100673e0100683e0100693e01006a3e01006b3e01006c3e01006d3e01006e3e01006f3e0100703e0100713e0100723e0100733e0100743e0100753e0100763e0100773e0100783e0100793e01007a3e01007b3e01007c3e01007d3e01007e3e01007f3e0100803e0100813e0100823e0100833e0100843e0100853e0100863e0100873e0100883e0100893e01008a3e01008b3e01008c3e01008d3e01008e3e01008f3e0100903e0100913e0100923e0100933e0100943e0100953e0100963e0100973e0100983e0100993e01009a3e01009b3e01009c3e01009d3e01009e3e01009f3e0100a03e0100a13e0100a23e0100a33e0100a43e0100a53e0100a63e0100a73e0100a83e0100a93e0100aa3e0100ab3e0100ac3e0100ad3e0100ae3e0100af3e0100b03e0100b13e0100b23e0100b33e0100b43e0100b53e0100b63e0100b73e0100b83e0100b93e0100ba3e0100bb3e0100bc3e0100bd3e0100be3e0100bf3e0100c03e0100c13e0100c23e0100c33e0100c43e0100c53e0100c63e0100c73e0100c83e0100c93e0100ca3e0100cb3e0100cc3e0100cd3e0100ce3e0100cf3e0100d03e0100d13e0100d23e0100d33e0100d43e0100d53e0100d63e0100d73e0100d83e0100d93e0100da3e0100db3e0100dc3e0100dd3e0100de3e0100df3e0100e03e0100e13e0100e23e0100e33e0100e43e0100e53e0100e63e0100e73e0100e83e0100e93e0100ea3e0100eb3e0100ec3e0100ed3e0100ee3e0100ef3e0100f03e0100f13e0100f23e0100f33e0100f43e0100f53e0100f63e0100f73e0100f83e0100f93e0100fa3e0100fb3e0100fc3e0100fd3e0100fe3e0100ff3e0100003f0100013f0100023f0100033f0100043f0100053f0100063f0100073f0100083f0100093f01000a3f01000b3f01000c3f01000d3f01000e3f01000f3f0100103f0100113f0100123f0100133f0100143f0100153f0100163f0100173f0100183f0100193f01001a3f01001b3f01001c3f01001d3f01001e3f01001f3f0100203f0100213f0100223f0100233f0100243f0100253f0100263f0100273f0100283f0100293f01002a3f01002b3f01002c3f01002d3f01002e3f01002f3f0100303f0100313f0100323f0100333f0100343f0100353f0100363f0100373f0100383f0100393f01003a3f01003b3f01003c3f01003d3f01003e3f01003f3f0100403f0100413f0100423f0100433f0100443f0100453f0100463f0100473f0100483f0100493f01004a3f01004b3f01004c3f01004d3f01004e3f01004f3f0100503f0100513f0100523f0100533f0100543f0100553f0100563f0100573f0100583f0100593f01005a3f01005b3f01005c3f01005d3f01005e3f01005f3f0100603f0100613f0100623f0100633f0100643f0100653f0100663f0100673f0100683f0100693f01006a3f01006b3f01006c3f01006d3f01006e3f01006f3f0100703f0100713f0100723f0100733f0100743f0100753f0100763f0100773f0100783f0100793f01007a3f01007b3f01007c3f01007d3f01007e3f01007f3f0100803f0100813f0100823f0100833f0100843f0100853f0100863f0100873f0100883f0100893f01008a3f01008b3f01008c3f01008d3f01008e3f01008f3f0100903f0100913f0100923f0100933f0100943f0100953f0100963f0100973f0100983f0100993f01009a3f01009b3f01009c3f01009d3f01009e3f01009f3f0100a03f0100a13f0100a23f0100a33f0100a43f0100a53f0100a63f0100a73f0100a83f0100a93f0100aa3f0100ab3f0100ac3f0100ad3f0100ae3f0100af3f0100b03f0100b13f0100b23f0100b33f0100b43f0100b53f0100b63f0100b73f0100b83f0100b93f0100ba3f0100bb3f0100bc3f0100bd3f0100be3f0100bf3f0100c03f0100c13f0100c23f0100c33f0100c43f0100c53f0100c63f0100c73f0100c83f0100c93f0100ca3f0100cb3f0100cc3f0100cd3f0100ce3f0100cf3f0100d03f0100d13f0100d23f0100d33f0100d43f0100d53f0100d63f0100d73f0100d83f0100d93f0100da3f0100db3f0100dc3f0100dd3f0100de3f0100df3f0100e03f0100e13f0100e23f0100e33f0100e43f0100e53f0100e63f0100e73f0100e83f0100e93f0100ea3f0100eb3f0100ec3f0100ed3f0100ee3f0100ef3f0100f03f0100f13f0100f23f0100f33f0100f43f0100f53f0100f63f0100f73f0100f83f0100f93f0100fa3f0100fb3f0100fc3f0100fd3f0100fe3f0100ff3f0100004001000140010002400100034001000440010005400100064001000740010008400100094001000a4001000b4001000c4001000d4001000e4001000f400100104001001140010012400100134001001440010015400100164001001740010018400100194001001a4001001b4001001c4001001d4001001e4001001f400100204001002140010022400100234001002440010025400100264001002740010028400100294001002a4001002b4001002c4001002d4001002e4001002f400100304001003140010032400100334001003440010035400100364001003740010038400100394001003a4001003b4001003c4001003d4001003e4001003f400100404001004140010042400100434001004440010045400100464001004740010048400100494001004a4001004b4001004c4001004d4001004e4001004f400100504001005140010052400100534001005440010055400100564001005740010058400100594001005a4001005b4001005c4001005d4001005e4001005f400100604001006140010062400100634001006440010065400100664001006740010068400100694001006a4001006b4001006c4001006d4001006e4001006f400100704001007140010072400100734001007440010075400100764001007740010078400100794001007a4001007b4001007c4001007d4001007e4001007f400100804001008140010082400100834001008440010085400100864001008740010088400100894001008a4001008b4001008c4001008d4001008e4001008f400100904001009140010092400100934001009440010095400100964001009740010098400100994001009a4001009b4001009c4001009d4001009e4001009f400100a0400100a1400100a2400100a3400100a4400100a5400100a6400100a7400100a8400100a9400100aa400100ab400100ac400100ad400100ae400100af400100b0400100b1400100b2400100b3400100b4400100b5400100b6400100b7400100b8400100b9400100ba400100bb400100bc400100bd400100be400100bf400100c0400100c1400100c2400100c3400100c4400100c5400100c6400100c7400100c8400100c9400100ca400100cb400100cc400100cd400100ce400100cf400100d0400100d1400100d2400100d3400100d4400100d5400100d6400100d7400100d8400100d9400100da400100db400100dc400100dd400100de400100df400100e0400100e1400100e2400100e3400100e4400100e5400100e6400100e7400100e8400100e9400100ea400100eb400100ec400100ed400100ee400100ef400100f0400100f1400100f2400100f3400100f4400100f5400100f6400100f7400100f8400100f9400100fa400100fb400100fc400100fd400100fe400100ff400100004101000141010002410100034101000441010005410100064101000741010008410100094101000a4101000b4101000c4101000d4101000e4101000f410100104101001141010012410100134101001441010015410100164101001741010018410100194101001a4101001b4101001c4101001d4101001e4101001f410100204101002141010022410100234101002441010025410100264101002741010028410100294101002a4101002b4101002c4101002d4101002e4101002f410100304101003141010032410100334101003441010035410100364101003741010038410100394101003a4101003b4101003c4101003d4101003e4101003f410100404101004141010042410100434101004441010045410100464101004741010048410100494101004a4101004b4101004c4101004d4101004e4101004f410100504101005141010052410100534101005441010055410100564101005741010058410100594101005a4101005b4101005c4101005d4101005e4101005f410100604101006141010062410100634101006441010065410100664101006741010068410100694101006a4101006b4101006c4101006d4101006e4101006f410100704101007141010072410100734101007441010075410100764101007741010078410100794101007a4101007b4101007c4101007d4101007e4101007f410100804101008141010082410100834101008441010085410100864101008741010088410100894101008a4101008b4101008c4101008d4101008e4101008f410100904101009141010092410100934101009441010095410100964101009741010098410100994101009a4101009b4101009c4101009d4101009e4101009f410100a0410100a1410100a2410100a3410100a4410100a5410100a6410100a7410100a8410100a9410100aa410100ab410100ac410100ad410100ae410100af410100b0410100b1410100b2410100b3410100b4410100b5410100b6410100b7410100b8410100b9410100ba410100bb410100bc410100bd410100be410100bf410100c0410100c1410100c2410100c3410100c4410100c5410100c6410100c7410100c8410100c9410100ca410100cb410100cc410100cd410100ce410100cf410100d0410100d1410100d2410100d3410100d4410100d5410100d6410100d7410100d8410100d9410100da410100db410100dc410100dd410100de410100df410100e0410100e1410100e2410100e3410100e4410100e5410100e6410100e7410100e8410100e9410100ea410100eb410100ec410100ed410100ee410100ef410100f0410100f1410100f2410100f3410100f4410100f5410100f6410100f7410100f8410100f9410100fa410100fb410100fc410100fd410100fe410100ff410100004201000142010002420100034201000442010005420100064201000742010008420100094201000a4201000b4201000c4201000d4201000e4201000f420100104201001142010012420100134201001442010015420100164201001742010018420100194201001a4201001b4201001c4201001d4201001e4201001f420100204201002142010022420100234201002442010025420100264201002742010028420100294201002a4201002b4201002c4201002d4201002e4201002f420100304201003142010032420100334201003442010035420100364201003742010038420100394201003a4201003b4201003c4201003d4201003e4201003f420100404201004142010042420100434201004442010045420100464201004742010048420100494201004a4201004b4201004c4201004d4201004e4201004f420100504201005142010052420100534201005442010055420100564201005742010058420100594201005a4201005b4201005c4201005d4201005e4201005f420100604201006142010062420100634201006442010065420100664201006742010068420100694201006a4201006b4201006c4201006d4201006e4201006f420100704201007142010072420100734201007442010075420100764201007742010078420100794201007a4201007b4201007c4201007d4201007e4201007f420100804201008142010082420100834201008442010085420100864201008742010088420100894201008a4201008b4201008c4201008d4201008e4201008f420100904201009142010092420100934201009442010095420100964201009742010098420100994201009a4201009b4201009c4201009d4201009e4201009f420100a0420100a1420100a2420100a3420100a4420100a5420100a6420100a7420100a8420100a9420100aa420100ab420100ac420100ad420100ae420100af420100b0420100b1420100b2420100b3420100b4420100b5420100b6420100b7420100b8420100b9420100ba420100bb420100bc420100bd420100be420100bf420100c0420100c1420100c2420100c3420100c4420100c5420100c6420100c7420100c8420100c9420100ca420100cb420100cc420100cd420100ce420100cf420100d0420100d1420100d2420100d3420100d4420100d5420100d6420100d7420100d8420100d9420100da420100db420100dc420100dd420100de420100df420100e0420100e1420100e2420100e3420100e4420100e5420100e6420100e7420100e8420100e9420100ea420100eb420100ec420100ed420100ee420100ef420100f0420100f1420100f2420100f3420100f4420100f5420100f6420100f7420100f8420100f9420100fa420100fb420100fc420100fd420100fe420100ff420100004301000143010002430100034301000443010005430100064301000743010008430100094301000a4301000b4301000c4301000d4301000e4301000f430100104301001143010012430100134301001443010015430100164301001743010018430100194301001a4301001b4301001c4301001d4301001e4301001f430100204301002143010022430100234301002443010025430100264301002743010028430100294301002a4301002b4301002c4301002d4301002e4301002f430100304301003143010032430100334301003443010035430100364301003743010038430100394301003a4301003b4301003c4301003d4301003e4301003f430100404301004143010042430100434301004443010045430100464301004743010048430100494301004a4301004b4301004c4301004d4301004e4301004f430100504301005143010052430100534301005443010055430100564301005743010058430100594301005a4301005b4301005c4301005d4301005e4301005f430100604301006143010062430100634301006443010065430100664301006743010068430100694301006a4301006b4301006c4301006d4301006e4301006f430100704301007143010072430100734301007443010075430100764301007743010078430100794301007a4301007b4301007c4301007d4301007e4301007f430100804301008143010082430100834301008443010085430100864301008743010088430100894301008a4301008b4301008c4301008d4301008e4301008f430100904301009143010092430100934301009443010095430100964301009743010098430100994301009a4301009b4301009c4301009d4301009e4301009f430100a0430100a1430100a2430100a3430100a4430100a5430100a6430100a7430100a8430100a9430100aa430100ab430100ac430100ad430100ae430100af430100b0430100b1430100b2430100b3430100b4430100b5430100b6430100b7430100b8430100b9430100ba430100bb430100bc430100bd430100be430100bf430100c0430100c1430100c2430100c3430100c4430100c5430100c6430100c7430100c8430100c9430100ca430100cb430100cc430100cd430100ce430100cf430100d0430100d1430100d2430100d3430100d4430100d5430100d6430100d7430100d8430100d9430100da430100db430100dc430100dd430100de430100df430100e0430100e1430100e2430100e3430100e4430100e5430100e6430100e7430100e8430100e9430100ea430100eb430100ec430100ed430100ee430100ef430100f0430100f1430100f2430100f3430100f4430100f5430100f6430100f7430100f8430100f9430100fa430100fb430100fc430100fd430100fe430100ff430100004401000144010002440100034401000444010005440100064401000744010008440100094401000a4401000b4401000c4401000d4401000e4401000f440100104401001144010012440100134401001444010015440100164401001744010018440100194401001a4401001b4401001c4401001d4401001e4401001f440100204401002144010022440100234401002444010025440100264401002744010028440100294401002a4401002b4401002c4401002d4401002e4401002f440100304401003144010032440100334401003444010035440100364401003744010038440100394401003a4401003b4401003c4401003d4401003e4401003f440100404401004144010042440100434401004444010045440100464401004744010048440100494401004a4401004b4401004c4401004d4401004e4401004f440100504401005144010052440100534401005444010055440100564401005744010058440100594401005a4401005b4401005c4401005d4401005e4401005f440100604401006144010062440100634401006444010065440100664401006744010068440100694401006a4401006b4401006c4401006d4401006e4401006f440100704401007144010072440100734401007444010075440100764401007744010078440100794401007a4401007b4401007c4401007d4401007e4401007f440100804401008144010082440100834401008444010085440100864401008744010088440100894401008a4401008b4401008c4401008d4401008e4401008f440100904401009144010092440100934401009444010095440100964401009744010098440100994401009a4401009b4401009c4401009d4401009e4401009f440100a0440100a1440100a2440100a3440100a4440100a5440100a6440100a7440100a8440100a9440100aa440100ab440100ac440100ad440100ae440100af440100b0440100b1440100b2440100b3440100b4440100b5440100b6440100b7440100b8440100b9440100ba440100bb440100bc440100bd440100be440100bf440100c0440100c1440100c2440100c3440100c4440100c5440100c6440100c7440100c8440100c9440100ca440100cb440100cc440100cd440100ce440100cf440100d0440100d1440100d2440100d3440100d4440100d5440100d6440100d7440100d8440100d9440100da440100db440100dc440100dd440100de440100df440100e0440100e1440100e2440100e3440100e4440100e5440100e6440100e7440100e8440100e9440100ea440100eb440100ec440100ed440100ee440100ef440100f0440100f1440100f2440100f3440100f4440100f5440100f6440100f7440100f8440100f9440100fa440100fb440100fc440100fd440100fe440100ff440100004501000145010002450100034501000445010005450100064501000745010008450100094501000a4501000b4501000c4501000d4501000e4501000f450100104501001145010012450100134501001445010015450100164501001745010018450100194501001a4501001b4501001c4501001d4501001e4501001f450100204501002145010022450100234501002445010025450100264501002745010028450100294501002a4501002b4501002c4501002d4501002e4501002f450100304501003145010032450100334501003445010035450100364501003745010038450100394501003a4501003b4501003c4501003d4501003e4501003f450100404501004145010042450100434501004445010045450100464501004745010048450100494501004a4501004b4501004c4501004d4501004e4501004f450100504501005145010052450100534501005445010055450100564501005745010058450100594501005a4501005b4501005c4501005d4501005e4501005f450100604501006145010062450100634501006445010065450100664501006745010068450100694501006a4501006b4501006c4501006d4501006e4501006f450100704501007145010072450100734501007445010075450100764501007745010078450100794501007a4501007b4501007c4501007d4501007e4501007f450100804501008145010082450100834501008445010085450100864501008745010088450100894501008a4501008b4501008c4501008d4501008e4501008f450100904501009145010092450100934501009445010095450100964501009745010098450100994501009a4501009b4501009c4501009d4501009e4501009f450100a0450100a1450100a2450100a3450100a4450100a5450100a6450100a7450100a8450100a9450100aa450100ab450100ac450100ad450100ae450100af450100b0450100b1450100b2450100b3450100b4450100b5450100b6450100b7450100b8450100b9450100ba450100bb450100bc450100bd450100be450100bf450100c0450100c1450100c2450100c3450100c4450100c5450100c6450100c7450100c8450100c9450100ca450100cb450100cc450100cd450100ce450100cf450100d0450100d1450100d2450100d3450100d4450100d5450100d6450100d7450100d8450100d9450100da450100db450100dc450100dd450100de450100df450100e0450100e1450100e2450100e3450100e4450100e5450100e6450100e7450100e8450100e9450100ea450100eb450100ec450100ed450100ee450100ef450100f0450100f1450100f2450100f3450100f4450100f5450100f6450100f7450100f8450100f9450100fa450100fb450100fc450100fd450100fe450100ff450100004601000146010002460100034601000446010005460100064601000746010008460100094601000a4601000b4601000c4601000d4601000e4601000f460100104601001146010012460100134601001446010015460100164601001746010018460100194601001a4601001b4601001c4601001d4601001e4601001f460100204601002146010022460100234601002446010025460100264601002746010028460100294601002a4601002b4601002c4601002d4601002e4601002f460100304601003146010032460100334601003446010035460100364601003746010038460100394601003a4601003b4601003c4601003d4601003e4601003f460100404601004146010042460100434601004446010045460100464601004746010048460100494601004a4601004b4601004c4601004d4601004e4601004f460100504601005146010052460100534601005446010055460100564601005746010058460100594601005a4601005b4601005c4601005d4601005e4601005f460100604601006146010062460100634601006446010065460100664601006746010068460100694601006a4601006b4601006c4601006d4601006e4601006f460100704601007146010072460100734601007446010075460100764601007746010078460100794601007a4601007b4601007c4601007d4601007e4601007f460100804601008146010082460100834601008446010085460100864601008746010088460100894601008a4601008b4601008c4601008d4601008e4601008f460100904601009146010092460100934601009446010095460100964601009746010098460100994601009a4601009b4601009c4601009d4601009e4601009f460100a0460100a1460100a2460100a3460100a4460100a5460100a6460100a7460100a8460100a9460100aa460100ab460100ac460100ad460100ae460100af460100b0460100b1460100b2460100b3460100b4460100b5460100b6460100b7460100b8460100b9460100ba460100bb460100bc460100bd460100be460100bf460100c0460100c1460100c2460100c3460100c4460100c5460100c6460100c7460100c8460100c9460100ca460100cb460100cc460100cd460100ce460100cf460100d0460100d1460100d2460100d3460100d4460100d5460100d6460100d7460100d8460100d9460100da460100db460100dc460100dd460100de460100df460100e0460100e1460100e2460100e3460100e4460100e5460100e6460100e7460100e8460100e9460100ea460100eb460100ec460100ed460100ee460100ef460100f0460100f1460100f2460100f3460100f4460100f5460100f6460100f7460100f8460100f9460100fa460100fb460100fc460100fd460100fe460100ff460100004701000147010002470100034701000447010005470100064701000747010008470100094701000a4701000b4701000c4701000d4701000e4701000f470100104701001147010012470100134701001447010015470100164701001747010018470100194701001a4701001b4701001c4701001d4701001e4701001f470100204701002147010022470100234701002447010025470100264701002747010028470100294701002a4701002b4701002c4701002d4701002e4701002f470100304701003147010032470100334701003447010035470100364701003747010038470100394701003a4701003b4701003c4701003d4701003e4701003f470100404701004147010042470100434701004447010045470100464701004747010048470100494701004a4701004b4701004c4701004d4701004e4701004f470100504701005147010052470100534701005447010055470100564701005747010058470100594701005a4701005b4701005c4701005d4701005e4701005f470100604701006147010062470100634701006447010065470100664701006747010068470100694701006a4701006b4701006c4701006d4701006e4701006f470100704701007147010072470100734701007447010075470100764701007747010078470100794701007a4701007b4701007c4701007d4701007e4701007f470100804701008147010082470100834701008447010085470100864701008747010088470100894701008a4701008b4701008c4701008d4701008e4701008f470100904701009147010092470100934701009447010095470100964701009747010098470100994701009a4701009b4701009c4701009d4701009e4701009f470100a0470100a1470100a2470100a3470100a4470100a5470100a6470100a7470100a8470100a9470100aa470100ab470100ac470100ad470100ae470100af470100b0470100b1470100b2470100b3470100b4470100b5470100b6470100b7470100b8470100b9470100ba470100bb470100bc470100bd470100be470100bf470100c0470100c1470100c2470100c3470100c4470100c5470100c6470100c7470100c8470100c9470100ca470100cb470100cc470100cd470100ce470100cf470100d0470100d1470100d2470100d3470100d4470100d5470100d6470100d7470100d8470100d9470100da470100db470100dc470100dd470100de470100df470100e0470100e1470100e2470100e3470100e4470100e5470100e6470100e7470100e8470100e9470100ea470100eb470100ec470100ed470100ee470100ef470100f0470100f1470100f2470100f3470100f4470100f5470100f6470100f7470100f8470100f9470100fa470100fb470100fc470100fd470100fe470100ff470100004801000148010002480100034801000448010005480100064801000748010008480100094801000a4801000b4801000c4801000d4801000e4801000f480100104801001148010012480100134801001448010015480100164801001748010018480100194801001a4801001b4801001c4801001d4801001e4801001f480100204801002148010022480100234801002448010025480100264801002748010028480100294801002a4801002b4801002c4801002d4801002e4801002f480100304801003148010032480100334801003448010035480100364801003748010038480100394801003a4801003b4801003c4801003d4801003e4801003f480100404801004148010042480100434801004448010045480100464801004748010048480100494801004a4801004b4801004c4801004d4801004e4801004f480100504801005148010052480100534801005448010055480100564801005748010058480100594801005a4801005b4801005c4801005d4801005e4801005f480100604801006148010062480100634801006448010065480100664801006748010068480100694801006a4801006b4801006c4801006d4801006e4801006f480100704801007148010072480100734801007448010075480100764801007748010078480100794801007a4801007b4801007c4801007d4801007e4801007f480100804801008148010082480100834801008448010085480100864801008748010088480100894801008a4801008b4801008c4801008d4801008e4801008f480100904801009148010092480100934801009448010095480100964801009748010098480100994801009a4801009b4801009c4801009d4801009e4801009f480100a0480100a1480100a2480100a3480100a4480100a5480100a6480100a7480100a8480100a9480100aa480100ab480100ac480100ad480100ae480100af480100b0480100b1480100b2480100b3480100b4480100b5480100b6480100b7480100b8480100b9480100ba480100bb480100bc480100bd480100be480100bf480100c0480100c1480100c2480100c3480100c4480100c5480100c6480100c7480100c8480100c9480100ca480100cb480100cc480100cd480100ce480100cf480100d0480100d1480100d2480100d3480100d4480100d5480100d6480100d7480100d8480100d9480100da480100db480100dc480100dd480100de480100df480100e0480100e1480100e2480100e3480100e4480100e5480100e6480100e7480100e8480100e9480100ea480100eb480100ec480100ed480100ee480100ef480100f0480100f1480100f2480100f3480100f4480100f5480100f6480100f7480100f8480100f9480100fa480100fb480100fc480100fd480100fe480100ff480100004901000149010002490100034901000449010005490100064901000749010008490100094901000a4901000b4901000c4901000d4901000e4901000f490100104901001149010012490100134901001449010015490100164901001749010018490100194901001a4901001b4901001c4901001d4901001e4901001f490100204901002149010022490100234901002449010025490100264901002749010028490100294901002a4901002b4901002c4901002d4901002e4901002f490100304901003149010032490100334901003449010035490100364901003749010038490100394901003a4901003b4901003c4901003d4901003e4901003f490100404901004149010042490100434901004449010045490100464901004749010048490100494901004a4901004b4901004c4901004d4901004e4901004f490100504901005149010052490100534901005449010055490100564901005749010058490100594901005a4901005b4901005c4901005d4901005e4901005f490100604901006149010062490100634901006449010065490100664901006749010068490100694901006a4901006b4901006c4901006d4901006e4901006f490100704901007149010072490100734901007449010075490100764901007749010078490100794901007a4901007b4901007c4901007d4901007e4901007f490100804901008149010082490100834901008449010085490100864901008749010088490100894901008a4901008b4901008c4901008d4901008e4901008f490100904901009149010092490100934901009449010095490100964901009749010098490100994901009a4901009b4901009c4901009d4901009e4901009f490100a0490100a1490100a2490100a3490100a4490100a5490100a6490100a7490100a8490100a9490100aa490100ab490100ac490100ad490100ae490100af490100b0490100b1490100b2490100b3490100b4490100b5490100b6490100b7490100b8490100b9490100ba490100bb490100bc490100bd490100be490100bf490100c0490100c1490100c2490100c3490100c4490100c5490100c6490100c7490100c8490100c9490100ca490100cb490100cc490100cd490100ce490100cf490100d0490100d1490100d2490100d3490100d4490100d5490100d6490100d7490100d8490100d9490100da490100db490100dc490100dd490100de490100df490100e0490100e1490100e2490100e3490100e4490100e5490100e6490100e7490100e8490100e9490100ea490100eb490100ec490100ed490100ee490100ef490100f0490100f1490100f2490100f3490100f4490100f5490100f6490100f7490100f8490100f9490100fa490100fb490100fc490100fd490100fe490100ff490100004a0100014a0100024a0100034a0100044a0100054a0100064a0100074a0100084a0100094a01000a4a01000b4a01000c4a01000d4a01000e4a01000f4a0100104a0100114a0100124a0100134a0100144a0100154a0100164a0100174a0100184a0100194a01001a4a01001b4a01001c4a01001d4a01001e4a01001f4a0100204a0100214a0100224a0100234a0100244a0100254a0100264a0100274a0100284a0100294a01002a4a01002b4a01002c4a01002d4a01002e4a01002f4a0100304a0100314a0100324a0100334a0100344a0100354a0100364a0100374a0100384a0100394a01003a4a01003b4a01003c4a01003d4a01003e4a01003f4a0100404a0100414a0100424a0100434a0100444a0100454a0100464a0100474a0100484a0100494a01004a4a01004b4a01004c4a01004d4a01004e4a01004f4a0100504a0100514a0100524a0100534a0100544a0100554a0100564a0100574a0100584a0100594a01005a4a01005b4a01005c4a01005d4a01005e4a01005f4a0100604a0100614a0100624a0100634a0100644a0100654a0100664a0100674a0100684a0100694a01006a4a01006b4a01006c4a01006d4a01006e4a01006f4a0100704a0100714a0100724a0100734a0100744a0100754a0100764a0100774a0100784a0100794a01007a4a01007b4a01007c4a01007d4a01007e4a01007f4a0100804a0100814a0100824a0100834a0100844a0100854a0100864a0100874a0100884a0100894a01008a4a01008b4a01008c4a01008d4a01008e4a01008f4a0100904a0100914a0100924a0100934a0100944a0100954a0100964a0100974a0100984a0100994a01009a4a01009b4a01009c4a01009d4a01009e4a01009f4a0100a04a0100a14a0100a24a0100a34a0100a44a0100a54a0100a64a0100a74a0100a84a0100a94a0100aa4a0100ab4a0100ac4a0100ad4a0100ae4a0100af4a0100b04a0100b14a0100b24a0100b34a0100b44a0100b54a0100b64a0100b74a0100b84a0100b94a0100ba4a0100bb4a0100bc4a0100bd4a0100be4a0100bf4a0100c04a0100c14a0100c24a0100c34a0100c44a0100c54a0100c64a0100c74a0100c84a0100c94a0100ca4a0100cb4a0100cc4a0100cd4a0100ce4a0100cf4a0100d04a0100d14a0100d24a0100d34a0100d44a0100d54a0100d64a0100d74a0100d84a0100d94a0100da4a0100db4a0100dc4a0100dd4a0100de4a0100df4a0100e04a0100e14a0100e24a0100e34a0100e44a0100e54a0100e64a0100e74a0100e84a0100e94a0100ea4a0100eb4a0100ec4a0100ed4a0100ee4a0100ef4a0100f04a0100f14a0100f24a0100f34a0100f44a0100f54a0100f64a0100f74a0100f84a0100f94a0100fa4a0100fb4a0100fc4a0100fd4a0100fe4a0100ff4a0100004b0100014b0100024b0100034b0100044b0100054b0100064b0100074b0100084b0100094b01000a4b01000b4b01000c4b01000d4b01000e4b01000f4b0100104b0100114b0100124b0100134b0100144b0100154b0100164b0100174b0100184b0100194b01001a4b01001b4b01001c4b01001d4b01001e4b01001f4b0100204b0100214b0100224b0100234b0100244b0100254b0100264b0100274b0100284b0100294b01002a4b01002b4b01002c4b01002d4b01002e4b01002f4b0100304b0100314b0100324b0100334b0100344b0100354b0100364b0100374b0100384b0100394b01003a4b01003b4b01003c4b01003d4b01003e4b01003f4b0100404b0100414b0100424b0100434b0100444b0100454b0100464b0100474b0100484b0100494b01004a4b01004b4b01004c4b01004d4b01004e4b01004f4b0100504b0100514b0100524b0100534b0100544b0100554b0100564b0100574b0100584b0100594b01005a4b01005b4b01005c4b01005d4b01005e4b01005f4b0100604b0100614b0100624b0100634b0100644b0100654b0100664b0100674b0100684b0100694b01006a4b01006b4b01006c4b01006d4b01006e4b01006f4b0100704b0100714b0100724b0100734b0100744b0100754b0100764b0100774b0100784b0100794b01007a4b01007b4b01007c4b01007d4b01007e4b01007f4b0100804b0100814b0100824b0100834b0100844b0100854b0100864b0100874b0100884b0100894b01008a4b01008b4b01008c4b01008d4b01008e4b01008f4b0100904b0100914b0100924b0100934b0100944b0100954b0100964b0100974b0100984b0100994b01009a4b01009b4b01009c4b01009d4b01009e4b01009f4b0100a04b0100a14b0100a24b0100a34b0100a44b0100a54b0100a64b0100a74b0100a84b0100a94b0100aa4b0100ab4b0100ac4b0100ad4b0100ae4b0100af4b0100b04b0100b14b0100b24b0100b34b0100b44b0100b54b0100b64b0100b74b0100b84b0100b94b0100ba4b0100bb4b0100bc4b0100bd4b0100be4b0100bf4b0100c04b0100c14b0100c24b0100c34b0100c44b0100c54b0100c64b0100c74b0100c84b0100c94b0100ca4b0100cb4b0100cc4b0100cd4b0100ce4b0100cf4b0100d04b0100d14b0100d24b0100d34b0100d44b0100d54b0100d64b0100d74b0100d84b0100d94b0100da4b0100db4b0100dc4b0100dd4b0100de4b0100df4b0100e04b0100e14b0100e24b0100e34b0100e44b0100e54b0100e64b0100e74b0100e84b0100e94b0100ea4b0100eb4b0100ec4b0100ed4b0100ee4b0100ef4b0100f04b0100f14b0100f24b0100f34b0100f44b0100f54b0100f64b0100f74b0100f84b0100f94b0100fa4b0100fb4b0100fc4b0100fd4b0100fe4b0100ff4b0100004c0100014c0100024c0100034c0100044c0100054c0100064c0100074c0100084c0100094c01000a4c01000b4c01000c4c01000d4c01000e4c01000f4c0100104c0100114c0100124c0100134c0100144c0100154c0100164c0100174c0100184c0100194c01001a4c01001b4c01001c4c01001d4c01001e4c01001f4c0100204c0100214c0100224c0100234c0100244c0100254c0100264c0100274c0100284c0100294c01002a4c01002b4c01002c4c01002d4c01002e4c01002f4c0100304c0100314c0100324c0100334c0100344c0100354c0100364c0100374c0100384c0100394c01003a4c01003b4c01003c4c01003d4c01003e4c01003f4c0100404c0100414c0100424c0100434c0100444c0100454c0100464c0100474c0100484c0100494c01004a4c01004b4c01004c4c01004d4c01004e4c01004f4c0100504c0100514c0100524c0100534c0100544c0100554c0100564c0100574c0100584c0100594c01005a4c01005b4c01005c4c01005d4c01005e4c01005f4c0100604c0100614c0100624c0100634c0100644c0100654c0100664c0100674c0100684c0100694c01006a4c01006b4c01006c4c01006d4c01006e4c01006f4c0100704c0100714c0100724c0100734c0100744c0100754c0100764c0100774c0100784c0100794c01007a4c01007b4c01007c4c01007d4c01007e4c01007f4c0100804c0100814c0100824c0100834c0100844c0100854c0100864c0100874c0100884c0100894c01008a4c01008b4c01008c4c01008d4c01008e4c01008f4c0100904c0100914c0100924c0100934c0100944c0100954c0100964c0100974c0100984c0100994c01009a4c01009b4c01009c4c01009d4c01009e4c01009f4c0100a04c0100a14c0100a24c0100a34c0100a44c0100a54c0100a64c0100a74c0100a84c0100a94c0100aa4c0100ab4c0100ac4c0100ad4c0100ae4c0100af4c0100b04c0100b14c0100b24c0100b34c0100b44c0100b54c0100b64c0100b74c0100b84c0100b94c0100ba4c0100bb4c0100bc4c0100bd4c0100be4c0100bf4c0100c04c0100c14c0100c24c0100c34c0100c44c0100c54c0100c64c0100c74c0100c84c0100c94c0100ca4c0100cb4c0100cc4c0100cd4c0100ce4c0100cf4c0100d04c0100d14c0100d24c0100d34c0100d44c0100d54c0100d64c0100d74c0100d84c0100d94c0100da4c0100db4c0100dc4c0100dd4c0100de4c0100df4c0100e04c0100e14c0100e24c0100e34c0100e44c0100e54c0100e64c0100e74c0100e84c0100e94c0100ea4c0100eb4c0100ec4c0100ed4c0100ee4c0100ef4c0100f04c0100f14c0100f24c0100f34c0100f44c0100f54c0100f64c0100f74c0100f84c0100f94c0100fa4c0100fb4c0100fc4c0100fd4c0100fe4c0100ff4c0100004d0100014d0100024d0100034d0100044d0100054d0100064d0100074d0100084d0100094d01000a4d01000b4d01000c4d01000d4d01000e4d01000f4d0100104d0100114d0100124d0100134d0100144d0100154d0100164d0100174d0100184d0100194d01001a4d01001b4d01001c4d01001d4d01001e4d01001f4d0100204d0100214d0100224d0100234d0100244d0100254d0100264d0100274d0100284d0100294d01002a4d01002b4d01002c4d01002d4d01002e4d01002f4d0100304d0100314d0100324d0100334d0100344d0100354d0100364d0100374d0100384d0100394d01003a4d01003b4d01003c4d01003d4d01003e4d01003f4d0100404d0100414d0100424d0100434d0100444d0100454d0100464d0100474d0100484d0100494d01004a4d01004b4d01004c4d01004d4d01004e4d01004f4d0100504d0100514d0100524d0100534d0100544d0100554d0100564d0100574d0100584d0100594d01005a4d01005b4d01005c4d01005d4d01005e4d01005f4d0100604d0100614d0100624d0100634d0100644d0100654d0100664d0100674d0100684d0100694d01006a4d01006b4d01006c4d01006d4d01006e4d01006f4d0100704d0100714d0100724d0100734d0100744d0100754d0100764d0100774d0100784d0100794d01007a4d01007b4d01007c4d01007d4d01007e4d01007f4d0100804d0100814d0100824d0100834d0100844d0100854d0100864d0100874d0100884d0100894d01008a4d01008b4d01008c4d01008d4d01008e4d01008f4d0100904d0100914d0100924d0100934d0100944d0100954d0100964d0100974d0100984d0100994d01009a4d01009b4d01009c4d01009d4d01009e4d01009f4d0100a04d0100a14d0100a24d0100a34d0100a44d0100a54d0100a64d0100a74d0100a84d0100a94d0100aa4d0100ab4d0100ac4d0100ad4d0100ae4d0100af4d0100b04d0100b14d0100b24d0100b34d0100b44d0100b54d0100b64d0100b74d0100b84d0100b94d0100ba4d0100bb4d0100bc4d0100bd4d0100be4d0100bf4d0100c04d0100c14d0100c24d0100c34d0100c44d0100c54d0100c64d0100c74d0100c84d0100c94d0100ca4d0100cb4d0100cc4d0100cd4d0100ce4d0100cf4d0100d04d0100d14d0100d24d0100d34d0100d44d0100d54d0100d64d0100d74d0100d84d0100d94d0100da4d0100db4d0100dc4d0100dd4d0100de4d0100df4d0100e04d0100e14d0100e24d0100e34d0100e44d0100e54d0100e64d0100e74d0100e84d0100e94d0100ea4d0100eb4d0100ec4d0100ed4d0100ee4d0100ef4d0100f04d0100f14d0100f24d0100f34d0100f44d0100f54d0100f64d0100f74d0100f84d0100f94d0100fa4d0100fb4d0100fc4d0100fd4d0100fe4d0100ff4d0100004e0100014e0100024e0100034e0100044e0100054e0100064e0100074e0100084e0100094e01000a4e01000b4e01000c4e01000d4e01000e4e01000f4e0100104e0100114e0100124e0100134e0100144e0100154e0100164e0100174e0100184e0100194e01001a4e01001b4e01001c4e01001d4e01001e4e01001f4e0100204e0100214e0100224e0100234e0100244e0100254e0100264e0100274e0100284e0100294e01002a4e01002b4e01002c4e01002d4e01002e4e01002f4e0100304e0100314e0100324e0100334e0100344e0100354e0100364e0100374e0100384e0100394e01003a4e01003b4e01003c4e01003d4e01003e4e01003f4e0100404e0100414e0100424e0100434e0100444e0100454e0100464e0100474e0100484e0100494e01004a4e01004b4e01004c4e01004d4e01004e4e01004f4e0100504e0100514e0100524e0100534e0100544e0100554e0100564e0100574e0100584e0100594e01005a4e01005b4e01005c4e01005d4e01005e4e01005f4e0100604e0100614e0100624e0100634e0100644e0100654e0100664e0100674e0100684e0100694e01006a4e01006b4e01006c4e01006d4e01006e4e01006f4e0100704e0100714e0100724e0100734e0100744e0100754e0100764e0100774e0100784e0100794e01007a4e01007b4e01007c4e01007d4e01007e4e01007f4e0100804e0100814e0100824e0100834e0100844e0100854e0100864e0100874e0100884e0100894e01008a4e01008b4e01008c4e01008d4e01008e4e01008f4e0100904e0100914e0100924e0100934e0100944e0100954e0100964e0100974e0100984e0100994e01009a4e01009b4e01009c4e01009d4e01009e4e01009f4e0100a04e0100a14e0100a24e0100a34e0100a44e0100a54e0100a64e0100a74e0100a84e0100a94e0100aa4e0100ab4e0100ac4e0100ad4e0100ae4e0100af4e0100b04e0100b14e0100b24e0100b34e0100b44e0100b54e0100b64e0100b74e0100b84e0100b94e0100ba4e0100bb4e0100bc4e0100bd4e0100be4e0100bf4e0100c04e0100c14e0100c24e0100c34e0100c44e0100c54e0100c64e0100c74e0100c84e0100c94e0100ca4e0100cb4e0100cc4e0100cd4e0100ce4e0100cf4e0100d04e0100d14e0100d24e0100d34e0100d44e0100d54e0100d64e0100d74e0100d84e0100d94e0100da4e0100db4e0100dc4e0100dd4e0100de4e0100df4e0100e04e0100e14e0100e24e0100e34e0100e44e0100e54e0100e64e0100e74e0100e84e0100e94e0100ea4e0100eb4e0100ec4e0100ed4e0100ee4e0100ef4e0100f04e0100f14e0100f24e0100f34e0100f44e0100f54e0100f64e0100f74e0100f84e0100f94e0100fa4e0100fb4e0100fc4e0100fd4e0100fe4e0100ff4e0100004f0100014f0100024f0100034f0100044f0100054f0100064f0100074f0100084f0100094f01000a4f01000b4f01000c4f01000d4f01000e4f01000f4f0100104f0100114f0100124f0100134f0100144f0100154f0100164f0100174f0100184f0100194f01001a4f01001b4f01001c4f01001d4f01001e4f01001f4f0100204f0100214f0100224f0100234f0100244f0100254f0100264f0100274f0100284f0100294f01002a4f01002b4f01002c4f01002d4f01002e4f01002f4f0100304f0100314f0100324f0100334f0100344f0100354f0100364f0100374f0100384f0100394f01003a4f01003b4f01003c4f01003d4f01003e4f01003f4f0100404f0100414f0100424f0100434f0100444f0100454f0100464f0100474f0100484f0100494f01004a4f01004b4f01004c4f01004d4f01004e4f01004f4f0100504f0100514f0100524f0100534f0100544f0100554f0100564f0100574f0100584f0100594f01005a4f01005b4f01005c4f01005d4f01005e4f01005f4f0100604f0100614f0100624f0100634f0100644f0100654f0100664f0100674f0100684f0100694f01006a4f01006b4f01006c4f01006d4f01006e4f01006f4f0100704f0100714f0100724f0100734f0100744f0100754f0100764f0100774f0100784f0100794f01007a4f01007b4f01007c4f01007d4f01007e4f01007f4f0100804f0100814f0100824f0100834f0100844f0100854f0100864f0100874f0100884f0100894f01008a4f01008b4f01008c4f01008d4f01008e4f01008f4f0100904f0100914f0100924f0100934f0100944f0100954f0100964f0100974f0100984f0100994f01009a4f01009b4f01009c4f01009d4f01009e4f01009f4f0100a04f0100a14f0100a24f0100a34f0100a44f0100a54f0100a64f0100a74f0100a84f0100a94f0100aa4f0100ab4f0100ac4f0100ad4f0100ae4f0100af4f0100b04f0100b14f0100b24f0100b34f0100b44f0100b54f0100b64f0100b74f0100b84f0100b94f0100ba4f0100bb4f0100bc4f0100bd4f0100be4f0100bf4f0100c04f0100c14f0100c24f0100c34f0100c44f0100c54f0100c64f0100c74f0100c84f0100c94f0100ca4f0100cb4f0100cc4f0100cd4f0100ce4f0100cf4f0100d04f0100d14f0100d24f0100d34f0100d44f0100d54f0100d64f0100d74f0100d84f0100d94f0100da4f0100db4f0100dc4f0100dd4f0100de4f0100df4f0100e04f0100e14f0100e24f0100e34f0100e44f0100e54f0100e64f0100e74f0100e84f0100e94f0100ea4f0100eb4f0100ec4f0100ed4f0100ee4f0100ef4f0100f04f0100f14f0100f24f0100f34f0100f44f0100f54f0100f64f0100f74f0100f84f0100f94f0100fa4f0100fb4f0100fc4f0100fd4f0100fe4f0100ff4f0100005001000150010002500100035001000450010005500100065001000750010008500100095001000a5001000b5001000c5001000d5001000e5001000f500100105001001150010012500100135001001450010015500100165001001750010018500100195001001a5001001b5001001c5001001d5001001e5001001f500100205001002150010022500100235001002450010025500100265001002750010028500100295001002a5001002b5001002c5001002d5001002e5001002f500100305001003150010032500100335001003450010035500100365001003750010038500100395001003a5001003b5001003c5001003d5001003e5001003f500100405001004150010042500100435001004450010045500100465001004750010048500100495001004a5001004b5001004c5001004d5001004e5001004f500100505001005150010052500100535001005450010055500100565001005750010058500100595001005a5001005b5001005c5001005d5001005e5001005f500100605001006150010062500100635001006450010065500100665001006750010068500100695001006a5001006b5001006c5001006d5001006e5001006f500100705001007150010072500100735001007450010075500100765001007750010078500100795001007a5001007b5001007c5001007d5001007e5001007f500100805001008150010082500100835001008450010085500100865001008750010088500100895001008a5001008b5001008c5001008d5001008e5001008f500100905001009150010092500100935001009450010095500100965001009750010098500100995001009a5001009b5001009c5001009d5001009e5001009f500100a0500100a1500100a2500100a3500100a4500100a5500100a6500100a7500100a8500100a9500100aa500100ab500100ac500100ad500100ae500100af500100b0500100b1500100b2500100b3500100b4500100b5500100b6500100b7500100b8500100b9500100ba500100bb500100bc500100bd500100be500100bf500100c0500100c1500100c2500100c3500100c4500100c5500100c6500100c7500100c8500100c9500100ca500100cb500100cc500100cd500100ce500100cf500100d0500100d1500100d2500100d3500100d4500100d5500100d6500100d7500100d8500100d9500100da500100db500100dc500100dd500100de500100df500100e0500100e1500100e2500100e3500100e4500100e5500100e6500100e7500100e8500100e9500100ea500100eb500100ec500100ed500100ee500100ef500100f0500100f1500100f2500100f3500100f4500100f5500100f6500100f7500100f8500100f9500100fa500100fb500100fc500100fd500100fe500100ff500100005101000151010002510100035101000451010005510100065101000751010008510100095101000a5101000b5101000c5101000d5101000e5101000f510100105101001151010012510100135101001451010015510100165101001751010018510100195101001a5101001b5101001c5101001d5101001e5101001f510100205101002151010022510100235101002451010025510100265101002751010028510100295101002a5101002b5101002c5101002d5101002e5101002f510100305101003151010032510100335101003451010035510100365101003751010038510100395101003a5101003b5101003c5101003d5101003e5101003f510100405101004151010042510100435101004451010045510100465101004751010048510100495101004a5101004b5101004c5101004d5101004e5101004f510100505101005151010052510100535101005451010055510100565101005751010058510100595101005a5101005b5101005c5101005d5101005e5101005f510100605101006151010062510100635101006451010065510100665101006751010068510100695101006a5101006b5101006c5101006d5101006e5101006f510100705101007151010072510100735101007451010075510100765101007751010078510100795101007a5101007b5101007c5101007d5101007e5101007f510100805101008151010082510100835101008451010085510100865101008751010088510100895101008a5101008b5101008c5101008d5101008e5101008f510100905101009151010092510100935101009451010095510100965101009751010098510100995101009a5101009b5101009c5101009d5101009e5101009f510100a0510100a1510100a2510100a3510100a4510100a5510100a6510100a7510100a8510100a9510100aa510100ab510100ac510100ad510100ae510100af510100b0510100b1510100b2510100b3510100b4510100b5510100b6510100b7510100b8510100b9510100ba510100bb510100bc510100bd510100be510100bf510100c0510100c1510100c2510100c3510100c4510100c5510100c6510100c7510100c8510100c9510100ca510100cb510100cc510100cd510100ce510100cf510100d0510100d1510100d2510100d3510100d4510100d5510100d6510100d7510100d8510100d9510100da510100db510100dc510100dd510100de510100df510100e0510100e1510100e2510100e3510100e4510100e5510100e6510100e7510100e8510100e9510100ea510100eb510100ec510100ed510100ee510100ef510100f0510100f1510100f2510100f3510100f4510100f5510100f6510100f7510100f8510100f9510100fa510100fb510100fc510100fd510100fe510100ff510100005201000152010002520100035201000452010005520100065201000752010008520100095201000a5201000b5201000c5201000d5201000e5201000f520100105201001152010012520100135201001452010015520100165201001752010018520100195201001a5201001b5201001c5201001d5201001e5201001f520100205201002152010022520100235201002452010025520100265201002752010028520100295201002a5201002b5201002c5201002d5201002e5201002f520100305201003152010032520100335201003452010035520100365201003752010038520100395201003a5201003b5201003c5201003d5201003e5201003f520100405201004152010042520100435201004452010045520100465201004752010048520100495201004a5201004b5201004c5201004d5201004e5201004f520100505201005152010052520100535201005452010055520100565201005752010058520100595201005a5201005b5201005c5201005d5201005e5201005f520100605201006152010062520100635201006452010065520100665201006752010068520100695201006a5201006b5201006c5201006d5201006e5201006f520100705201007152010072520100735201007452010075520100765201007752010078520100795201007a5201007b5201007c5201007d5201007e5201007f520100805201008152010082520100835201008452010085520100865201008752010088520100895201008a5201008b5201008c5201008d5201008e5201008f520100905201009152010092520100935201009452010095520100965201009752010098520100995201009a5201009b5201009c5201009d5201009e5201009f520100a0520100a1520100a2520100a3520100a4520100a5520100a6520100a7520100a8520100a9520100aa520100ab520100ac520100ad520100ae520100af520100b0520100b1520100b2520100b3520100b4520100b5520100b6520100b7520100b8520100b9520100ba520100bb520100bc520100bd520100be520100bf520100c0520100c1520100c2520100c3520100c4520100c5520100c6520100c7520100c8520100c9520100ca520100cb520100cc520100cd520100ce520100cf520100d0520100d1520100d2520100d3520100d4520100d5520100d6520100d7520100d8520100d9520100da520100db520100dc520100dd520100de520100df520100e0520100e1520100e2520100e3520100e4520100e5520100e6520100e7520100e8520100e9520100ea520100eb520100ec520100ed520100ee520100ef520100f0520100f1520100f2520100f3520100f4520100f5520100f6520100f7520100f8520100f9520100fa520100fb520100fc520100fd520100fe520100ff520100005301000153010002530100035301000453010005530100065301000753010008530100095301000a5301000b5301000c5301000d5301000e5301000f530100105301001153010012530100135301001453010015530100165301001753010018530100195301001a5301001b5301001c5301001d5301001e5301001f530100205301002153010022530100235301002453010025530100265301002753010028530100295301002a5301002b5301002c5301002d5301002e5301002f530100305301003153010032530100335301003453010035530100365301003753010038530100395301003a5301003b5301003c5301003d5301003e5301003f530100405301004153010042530100435301004453010045530100465301004753010048530100495301004a5301004b5301004c5301004d5301004e5301004f530100505301005153010052530100535301005453010055530100565301005753010058530100595301005a5301005b5301005c5301005d5301005e5301005f530100605301006153010062530100635301006453010065530100665301006753010068530100695301006a5301006b5301006c5301006d5301006e5301006f530100705301007153010072530100735301007453010075530100765301007753010078530100795301007a5301007b5301007c5301007d5301007e5301007f530100805301008153010082530100835301008453010085530100865301008753010088530100895301008a5301008b5301008c5301008d5301008e5301008f530100905301009153010092530100935301009453010095530100965301009753010098530100995301009a5301009b5301009c5301009d5301009e5301009f530100a0530100a1530100a2530100a3530100a4530100a5530100a6530100a7530100a8530100a9530100aa530100ab530100ac530100ad530100ae530100af530100b0530100b1530100b2530100b3530100b4530100b5530100b6530100b7530100b8530100b9530100ba530100bb530100bc530100bd530100be530100bf530100c0530100c1530100c2530100c3530100c4530100c5530100c6530100c7530100c8530100c9530100ca530100cb530100cc530100cd530100ce530100cf530100d0530100d1530100d2530100d3530100d4530100d5530100d6530100d7530100d8530100d9530100da530100db530100dc530100dd530100de530100df530100e0530100e1530100e2530100e3530100e4530100e5530100e6530100e7530100e8530100e9530100ea530100eb530100ec530100ed530100ee530100ef530100f0530100f1530100f2530100f3530100f4530100f5530100f6530100f7530100f8530100f9530100fa530100fb530100fc530100fd530100fe530100ff530100005401000154010002540100035401000454010005540100065401000754010008540100095401000a5401000b5401000c5401000d5401000e5401000f540100105401001154010012540100135401001454010015540100165401001754010018540100195401001a5401001b5401001c5401001d5401001e5401001f540100205401002154010022540100235401002454010025540100265401002754010028540100295401002a5401002b5401002c5401002d5401002e5401002f540100305401003154010032540100335401003454010035540100365401003754010038540100395401003a5401003b5401003c5401003d5401003e5401003f540100405401004154010042540100435401004454010045540100465401004754010048540100495401004a5401004b5401004c5401004d5401004e5401004f540100505401005154010052540100535401005454010055540100565401005754010058540100595401005a5401005b5401005c5401005d5401005e5401005f540100605401006154010062540100635401006454010065540100665401006754010068540100695401006a5401006b5401006c5401006d5401006e5401006f540100705401007154010072540100735401007454010075540100765401007754010078540100795401007a5401007b5401007c5401007d5401007e5401007f540100805401008154010082540100835401008454010085540100865401008754010088540100895401008a5401008b5401008c5401008d5401008e5401008f540100905401009154010092540100935401009454010095540100965401009754010098540100995401009a5401009b5401009c5401009d5401009e5401009f540100a0540100a1540100a2540100a3540100a4540100a5540100a6540100a7540100a8540100a9540100aa540100ab540100ac540100ad540100ae540100af540100b0540100b1540100b2540100b3540100b4540100b5540100b6540100b7540100b8540100b9540100ba540100bb540100bc540100bd540100be540100bf540100c0540100c1540100c2540100c3540100c4540100c5540100c6540100c7540100c8540100c9540100ca540100cb540100cc540100cd540100ce540100cf540100d0540100d1540100d2540100d3540100d4540100d5540100d6540100d7540100d8540100d9540100da540100db540100dc540100dd540100de540100df540100e0540100e1540100e2540100e3540100e4540100e5540100e6540100e7540100e8540100e9540100ea540100eb540100ec540100ed540100ee540100ef540100f0540100f1540100f2540100f3540100f4540100f5540100f6540100f7540100f8540100f9540100fa540100fb540100fc540100fd540100fe540100ff540100005501000155010002550100035501000455010005550100065501000755010008550100095501000a5501000b5501000c5501000d5501000e5501000f550100105501001155010012550100135501001455010015550100165501001755010018550100195501001a5501001b5501001c5501001d5501001e5501001f550100205501002155010022550100235501002455010025550100265501002755010028550100295501002a5501002b5501002c5501002d5501002e5501002f550100305501003155010032550100335501003455010035550100365501003755010038550100395501003a5501003b5501003c5501003d5501003e5501003f550100405501004155010042550100435501004455010045550100465501004755010048550100495501004a5501004b5501004c5501004d5501004e5501004f550100505501005155010052550100535501005455010055550100565501005755010058550100595501005a5501005b5501005c5501005d5501005e5501005f550100605501006155010062550100635501006455010065550100665501006755010068550100695501006a5501006b5501006c5501006d5501006e5501006f550100705501007155010072550100735501007455010075550100765501007755010078550100795501007a5501007b5501007c5501007d5501007e5501007f550100805501008155010082550100835501008455010085550100865501008755010088550100895501008a5501008b5501008c5501008d5501008e5501008f550100905501009155010092550100935501009455010095550100965501009755010098550100995501009a5501009b5501009c5501009d5501009e5501009f550100a0550100a1550100a2550100a3550100a4550100a5550100a6550100a7550100a8550100a9550100aa550100ab550100ac550100ad550100ae550100af550100b0550100b1550100b2550100b3550100b4550100b5550100b6550100b7550100b8550100b9550100ba550100bb550100bc550100bd550100be550100bf550100c0550100c1550100c2550100c3550100c4550100c5550100c6550100c7550100c8550100c9550100ca550100cb550100cc550100cd550100ce550100cf550100d0550100d1550100d2550100d3550100d4550100d5550100d6550100d7550100d8550100d9550100da550100db550100dc550100dd550100de550100df550100e0550100e1550100e2550100e3550100e4550100e5550100e6550100e7550100e8550100e9550100ea550100eb550100ec550100ed550100ee550100ef550100f0550100f1550100f2550100f3550100f4550100f5550100f6550100f7550100f8550100f9550100fa550100fb550100fc550100fd550100fe550100ff550100005601000156010002560100035601000456010005560100065601000756010008560100095601000a5601000b5601000c5601000d5601000e5601000f560100105601001156010012560100135601001456010015560100165601001756010018560100195601001a5601001b5601001c5601001d5601001e5601001f560100205601002156010022560100235601002456010025560100265601002756010028560100295601002a5601002b5601002c5601002d5601002e5601002f560100305601003156010032560100335601003456010035560100365601003756010038560100395601003a5601003b5601003c5601003d5601003e5601003f560100405601004156010042560100435601004456010045560100465601004756010048560100495601004a5601004b5601004c5601004d5601004e5601004f560100505601005156010052560100535601005456010055560100565601005756010058560100595601005a5601005b5601005c5601005d5601005e5601005f560100605601006156010062560100635601006456010065560100665601006756010068560100695601006a5601006b5601006c5601006d5601006e5601006f560100705601007156010072560100735601007456010075560100765601007756010078560100795601007a5601007b5601007c5601007d5601007e5601007f560100805601008156010082560100835601008456010085560100865601008756010088560100895601008a5601008b5601008c5601008d5601008e5601008f560100905601009156010092560100935601009456010095560100965601009756010098560100995601009a5601009b5601009c5601009d5601009e5601009f560100a0560100a1560100a2560100a3560100a4560100a5560100a6560100a7560100a8560100a9560100aa560100ab560100ac560100ad560100ae560100af560100b0560100b1560100b2560100b3560100b4560100b5560100b6560100b7560100b8560100b9560100ba560100bb560100bc560100bd560100be560100bf560100c0560100c1560100c2560100c3560100c4560100c5560100c6560100c7560100c8560100c9560100ca560100cb560100cc560100cd560100ce560100cf560100d0560100d1560100d2560100d3560100d4560100d5560100d6560100d7560100d8560100d9560100da560100db560100dc560100dd560100de560100df560100e0560100e1560100e2560100e3560100e4560100e5560100e6560100e7560100e8560100e9560100ea560100eb560100ec560100ed560100ee560100ef560100f0560100f1560100f2560100f3560100f4560100f5560100f6560100f7560100f8560100f9560100fa560100fb560100fc560100fd560100fe560100ff560100005701000157010002570100035701000457010005570100065701000757010008570100095701000a5701000b5701000c5701000d5701000e5701000f570100105701001157010012570100135701001457010015570100165701001757010018570100195701001a5701001b5701001c5701001d5701001e5701001f570100205701002157010022570100235701002457010025570100265701002757010028570100295701002a5701002b5701002c5701002d5701002e5701002f570100305701003157010032570100335701003457010035570100365701003757010038570100395701003a5701003b5701003c5701003d5701003e5701003f570100405701004157010042570100435701004457010045570100465701004757010048570100495701004a5701004b5701004c5701004d5701004e5701004f570100505701005157010052570100535701005457010055570100565701005757010058570100595701005a5701005b5701005c5701005d5701005e5701005f570100605701006157010062570100635701006457010065570100665701006757010068570100695701006a5701006b5701006c5701006d5701006e5701006f570100705701007157010072570100735701007457010075570100765701007757010078570100795701007a5701007b5701007c5701007d5701007e5701007f570100805701008157010082570100835701008457010085570100865701008757010088570100895701008a5701008b5701008c5701008d5701008e5701008f570100905701009157010092570100935701009457010095570100965701009757010098570100995701009a5701009b5701009c5701009d5701009e5701009f570100a0570100a1570100a2570100a3570100a4570100a5570100a6570100a7570100a8570100a9570100aa570100ab570100ac570100ad570100ae570100af570100b0570100b1570100b2570100b3570100b4570100b5570100b6570100b7570100b8570100b9570100ba570100bb570100bc570100bd570100be570100bf570100c0570100c1570100c2570100c3570100c4570100c5570100c6570100c7570100c8570100c9570100ca570100cb570100cc570100cd570100ce570100cf570100d0570100d1570100d2570100d3570100d4570100d5570100d6570100d7570100d8570100d9570100da570100db570100dc570100dd570100de570100df570100e0570100e1570100e2570100e3570100e4570100e5570100e6570100e7570100e8570100e9570100ea570100eb570100ec570100ed570100ee570100ef570100f0570100f1570100f2570100f3570100f4570100f5570100f6570100f7570100f8570100f9570100fa570100fb570100fc570100fd570100fe570100ff570100005801000158010002580100035801000458010005580100065801000758010008580100095801000a5801000b5801000c5801000d5801000e5801000f580100105801001158010012580100135801001458010015580100165801001758010018580100195801001a5801001b5801001c5801001d5801001e5801001f580100205801002158010022580100235801002458010025580100265801002758010028580100295801002a5801002b5801002c5801002d5801002e5801002f580100305801003158010032580100335801003458010035580100365801003758010038580100395801003a5801003b5801003c5801003d5801003e5801003f580100405801004158010042580100435801004458010045580100465801004758010048580100495801004a5801004b5801004c5801004d5801004e5801004f580100505801005158010052580100535801005458010055580100565801005758010058580100595801005a5801005b5801005c5801005d5801005e5801005f580100605801006158010062580100635801006458010065580100665801006758010068580100695801006a5801006b5801006c5801006d5801006e5801006f580100705801007158010072580100735801007458010075580100765801007758010078580100795801007a5801007b5801007c5801007d5801007e5801007f580100805801008158010082580100835801008458010085580100865801008758010088580100895801008a5801008b5801008c5801008d5801008e5801008f580100905801009158010092580100935801009458010095580100965801009758010098580100995801009a5801009b5801009c5801009d5801009e5801009f580100a0580100a1580100a2580100a3580100a4580100a5580100a6580100a7580100a8580100a9580100aa580100ab580100ac580100ad580100ae580100af580100b0580100b1580100b2580100b3580100b4580100b5580100b6580100b7580100b8580100b9580100ba580100bb580100bc580100bd580100be580100bf580100c0580100c1580100c2580100c3580100c4580100c5580100c6580100c7580100c8580100c9580100ca580100cb580100cc580100cd580100ce580100cf580100d0580100d1580100d2580100d3580100d4580100d5580100d6580100d7580100d8580100d9580100da580100db580100dc580100dd580100de580100df580100e0580100e1580100e2580100e3580100e4580100e5580100e6580100e7580100e8580100e9580100ea580100eb580100ec580100ed580100ee580100ef580100f0580100f1580100f2580100f3580100f4580100f5580100f6580100f7580100f8580100f9580100fa580100fb580100fc580100fd580100fe580100ff580100005901000159010002590100035901000459010005590100065901000759010008590100095901000a5901000b5901000c5901000d5901000e5901000f590100105901001159010012590100135901001459010015590100165901001759010018590100195901001a5901001b5901001c5901001d5901001e5901001f590100205901002159010022590100235901002459010025590100265901002759010028590100295901002a5901002b5901002c5901002d5901002e5901002f590100305901003159010032590100335901003459010035590100365901003759010038590100395901003a5901003b5901003c5901003d5901003e5901003f590100405901004159010042590100435901004459010045590100465901004759010048590100495901004a5901004b5901004c5901004d5901004e5901004f590100505901005159010052590100535901005459010055590100565901005759010058590100595901005a5901005b5901005c5901005d5901005e5901005f590100605901006159010062590100635901006459010065590100665901006759010068590100695901006a5901006b5901006c5901006d5901006e5901006f590100705901007159010072590100735901007459010075590100765901007759010078590100795901007a5901007b5901007c5901007d5901007e5901007f590100805901008159010082590100835901008459010085590100865901008759010088590100895901008a5901008b5901008c5901008d5901008e5901008f590100905901009159010092590100935901009459010095590100965901009759010098590100995901009a5901009b5901009c5901009d5901009e5901009f590100a0590100a1590100a2590100a3590100a4590100a5590100a6590100a7590100a8590100a9590100aa590100ab590100ac590100ad590100ae590100af590100b0590100b1590100b2590100b3590100b4590100b5590100b6590100b7590100b8590100b9590100ba590100bb590100bc590100bd590100be590100bf590100c0590100c1590100c2590100c3590100c4590100c5590100c6590100c7590100c8590100c9590100ca590100cb590100cc590100cd590100ce590100cf590100d0590100d1590100d2590100d3590100d4590100d5590100d6590100d7590100d8590100d9590100da590100db590100dc590100dd590100de590100df590100e0590100e1590100e2590100e3590100e4590100e5590100e6590100e7590100e8590100e9590100ea590100eb590100ec590100ed590100ee590100ef590100f0590100f1590100f2590100f3590100f4590100f5590100f6590100f7590100f8590100f9590100fa590100fb590100fc590100fd590100fe590100ff590100005a0100015a0100025a0100035a0100045a0100055a0100065a0100075a0100085a0100095a01000a5a01000b5a01000c5a01000d5a01000e5a01000f5a0100105a0100115a0100125a0100135a0100145a0100155a0100165a0100175a0100185a0100195a01001a5a01001b5a01001c5a01001d5a01001e5a01001f5a0100205a0100215a0100225a0100235a0100245a0100255a0100265a0100275a0100285a0100295a01002a5a01002b5a01002c5a01002d5a01002e5a01002f5a0100305a0100315a0100325a0100335a0100345a0100355a0100365a0100375a0100385a0100395a01003a5a01003b5a01003c5a01003d5a01003e5a01003f5a0100405a0100415a0100425a0100435a0100445a0100455a0100465a0100475a0100485a0100495a01004a5a01004b5a01004c5a01004d5a01004e5a01004f5a0100505a0100515a0100525a0100535a0100545a0100555a0100565a0100575a0100585a0100595a01005a5a01005b5a01005c5a01005d5a01005e5a01005f5a0100605a0100615a0100625a0100635a0100645a0100655a0100665a0100675a0100685a0100695a01006a5a01006b5a01006c5a01006d5a01006e5a01006f5a0100705a0100715a0100725a0100735a0100745a0100755a0100765a0100775a0100785a0100795a01007a5a01007b5a01007c5a01007d5a01007e5a01007f5a0100805a0100815a0100825a0100835a0100845a0100855a0100865a0100875a0100885a0100895a01008a5a01008b5a01008c5a01008d5a01008e5a01008f5a0100905a0100915a0100925a0100935a0100945a0100955a0100965a0100975a0100985a0100995a01009a5a01009b5a01009c5a01009d5a01009e5a01009f5a0100a05a0100a15a0100a25a0100a35a0100a45a0100a55a0100a65a0100a75a0100a85a0100a95a0100aa5a0100ab5a0100ac5a0100ad5a0100ae5a0100af5a0100b05a0100b15a0100b25a0100b35a0100b45a0100b55a0100b65a0100b75a0100b85a0100b95a0100ba5a0100bb5a0100bc5a0100bd5a0100be5a0100bf5a0100c05a0100c15a0100c25a0100c35a0100c45a0100c55a0100c65a0100c75a0100c85a0100c95a0100ca5a0100cb5a0100cc5a0100cd5a0100ce5a0100cf5a0100d05a0100d15a0100d25a0100d35a0100d45a0100d55a0100d65a0100d75a0100d85a0100d95a0100da5a0100db5a0100dc5a0100dd5a0100de5a0100df5a0100e05a0100e15a0100e25a0100e35a0100e45a0100e55a0100e65a0100e75a0100e85a0100e95a0100ea5a0100eb5a0100ec5a0100ed5a0100ee5a0100ef5a0100f05a0100f15a0100f25a0100f35a0100f45a0100f55a0100f65a0100f75a0100f85a0100f95a0100fa5a0100fb5a0100fc5a0100fd5a0100fe5a0100ff5a0100005b0100015b0100025b0100035b0100045b0100055b0100065b0100075b0100085b0100095b01000a5b01000b5b01000c5b01000d5b01000e5b01000f5b0100105b0100115b0100125b0100135b0100145b0100155b0100165b0100175b0100185b0100195b01001a5b01001b5b01001c5b01001d5b01001e5b01001f5b0100205b0100215b0100225b0100235b0100245b0100255b0100265b0100275b0100285b0100295b01002a5b01002b5b01002c5b01002d5b01002e5b01002f5b0100305b0100315b0100325b0100335b0100345b0100355b0100365b0100375b0100385b0100395b01003a5b01003b5b01003c5b01003d5b01003e5b01003f5b0100405b0100415b0100425b0100435b0100445b0100455b0100465b0100475b0100485b0100495b01004a5b01004b5b01004c5b01004d5b01004e5b01004f5b0100505b0100515b0100525b0100535b0100545b0100555b0100565b0100575b0100585b0100595b01005a5b01005b5b01005c5b01005d5b01005e5b01005f5b0100605b0100615b0100625b0100635b0100645b0100655b0100665b0100675b0100685b0100695b01006a5b01006b5b01006c5b01006d5b01006e5b01006f5b0100705b0100715b0100725b0100735b0100745b0100755b0100765b0100775b0100785b0100795b01007a5b01007b5b01007c5b01007d5b01007e5b01007f5b0100805b0100815b0100825b0100835b0100845b0100855b0100865b0100875b0100885b0100895b01008a5b01008b5b01008c5b01008d5b01008e5b01008f5b0100905b0100915b0100925b0100935b0100945b0100955b0100965b0100975b0100985b0100995b01009a5b01009b5b01009c5b01009d5b01009e5b01009f5b0100a05b0100a15b0100a25b0100a35b0100a45b0100a55b0100a65b0100a75b0100a85b0100a95b0100aa5b0100ab5b0100ac5b0100ad5b0100ae5b0100af5b0100b05b0100b15b0100b25b0100b35b0100b45b0100b55b0100b65b0100b75b0100b85b0100b95b0100ba5b0100bb5b0100bc5b0100bd5b0100be5b0100bf5b0100c05b0100c15b0100c25b0100c35b0100c45b0100c55b0100c65b0100c75b0100c85b0100c95b0100ca5b0100cb5b0100cc5b0100cd5b0100ce5b0100cf5b0100d05b0100d15b0100d25b0100d35b0100d45b0100d55b0100d65b0100d75b0100d85b0100d95b0100da5b0100db5b0100dc5b0100dd5b0100de5b0100df5b0100e05b0100e15b0100e25b0100e35b0100e45b0100e55b0100e65b0100e75b0100e85b0100e95b0100ea5b0100eb5b0100ec5b0100ed5b0100ee5b0100ef5b0100f05b0100f15b0100f25b0100f35b0100f45b0100f55b0100f65b0100f75b0100f85b0100f95b0100fa5b0100fb5b0100fc5b0100fd5b0100fe5b0100ff5b0100005c0100015c0100025c0100035c0100045c0100055c0100065c0100075c0100085c0100095c01000a5c01000b5c01000c5c01000d5c01000e5c01000f5c0100105c0100115c0100125c0100135c0100145c0100155c0100165c0100175c0100185c0100195c01001a5c01001b5c01001c5c01001d5c01001e5c01001f5c0100205c0100215c0100225c0100235c0100245c0100255c0100265c0100275c0100285c0100295c01002a5c01002b5c01002c5c01002d5c01002e5c01002f5c0100305c0100315c0100325c0100335c0100345c0100355c0100365c0100375c0100385c0100395c01003a5c01003b5c01003c5c01003d5c01003e5c01003f5c0100405c0100415c0100425c0100435c0100445c0100455c0100465c0100475c0100485c0100495c01004a5c01004b5c01004c5c01004d5c01004e5c01004f5c0100505c0100515c0100525c0100535c0100545c0100555c0100565c0100575c0100585c0100595c01005a5c01005b5c01005c5c01005d5c01005e5c01005f5c0100605c0100615c0100625c0100635c0100645c0100655c0100665c0100675c0100685c0100695c01006a5c01006b5c01006c5c01006d5c01006e5c01006f5c0100705c0100715c0100725c0100735c0100745c0100755c0100765c0100775c0100785c0100795c01007a5c01007b5c01007c5c01007d5c01007e5c01007f5c0100805c0100815c0100825c0100835c0100845c0100855c0100865c0100875c0100885c0100895c01008a5c01008b5c01008c5c01008d5c01008e5c01008f5c0100905c0100915c0100925c0100935c0100945c0100955c0100965c0100975c0100985c0100995c01009a5c01009b5c01009c5c01009d5c01009e5c01009f5c0100a05c0100a15c0100a25c0100a35c0100a45c0100a55c0100a65c0100a75c0100a85c0100a95c0100aa5c0100ab5c0100ac5c0100ad5c0100ae5c0100af5c0100b05c0100b15c0100b25c0100b35c0100b45c0100b55c0100b65c0100b75c0100b85c0100b95c0100ba5c0100bb5c0100bc5c0100bd5c0100be5c0100bf5c0100c05c0100c15c0100c25c0100c35c0100c45c0100c55c0100c65c0100c75c0100c85c0100c95c0100ca5c0100cb5c0100cc5c0100cd5c0100ce5c0100cf5c0100d05c0100d15c0100d25c0100d35c0100d45c0100d55c0100d65c0100d75c0100d85c0100d95c0100da5c0100db5c0100dc5c0100dd5c0100de5c0100df5c0100e05c0100e15c0100e25c0100e35c0100e45c0100e55c0100e65c0100e75c0100e85c0100e95c0100ea5c0100eb5c0100ec5c0100ed5c0100ee5c0100ef5c0100f05c0100f15c0100f25c0100f35c0100f45c0100f55c0100f65c0100f75c0100f85c0100f95c0100fa5c0100fb5c0100fc5c0100fd5c0100fe5c0100ff5c0100005d0100015d0100025d0100035d0100045d0100055d0100065d0100075d0100085d0100095d01000a5d01000b5d01000c5d01000d5d01000e5d01000f5d0100105d0100115d0100125d0100135d0100145d0100155d0100165d0100175d0100185d0100195d01001a5d01001b5d01001c5d01001d5d01001e5d01001f5d0100205d0100215d0100225d0100235d0100245d0100255d0100265d0100275d0100285d0100295d01002a5d01002b5d01002c5d01002d5d01002e5d01002f5d0100305d0100315d0100325d0100335d0100345d0100355d0100365d0100375d0100385d0100395d01003a5d01003b5d01003c5d01003d5d01003e5d01003f5d0100405d0100415d0100425d0100435d0100445d0100455d0100465d0100475d0100485d0100495d01004a5d01004b5d01004c5d01004d5d01004e5d01004f5d0100505d0100515d0100525d0100535d0100545d0100555d0100565d0100575d0100585d0100595d01005a5d01005b5d01005c5d01005d5d01005e5d01005f5d0100605d0100615d0100625d0100635d0100645d0100655d0100665d0100675d0100685d0100695d01006a5d01006b5d01006c5d01006d5d01006e5d01006f5d0100705d0100715d0100725d0100735d0100745d0100755d0100765d0100775d0100785d0100795d01007a5d01007b5d01007c5d01007d5d01007e5d01007f5d0100805d0100815d0100825d0100835d0100845d0100855d0100865d0100875d0100885d0100895d01008a5d01008b5d01008c5d01008d5d01008e5d01008f5d0100905d0100915d0100925d0100935d0100945d0100955d0100965d0100975d0100985d0100995d01009a5d01009b5d01009c5d01009d5d01009e5d01009f5d0100a05d0100a15d0100a25d0100a35d0100a45d0100a55d0100a65d0100a75d0100a85d0100a95d0100aa5d0100ab5d0100ac5d0100ad5d0100ae5d0100af5d0100b05d0100b15d0100b25d0100b35d0100b45d0100b55d0100b65d0100b75d0100b85d0100b95d0100ba5d0100bb5d0100bc5d0100bd5d0100be5d0100bf5d0100c05d0100c15d0100c25d0100c35d0100c45d0100c55d0100c65d0100c75d0100c85d0100c95d0100ca5d0100cb5d0100cc5d0100cd5d0100ce5d0100cf5d0100d05d0100d15d0100d25d0100d35d0100d45d0100d55d0100d65d0100d75d0100d85d0100d95d0100da5d0100db5d0100dc5d0100dd5d0100de5d0100df5d0100e05d0100e15d0100e25d0100e35d0100e45d0100e55d0100e65d0100e75d0100e85d0100e95d0100ea5d0100eb5d0100ec5d0100ed5d0100ee5d0100ef5d0100f05d0100f15d0100f25d0100f35d0100f45d0100f55d0100f65d0100f75d0100f85d0100f95d0100fa5d0100fb5d0100fc5d0100fd5d0100fe5d0100ff5d0100005e0100015e0100025e0100035e0100045e0100055e0100065e0100075e0100085e0100095e01000a5e01000b5e01000c5e01000d5e01000e5e01000f5e0100105e0100115e0100125e0100135e0100145e0100155e0100165e0100175e0100185e0100195e01001a5e01001b5e01001c5e01001d5e01001e5e01001f5e0100205e0100215e0100225e0100235e0100245e0100255e0100265e0100275e0100285e0100295e01002a5e01002b5e01002c5e01002d5e01002e5e01002f5e0100305e0100315e0100325e0100335e0100345e0100355e0100365e0100375e0100385e0100395e01003a5e01003b5e01003c5e01003d5e01003e5e01003f5e0100405e0100415e0100425e0100435e0100445e0100455e0100465e0100475e0100485e0100495e01004a5e01004b5e01004c5e01004d5e01004e5e01004f5e0100505e0100515e0100525e0100535e0100545e0100555e0100565e0100575e0100585e0100595e01005a5e01005b5e01005c5e01005d5e01005e5e01005f5e0100605e0100615e0100625e0100635e0100645e0100655e0100665e0100675e0100685e0100695e01006a5e01006b5e01006c5e01006d5e01006e5e01006f5e0100705e0100715e0100725e0100735e0100745e0100755e0100765e0100775e0100785e0100795e01007a5e01007b5e01007c5e01007d5e01007e5e01007f5e0100805e0100815e0100825e0100835e0100845e0100855e0100865e0100875e0100885e0100895e01008a5e01008b5e01008c5e01008d5e01008e5e01008f5e0100905e0100915e0100925e0100935e0100945e0100955e0100965e0100975e0100985e0100995e01009a5e01009b5e01009c5e01009d5e01009e5e01009f5e0100a05e0100a15e0100a25e0100a35e0100a45e0100a55e0100a65e0100a75e0100a85e0100a95e0100aa5e0100ab5e0100ac5e0100ad5e0100ae5e0100af5e0100b05e0100b15e0100b25e0100b35e0100b45e0100b55e0100b65e0100b75e0100b85e0100b95e0100ba5e0100bb5e0100bc5e0100bd5e0100be5e0100bf5e0100c05e0100c15e0100c25e0100c35e0100c45e0100c55e0100c65e0100c75e0100c85e0100c95e0100ca5e0100cb5e0100cc5e0100cd5e0100ce5e0100cf5e0100d05e0100d15e0100d25e0100d35e0100d45e0100d55e0100d65e0100d75e0100d85e0100d95e0100da5e0100db5e0100dc5e0100dd5e0100de5e0100df5e0100e05e0100e15e0100e25e0100e35e0100e45e0100e55e0100e65e0100e75e0100e85e0100e95e0100ea5e0100eb5e0100ec5e0100ed5e0100ee5e0100ef5e0100f05e0100f15e0100f25e0100f35e0100f45e0100f55e0100f65e0100f75e0100f85e0100f95e0100fa5e0100fb5e0100fc5e0100fd5e0100fe5e0100ff5e0100005f0100015f0100025f0100035f0100045f0100055f0100065f0100075f0100085f0100095f01000a5f01000b5f01000c5f01000d5f01000e5f01000f5f0100105f0100115f0100125f0100135f0100145f0100155f0100165f0100175f0100185f0100195f01001a5f01001b5f01001c5f01001d5f01001e5f01001f5f0100205f0100215f0100225f0100235f0100245f0100255f0100265f0100275f0100285f0100295f01002a5f01002b5f01002c5f01002d5f01002e5f01002f5f0100305f0100315f0100325f0100335f0100345f0100355f0100365f0100375f0100385f0100395f01003a5f01003b5f01003c5f01003d5f01003e5f01003f5f0100405f0100415f0100425f0100435f0100445f0100455f0100465f0100475f0100485f0100495f01004a5f01004b5f01004c5f01004d5f01004e5f01004f5f0100505f0100515f0100525f0100535f0100545f0100555f0100565f0100575f0100585f0100595f01005a5f01005b5f01005c5f01005d5f01005e5f01005f5f0100605f0100615f0100625f0100635f0100645f0100655f0100665f0100675f0100685f0100695f01006a5f01006b5f01006c5f01006d5f01006e5f01006f5f0100705f0100715f0100725f0100735f0100745f0100755f0100765f0100775f0100785f0100795f01007a5f01007b5f01007c5f01007d5f01007e5f01007f5f0100805f0100815f0100825f0100835f0100845f0100855f0100865f0100875f0100885f0100895f01008a5f01008b5f01008c5f01008d5f01008e5f01008f5f0100905f0100915f0100925f0100935f0100945f0100955f0100965f0100975f0100985f0100995f01009a5f01009b5f01009c5f01009d5f01009e5f01009f5f0100a05f0100a15f0100a25f0100a35f0100a45f0100a55f0100a65f0100a75f0100a85f0100a95f0100aa5f0100ab5f0100ac5f0100ad5f0100ae5f0100af5f0100b05f0100b15f0100b25f0100b35f0100b45f0100b55f0100b65f0100b75f0100b85f0100b95f0100ba5f0100bb5f0100bc5f0100bd5f0100be5f0100bf5f0100c05f0100c15f0100c25f0100c35f0100c45f0100c55f0100c65f0100c75f0100c85f0100c95f0100ca5f0100cb5f0100cc5f0100cd5f0100ce5f0100cf5f0100d05f0100d15f0100d25f0100d35f0100d45f0100d55f0100d65f0100d75f0100d85f0100d95f0100da5f0100db5f0100dc5f0100dd5f0100de5f0100df5f0100e05f0100e15f0100e25f0100e35f0100e45f0100e55f0100e65f0100e75f0100e85f0100e95f0100ea5f0100eb5f0100ec5f0100ed5f0100ee5f0100ef5f0100f05f0100f15f0100f25f0100f35f0100f45f0100f55f0100f65f0100f75f0100f85f0100f95f0100fa5f0100fb5f0100fc5f0100fd5f0100fe5f0100ff5f0100006001000160010002600100036001000460010005600100066001000760010008600100096001000a6001000b6001000c6001000d6001000e6001000f600100106001001160010012600100136001001460010015600100166001001760010018600100196001001a6001001b6001001c6001001d6001001e6001001f600100206001002160010022600100236001002460010025600100266001002760010028600100296001002a6001002b6001002c6001002d6001002e6001002f600100306001003160010032600100336001003460010035600100366001003760010038600100396001003a6001003b6001003c6001003d6001003e6001003f600100406001004160010042600100436001004460010045600100466001004760010048600100496001004a6001004b6001004c6001004d6001004e6001004f600100506001005160010052600100536001005460010055600100566001005760010058600100596001005a6001005b6001005c6001005d6001005e6001005f600100606001006160010062600100636001006460010065600100666001006760010068600100696001006a6001006b6001006c6001006d6001006e6001006f600100706001007160010072600100736001007460010075600100766001007760010078600100796001007a6001007b6001007c6001007d6001007e6001007f600100806001008160010082600100836001008460010085600100866001008760010088600100896001008a6001008b6001008c6001008d6001008e6001008f600100906001009160010092600100936001009460010095600100966001009760010098600100996001009a6001009b6001009c6001009d6001009e6001009f600100a0600100a1600100a2600100a3600100a4600100a5600100a6600100a7600100a8600100a9600100aa600100ab600100ac600100ad600100ae600100af600100b0600100b1600100b2600100b3600100b4600100b5600100b6600100b7600100b8600100b9600100ba600100bb600100bc600100bd600100be600100bf600100c0600100c1600100c2600100c3600100c4600100c5600100c6600100c7600100c8600100c9600100ca600100cb600100cc600100cd600100ce600100cf600100d0600100d1600100d2600100d3600100d4600100d5600100d6600100d7600100d8600100d9600100da600100db600100dc600100dd600100de600100df600100e0600100e1600100e2600100e3600100e4600100e5600100e6600100e7600100e8600100e9600100ea600100eb600100ec600100ed600100ee600100ef600100f0600100f1600100f2600100f3600100f4600100f5600100f6600100f7600100f8600100f9600100fa600100fb600100fc600100fd600100fe600100ff600100006101000161010002610100036101000461010005610100066101000761010008610100096101000a6101000b6101000c6101000d6101000e6101000f610100106101001161010012610100136101001461010015610100166101001761010018610100196101001a6101001b6101001c6101001d6101001e6101001f610100206101002161010022610100236101002461010025610100266101002761010028610100296101002a6101002b6101002c6101002d6101002e6101002f610100306101003161010032610100336101003461010035610100366101003761010038610100396101003a6101003b6101003c6101003d6101003e6101003f610100406101004161010042610100436101004461010045610100466101004761010048610100496101004a6101004b6101004c6101004d6101004e6101004f610100506101005161010052610100536101005461010055610100566101005761010058610100596101005a6101005b6101005c6101005d6101005e6101005f610100606101006161010062610100636101006461010065610100666101006761010068610100696101006a6101006b6101006c6101006d6101006e6101006f610100706101007161010072610100736101007461010075610100766101007761010078610100796101007a6101007b6101007c6101007d6101007e6101007f610100806101008161010082610100836101008461010085610100866101008761010088610100896101008a6101008b6101008c6101008d6101008e6101008f610100906101009161010092610100936101009461010095610100966101009761010098610100996101009a6101009b6101009c6101009d6101009e6101009f610100a0610100a1610100a2610100a3610100a4610100a5610100a6610100a7610100a8610100a9610100aa610100ab610100ac610100ad610100ae610100af610100b0610100b1610100b2610100b3610100b4610100b5610100b6610100b7610100b8610100b9610100ba610100bb610100bc610100bd610100be610100bf610100c0610100c1610100c2610100c3610100c4610100c5610100c6610100c7610100c8610100c9610100ca610100cb610100cc610100cd610100ce610100cf610100d0610100d1610100d2610100d3610100d4610100d5610100d6610100d7610100d8610100d9610100da610100db610100dc610100dd610100de610100df610100e0610100e1610100e2610100e3610100e4610100e5610100e6610100e7610100e8610100e9610100ea610100eb610100ec610100ed610100ee610100ef610100f0610100f1610100f2610100f3610100f4610100f5610100f6610100f7610100f8610100f9610100fa610100fb610100fc610100fd610100fe610100ff610100006201000162010002620100036201000462010005620100066201000762010008620100096201000a6201000b6201000c6201000d6201000e6201000f620100106201001162010012620100136201001462010015620100166201001762010018620100196201001a6201001b6201001c6201001d6201001e6201001f620100206201002162010022620100236201002462010025620100266201002762010028620100296201002a6201002b6201002c6201002d6201002e6201002f620100306201003162010032620100336201003462010035620100366201003762010038620100396201003a6201003b6201003c6201003d6201003e6201003f620100406201004162010042620100436201004462010045620100466201004762010048620100496201004a6201004b6201004c6201004d6201004e6201004f620100506201005162010052620100536201005462010055620100566201005762010058620100596201005a6201005b6201005c6201005d6201005e6201005f620100606201006162010062620100636201006462010065620100666201006762010068620100696201006a6201006b6201006c6201006d6201006e6201006f620100706201007162010072620100736201007462010075620100766201007762010078620100796201007a6201007b6201007c6201007d6201007e6201007f620100806201008162010082620100836201008462010085620100866201008762010088620100896201008a6201008b6201008c6201008d6201008e6201008f620100906201009162010092620100936201009462010095620100966201009762010098620100996201009a6201009b6201009c6201009d6201009e6201009f620100a0620100a1620100a2620100a3620100a4620100a5620100a6620100a7620100a8620100a9620100aa620100ab620100ac620100ad620100ae620100af620100b0620100b1620100b2620100b3620100b4620100b5620100b6620100b7620100b8620100b9620100ba620100bb620100bc620100bd620100be620100bf620100c0620100c1620100c2620100c3620100c4620100c5620100c6620100c7620100c8620100c9620100ca620100cb620100cc620100cd620100ce620100cf620100d0620100d1620100d2620100d3620100d4620100d5620100d6620100d7620100d8620100d9620100da620100db620100dc620100dd620100de620100df620100e0620100e1620100e2620100e3620100e4620100e5620100e6620100e7620100e8620100e9620100ea620100eb620100ec620100ed620100ee620100ef620100f0620100f1620100f2620100f3620100f4620100f5620100f6620100f7620100f8620100f9620100fa620100fb620100fc620100fd620100fe620100ff620100006301000163010002630100036301000463010005630100066301000763010008630100096301000a6301000b6301000c6301000d6301000e6301000f630100106301001163010012630100136301001463010015630100166301001763010018630100196301001a6301001b6301001c6301001d6301001e6301001f630100206301002163010022630100236301002463010025630100266301002763010028630100296301002a6301002b6301002c6301002d6301002e6301002f630100306301003163010032630100336301003463010035630100366301003763010038630100396301003a6301003b6301003c6301003d6301003e6301003f630100406301004163010042630100436301004463010045630100466301004763010048630100496301004a6301004b6301004c6301004d6301004e6301004f630100506301005163010052630100536301005463010055630100566301005763010058630100596301005a6301005b6301005c6301005d6301005e6301005f630100606301006163010062630100636301006463010065630100666301006763010068630100696301006a6301006b6301006c6301006d6301006e6301006f630100706301007163010072630100736301007463010075630100766301007763010078630100796301007a6301007b6301007c6301007d6301007e6301007f630100806301008163010082630100836301008463010085630100866301008763010088630100896301008a6301008b6301008c6301008d6301008e6301008f630100906301009163010092630100936301009463010095630100966301009763010098630100996301009a6301009b6301009c6301009d6301009e6301009f630100a0630100a1630100a2630100a3630100a4630100a5630100a6630100a7630100a8630100a9630100aa630100ab630100ac630100ad630100ae630100af630100b0630100b1630100b2630100b3630100b4630100b5630100b6630100b7630100b8630100b9630100ba630100bb630100bc630100bd630100be630100bf630100c0630100c1630100c2630100c3630100c4630100c5630100c6630100c7630100c8630100c9630100ca630100cb630100cc630100cd630100ce630100cf630100d0630100d1630100d2630100d3630100d4630100d5630100d6630100d7630100d8630100d9630100da630100db630100dc630100dd630100de630100df630100e0630100e1630100e2630100e3630100e4630100e5630100e6630100e7630100e8630100e9630100ea630100eb630100ec630100ed630100ee630100ef630100f0630100f1630100f2630100f3630100f4630100f5630100f6630100f7630100f8630100f9630100fa630100fb630100fc630100fd630100fe630100ff630100006401000164010002640100036401000464010005640100066401000764010008640100096401000a6401000b6401000c6401000d6401000e6401000f640100106401001164010012640100136401001464010015640100166401001764010018640100196401001a6401001b6401001c6401001d6401001e6401001f640100206401002164010022640100236401002464010025640100266401002764010028640100296401002a6401002b6401002c6401002d6401002e6401002f640100306401003164010032640100336401003464010035640100366401003764010038640100396401003a6401003b6401003c6401003d6401003e6401003f640100406401004164010042640100436401004464010045640100466401004764010048640100496401004a6401004b6401004c6401004d6401004e6401004f640100506401005164010052640100536401005464010055640100566401005764010058640100596401005a6401005b6401005c6401005d6401005e6401005f640100606401006164010062640100636401006464010065640100666401006764010068640100696401006a6401006b6401006c6401006d6401006e6401006f640100706401007164010072640100736401007464010075640100766401007764010078640100796401007a6401007b6401007c6401007d6401007e6401007f640100806401008164010082640100836401008464010085640100866401008764010088640100896401008a6401008b6401008c6401008d6401008e6401008f640100906401009164010092640100936401009464010095640100966401009764010098640100996401009a6401009b6401009c6401009d6401009e6401009f640100a0640100a1640100a2640100a3640100a4640100a5640100a6640100a7640100a8640100a9640100aa640100ab640100ac640100ad640100ae640100af640100b0640100b1640100b2640100b3640100b4640100b5640100b6640100b7640100b8640100b9640100ba640100bb640100bc640100bd640100be640100bf640100c0640100c1640100c2640100c3640100c4640100c5640100c6640100c7640100c8640100c9640100ca640100cb640100cc640100cd640100ce640100cf640100d0640100d1640100d2640100d3640100d4640100d5640100d6640100d7640100d8640100d9640100da640100db640100dc640100dd640100de640100df640100e0640100e1640100e2640100e3640100e4640100e5640100e6640100e7640100e8640100e9640100ea640100eb640100ec640100ed640100ee640100ef640100f0640100f1640100f2640100f3640100f4640100f5640100f6640100f7640100f8640100f9640100fa640100fb640100fc640100fd640100fe640100ff640100006501000165010002650100036501000465010005650100066501000765010008650100096501000a6501000b6501000c6501000d6501000e6501000f650100106501001165010012650100136501001465010015650100166501001765010018650100196501001a6501001b6501001c6501001d6501001e6501001f650100206501002165010022650100236501002465010025650100266501002765010028650100296501002a6501002b6501002c6501002d6501002e6501002f650100306501003165010032650100336501003465010035650100366501003765010038650100396501003a6501003b6501003c6501003d6501003e6501003f650100406501004165010042650100436501004465010045650100466501004765010048650100496501004a6501004b6501004c6501004d6501004e6501004f650100506501005165010052650100536501005465010055650100566501005765010058650100596501005a6501005b6501005c6501005d6501005e6501005f650100606501006165010062650100636501006465010065650100666501006765010068650100696501006a6501006b6501006c6501006d6501006e6501006f650100706501007165010072650100736501007465010075650100766501007765010078650100796501007a6501007b6501007c6501007d6501007e6501007f650100806501008165010082650100836501008465010085650100866501008765010088650100896501008a6501008b6501008c6501008d6501008e6501008f650100906501009165010092650100936501009465010095650100966501009765010098650100996501009a6501009b6501009c6501009d6501009e6501009f650100a0650100a1650100a2650100a3650100a4650100a5650100a6650100a7650100a8650100a9650100aa650100ab650100ac650100ad650100ae650100af650100b0650100b1650100b2650100b3650100b4650100b5650100b6650100b7650100b8650100b9650100ba650100bb650100bc650100bd650100be650100bf650100c0650100c1650100c2650100c3650100c4650100c5650100c6650100c7650100c8650100c9650100ca650100cb650100cc650100cd650100ce650100cf650100d0650100d1650100d2650100d3650100d4650100d5650100d6650100d7650100d8650100d9650100da650100db650100dc650100dd650100de650100df650100e0650100e1650100e2650100e3650100e4650100e5650100e6650100e7650100e8650100e9650100ea650100eb650100ec650100ed650100ee650100ef650100f0650100f1650100f2650100f3650100f4650100f5650100f6650100f7650100f8650100f9650100fa650100fb650100fc650100fd650100fe650100ff650100006601000166010002660100036601000466010005660100066601000766010008660100096601000a6601000b6601000c6601000d6601000e6601000f660100106601001166010012660100136601001466010015660100166601001766010018660100196601001a6601001b6601001c6601001d6601001e6601001f660100206601002166010022660100236601002466010025660100266601002766010028660100296601002a6601002b6601002c6601002d6601002e6601002f660100306601003166010032660100336601003466010035660100366601003766010038660100396601003a6601003b6601003c6601003d6601003e6601003f660100406601004166010042660100436601004466010045660100466601004766010048660100496601004a6601004b6601004c6601004d6601004e6601004f660100506601005166010052660100536601005466010055660100566601005766010058660100596601005a6601005b6601005c6601005d6601005e6601005f660100606601006166010062660100636601006466010065660100666601006766010068660100696601006a6601006b6601006c6601006d6601006e6601006f660100706601007166010072660100736601007466010075660100766601007766010078660100796601007a6601007b6601007c6601007d6601007e6601007f660100806601008166010082660100836601008466010085660100866601008766010088660100896601008a6601008b6601008c6601008d6601008e6601008f660100906601009166010092660100936601009466010095660100966601009766010098660100996601009a6601009b6601009c6601009d6601009e6601009f660100a0660100a1660100a2660100a3660100a4660100a5660100a6660100a7660100a8660100a9660100aa660100ab660100ac660100ad660100ae660100af660100b0660100b1660100b2660100b3660100b4660100b5660100b6660100b7660100b8660100b9660100ba660100bb660100bc660100bd660100be660100bf660100c0660100c1660100c2660100c3660100c4660100c5660100c6660100c7660100c8660100c9660100ca660100cb660100cc660100cd660100ce660100cf660100d0660100d1660100d2660100d3660100d4660100d5660100d6660100d7660100d8660100d9660100da660100db660100dc660100dd660100de660100df660100e0660100e1660100e2660100e3660100e4660100e5660100e6660100e7660100e8660100e9660100ea660100eb660100ec660100ed660100ee660100ef660100f0660100f1660100f2660100f3660100f4660100f5660100f6660100f7660100f8660100f9660100fa660100fb660100fc660100fd660100fe660100ff660100006701000167010002670100036701000467010005670100066701000767010008670100096701000a6701000b6701000c6701000d6701000e6701000f670100106701001167010012670100136701001467010015670100166701001767010018670100196701001a6701001b6701001c6701001d6701001e6701001f670100206701002167010022670100236701002467010025670100266701002767010028670100296701002a6701002b6701002c6701002d6701002e6701002f670100306701003167010032670100336701003467010035670100366701003767010038670100396701003a6701003b6701003c6701003d6701003e6701003f670100406701004167010042670100436701004467010045670100466701004767010048670100496701004a6701004b6701004c6701004d6701004e6701004f670100506701005167010052670100536701005467010055670100566701005767010058670100596701005a6701005b6701005c6701005d6701005e6701005f670100606701006167010062670100636701006467010065670100666701006767010068670100696701006a6701006b6701006c6701006d6701006e6701006f670100706701007167010072670100736701007467010075670100766701007767010078670100796701007a6701007b6701007c6701007d6701007e6701007f670100806701008167010082670100836701008467010085670100866701008767010088670100896701008a6701008b6701008c6701008d6701008e6701008f670100906701009167010092670100936701009467010095670100966701009767010098670100996701009a6701009b6701009c6701009d6701009e6701009f670100a0670100a1670100a2670100a3670100a4670100a5670100a6670100a7670100a8670100a9670100aa670100ab670100ac670100ad670100ae670100af670100b0670100b1670100b2670100b3670100b4670100b5670100b6670100b7670100b8670100b9670100ba670100bb670100bc670100bd670100be670100bf670100c0670100c1670100c2670100c3670100c4670100c5670100c6670100c7670100c8670100c9670100ca670100cb670100cc670100cd670100ce670100cf670100d0670100d1670100d2670100d3670100d4670100d5670100d6670100d7670100d8670100d9670100da670100db670100dc670100dd670100de670100df670100e0670100e1670100e2670100e3670100e4670100e5670100e6670100e7670100e8670100e9670100ea670100eb670100ec670100ed670100ee670100ef670100f0670100f1670100f2670100f3670100f4670100f5670100f6670100f7670100f8670100f9670100fa670100fb670100fc670100fd670100fe670100ff670100006801000168010002680100036801000468010005680100066801000768010008680100096801000a6801000b6801000c6801000d6801000e6801000f680100106801001168010012680100136801001468010015680100166801001768010018680100196801001a6801001b6801001c6801001d6801001e6801001f680100206801002168010022680100236801002468010025680100266801002768010028680100296801002a6801002b6801002c6801002d6801002e6801002f680100306801003168010032680100336801003468010035680100366801003768010038680100396801003a6801003b6801003c6801003d6801003e6801003f680100406801004168010042680100436801004468010045680100466801004768010048680100496801004a6801004b6801004c6801004d6801004e6801004f680100506801005168010052680100536801005468010055680100566801005768010058680100596801005a6801005b6801005c6801005d6801005e6801005f680100606801006168010062680100636801006468010065680100666801006768010068680100696801006a6801006b6801006c6801006d6801006e6801006f680100706801007168010072680100736801007468010075680100766801007768010078680100796801007a6801007b6801007c6801007d6801007e6801007f680100806801008168010082680100836801008468010085680100866801008768010088680100896801008a6801008b6801008c6801008d6801008e6801008f680100906801009168010092680100936801009468010095680100966801009768010098680100996801009a6801009b6801009c6801009d6801009e6801009f680100a0680100a1680100a2680100a3680100a4680100a5680100a6680100a7680100a8680100a9680100aa680100ab680100ac680100ad680100ae680100af680100b0680100b1680100b2680100b3680100b4680100b5680100b6680100b7680100b8680100b9680100ba680100bb680100bc680100bd680100be680100bf680100c0680100c1680100c2680100c3680100c4680100c5680100c6680100c7680100c8680100c9680100ca680100cb680100cc680100cd680100ce680100cf680100d0680100d1680100d2680100d3680100d4680100d5680100d6680100d7680100d8680100d9680100da680100db680100dc680100dd680100de680100df680100e0680100e1680100e2680100e3680100e4680100e5680100e6680100e7680100e8680100e9680100ea680100eb680100ec680100ed680100ee680100ef680100f0680100f1680100f2680100f3680100f4680100f5680100f6680100f7680100f8680100f9680100fa680100fb680100fc680100fd680100fe680100ff680100006901000169010002690100036901000469010005690100066901000769010008690100096901000a6901000b6901000c6901000d6901000e6901000f690100106901001169010012690100136901001469010015690100166901001769010018690100196901001a6901001b6901001c6901001d6901001e6901001f690100206901002169010022690100236901002469010025690100266901002769010028690100296901002a6901002b6901002c6901002d6901002e6901002f690100306901003169010032690100336901003469010035690100366901003769010038690100396901003a6901003b6901003c6901003d6901003e6901003f690100406901004169010042690100436901004469010045690100466901004769010048690100496901004a6901004b6901004c6901004d6901004e6901004f690100506901005169010052690100536901005469010055690100566901005769010058690100596901005a6901005b6901005c6901005d6901005e6901005f690100606901006169010062690100636901006469010065690100666901006769010068690100696901006a6901006b6901006c6901006d6901006e6901006f690100706901007169010072690100736901007469010075690100766901007769010078690100796901007a6901007b6901007c6901007d6901007e6901007f690100806901008169010082690100836901008469010085690100866901008769010088690100896901008a6901008b6901008c6901008d6901008e6901008f690100906901009169010092690100936901009469010095690100966901009769010098690100996901009a6901009b6901009c6901009d6901009e6901009f690100a0690100a1690100a2690100a3690100a4690100a5690100a6690100a7690100a8690100a9690100aa690100ab690100ac690100ad690100ae690100af690100b0690100b1690100b2690100b3690100b4690100b5690100b6690100b7690100b8690100b9690100ba690100bb690100bc690100bd690100be690100bf690100c0690100c1690100c2690100c3690100c4690100c5690100c6690100c7690100c8690100c9690100ca690100cb690100cc690100cd690100ce690100cf690100d0690100d1690100d2690100d3690100d4690100d5690100d6690100d7690100d8690100d9690100da690100db690100dc690100dd690100de690100df690100e0690100e1690100e2690100e3690100e4690100e5690100e6690100e7690100e8690100e9690100ea690100eb690100ec690100ed690100ee690100ef690100f0690100f1690100f2690100f3690100f4690100f5690100f6690100f7690100f8690100f9690100fa690100fb690100fc690100fd690100fe690100ff690100006a0100016a0100026a0100036a0100046a0100056a0100066a0100076a0100086a0100096a01000a6a01000b6a01000c6a01000d6a01000e6a01000f6a0100106a0100116a0100126a0100136a0100146a0100156a0100166a0100176a0100186a0100196a01001a6a01001b6a01001c6a01001d6a01001e6a01001f6a0100206a0100216a0100226a0100236a0100246a0100256a0100266a0100276a0100286a0100296a01002a6a01002b6a01002c6a01002d6a01002e6a01002f6a0100306a0100316a0100326a0100336a0100346a0100356a0100366a0100376a0100386a0100396a01003a6a01003b6a01003c6a01003d6a01003e6a01003f6a0100406a0100416a0100426a0100436a0100446a0100456a0100466a0100476a0100486a0100496a01004a6a01004b6a01004c6a01004d6a01004e6a01004f6a0100506a0100516a0100526a0100536a0100546a0100556a0100566a0100576a0100586a0100596a01005a6a01005b6a01005c6a01005d6a01005e6a01005f6a0100606a0100616a0100626a0100636a0100646a0100656a0100666a0100676a0100686a0100696a01006a6a01006b6a01006c6a01006d6a01006e6a01006f6a0100706a0100716a0100726a0100736a0100746a0100756a0100766a0100776a0100786a0100796a01007a6a01007b6a01007c6a01007d6a01007e6a01007f6a0100806a0100816a0100826a0100836a0100846a0100856a0100866a0100876a0100886a0100896a01008a6a01008b6a01008c6a01008d6a01008e6a01008f6a0100906a0100916a0100926a0100936a0100946a0100956a0100966a0100976a0100986a0100996a01009a6a01009b6a01009c6a01009d6a01009e6a01009f6a0100a06a0100a16a0100a26a0100a36a0100a46a0100a56a0100a66a0100a76a0100a86a0100a96a0100aa6a0100ab6a0100ac6a0100ad6a0100ae6a0100af6a0100b06a0100b16a0100b26a0100b36a0100b46a0100b56a0100b66a0100b76a0100b86a0100b96a0100ba6a0100bb6a0100bc6a0100bd6a0100be6a0100bf6a0100c06a0100c16a0100c26a0100c36a0100c46a0100c56a0100c66a0100c76a0100c86a0100c96a0100ca6a0100cb6a0100cc6a0100cd6a0100ce6a0100cf6a0100d06a0100d16a0100d26a0100d36a0100d46a0100d56a0100d66a0100d76a0100d86a0100d96a0100da6a0100db6a0100dc6a0100dd6a0100de6a0100df6a0100e06a0100e16a0100e26a0100e36a0100e46a0100e56a0100e66a0100e76a0100e86a0100e96a0100ea6a0100eb6a0100ec6a0100ed6a0100ee6a0100ef6a0100f06a0100f16a0100f26a0100f36a0100f46a0100f56a0100f66a0100f76a0100f86a0100f96a0100fa6a0100fb6a0100fc6a0100fd6a0100fe6a0100ff6a0100006b0100016b0100026b0100036b0100046b0100056b0100066b0100076b0100086b0100096b01000a6b01000b6b01000c6b01000d6b01000e6b01000f6b0100106b0100116b0100126b0100136b0100146b0100156b0100166b0100176b0100186b0100196b01001a6b01001b6b01001c6b01001d6b01001e6b01001f6b0100206b0100216b0100226b0100236b0100246b0100256b0100266b0100276b0100286b0100296b01002a6b01002b6b01002c6b01002d6b01002e6b01002f6b0100306b0100316b0100326b0100336b0100346b0100356b0100366b0100376b0100386b0100396b01003a6b01003b6b01003c6b01003d6b01003e6b01003f6b0100406b0100416b0100426b0100436b0100446b0100456b0100466b0100476b0100486b0100496b01004a6b01004b6b01004c6b01004d6b01004e6b01004f6b0100506b0100516b0100526b0100536b0100546b0100556b0100566b0100576b0100586b0100596b01005a6b01005b6b01005c6b01005d6b01005e6b01005f6b0100606b0100616b0100626b0100636b0100646b0100656b0100666b0100676b0100686b0100696b01006a6b01006b6b01006c6b01006d6b01006e6b01006f6b0100706b0100716b0100726b0100736b0100746b0100756b0100766b0100776b0100786b0100796b01007a6b01007b6b01007c6b01007d6b01007e6b01007f6b0100806b0100816b0100826b0100836b0100846b0100856b0100866b0100876b0100886b0100896b01008a6b01008b6b01008c6b01008d6b01008e6b01008f6b0100906b0100916b0100926b0100936b0100946b0100956b0100966b0100976b0100986b0100996b01009a6b01009b6b01009c6b01009d6b01009e6b01009f6b0100a06b0100a16b0100a26b0100a36b0100a46b0100a56b0100a66b0100a76b0100a86b0100a96b0100aa6b0100ab6b0100ac6b0100ad6b0100ae6b0100af6b0100b06b0100b16b0100b26b0100b36b0100b46b0100b56b0100b66b0100b76b0100b86b0100b96b0100ba6b0100bb6b0100bc6b0100bd6b0100be6b0100bf6b0100c06b0100c16b0100c26b0100c36b0100c46b0100c56b0100c66b0100c76b0100c86b0100c96b0100ca6b0100cb6b0100cc6b0100cd6b0100ce6b0100cf6b0100d06b0100d16b0100d26b0100d36b0100d46b0100d56b0100d66b0100d76b0100d86b0100d96b0100da6b0100db6b0100dc6b0100dd6b0100de6b0100df6b0100e06b0100e16b0100e26b0100e36b0100e46b0100e56b0100e66b0100e76b0100e86b0100e96b0100ea6b0100eb6b0100ec6b0100ed6b0100ee6b0100ef6b0100f06b0100f16b0100f26b0100f36b0100f46b0100f56b0100f66b0100f76b0100f86b0100f96b0100fa6b0100fb6b0100fc6b0100fd6b0100fe6b0100ff6b0100006c0100016c0100026c0100036c0100046c0100056c0100066c0100076c0100086c0100096c01000a6c01000b6c01000c6c01000d6c01000e6c01000f6c0100106c0100116c0100126c0100136c0100146c0100156c0100166c0100176c0100186c0100196c01001a6c01001b6c01001c6c01001d6c01001e6c01001f6c0100206c0100216c0100226c0100236c0100246c0100256c0100266c0100276c0100286c0100296c01002a6c01002b6c01002c6c01002d6c01002e6c01002f6c0100306c0100316c0100326c0100336c0100346c0100356c0100366c0100376c0100386c0100396c01003a6c01003b6c01003c6c01003d6c01003e6c01003f6c0100406c0100416c0100426c0100436c0100446c0100456c0100466c0100476c0100486c0100496c01004a6c01004b6c01004c6c01004d6c01004e6c01004f6c0100506c0100516c0100526c0100536c0100546c0100556c0100566c0100576c0100586c0100596c01005a6c01005b6c01005c6c01005d6c01005e6c01005f6c0100606c0100616c0100626c0100636c0100646c0100656c0100666c0100676c0100686c0100696c01006a6c01006b6c01006c6c01006d6c01006e6c01006f6c0100706c0100716c0100726c0100736c0100746c0100756c0100766c0100776c0100786c0100796c01007a6c01007b6c01007c6c01007d6c01007e6c01007f6c0100806c0100816c0100826c0100836c0100846c0100856c0100866c0100876c0100886c0100896c01008a6c01008b6c01008c6c01008d6c01008e6c01008f6c0100906c0100916c0100926c0100936c0100946c0100956c0100966c0100976c0100986c0100996c01009a6c01009b6c01009c6c01009d6c01009e6c01009f6c0100a06c0100a16c0100a26c0100a36c0100a46c0100a56c0100a66c0100a76c0100a86c0100a96c0100aa6c0100ab6c0100ac6c0100ad6c0100ae6c0100af6c0100b06c0100b16c0100b26c0100b36c0100b46c0100b56c0100b66c0100b76c0100b86c0100b96c0100ba6c0100bb6c0100bc6c0100bd6c0100be6c0100bf6c0100c06c0100c16c0100c26c0100c36c0100c46c0100c56c0100c66c0100c76c0100c86c0100c96c0100ca6c0100cb6c0100cc6c0100cd6c0100ce6c0100cf6c0100d06c0100d16c0100d26c0100d36c0100d46c0100d56c0100d66c0100d76c0100d86c0100d96c0100da6c0100db6c0100dc6c0100dd6c0100de6c0100df6c0100e06c0100e16c0100e26c0100e36c0100e46c0100e56c0100e66c0100e76c0100e86c0100e96c0100ea6c0100eb6c0100ec6c0100ed6c0100ee6c0100ef6c0100f06c0100f16c0100f26c0100f36c0100f46c0100f56c0100f66c0100f76c0100f86c0100f96c0100fa6c0100fb6c0100fc6c0100fd6c0100fe6c0100ff6c0100006d0100016d0100026d0100036d0100046d0100056d0100066d0100076d0100086d0100096d01000a6d01000b6d01000c6d01000d6d01000e6d01000f6d0100106d0100116d0100126d0100136d0100146d0100156d0100166d0100176d0100186d0100196d01001a6d01001b6d01001c6d01001d6d01001e6d01001f6d0100206d0100216d0100226d0100236d0100246d0100256d0100266d0100276d0100286d0100296d01002a6d01002b6d01002c6d01002d6d01002e6d01002f6d0100306d0100316d0100326d0100336d0100346d0100356d0100366d0100376d0100386d0100396d01003a6d01003b6d01003c6d01003d6d01003e6d01003f6d0100406d0100416d0100426d0100436d0100446d0100456d0100466d0100476d0100486d0100496d01004a6d01004b6d01004c6d01004d6d01004e6d01004f6d0100506d0100516d0100526d0100536d0100546d0100556d0100566d0100576d0100586d0100596d01005a6d01005b6d01005c6d01005d6d01005e6d01005f6d0100606d0100616d0100626d0100636d0100646d0100656d0100666d0100676d0100686d0100696d01006a6d01006b6d01006c6d01006d6d01006e6d01006f6d0100706d0100716d0100726d0100736d0100746d0100756d0100766d0100776d0100786d0100796d01007a6d01007b6d01007c6d01007d6d01007e6d01007f6d0100806d0100816d0100826d0100836d0100846d0100856d0100866d0100876d0100886d0100896d01008a6d01008b6d01008c6d01008d6d01008e6d01008f6d0100906d0100916d0100926d0100936d0100946d0100956d0100966d0100976d0100986d0100996d01009a6d01009b6d01009c6d01009d6d01009e6d01009f6d0100a06d0100a16d0100a26d0100a36d0100a46d0100a56d0100a66d0100a76d0100a86d0100a96d0100aa6d0100ab6d0100ac6d0100ad6d0100ae6d0100af6d0100b06d0100b16d0100b26d0100b36d0100b46d0100b56d0100b66d0100b76d0100b86d0100b96d0100ba6d0100bb6d0100bc6d0100bd6d0100be6d0100bf6d0100c06d0100c16d0100c26d0100c36d0100c46d0100c56d0100c66d0100c76d0100c86d0100c96d0100ca6d0100cb6d0100cc6d0100cd6d0100ce6d0100cf6d0100d06d0100d16d0100d26d0100d36d0100d46d0100d56d0100d66d0100d76d0100d86d0100d96d0100da6d0100db6d0100dc6d0100dd6d0100de6d0100df6d0100e06d0100e16d0100e26d0100e36d0100e46d0100e56d0100e66d0100e76d0100e86d0100e96d0100ea6d0100eb6d0100ec6d0100ed6d0100ee6d0100ef6d0100f06d0100f16d0100f26d0100f36d0100f46d0100f56d0100f66d0100f76d0100f86d0100f96d0100fa6d0100fb6d0100fc6d0100fd6d0100fe6d0100ff6d0100006e0100016e0100026e0100036e0100046e0100056e0100066e0100076e0100086e0100096e01000a6e01000b6e01000c6e01000d6e01000e6e01000f6e0100106e0100116e0100126e0100136e0100146e0100156e0100166e0100176e0100186e0100196e01001a6e01001b6e01001c6e01001d6e01001e6e01001f6e0100206e0100216e0100226e0100236e0100246e0100256e0100266e0100276e0100286e0100296e01002a6e01002b6e01002c6e01002d6e01002e6e01002f6e0100306e0100316e0100326e0100336e0100346e0100356e0100366e0100376e0100386e0100396e01003a6e01003b6e01003c6e01003d6e01003e6e01003f6e0100406e0100416e0100426e0100436e0100446e0100456e0100466e0100476e0100486e0100496e01004a6e01004b6e01004c6e01004d6e01004e6e01004f6e0100506e0100516e0100526e0100536e0100546e0100556e0100566e0100576e0100586e0100596e01005a6e01005b6e01005c6e01005d6e01005e6e01005f6e0100606e0100616e0100626e0100636e0100646e0100656e0100666e0100676e0100686e0100696e01006a6e01006b6e01006c6e01006d6e01006e6e01006f6e0100706e0100716e0100726e0100736e0100746e0100756e0100766e0100776e0100786e0100796e01007a6e01007b6e01007c6e01007d6e01007e6e01007f6e0100806e0100816e0100826e0100836e0100846e0100856e0100866e0100876e0100886e0100896e01008a6e01008b6e01008c6e01008d6e01008e6e01008f6e0100906e0100916e0100926e0100936e0100946e0100956e0100966e0100976e0100986e0100996e01009a6e01009b6e01009c6e01009d6e01009e6e01009f6e0100a06e0100a16e0100a26e0100a36e0100a46e0100a56e0100a66e0100a76e0100a86e0100a96e0100aa6e0100ab6e0100ac6e0100ad6e0100ae6e0100af6e0100b06e0100b16e0100b26e0100b36e0100b46e0100b56e0100b66e0100b76e0100b86e0100b96e0100ba6e0100bb6e0100bc6e0100bd6e0100be6e0100bf6e0100c06e0100c16e0100c26e0100c36e0100c46e0100c56e0100c66e0100c76e0100c86e0100c96e0100ca6e0100cb6e0100cc6e0100cd6e0100ce6e0100cf6e0100d06e0100d16e0100d26e0100d36e0100d46e0100d56e0100d66e0100d76e0100d86e0100d96e0100da6e0100db6e0100dc6e0100dd6e0100de6e0100df6e0100e06e0100e16e0100e26e0100e36e0100e46e0100e56e0100e66e0100e76e0100e86e0100e96e0100ea6e0100eb6e0100ec6e0100ed6e0100ee6e0100ef6e0100f06e0100f16e0100f26e0100f36e0100f46e0100f56e0100f66e0100f76e0100f86e0100f96e0100fa6e0100fb6e0100fc6e0100fd6e0100fe6e0100ff6e0100006f0100016f0100026f0100036f0100046f0100056f0100066f0100076f0100086f0100096f01000a6f01000b6f01000c6f01000d6f01000e6f01000f6f0100106f0100116f0100126f0100136f0100146f0100156f0100166f0100176f0100186f0100196f01001a6f01001b6f01001c6f01001d6f01001e6f01001f6f0100206f0100216f0100226f0100236f0100246f0100256f0100266f0100276f0100286f0100296f01002a6f01002b6f01002c6f01002d6f01002e6f01002f6f0100306f0100316f0100326f0100336f0100346f0100356f0100366f0100376f0100386f0100396f01003a6f01003b6f01003c6f01003d6f01003e6f01003f6f0100406f0100416f0100426f0100436f0100446f0100456f0100466f0100476f0100486f0100496f01004a6f01004b6f01004c6f01004d6f01004e6f01004f6f0100506f0100516f0100526f0100536f0100546f0100556f0100566f0100576f0100586f0100596f01005a6f01005b6f01005c6f01005d6f01005e6f01005f6f0100606f0100616f0100626f0100636f0100646f0100656f0100666f0100676f0100686f0100696f01006a6f01006b6f01006c6f01006d6f01006e6f01006f6f0100706f0100716f0100726f0100736f0100746f0100756f0100766f0100776f0100786f0100796f01007a6f01007b6f01007c6f01007d6f01007e6f01007f6f0100806f0100816f0100826f0100836f0100846f0100856f0100866f0100876f0100886f0100896f01008a6f01008b6f01008c6f01008d6f01008e6f01008f6f0100906f0100916f0100926f0100936f0100946f0100956f0100966f0100976f0100986f0100996f01009a6f01009b6f01009c6f01009d6f01009e6f01009f6f0100a06f0100a16f0100a26f0100a36f0100a46f0100a56f0100a66f0100a76f0100a86f0100a96f0100aa6f0100ab6f0100ac6f0100ad6f0100ae6f0100af6f0100b06f0100b16f0100b26f0100b36f0100b46f0100b56f0100b66f0100b76f0100b86f0100b96f0100ba6f0100bb6f0100bc6f0100bd6f0100be6f0100bf6f0100c06f0100c16f0100c26f0100c36f0100c46f0100c56f0100c66f0100c76f0100c86f0100c96f0100ca6f0100cb6f0100cc6f0100cd6f0100ce6f0100cf6f0100d06f0100d16f0100d26f0100d36f0100d46f0100d56f0100d66f0100d76f0100d86f0100d96f0100da6f0100db6f0100dc6f0100dd6f0100de6f0100df6f0100e06f0100e16f0100e26f0100e36f0100e46f0100e56f0100e66f0100e76f0100e86f0100e96f0100ea6f0100eb6f0100ec6f0100ed6f0100ee6f0100ef6f0100f06f0100f16f0100f26f0100f36f0100f46f0100f56f0100f66f0100f76f0100f86f0100f96f0100fa6f0100fb6f0100fc6f0100fd6f0100fe6f0100ff6f0100007001000170010002700100037001000470010005700100067001000770010008700100097001000a7001000b7001000c7001000d7001000e7001000f700100107001001170010012700100137001001470010015700100167001001770010018700100197001001a7001001b7001001c7001001d7001001e7001001f700100207001002170010022700100237001002470010025700100267001002770010028700100297001002a7001002b7001002c7001002d7001002e7001002f700100307001003170010032700100337001003470010035700100367001003770010038700100397001003a7001003b7001003c7001003d7001003e7001003f700100407001004170010042700100437001004470010045700100467001004770010048700100497001004a7001004b7001004c7001004d7001004e7001004f700100507001005170010052700100537001005470010055700100567001005770010058700100597001005a7001005b7001005c7001005d7001005e7001005f700100607001006170010062700100637001006470010065700100667001006770010068700100697001006a7001006b7001006c7001006d7001006e7001006f700100707001007170010072700100737001007470010075700100767001007770010078700100797001007a7001007b7001007c7001007d7001007e7001007f700100807001008170010082700100837001008470010085700100867001008770010088700100897001008a7001008b7001008c7001008d7001008e7001008f700100907001009170010092700100937001009470010095700100967001009770010098700100997001009a7001009b7001009c7001009d7001009e7001009f700100a0700100a1700100a2700100a3700100a4700100a5700100a6700100a7700100a8700100a9700100aa700100ab700100ac700100ad700100ae700100af700100b0700100b1700100b2700100b3700100b4700100b5700100b6700100b7700100b8700100b9700100ba700100bb700100bc700100bd700100be700100bf700100c0700100c1700100c2700100c3700100c4700100c5700100c6700100c7700100c8700100c9700100ca700100cb700100cc700100cd700100ce700100cf700100d0700100d1700100d2700100d3700100d4700100d5700100d6700100d7700100d8700100d9700100da700100db700100dc700100dd700100de700100df700100e0700100e1700100e2700100e3700100e4700100e5700100e6700100e7700100e8700100e9700100ea700100eb700100ec700100ed700100ee700100ef700100f0700100f1700100f2700100f3700100f4700100f5700100f6700100f7700100f8700100f9700100fa700100fb700100fc700100fd700100fe700100ff700100007101000171010002710100037101000471010005710100067101000771010008710100097101000a7101000b7101000c7101000d7101000e7101000f710100107101001171010012710100137101001471010015710100167101001771010018710100197101001a7101001b7101001c7101001d7101001e7101001f710100207101002171010022710100237101002471010025710100267101002771010028710100297101002a7101002b7101002c7101002d7101002e7101002f710100307101003171010032710100337101003471010035710100367101003771010038710100397101003a7101003b7101003c7101003d7101003e7101003f710100407101004171010042710100437101004471010045710100467101004771010048710100497101004a7101004b7101004c7101004d7101004e7101004f710100507101005171010052710100537101005471010055710100567101005771010058710100597101005a7101005b7101005c7101005d7101005e7101005f710100607101006171010062710100637101006471010065710100667101006771010068710100697101006a7101006b7101006c7101006d7101006e7101006f710100707101007171010072710100737101007471010075710100767101007771010078710100797101007a7101007b7101007c7101007d7101007e7101007f710100807101008171010082710100837101008471010085710100867101008771010088710100897101008a7101008b7101008c7101008d7101008e7101008f710100907101009171010092710100937101009471010095710100967101009771010098710100997101009a7101009b7101009c7101009d7101009e7101009f710100a0710100a1710100a2710100a3710100a4710100a5710100a6710100a7710100a8710100a9710100aa710100ab710100ac710100ad710100ae710100af710100b0710100b1710100b2710100b3710100b4710100b5710100b6710100b7710100b8710100b9710100ba710100bb710100bc710100bd710100be710100bf710100c0710100c1710100c2710100c3710100c4710100c5710100c6710100c7710100c8710100c9710100ca710100cb710100cc710100cd710100ce710100cf710100d0710100d1710100d2710100d3710100d4710100d5710100d6710100d7710100d8710100d9710100da710100db710100dc710100dd710100de710100df710100e0710100e1710100e2710100e3710100e4710100e5710100e6710100e7710100e8710100e9710100ea710100eb710100ec710100ed710100ee710100ef710100f0710100f1710100f2710100f3710100f4710100f5710100f6710100f7710100f8710100f9710100fa710100fb710100fc710100fd710100fe710100ff710100007201000172010002720100037201000472010005720100067201000772010008720100097201000a7201000b7201000c7201000d7201000e7201000f720100107201001172010012720100137201001472010015720100167201001772010018720100197201001a7201001b7201001c7201001d7201001e7201001f720100207201002172010022720100237201002472010025720100267201002772010028720100297201002a7201002b7201002c7201002d7201002e7201002f720100307201003172010032720100337201003472010035720100367201003772010038720100397201003a7201003b7201003c7201003d7201003e7201003f720100407201004172010042720100437201004472010045720100467201004772010048720100497201004a7201004b7201004c7201004d7201004e7201004f720100507201005172010052720100537201005472010055720100567201005772010058720100597201005a7201005b7201005c7201005d7201005e7201005f720100607201006172010062720100637201006472010065720100667201006772010068720100697201006a7201006b7201006c7201006d7201006e7201006f720100707201007172010072720100737201007472010075720100767201007772010078720100797201007a7201007b7201007c7201007d7201007e7201007f720100807201008172010082720100837201008472010085720100867201008772010088720100897201008a7201008b7201008c7201008d7201008e7201008f720100907201009172010092720100937201009472010095720100967201009772010098720100997201009a7201009b7201009c7201009d7201009e7201009f720100a0720100a1720100a2720100a3720100a4720100a5720100a6720100a7720100a8720100a9720100aa720100ab720100ac720100ad720100ae720100af720100b0720100b1720100b2720100b3720100b4720100b5720100b6720100b7720100b8720100b9720100ba720100bb720100bc720100bd720100be720100bf720100c0720100c1720100c2720100c3720100c4720100c5720100c6720100c7720100c8720100c9720100ca720100cb720100cc720100cd720100ce720100cf720100d0720100d1720100d2720100d3720100d4720100d5720100d6720100d7720100d8720100d9720100da720100db720100dc720100dd720100de720100df720100e0720100e1720100e2720100e3720100e4720100e5720100e6720100e7720100e8720100e9720100ea720100eb720100ec720100ed720100ee720100ef720100f0720100f1720100f2720100f3720100f4720100f5720100f6720100f7720100f8720100f9720100fa720100fb720100fc720100fd720100fe720100ff720100007301000173010002730100037301000473010005730100067301000773010008730100097301000a7301000b7301000c7301000d7301000e7301000f730100107301001173010012730100137301001473010015730100167301001773010018730100197301001a7301001b7301001c7301001d7301001e7301001f730100207301002173010022730100237301002473010025730100267301002773010028730100297301002a7301002b7301002c7301002d7301002e7301002f730100307301003173010032730100337301003473010035730100367301003773010038730100397301003a7301003b7301003c7301003d7301003e7301003f730100407301004173010042730100437301004473010045730100467301004773010048730100497301004a7301004b7301004c7301004d7301004e7301004f730100507301005173010052730100537301005473010055730100567301005773010058730100597301005a7301005b7301005c7301005d7301005e7301005f730100607301006173010062730100637301006473010065730100667301006773010068730100697301006a7301006b7301006c7301006d7301006e7301006f730100707301007173010072730100737301007473010075730100767301007773010078730100797301007a7301007b7301007c7301007d7301007e7301007f730100807301008173010082730100837301008473010085730100867301008773010088730100897301008a7301008b7301008c7301008d7301008e7301008f730100907301009173010092730100937301009473010095730100967301009773010098730100997301009a7301009b7301009c7301009d7301009e7301009f730100a0730100a1730100a2730100a3730100a4730100a5730100a6730100a7730100a8730100a9730100aa730100ab730100ac730100ad730100ae730100af730100b0730100b1730100b2730100b3730100b4730100b5730100b6730100b7730100b8730100b9730100ba730100bb730100bc730100bd730100be730100bf730100c0730100c1730100c2730100c3730100c4730100c5730100c6730100c7730100c8730100c9730100ca730100cb730100cc730100cd730100ce730100cf730100d0730100d1730100d2730100d3730100d4730100d5730100d6730100d7730100d8730100d9730100da730100db730100dc730100dd730100de730100df730100e0730100e1730100e2730100e3730100e4730100e5730100e6730100e7730100e8730100e9730100ea730100eb730100ec730100ed730100ee730100ef730100f0730100f1730100f2730100f3730100f4730100f5730100f6730100f7730100f8730100f9730100fa730100fb730100fc730100fd730100fe730100ff730100007401000174010002740100037401000474010005740100067401000774010008740100097401000a7401000b7401000c7401000d7401000e7401000f740100107401001174010012740100137401001474010015740100167401001774010018740100197401001a7401001b7401001c7401001d7401001e7401001f740100207401002174010022740100237401002474010025740100267401002774010028740100297401002a7401002b7401002c7401002d7401002e7401002f740100307401003174010032740100337401003474010035740100367401003774010038740100397401003a7401003b7401003c7401003d7401003e7401003f740100407401004174010042740100437401004474010045740100467401004774010048740100497401004a7401004b7401004c7401004d7401004e7401004f740100507401005174010052740100537401005474010055740100567401005774010058740100597401005a7401005b7401005c7401005d7401005e7401005f740100607401006174010062740100637401006474010065740100667401006774010068740100697401006a7401006b7401006c7401006d7401006e7401006f740100707401007174010072740100737401007474010075740100767401007774010078740100797401007a7401007b7401007c7401007d7401007e7401007f740100807401008174010082740100837401008474010085740100867401008774010088740100897401008a7401008b7401008c7401008d7401008e7401008f740100907401009174010092740100937401009474010095740100967401009774010098740100997401009a7401009b7401009c7401009d7401009e7401009f740100a0740100a1740100a2740100a3740100a4740100a5740100a6740100a7740100a8740100a9740100aa740100ab740100ac740100ad740100ae740100af740100b0740100b1740100b2740100b3740100b4740100b5740100b6740100b7740100b8740100b9740100ba740100bb740100bc740100bd740100be740100bf740100c0740100c1740100c2740100c3740100c4740100c5740100c6740100c7740100c8740100c9740100ca740100cb740100cc740100cd740100ce740100cf740100d0740100d1740100d2740100d3740100d4740100d5740100d6740100d7740100d8740100d9740100da740100db740100dc740100dd740100de740100df740100e0740100e1740100e2740100e3740100e4740100e5740100e6740100e7740100e8740100e9740100ea740100eb740100ec740100ed740100ee740100ef740100f0740100f1740100f2740100f3740100f4740100f5740100f6740100f7740100f8740100f9740100fa740100fb740100fc740100fd740100fe740100ff740100007501000175010002750100037501000475010005750100067501000775010008750100097501000a7501000b7501000c7501000d7501000e7501000f750100107501001175010012750100137501001475010015750100167501001775010018750100197501001a7501001b7501001c7501001d7501001e7501001f750100207501002175010022750100237501002475010025750100267501002775010028750100297501002a7501002b7501002c7501002d7501002e7501002f750100307501003175010032750100337501003475010035750100367501003775010038750100397501003a7501003b7501003c7501003d7501003e7501003f750100407501004175010042750100437501004475010045750100467501004775010048750100497501004a7501004b7501004c7501004d7501004e7501004f750100507501005175010052750100537501005475010055750100567501005775010058750100597501005a7501005b7501005c7501005d7501005e7501005f750100607501006175010062750100637501006475010065750100667501006775010068750100697501006a7501006b7501006c7501006d7501006e7501006f750100707501007175010072750100737501007475010075750100767501007775010078750100797501007a7501007b7501007c7501007d7501007e7501007f750100807501008175010082750100837501008475010085750100867501008775010088750100897501008a7501008b7501008c7501008d7501008e7501008f750100907501009175010092750100937501009475010095750100967501009775010098750100997501009a7501009b7501009c7501009d7501009e7501009f750100a0750100a1750100a2750100a3750100a4750100a5750100a6750100a7750100a8750100a9750100aa750100ab750100ac750100ad750100ae750100af750100b0750100b1750100b2750100b3750100b4750100b5750100b6750100b7750100b8750100b9750100ba750100bb750100bc750100bd750100be750100bf750100c0750100c1750100c2750100c3750100c4750100c5750100c6750100c7750100c8750100c9750100ca750100cb750100cc750100cd750100ce750100cf750100d0750100d1750100d2750100d3750100d4750100d5750100d6750100d7750100d8750100d9750100da750100db750100dc750100dd750100de750100df750100e0750100e1750100e2750100e3750100e4750100e5750100e6750100e7750100e8750100e9750100ea750100eb750100ec750100ed750100ee750100ef750100f0750100f1750100f2750100f3750100f4750100f5750100f6750100f7750100f8750100f9750100fa750100fb750100fc750100fd750100fe750100ff750100007601000176010002760100037601000476010005760100067601000776010008760100097601000a7601000b7601000c7601000d7601000e7601000f760100107601001176010012760100137601001476010015760100167601001776010018760100197601001a7601001b7601001c7601001d7601001e7601001f760100207601002176010022760100237601002476010025760100267601002776010028760100297601002a7601002b7601002c7601002d7601002e7601002f760100307601003176010032760100337601003476010035760100367601003776010038760100397601003a7601003b7601003c7601003d7601003e7601003f760100407601004176010042760100437601004476010045760100467601004776010048760100497601004a7601004b7601004c7601004d7601004e7601004f760100507601005176010052760100537601005476010055760100567601005776010058760100597601005a7601005b7601005c7601005d7601005e7601005f760100607601006176010062760100637601006476010065760100667601006776010068760100697601006a7601006b7601006c7601006d7601006e7601006f760100707601007176010072760100737601007476010075760100767601007776010078760100797601007a7601007b7601007c7601007d7601007e7601007f760100807601008176010082760100837601008476010085760100867601008776010088760100897601008a7601008b7601008c7601008d7601008e7601008f760100907601009176010092760100937601009476010095760100967601009776010098760100997601009a7601009b7601009c7601009d7601009e7601009f760100a0760100a1760100a2760100a3760100a4760100a5760100a6760100a7760100a8760100a9760100aa760100ab760100ac760100ad760100ae760100af760100b0760100b1760100b2760100b3760100b4760100b5760100b6760100b7760100b8760100b9760100ba760100bb760100bc760100bd760100be760100bf760100c0760100c1760100c2760100c3760100c4760100c5760100c6760100c7760100c8760100c9760100ca760100cb760100cc760100cd760100ce760100cf760100d0760100d1760100d2760100d3760100d4760100d5760100d6760100d7760100d8760100d9760100da760100db760100dc760100dd760100de760100df760100e0760100e1760100e2760100e3760100e4760100e5760100e6760100e7760100e8760100e9760100ea760100eb760100ec760100ed760100ee760100ef760100f0760100f1760100f2760100f3760100f4760100f5760100f6760100f7760100f8760100f9760100fa760100fb760100fc760100fd760100fe760100ff760100007701000177010002770100037701000477010005770100067701000777010008770100097701000a7701000b7701000c7701000d7701000e7701000f770100107701001177010012770100137701001477010015770100167701001777010018770100197701001a7701001b7701001c7701001d7701001e7701001f770100207701002177010022770100237701002477010025770100267701002777010028770100297701002a7701002b7701002c7701002d7701002e7701002f770100307701003177010032770100337701003477010035770100367701003777010038770100397701003a7701003b7701003c7701003d7701003e7701003f770100407701004177010042770100437701004477010045770100467701004777010048770100497701004a7701004b7701004c7701004d7701004e7701004f770100507701005177010052770100537701005477010055770100567701005777010058770100597701005a7701005b7701005c7701005d7701005e7701005f770100607701006177010062770100637701006477010065770100667701006777010068770100697701006a7701006b7701006c7701006d7701006e7701006f770100707701007177010072770100737701007477010075770100767701007777010078770100797701007a7701007b7701007c7701007d7701007e7701007f770100807701008177010082770100837701008477010085770100867701008777010088770100897701008a7701008b7701008c7701008d7701008e7701008f770100907701009177010092770100937701009477010095770100967701009777010098770100997701009a7701009b7701009c7701009d7701009e7701009f770100a0770100a1770100a2770100a3770100a4770100a5770100a6770100a7770100a8770100a9770100aa770100ab770100ac770100ad770100ae770100af770100b0770100b1770100b2770100b3770100b4770100b5770100b6770100b7770100b8770100b9770100ba770100bb770100bc770100bd770100be770100bf770100c0770100c1770100c2770100c3770100c4770100c5770100c6770100c7770100c8770100c9770100ca770100cb770100cc770100cd770100ce770100cf770100d0770100d1770100d2770100d3770100d4770100d5770100d6770100d7770100d8770100d9770100da770100db770100dc770100dd770100de770100df770100e0770100e1770100e2770100e3770100e4770100e5770100e6770100e7770100e8770100e9770100ea770100eb770100ec770100ed770100ee770100ef770100f0770100f1770100f2770100f3770100f4770100f5770100f6770100f7770100f8770100f9770100fa770100fb770100fc770100fd770100fe770100ff770100007801000178010002780100037801000478010005780100067801000778010008780100097801000a7801000b7801000c7801000d7801000e7801000f780100107801001178010012780100137801001478010015780100167801001778010018780100197801001a7801001b7801001c7801001d7801001e7801001f780100207801002178010022780100237801002478010025780100267801002778010028780100297801002a7801002b7801002c7801002d7801002e7801002f780100307801003178010032780100337801003478010035780100367801003778010038780100397801003a7801003b7801003c7801003d7801003e7801003f780100407801004178010042780100437801004478010045780100467801004778010048780100497801004a7801004b7801004c7801004d7801004e7801004f780100507801005178010052780100537801005478010055780100567801005778010058780100597801005a7801005b7801005c7801005d7801005e7801005f780100607801006178010062780100637801006478010065780100667801006778010068780100697801006a7801006b7801006c7801006d7801006e7801006f780100707801007178010072780100737801007478010075780100767801007778010078780100797801007a7801007b7801007c7801007d7801007e7801007f780100807801008178010082780100837801008478010085780100867801008778010088780100897801008a7801008b7801008c7801008d7801008e7801008f780100907801009178010092780100937801009478010095780100967801009778010098780100997801009a7801009b7801009c7801009d7801009e7801009f780100a0780100a1780100a2780100a3780100a4780100a5780100a6780100a7780100a8780100a9780100aa780100ab780100ac780100ad780100ae780100af780100b0780100b1780100b2780100b3780100b4780100b5780100b6780100b7780100b8780100b9780100ba780100bb780100bc780100bd780100be780100bf780100c0780100c1780100c2780100c3780100c4780100c5780100c6780100c7780100c8780100c9780100ca780100cb780100cc780100cd780100ce780100cf780100d0780100d1780100d2780100d3780100d4780100d5780100d6780100d7780100d8780100d9780100da780100db780100dc780100dd780100de780100df780100e0780100e1780100e2780100e3780100e4780100e5780100e6780100e7780100e8780100e9780100ea780100eb780100ec780100ed780100ee780100ef780100f0780100f1780100f2780100f3780100f4780100f5780100f6780100f7780100f8780100f9780100fa780100fb780100fc780100fd780100fe780100ff780100007901000179010002790100037901000479010005790100067901000779010008790100097901000a7901000b7901000c7901000d7901000e7901000f790100107901001179010012790100137901001479010015790100167901001779010018790100197901001a7901001b7901001c7901001d7901001e7901001f790100207901002179010022790100237901002479010025790100267901002779010028790100297901002a7901002b7901002c7901002d7901002e7901002f790100307901003179010032790100337901003479010035790100367901003779010038790100397901003a7901003b7901003c7901003d7901003e7901003f790100407901004179010042790100437901004479010045790100467901004779010048790100497901004a7901004b7901004c7901004d7901004e7901004f790100507901005179010052790100537901005479010055790100567901005779010058790100597901005a7901005b7901005c7901005d7901005e7901005f790100607901006179010062790100637901006479010065790100667901006779010068790100697901006a7901006b7901006c7901006d7901006e7901006f790100707901007179010072790100737901007479010075790100767901007779010078790100797901007a7901007b7901007c7901007d7901007e7901007f790100807901008179010082790100837901008479010085790100867901008779010088790100897901008a7901008b7901008c7901008d7901008e7901008f790100907901009179010092790100937901009479010095790100967901009779010098790100997901009a7901009b7901009c7901009d7901009e7901009f790100a0790100a1790100a2790100a3790100a4790100a5790100a6790100a7790100a8790100a9790100aa790100ab790100ac790100ad790100ae790100af790100b0790100b1790100b2790100b3790100b4790100b5790100b6790100b7790100b8790100b9790100ba790100bb790100bc790100bd790100be790100bf790100c0790100c1790100c2790100c3790100c4790100c5790100c6790100c7790100c8790100c9790100ca790100cb790100cc790100cd790100ce790100cf790100d0790100d1790100d2790100d3790100d4790100d5790100d6790100d7790100d8790100d9790100da790100db790100dc790100dd790100de790100df790100e0790100e1790100e2790100e3790100e4790100e5790100e6790100e7790100e8790100e9790100ea790100eb790100ec790100ed790100ee790100ef790100f0790100f1790100f2790100f3790100f4790100f5790100f6790100f7790100f8790100f9790100fa790100fb790100fc790100fd790100fe790100ff790100007a0100017a0100027a0100037a0100047a0100057a0100067a0100077a0100087a0100097a01000a7a01000b7a01000c7a01000d7a01000e7a01000f7a0100107a0100117a0100127a0100137a0100147a0100157a0100167a0100177a0100187a0100197a01001a7a01001b7a01001c7a01001d7a01001e7a01001f7a0100207a0100217a0100227a0100237a0100247a0100257a0100267a0100277a0100287a0100297a01002a7a01002b7a01002c7a01002d7a01002e7a01002f7a0100307a0100317a0100327a0100337a0100347a0100357a0100367a0100377a0100387a0100397a01003a7a01003b7a01003c7a01003d7a01003e7a01003f7a0100407a0100417a0100427a0100437a0100447a0100457a0100467a0100477a0100487a0100497a01004a7a01004b7a01004c7a01004d7a01004e7a01004f7a0100507a0100517a0100527a0100537a0100547a0100557a0100567a0100577a0100587a0100597a01005a7a01005b7a01005c7a01005d7a01005e7a01005f7a0100607a0100617a0100627a0100637a0100647a0100657a0100667a0100677a0100687a0100697a01006a7a01006b7a01006c7a01006d7a01006e7a01006f7a0100707a0100717a0100727a0100737a0100747a0100757a0100767a0100777a0100787a0100797a01007a7a01007b7a01007c7a01007d7a01007e7a01007f7a0100807a0100817a0100827a0100837a0100847a0100857a0100867a0100877a0100887a0100897a01008a7a01008b7a01008c7a01008d7a01008e7a01008f7a0100907a0100917a0100927a0100937a0100947a0100957a0100967a0100977a0100987a0100997a01009a7a01009b7a01009c7a01009d7a01009e7a01009f7a0100a07a0100a17a0100a27a0100a37a0100a47a0100a57a0100a67a0100a77a0100a87a0100a97a0100aa7a0100ab7a0100ac7a0100ad7a0100ae7a0100af7a0100b07a0100b17a0100b27a0100b37a0100b47a0100b57a0100b67a0100b77a0100b87a0100b97a0100ba7a0100bb7a0100bc7a0100bd7a0100be7a0100bf7a0100c07a0100c17a0100c27a0100c37a0100c47a0100c57a0100c67a0100c77a0100c87a0100c97a0100ca7a0100cb7a0100cc7a0100cd7a0100ce7a0100cf7a0100d07a0100d17a0100d27a0100d37a0100d47a0100d57a0100d67a0100d77a0100d87a0100d97a0100da7a0100db7a0100dc7a0100dd7a0100de7a0100df7a0100e07a0100e17a0100e27a0100e37a0100e47a0100e57a0100e67a0100e77a0100e87a0100e97a0100ea7a0100eb7a0100ec7a0100ed7a0100ee7a0100ef7a0100f07a0100f17a0100f27a0100f37a0100f47a0100f57a0100f67a0100f77a0100f87a0100f97a0100fa7a0100fb7a0100fc7a0100fd7a0100fe7a0100ff7a0100007b0100017b0100027b0100037b0100047b0100057b0100067b0100077b0100087b0100097b01000a7b01000b7b01000c7b01000d7b01000e7b01000f7b0100107b0100117b0100127b0100137b0100147b0100157b0100167b0100177b0100187b0100197b01001a7b01001b7b01001c7b01001d7b01001e7b01001f7b0100207b0100217b0100227b0100237b0100247b0100257b0100267b0100277b0100287b0100297b01002a7b01002b7b01002c7b01002d7b01002e7b01002f7b0100307b0100317b0100327b0100337b0100347b0100357b0100367b0100377b0100387b0100397b01003a7b01003b7b01003c7b01003d7b01003e7b01003f7b0100407b0100417b0100427b0100437b0100447b0100457b0100467b0100477b0100487b0100497b01004a7b01004b7b01004c7b01004d7b01004e7b01004f7b0100507b0100517b0100527b0100537b0100547b0100557b0100567b0100577b0100587b0100597b01005a7b01005b7b01005c7b01005d7b01005e7b01005f7b0100607b0100617b0100627b0100637b0100647b0100657b0100667b0100677b0100687b0100697b01006a7b01006b7b01006c7b01006d7b01006e7b01006f7b0100707b0100717b0100727b0100737b0100747b0100757b0100767b0100777b0100787b0100797b01007a7b01007b7b01007c7b01007d7b01007e7b01007f7b0100807b0100817b0100827b0100837b0100847b0100857b0100867b0100877b0100887b0100897b01008a7b01008b7b01008c7b01008d7b01008e7b01008f7b0100907b0100917b0100927b0100937b0100947b0100957b0100967b0100977b0100987b0100997b01009a7b01009b7b01009c7b01009d7b01009e7b01009f7b0100a07b0100a17b0100a27b0100a37b0100a47b0100a57b0100a67b0100a77b0100a87b0100a97b0100aa7b0100ab7b0100ac7b0100ad7b0100ae7b0100af7b0100b07b0100b17b0100b27b0100b37b0100b47b0100b57b0100b67b0100b77b0100b87b0100b97b0100ba7b0100bb7b0100bc7b0100bd7b0100be7b0100bf7b0100c07b0100c17b0100c27b0100c37b0100c47b0100c57b0100c67b0100c77b0100c87b0100c97b0100ca7b0100cb7b0100cc7b0100cd7b0100ce7b0100cf7b0100d07b0100d17b0100d27b0100d37b0100d47b0100d57b0100d67b0100d77b0100d87b0100d97b0100da7b0100db7b0100dc7b0100dd7b0100de7b0100df7b0100e07b0100e17b0100e27b0100e37b0100e47b0100e57b0100e67b0100e77b0100e87b0100e97b0100ea7b0100eb7b0100ec7b0100ed7b0100ee7b0100ef7b0100f07b0100f17b0100f27b0100f37b0100f47b0100f57b0100f67b0100f77b0100f87b0100f97b0100fa7b0100fb7b0100fc7b0100fd7b0100fe7b0100ff7b0100007c0100017c0100027c0100037c0100047c0100057c0100067c0100077c0100087c0100097c01000a7c01000b7c01000c7c01000d7c01000e7c01000f7c0100107c0100117c0100127c0100137c0100147c0100157c0100167c0100177c0100187c0100197c01001a7c01001b7c01001c7c01001d7c01001e7c01001f7c0100207c0100217c0100227c0100237c0100247c0100257c0100267c0100277c0100287c0100297c01002a7c01002b7c01002c7c01002d7c01002e7c01002f7c0100307c0100317c0100327c0100337c0100347c0100357c0100367c0100377c0100387c0100397c01003a7c01003b7c01003c7c01003d7c01003e7c01003f7c0100407c0100417c0100427c0100437c0100447c0100457c0100467c0100477c0100487c0100497c01004a7c01004b7c01004c7c01004d7c01004e7c01004f7c0100507c0100517c0100527c0100537c0100547c0100557c0100567c0100577c0100587c0100597c01005a7c01005b7c01005c7c01005d7c01005e7c01005f7c0100607c0100617c0100627c0100637c0100647c0100657c0100667c0100677c0100687c0100697c01006a7c01006b7c01006c7c01006d7c01006e7c01006f7c0100707c0100717c0100727c0100737c0100747c0100757c0100767c0100777c0100787c0100797c01007a7c01007b7c01007c7c01007d7c01007e7c01007f7c0100807c0100817c0100827c0100837c0100847c0100857c0100867c0100877c0100887c0100897c01008a7c01008b7c01008c7c01008d7c01008e7c01008f7c0100907c0100917c0100927c0100937c0100947c0100957c0100967c0100977c0100987c0100997c01009a7c01009b7c01009c7c01009d7c01009e7c01009f7c0100a07c0100a17c0100a27c0100a37c0100a47c0100a57c0100a67c0100a77c0100a87c0100a97c0100aa7c0100ab7c0100ac7c0100ad7c0100ae7c0100af7c0100b07c0100b17c0100b27c0100b37c0100b47c0100b57c0100b67c0100b77c0100b87c0100b97c0100ba7c0100bb7c0100bc7c0100bd7c0100be7c0100bf7c0100c07c0100c17c0100c27c0100c37c0100c47c0100c57c0100c67c0100c77c0100c87c0100c97c0100ca7c0100cb7c0100cc7c0100cd7c0100ce7c0100cf7c0100d07c0100d17c0100d27c0100d37c0100d47c0100d57c0100d67c0100d77c0100d87c0100d97c0100da7c0100db7c0100dc7c0100dd7c0100de7c0100df7c0100e07c0100e17c0100e27c0100e37c0100e47c0100e57c0100e67c0100e77c0100e87c0100e97c0100ea7c0100eb7c0100ec7c0100ed7c0100ee7c0100ef7c0100f07c0100f17c0100f27c0100f37c0100f47c0100f57c0100f67c0100f77c0100f87c0100f97c0100fa7c0100fb7c0100fc7c0100fd7c0100fe7c0100ff7c0100007d0100017d0100027d0100037d0100047d0100057d0100067d0100077d0100087d0100097d01000a7d01000b7d01000c7d01000d7d01000e7d01000f7d0100107d0100117d0100127d0100137d0100147d0100157d0100167d0100177d0100187d0100197d01001a7d01001b7d01001c7d01001d7d01001e7d01001f7d0100207d0100217d0100227d0100237d0100247d0100257d0100267d0100277d0100287d0100297d01002a7d01002b7d01002c7d01002d7d01002e7d01002f7d0100307d0100317d0100327d0100337d0100347d0100357d0100367d0100377d0100387d0100397d01003a7d01003b7d01003c7d01003d7d01003e7d01003f7d0100407d0100417d0100427d0100437d0100447d0100457d0100467d0100477d0100487d0100497d01004a7d01004b7d01004c7d01004d7d01004e7d01004f7d0100507d0100517d0100527d0100537d0100547d0100557d0100567d0100577d0100587d0100597d01005a7d01005b7d01005c7d01005d7d01005e7d01005f7d0100607d0100617d0100627d0100637d0100647d0100657d0100667d0100677d0100687d0100697d01006a7d01006b7d01006c7d01006d7d01006e7d01006f7d0100707d0100717d0100727d0100737d0100747d0100757d0100767d0100777d0100787d0100797d01007a7d01007b7d01007c7d01007d7d01007e7d01007f7d0100807d0100817d0100827d0100837d0100847d0100857d0100867d0100877d0100887d0100897d01008a7d01008b7d01008c7d01008d7d01008e7d01008f7d0100907d0100917d0100927d0100937d0100947d0100957d0100967d0100977d0100987d0100997d01009a7d01009b7d01009c7d01009d7d01009e7d01009f7d0100a07d0100a17d0100a27d0100a37d0100a47d0100a57d0100a67d0100a77d0100a87d0100a97d0100aa7d0100ab7d0100ac7d0100ad7d0100ae7d0100af7d0100b07d0100b17d0100b27d0100b37d0100b47d0100b57d0100b67d0100b77d0100b87d0100b97d0100ba7d0100bb7d0100bc7d0100bd7d0100be7d0100bf7d0100c07d0100c17d0100c27d0100c37d0100c47d0100c57d0100c67d0100c77d0100c87d0100c97d0100ca7d0100cb7d0100cc7d0100cd7d0100ce7d0100cf7d0100d07d0100d17d0100d27d0100d37d0100d47d0100d57d0100d67d0100d77d0100d87d0100d97d0100da7d0100db7d0100dc7d0100dd7d0100de7d0100df7d0100e07d0100e17d0100e27d0100e37d0100e47d0100e57d0100e67d0100e77d0100e87d0100e97d0100ea7d0100eb7d0100ec7d0100ed7d0100ee7d0100ef7d0100f07d0100f17d0100f27d0100f37d0100f47d0100f57d0100f67d0100f77d0100f87d0100f97d0100fa7d0100fb7d0100fc7d0100fd7d0100fe7d0100ff7d0100007e0100017e0100027e0100037e0100047e0100057e0100067e0100077e0100087e0100097e01000a7e01000b7e01000c7e01000d7e01000e7e01000f7e0100107e0100117e0100127e0100137e0100147e0100157e0100167e0100177e0100187e0100197e01001a7e01001b7e01001c7e01001d7e01001e7e01001f7e0100207e0100217e0100227e0100237e0100247e0100257e0100267e0100277e0100287e0100297e01002a7e01002b7e01002c7e01002d7e01002e7e01002f7e0100307e0100317e0100327e0100337e0100347e0100357e0100367e0100377e0100387e0100397e01003a7e01003b7e01003c7e01003d7e01003e7e01003f7e0100407e0100417e0100427e0100437e0100447e0100457e0100467e0100477e0100487e0100497e01004a7e01004b7e01004c7e01004d7e01004e7e01004f7e0100507e0100517e0100527e0100537e0100547e0100557e0100567e0100577e0100587e0100597e01005a7e01005b7e01005c7e01005d7e01005e7e01005f7e0100607e0100617e0100627e0100637e0100647e0100657e0100667e0100677e0100687e0100697e01006a7e01006b7e01006c7e01006d7e01006e7e01006f7e0100707e0100717e0100727e0100737e0100747e0100757e0100767e0100777e0100787e0100797e01007a7e01007b7e01007c7e01007d7e01007e7e01007f7e0100807e0100817e0100827e0100837e0100847e0100857e0100867e0100877e0100887e0100897e01008a7e01008b7e01008c7e01008d7e01008e7e01008f7e0100907e0100917e0100927e0100937e0100947e0100957e0100967e0100977e0100987e0100997e01009a7e01009b7e01009c7e01009d7e01009e7e01009f7e0100a07e0100a17e0100a27e0100a37e0100a47e0100a57e0100a67e0100a77e0100a87e0100a97e0100aa7e0100ab7e0100ac7e0100ad7e0100ae7e0100af7e0100b07e0100b17e0100b27e0100b37e0100b47e0100b57e0100b67e0100b77e0100b87e0100b97e0100ba7e0100bb7e0100bc7e0100bd7e0100be7e0100bf7e0100c07e0100c17e0100c27e0100c37e0100c47e0100c57e0100c67e0100c77e0100c87e0100c97e0100ca7e0100cb7e0100cc7e0100cd7e0100ce7e0100cf7e0100d07e0100d17e0100d27e0100d37e0100d47e0100d57e0100d67e0100d77e0100d87e0100d97e0100da7e0100db7e0100dc7e0100dd7e0100de7e0100df7e0100e07e0100e17e0100e27e0100e37e0100e47e0100e57e0100e67e0100e77e0100e87e0100e97e0100ea7e0100eb7e0100ec7e0100ed7e0100ee7e0100ef7e0100f07e0100f17e0100f27e0100f37e0100f47e0100f57e0100f67e0100f77e0100f87e0100f97e0100fa7e0100fb7e0100fc7e0100fd7e0100fe7e0100ff7e0100007f0100017f0100027f0100037f0100047f0100057f0100067f0100077f0100087f0100097f01000a7f01000b7f01000c7f01000d7f01000e7f01000f7f0100107f0100117f0100127f0100137f0100147f0100157f0100167f0100177f0100187f0100197f01001a7f01001b7f01001c7f01001d7f01001e7f01001f7f0100207f0100217f0100227f0100237f0100247f0100257f0100267f0100277f0100287f0100297f01002a7f01002b7f01002c7f01002d7f01002e7f01002f7f0100307f0100317f0100327f0100337f0100347f0100357f0100367f0100377f0100387f0100397f01003a7f01003b7f01003c7f01003d7f01003e7f01003f7f0100407f0100417f0100427f0100437f0100447f0100457f0100467f0100477f0100487f0100497f01004a7f01004b7f01004c7f01004d7f01004e7f01004f7f0100507f0100517f0100527f0100537f0100547f0100557f0100567f0100577f0100587f0100597f01005a7f01005b7f01005c7f01005d7f01005e7f01005f7f0100607f0100617f0100627f0100637f0100647f0100657f0100667f0100677f0100687f0100697f01006a7f01006b7f01006c7f01006d7f01006e7f01006f7f0100707f0100717f0100727f0100737f0100747f0100757f0100767f0100777f0100787f0100797f01007a7f01007b7f01007c7f01007d7f01007e7f01007f7f0100807f0100817f0100827f0100837f0100847f0100857f0100867f0100877f0100887f0100897f01008a7f01008b7f01008c7f01008d7f01008e7f01008f7f0100907f0100917f0100927f0100937f0100947f0100957f0100967f0100977f0100987f0100997f01009a7f01009b7f01009c7f01009d7f01009e7f01009f7f0100a07f0100a17f0100a27f0100a37f0100a47f0100a57f0100a67f0100a77f0100a87f0100a97f0100aa7f0100ab7f0100ac7f0100ad7f0100ae7f0100af7f0100b07f0100b17f0100b27f0100b37f0100b47f0100b57f0100b67f0100b77f0100b87f0100b97f0100ba7f0100bb7f0100bc7f0100bd7f0100be7f0100bf7f0100c07f0100c17f0100c27f0100c37f0100c47f0100c57f0100c67f0100c77f0100c87f0100c97f0100ca7f0100cb7f0100cc7f0100cd7f0100ce7f0100cf7f0100d07f0100d17f0100d27f0100d37f0100d47f0100d57f0100d67f0100d77f0100d87f0100d97f0100da7f0100db7f0100dc7f0100dd7f0100de7f0100df7f0100e07f0100e17f0100e27f0100e37f0100e47f0100e57f0100e67f0100e77f0100e87f0100e97f0100ea7f0100eb7f0100ec7f0100ed7f0100ee7f0100ef7f0100f07f0100f17f0100f27f0100f37f0100f47f0100f57f0100f67f0100f77f0100f87f0100f97f0100fa7f0100fb7f0100fc7f0100fd7f0100fe7f0100ff7f0100008001000180010002800100038001000480010005800100068001000780010008800100098001000a8001000b8001000c8001000d8001000e8001000f800100108001001180010012800100138001001480010015800100168001001780010018800100198001001a8001001b8001001c8001001d8001001e8001001f800100208001002180010022800100238001002480010025800100268001002780010028800100298001002a8001002b8001002c8001002d8001002e8001002f800100308001003180010032800100338001003480010035800100368001003780010038800100398001003a8001003b8001003c8001003d8001003e8001003f800100408001004180010042800100438001004480010045800100468001004780010048800100498001004a8001004b8001004c8001004d8001004e8001004f800100508001005180010052800100538001005480010055800100568001005780010058800100598001005a8001005b8001005c8001005d8001005e8001005f800100608001006180010062800100638001006480010065800100668001006780010068800100698001006a8001006b8001006c8001006d8001006e8001006f800100708001007180010072800100738001007480010075800100768001007780010078800100798001007a8001007b8001007c8001007d8001007e8001007f800100808001008180010082800100838001008480010085800100868001008780010088800100898001008a8001008b8001008c8001008d8001008e8001008f800100908001009180010092800100938001009480010095800100968001009780010098800100998001009a8001009b8001009c8001009d8001009e8001009f800100a0800100a1800100a2800100a3800100a4800100a5800100a6800100a7800100a8800100a9800100aa800100ab800100ac800100ad800100ae800100af800100b0800100b1800100b2800100b3800100b4800100b5800100b6800100b7800100b8800100b9800100ba800100bb800100bc800100bd800100be800100bf800100c0800100c1800100c2800100c3800100c4800100c5800100c6800100c7800100c8800100c9800100ca800100cb800100cc800100cd800100ce800100cf800100d0800100d1800100d2800100d3800100d4800100d5800100d6800100d7800100d8800100d9800100da800100db800100dc800100dd800100de800100df800100e0800100e1800100e2800100e3800100e4800100e5800100e6800100e7800100e8800100e9800100ea800100eb800100ec800100ed800100ee800100ef800100f0800100f1800100f2800100f3800100f4800100f5800100f6800100f7800100f8800100f9800100fa800100fb800100fc800100fd800100fe800100ff800100008101000181010002810100038101000481010005810100068101000781010008810100098101000a8101000b8101000c8101000d8101000e8101000f810100108101001181010012810100138101001481010015810100168101001781010018810100198101001a8101001b8101001c8101001d8101001e8101001f810100208101002181010022810100238101002481010025810100268101002781010028810100298101002a8101002b8101002c8101002d8101002e8101002f810100308101003181010032810100338101003481010035810100368101003781010038810100398101003a8101003b8101003c8101003d8101003e8101003f810100408101004181010042810100438101004481010045810100468101004781010048810100498101004a8101004b8101004c8101004d8101004e8101004f810100508101005181010052810100538101005481010055810100568101005781010058810100598101005a8101005b8101005c8101005d8101005e8101005f810100608101006181010062810100638101006481010065810100668101006781010068810100698101006a8101006b8101006c8101006d8101006e8101006f810100708101007181010072810100738101007481010075810100768101007781010078810100798101007a8101007b8101007c8101007d8101007e8101007f810100808101008181010082810100838101008481010085810100868101008781010088810100898101008a8101008b8101008c8101008d8101008e8101008f810100908101009181010092810100938101009481010095810100968101009781010098810100998101009a8101009b8101009c8101009d8101009e8101009f810100a0810100a1810100a2810100a3810100a4810100a5810100a6810100a7810100a8810100a9810100aa810100ab810100ac810100ad810100ae810100af810100b0810100b1810100b2810100b3810100b4810100b5810100b6810100b7810100b8810100b9810100ba810100bb810100bc810100bd810100be810100bf810100c0810100c1810100c2810100c3810100c4810100c5810100c6810100c7810100c8810100c9810100ca810100cb810100cc810100cd810100ce810100cf810100d0810100d1810100d2810100d3810100d4810100d5810100d6810100d7810100d8810100d9810100da810100db810100dc810100dd810100de810100df810100e0810100e1810100e2810100e3810100e4810100e5810100e6810100e7810100e8810100e9810100ea810100eb810100ec810100ed810100ee810100ef810100f0810100f1810100f2810100f3810100f4810100f5810100f6810100f7810100f8810100f9810100fa810100fb810100fc810100fd810100fe810100ff810100008201000182010002820100038201000482010005820100068201000782010008820100098201000a8201000b8201000c8201000d8201000e8201000f820100108201001182010012820100138201001482010015820100168201001782010018820100198201001a8201001b8201001c8201001d8201001e8201001f820100208201002182010022820100238201002482010025820100268201002782010028820100298201002a8201002b8201002c8201002d8201002e8201002f820100308201003182010032820100338201003482010035820100368201003782010038820100398201003a8201003b8201003c8201003d8201003e8201003f820100408201004182010042820100438201004482010045820100468201004782010048820100498201004a8201004b8201004c8201004d8201004e8201004f820100508201005182010052820100538201005482010055820100568201005782010058820100598201005a8201005b8201005c8201005d8201005e8201005f820100608201006182010062820100638201006482010065820100668201006782010068820100698201006a8201006b8201006c8201006d8201006e8201006f820100708201007182010072820100738201007482010075820100768201007782010078820100798201007a8201007b8201007c8201007d8201007e8201007f820100808201008182010082820100838201008482010085820100868201008782010088820100898201008a8201008b8201008c8201008d8201008e8201008f820100908201009182010092820100938201009482010095820100968201009782010098820100998201009a8201009b8201009c8201009d8201009e8201009f820100a0820100a1820100a2820100a3820100a4820100a5820100a6820100a7820100a8820100a9820100aa820100ab820100ac820100ad820100ae820100af820100b0820100b1820100b2820100b3820100b4820100b5820100b6820100b7820100b8820100b9820100ba820100bb820100bc820100bd820100be820100bf820100c0820100c1820100c2820100c3820100c4820100c5820100c6820100c7820100c8820100c9820100ca820100cb820100cc820100cd820100ce820100cf820100d0820100d1820100d2820100d3820100d4820100d5820100d6820100d7820100d8820100d9820100da820100db820100dc820100dd820100de820100df820100e0820100e1820100e2820100e3820100e4820100e5820100e6820100e7820100e8820100e9820100ea820100eb820100ec820100ed820100ee820100ef820100f0820100f1820100f2820100f3820100f4820100f5820100f6820100f7820100f8820100f9820100fa820100fb820100fc820100fd820100fe820100ff820100008301000183010002830100038301000483010005830100068301000783010008830100098301000a8301000b8301000c8301000d8301000e8301000f830100108301001183010012830100138301001483010015830100168301001783010018830100198301001a8301001b8301001c8301001d8301001e8301001f830100208301002183010022830100238301002483010025830100268301002783010028830100298301002a8301002b8301002c8301002d8301002e8301002f830100308301003183010032830100338301003483010035830100368301003783010038830100398301003a8301003b8301003c8301003d8301003e8301003f830100408301004183010042830100438301004483010045830100468301004783010048830100498301004a8301004b8301004c8301004d8301004e8301004f830100508301005183010052830100538301005483010055830100568301005783010058830100598301005a8301005b8301005c8301005d8301005e8301005f830100608301006183010062830100638301006483010065830100668301006783010068830100698301006a8301006b8301006c8301006d8301006e8301006f830100708301007183010072830100738301007483010075830100768301007783010078830100798301007a8301007b8301007c8301007d8301007e8301007f830100808301008183010082830100838301008483010085830100868301008783010088830100898301008a8301008b8301008c8301008d8301008e8301008f830100908301009183010092830100938301009483010095830100968301009783010098830100998301009a8301009b8301009c8301009d8301009e8301009f830100a0830100a1830100a2830100a3830100a4830100a5830100a6830100a7830100a8830100a9830100aa830100ab830100ac830100ad830100ae830100af830100b0830100b1830100b2830100b3830100b4830100b5830100b6830100b7830100b8830100b9830100ba830100bb830100bc830100bd830100be830100bf830100c0830100c1830100c2830100c3830100c4830100c5830100c6830100c7830100c8830100c9830100ca830100cb830100cc830100cd830100ce830100cf830100d0830100d1830100d2830100d3830100d4830100d5830100d6830100d7830100d8830100d9830100da830100db830100dc830100dd830100de830100df830100e0830100e1830100e2830100e3830100e4830100e5830100e6830100e7830100e8830100e9830100ea830100eb830100ec830100ed830100ee830100ef830100f0830100f1830100f2830100f3830100f4830100f5830100f6830100f7830100f8830100f9830100fa830100fb830100fc830100fd830100fe830100ff830100008401000184010002840100038401000484010005840100068401000784010008840100098401000a8401000b8401000c8401000d8401000e8401000f840100108401001184010012840100138401001484010015840100168401001784010018840100198401001a8401001b8401001c8401001d8401001e8401001f840100208401002184010022840100238401002484010025840100268401002784010028840100298401002a8401002b8401002c8401002d8401002e8401002f840100308401003184010032840100338401003484010035840100368401003784010038840100398401003a8401003b8401003c8401003d8401003e8401003f840100408401004184010042840100438401004484010045840100468401004784010048840100498401004a8401004b8401004c8401004d8401004e8401004f840100508401005184010052840100538401005484010055840100568401005784010058840100598401005a8401005b8401005c8401005d8401005e8401005f840100608401006184010062840100638401006484010065840100668401006784010068840100698401006a8401006b8401006c8401006d8401006e8401006f840100708401007184010072840100738401007484010075840100768401007784010078840100798401007a8401007b8401007c8401007d8401007e8401007f840100808401008184010082840100838401008484010085840100868401008784010088840100898401008a8401008b8401008c8401008d8401008e8401008f840100908401009184010092840100938401009484010095840100968401009784010098840100998401009a8401009b8401009c8401009d8401009e8401009f840100a0840100a1840100a2840100a3840100a4840100a5840100a6840100a7840100a8840100a9840100aa840100ab840100ac840100ad840100ae840100af840100b0840100b1840100b2840100b3840100b4840100b5840100b6840100b7840100b8840100b9840100ba840100bb840100bc840100bd840100be840100bf840100c0840100c1840100c2840100c3840100c4840100c5840100c6840100c7840100c8840100c9840100ca840100cb840100cc840100cd840100ce840100cf840100d0840100d1840100d2840100d3840100d4840100d5840100d6840100d7840100d8840100d9840100da840100db840100dc840100dd840100de840100df840100e0840100e1840100e2840100e3840100e4840100e5840100e6840100e7840100e8840100e9840100ea840100eb840100ec840100ed840100ee840100ef840100f0840100f1840100f2840100f3840100f4840100f5840100f6840100f7840100f8840100f9840100fa840100fb840100fc840100fd840100fe840100ff840100008501000185010002850100038501000485010005850100068501000785010008850100098501000a8501000b8501000c8501000d8501000e8501000f850100108501001185010012850100138501001485010015850100168501001785010018850100198501001a8501001b8501001c8501001d8501001e8501001f850100208501002185010022850100238501002485010025850100268501002785010028850100298501002a8501002b8501002c8501002d8501002e8501002f850100308501003185010032850100338501003485010035850100368501003785010038850100398501003a8501003b8501003c8501003d8501003e8501003f850100408501004185010042850100438501004485010045850100468501004785010048850100498501004a8501004b8501004c8501004d8501004e8501004f850100508501005185010052850100538501005485010055850100568501005785010058850100598501005a8501005b8501005c8501005d8501005e8501005f850100608501006185010062850100638501006485010065850100668501006785010068850100698501006a8501006b8501006c8501006d8501006e8501006f850100708501007185010072850100738501007485010075850100768501007785010078850100798501007a8501007b8501007c8501007d8501007e8501007f850100808501008185010082850100838501008485010085850100868501008785010088850100898501008a8501008b8501008c8501008d8501008e8501008f850100908501009185010092850100938501009485010095850100968501009785010098850100998501009a8501009b8501009c8501009d8501009e8501009f850100a0850100a1850100a2850100a3850100a4850100a5850100a6850100a7850100a8850100a9850100aa850100ab850100ac850100ad850100ae850100af850100b0850100b1850100b2850100b3850100b4850100b5850100b6850100b7850100b8850100b9850100ba850100bb850100bc850100bd850100be850100bf850100c0850100c1850100c2850100c3850100c4850100c5850100c6850100c7850100c8850100c9850100ca850100cb850100cc850100cd850100ce850100cf850100d0850100d1850100d2850100d3850100d4850100d5850100d6850100d7850100d8850100d9850100da850100db850100dc850100dd850100de850100df850100e0850100e1850100e2850100e3850100e4850100e5850100e6850100e7850100e8850100e9850100ea850100eb850100ec850100ed850100ee850100ef850100f0850100f1850100f2850100f3850100f4850100f5850100f6850100f7850100f8850100f9850100fa850100fb850100fc850100fd850100fe850100ff850100008601000186010002860100038601000486010005860100068601000786010008860100098601000a8601000b8601000c8601000d8601000e8601000f860100108601001186010012860100138601001486010015860100168601001786010018860100198601001a8601001b8601001c8601001d8601001e8601001f860100208601002186010022860100238601002486010025860100268601002786010028860100298601002a8601002b8601002c8601002d8601002e8601002f860100308601003186010032860100338601003486010035860100368601003786010038860100398601003a8601003b8601003c8601003d8601003e8601003f860100408601004186010042860100438601004486010045860100468601004786010048860100498601004a8601004b8601004c8601004d8601004e8601004f860100508601005186010052860100538601005486010055860100568601005786010058860100598601005a8601005b8601005c8601005d8601005e8601005f860100608601006186010062860100638601006486010065860100668601006786010068860100698601006a8601006b8601006c8601006d8601006e8601006f860100708601007186010072860100738601007486010075860100768601007786010078860100798601007a8601007b8601007c8601007d8601007e8601007f860100808601008186010082860100838601008486010085860100868601008786010088860100898601008a8601008b8601008c8601008d8601008e8601008f860100908601009186010092860100938601009486010095860100968601009786010098860100998601009a8601009b8601009c8601009d8601009e8601009f860100a0860100a1860100a2860100a3860100a4860100a5860100a6860100a7860100a8860100a9860100aa860100ab860100ac860100ad860100ae860100af860100b0860100b1860100b2860100b3860100b4860100b5860100b6860100b7860100b8860100b9860100ba860100bb860100bc860100bd860100be860100bf860100c0860100c1860100c2860100c3860100c4860100c5860100c6860100c7860100c8860100c9860100ca860100cb860100cc860100cd860100ce860100cf860100d0860100d1860100d2860100d3860100d4860100d5860100d6860100d7860100d8860100d9860100da860100db860100dc860100dd860100de860100df860100e0860100e1860100e2860100e3860100e4860100e5860100e6860100e7860100e8860100e9860100ea860100eb860100ec860100ed860100ee860100ef860100f0860100f1860100f2860100f3860100f4860100f5860100f6860100f7860100f8860100f9860100fa860100fb860100fc860100fd860100fe860100ff860100008701000187010002870100038701000487010005870100068701000787010008870100098701000a8701000b8701000c8701000d8701000e8701000f870100108701001187010012870100138701001487010015870100168701001787010018870100198701001a8701001b8701001c8701001d8701001e8701001f870100208701002187010022870100238701002487010025870100268701002787010028870100298701002a8701002b8701002c8701002d8701002e8701002f870100308701003187010032870100338701003487010035870100368701003787010038870100398701003a8701003b8701003c8701003d8701003e8701003f870100408701004187010042870100438701004487010045870100468701004787010048870100498701004a8701004b8701004c8701004d8701004e8701004f870100508701005187010052870100538701005487010055870100568701005787010058870100598701005a8701005b8701005c8701005d8701005e8701005f870100608701006187010062870100638701006487010065870100668701006787010068870100698701006a8701006b8701006c8701006d8701006e8701006f870100708701007187010072870100738701007487010075870100768701007787010078870100798701007a8701007b8701007c8701007d8701007e8701007f870100808701008187010082870100838701008487010085870100868701008787010088870100898701008a8701008b8701008c8701008d8701008e8701008f870100908701009187010092870100938701009487010095870100968701009787010098870100998701009a8701009b8701009c8701009d8701009e8701009f870100a0870100a1870100a2870100a3870100a4870100a5870100a6870100a7870100a8870100a9870100aa870100ab870100ac870100ad870100ae870100af870100b0870100b1870100b2870100b3870100b4870100b5870100b6870100b7870100b8870100b9870100ba870100bb870100bc870100bd870100be870100bf870100c0870100c1870100c2870100c3870100c4870100c5870100c6870100c7870100c8870100c9870100ca870100cb870100cc870100cd870100ce870100cf870100d0870100d1870100d2870100d3870100d4870100d5870100d6870100d7870100d8870100d9870100da870100db870100dc870100dd870100de870100df870100e0870100e1870100e2870100e3870100e4870100e5870100e6870100e7870100e8870100e9870100ea870100eb870100ec870100ed870100ee870100ef870100f0870100f1870100f2870100f3870100f4870100f5870100f6870100f7870100f8870100f9870100fa870100fb870100fc870100fd870100fe870100ff870100008801000188010002880100038801000488010005880100068801000788010008880100098801000a8801000b8801000c8801000d8801000e8801000f880100108801001188010012880100138801001488010015880100168801001788010018880100198801001a8801001b8801001c8801001d8801001e8801001f880100208801002188010022880100238801002488010025880100268801002788010028880100298801002a8801002b8801002c8801002d8801002e8801002f880100308801003188010032880100338801003488010035880100368801003788010038880100398801003a8801003b8801003c8801003d8801003e8801003f880100408801004188010042880100438801004488010045880100468801004788010048880100498801004a8801004b8801004c8801004d8801004e8801004f880100508801005188010052880100538801005488010055880100568801005788010058880100598801005a8801005b8801005c8801005d8801005e8801005f880100608801006188010062880100638801006488010065880100668801006788010068880100698801006a8801006b8801006c8801006d8801006e8801006f880100708801007188010072880100738801007488010075880100768801007788010078880100798801007a8801007b8801007c8801007d8801007e8801007f880100808801008188010082880100838801008488010085880100868801008788010088880100898801008a8801008b8801008c8801008d8801008e8801008f880100908801009188010092880100938801009488010095880100968801009788010098880100998801009a8801009b8801009c8801009d8801009e8801009f880100a0880100a1880100a2880100a3880100a4880100a5880100a6880100a7880100a8880100a9880100aa880100ab880100ac880100ad880100ae880100af880100b0880100b1880100b2880100b3880100b4880100b5880100b6880100b7880100b8880100b9880100ba880100bb880100bc880100bd880100be880100bf880100c0880100c1880100c2880100c3880100c4880100c5880100c6880100c7880100c8880100c9880100ca880100cb880100cc880100cd880100ce880100cf880100d0880100d1880100d2880100d3880100d4880100d5880100d6880100d7880100d8880100d9880100da880100db880100dc880100dd880100de880100df880100e0880100e1880100e2880100e3880100e4880100e5880100e6880100e7880100e8880100e9880100ea880100eb880100ec880100ed880100ee880100ef880100f0880100f1880100f2880100f3880100f4880100f5880100f6880100f7880100f8880100f9880100fa880100fb880100fc880100fd880100fe880100ff880100008901000189010002890100038901000489010005890100068901000789010008890100098901000a8901000b8901000c8901000d8901000e8901000f890100108901001189010012890100138901001489010015890100168901001789010018890100198901001a8901001b8901001c8901001d8901001e8901001f890100208901002189010022890100238901002489010025890100268901002789010028890100298901002a8901002b8901002c8901002d8901002e8901002f890100308901003189010032890100338901003489010035890100368901003789010038890100398901003a8901003b8901003c8901003d8901003e8901003f890100408901004189010042890100438901004489010045890100468901004789010048890100498901004a8901004b8901004c8901004d8901004e8901004f890100508901005189010052890100538901005489010055890100568901005789010058890100598901005a8901005b8901005c8901005d8901005e8901005f890100608901006189010062890100638901006489010065890100668901006789010068890100698901006a8901006b8901006c8901006d8901006e8901006f890100708901007189010072890100738901007489010075890100768901007789010078890100798901007a8901007b8901007c8901007d8901007e8901007f890100808901008189010082890100838901008489010085890100868901008789010088890100898901008a8901008b8901008c8901008d8901008e8901008f890100908901009189010092890100938901009489010095890100968901009789010098890100998901009a8901009b8901009c8901009d8901009e8901009f890100a0890100a1890100a2890100a3890100a4890100a5890100a6890100a7890100a8890100a9890100aa890100ab890100ac890100ad890100ae890100af890100b0890100b1890100b2890100b3890100b4890100b5890100b6890100b7890100b8890100b9890100ba890100bb890100bc890100bd890100be890100bf890100c0890100c1890100c2890100c3890100c4890100c5890100c6890100c7890100c8890100c9890100ca890100cb890100cc890100cd890100ce890100cf890100d0890100d1890100d2890100d3890100d4890100d5890100d6890100d7890100d8890100d9890100da890100db890100dc890100dd890100de890100df890100e0890100e1890100e2890100e3890100e4890100e5890100e6890100e7890100e8890100e9890100ea890100eb890100ec890100ed890100ee890100ef890100f0890100f1890100f2890100f3890100f4890100f5890100f6890100f7890100f8890100f9890100fa890100fb890100fc890100fd890100fe890100ff890100008a0100018a0100028a0100038a0100048a0100058a0100068a0100078a0100088a0100098a01000a8a01000b8a01000c8a01000d8a01000e8a01000f8a0100108a0100118a0100128a0100138a0100148a0100158a0100168a0100178a0100188a0100198a01001a8a01001b8a01001c8a01001d8a01001e8a01001f8a0100208a0100218a0100228a0100238a0100248a0100258a0100268a0100278a0100288a0100298a01002a8a01002b8a01002c8a01002d8a01002e8a01002f8a0100308a0100318a0100328a0100338a0100348a0100358a0100368a0100378a0100388a0100398a01003a8a01003b8a01003c8a01003d8a01003e8a01003f8a0100408a0100418a0100428a0100438a0100448a0100458a0100468a0100478a0100488a0100498a01004a8a01004b8a01004c8a01004d8a01004e8a01004f8a0100508a0100518a0100528a0100538a0100548a0100558a0100568a0100578a0100588a0100598a01005a8a01005b8a01005c8a01005d8a01005e8a01005f8a0100608a0100618a0100628a0100638a0100648a0100658a0100668a0100678a0100688a0100698a01006a8a01006b8a01006c8a01006d8a01006e8a01006f8a0100708a0100718a0100728a0100738a0100748a0100758a0100768a0100778a0100788a0100798a01007a8a01007b8a01007c8a01007d8a01007e8a01007f8a0100808a0100818a0100828a0100838a0100848a0100858a0100868a0100878a0100888a0100898a01008a8a01008b8a01008c8a01008d8a01008e8a01008f8a0100908a0100918a0100928a0100938a0100948a0100958a0100968a0100978a0100988a0100998a01009a8a01009b8a01009c8a01009d8a01009e8a01009f8a0100a08a0100a18a0100a28a0100a38a0100a48a0100a58a0100a68a0100a78a0100a88a0100a98a0100aa8a0100ab8a0100ac8a0100ad8a0100ae8a0100af8a0100b08a0100b18a0100b28a0100b38a0100b48a0100b58a0100b68a0100b78a0100b88a0100b98a0100ba8a0100bb8a0100bc8a0100bd8a0100be8a0100bf8a0100c08a0100c18a0100c28a0100c38a0100c48a0100c58a0100c68a0100c78a0100c88a0100c98a0100ca8a0100cb8a0100cc8a0100cd8a0100ce8a0100cf8a0100d08a0100d18a0100d28a0100d38a0100d48a0100d58a0100d68a0100d78a0100d88a0100d98a0100da8a0100db8a0100dc8a0100dd8a0100de8a0100df8a0100e08a0100e18a0100e28a0100e38a0100e48a0100e58a0100e68a0100e78a0100e88a0100e98a0100ea8a0100eb8a0100ec8a0100ed8a0100ee8a0100ef8a0100f08a0100f18a0100f28a0100f38a0100f48a0100f58a0100f68a0100f78a0100f88a0100f98a0100fa8a0100fb8a0100fc8a0100fd8a0100fe8a0100ff8a0100008b0100018b0100028b0100038b0100048b0100058b0100068b0100078b0100088b0100098b01000a8b01000b8b01000c8b01000d8b01000e8b01000f8b0100108b0100118b0100128b0100138b0100148b0100158b0100168b0100178b0100188b0100198b01001a8b01001b8b01001c8b01001d8b01001e8b01001f8b0100208b0100218b0100228b0100238b0100248b0100258b0100268b0100278b0100288b0100298b01002a8b01002b8b01002c8b01002d8b01002e8b01002f8b0100308b0100318b0100328b0100338b0100348b0100358b0100368b0100378b0100388b0100398b01003a8b01003b8b01003c8b01003d8b01003e8b01003f8b0100408b0100418b0100428b0100438b0100448b0100458b0100468b0100478b0100488b0100498b01004a8b01004b8b01004c8b01004d8b01004e8b01004f8b0100508b0100518b0100528b0100538b0100548b0100558b0100568b0100578b0100588b0100598b01005a8b01005b8b01005c8b01005d8b01005e8b01005f8b0100608b0100618b0100628b0100638b0100648b0100658b0100668b0100678b0100688b0100698b01006a8b01006b8b01006c8b01006d8b01006e8b01006f8b0100708b0100718b0100728b0100738b0100748b0100758b0100768b0100778b0100788b0100798b01007a8b01007b8b01007c8b01007d8b01007e8b01007f8b0100808b0100818b0100828b0100838b0100848b0100858b0100868b0100878b0100888b0100898b01008a8b01008b8b01008c8b01008d8b01008e8b01008f8b0100908b0100918b0100928b0100938b0100948b0100958b0100968b0100978b0100988b0100998b01009a8b01009b8b01009c8b01009d8b01009e8b01009f8b0100a08b0100a18b0100a28b0100a38b0100a48b0100a58b0100a68b0100a78b0100a88b0100a98b0100aa8b0100ab8b0100ac8b0100ad8b0100ae8b0100af8b0100b08b0100b18b0100b28b0100b38b0100b48b0100b58b0100b68b0100b78b0100b88b0100b98b0100ba8b0100bb8b0100bc8b0100bd8b0100be8b0100bf8b0100c08b0100c18b0100c28b0100c38b0100c48b0100c58b0100c68b0100c78b0100c88b0100c98b0100ca8b0100cb8b0100cc8b0100cd8b0100ce8b0100cf8b0100d08b0100d18b0100d28b0100d38b0100d48b0100d58b0100d68b0100d78b0100d88b0100d98b0100da8b0100db8b0100dc8b0100dd8b0100de8b0100df8b0100e08b0100e18b0100e28b0100e38b0100e48b0100e58b0100e68b0100e78b0100e88b0100e98b0100ea8b0100eb8b0100ec8b0100ed8b0100ee8b0100ef8b0100f08b0100f18b0100f28b0100f38b0100f48b0100f58b0100f68b0100f78b0100f88b0100f98b0100fa8b0100fb8b0100fc8b0100fd8b0100fe8b0100ff8b0100008c0100018c0100028c0100038c0100048c0100058c0100068c0100078c0100088c0100098c01000a8c01000b8c01000c8c01000d8c01000e8c01000f8c0100108c0100118c0100128c0100138c0100148c0100158c0100168c0100178c0100188c0100198c01001a8c01001b8c01001c8c01001d8c01001e8c01001f8c0100208c0100218c0100228c0100238c0100248c0100258c0100268c0100278c0100288c0100298c01002a8c01002b8c01002c8c01002d8c01002e8c01002f8c0100308c0100318c0100328c0100338c0100348c0100358c0100368c0100378c0100388c0100398c01003a8c01003b8c01003c8c01003d8c01003e8c01003f8c0100408c0100418c0100428c0100438c0100448c0100458c0100468c0100478c0100488c0100498c01004a8c01004b8c01004c8c01004d8c01004e8c01004f8c0100508c0100518c0100528c0100538c0100548c0100558c0100568c0100578c0100588c0100598c01005a8c01005b8c01005c8c01005d8c01005e8c01005f8c0100608c0100618c0100628c0100638c0100648c0100658c0100668c0100678c0100688c0100698c01006a8c01006b8c01006c8c01006d8c01006e8c01006f8c0100708c0100718c0100728c0100738c0100748c0100758c0100768c0100778c0100788c0100798c01007a8c01007b8c01007c8c01007d8c01007e8c01007f8c0100808c0100818c0100828c0100838c0100848c0100858c0100868c0100878c0100888c0100898c01008a8c01008b8c01008c8c01008d8c01008e8c01008f8c0100908c0100918c0100928c0100938c0100948c0100958c0100968c0100978c0100988c0100998c01009a8c01009b8c01009c8c01009d8c01009e8c01009f8c0100a08c0100a18c0100a28c0100a38c0100a48c0100a58c0100a68c0100a78c0100a88c0100a98c0100aa8c0100ab8c0100ac8c0100ad8c0100ae8c0100af8c0100b08c0100b18c0100b28c0100b38c0100b48c0100b58c0100b68c0100b78c0100b88c0100b98c0100ba8c0100bb8c0100bc8c0100bd8c0100be8c0100bf8c0100c08c0100c18c0100c28c0100c38c0100c48c0100c58c0100c68c0100c78c0100c88c0100c98c0100ca8c0100cb8c0100cc8c0100cd8c0100ce8c0100cf8c0100d08c0100d18c0100d28c0100d38c0100d48c0100d58c0100d68c0100d78c0100d88c0100d98c0100da8c0100db8c0100dc8c0100dd8c0100de8c0100df8c0100e08c0100e18c0100e28c0100e38c0100e48c0100e58c0100e68c0100e78c0100e88c0100e98c0100ea8c0100eb8c0100ec8c0100ed8c0100ee8c0100ef8c0100f08c0100f18c0100f28c0100f38c0100f48c0100f58c0100f68c0100f78c0100f88c0100f98c0100fa8c0100fb8c0100fc8c0100fd8c0100fe8c0100ff8c0100008d0100018d0100028d0100038d0100048d0100058d0100068d0100078d0100088d0100098d01000a8d01000b8d01000c8d01000d8d01000e8d01000f8d0100108d0100118d0100128d0100138d0100148d0100158d0100168d0100178d0100188d0100198d01001a8d01001b8d01001c8d01001d8d01001e8d01001f8d0100208d0100218d0100228d0100238d0100248d0100258d0100268d0100278d0100288d0100298d01002a8d01002b8d01002c8d01002d8d01002e8d01002f8d0100308d0100318d0100328d0100338d0100348d0100358d0100368d0100378d0100388d0100398d01003a8d01003b8d01003c8d01003d8d01003e8d01003f8d0100408d0100418d0100428d0100438d0100448d0100458d0100468d0100478d0100488d0100498d01004a8d01004b8d01004c8d01004d8d01004e8d01004f8d0100508d0100518d0100528d0100538d0100548d0100558d0100568d0100578d0100588d0100598d01005a8d01005b8d01005c8d01005d8d01005e8d01005f8d0100608d0100618d0100628d0100638d0100648d0100658d0100668d0100678d0100688d0100698d01006a8d01006b8d01006c8d01006d8d01006e8d01006f8d0100708d0100718d0100728d0100738d0100748d0100758d0100768d0100778d0100788d0100798d01007a8d01007b8d01007c8d01007d8d01007e8d01007f8d0100808d0100818d0100828d0100838d0100848d0100858d0100868d0100878d0100888d0100898d01008a8d01008b8d01008c8d01008d8d01008e8d01008f8d0100908d0100918d0100928d0100938d0100948d0100958d0100968d0100978d0100988d0100998d01009a8d01009b8d01009c8d01009d8d01009e8d01009f8d0100a08d0100a18d0100a28d0100a38d0100a48d0100a58d0100a68d0100a78d0100a88d0100a98d0100aa8d0100ab8d0100ac8d0100ad8d0100ae8d0100af8d0100b08d0100b18d0100b28d0100b38d0100b48d0100b58d0100b68d0100b78d0100b88d0100b98d0100ba8d0100bb8d0100bc8d0100bd8d0100be8d0100bf8d0100c08d0100c18d0100c28d0100c38d0100c48d0100c58d0100c68d0100c78d0100c88d0100c98d0100ca8d0100cb8d0100cc8d0100cd8d0100ce8d0100cf8d0100d08d0100d18d0100d28d0100d38d0100d48d0100d58d0100d68d0100d78d0100d88d0100d98d0100da8d0100db8d0100dc8d0100dd8d0100de8d0100df8d0100e08d0100e18d0100e28d0100e38d0100e48d0100e58d0100e68d0100e78d0100e88d0100e98d0100ea8d0100eb8d0100ec8d0100ed8d0100ee8d0100ef8d0100f08d0100f18d0100f28d0100f38d0100f48d0100f58d0100f68d0100f78d0100f88d0100f98d0100fa8d0100fb8d0100fc8d0100fd8d0100fe8d0100ff8d0100008e0100018e0100028e0100038e0100048e0100058e0100068e0100078e0100088e0100098e01000a8e01000b8e01000c8e01000d8e01000e8e01000f8e0100108e0100118e0100128e0100138e0100148e0100158e0100168e0100178e0100188e0100198e01001a8e01001b8e01001c8e01001d8e01001e8e01001f8e0100208e0100218e0100228e0100238e0100248e0100258e0100268e0100278e0100288e0100298e01002a8e01002b8e01002c8e01002d8e01002e8e01002f8e0100308e0100318e0100328e0100338e0100348e0100358e0100368e0100378e0100388e0100398e01003a8e01003b8e01003c8e01003d8e01003e8e01003f8e0100408e0100418e0100428e0100438e0100448e0100458e0100468e0100478e0100488e0100498e01004a8e01004b8e01004c8e01004d8e01004e8e01004f8e0100508e0100518e0100528e0100538e0100548e0100558e0100568e0100578e0100588e0100598e01005a8e01005b8e01005c8e01005d8e01005e8e01005f8e0100608e0100618e0100628e0100638e0100648e0100658e0100668e0100678e0100688e0100698e01006a8e01006b8e01006c8e01006d8e01006e8e01006f8e0100708e0100718e0100728e0100738e0100748e0100758e0100768e0100778e0100788e0100798e01007a8e01007b8e01007c8e01007d8e01007e8e01007f8e0100808e0100818e0100828e0100838e0100848e0100858e0100868e0100878e0100888e0100898e01008a8e01008b8e01008c8e01008d8e01008e8e01008f8e0100908e0100918e0100928e0100938e0100948e0100958e0100968e0100978e0100988e0100998e01009a8e01009b8e01009c8e01009d8e01009e8e01009f8e0100a08e0100a18e0100a28e0100a38e0100a48e0100a58e0100a68e0100a78e0100a88e0100a98e0100aa8e0100ab8e0100ac8e0100ad8e0100ae8e0100af8e0100b08e0100b18e0100b28e0100b38e0100b48e0100b58e0100b68e0100b78e0100b88e0100b98e0100ba8e0100bb8e0100bc8e0100bd8e0100be8e0100bf8e0100c08e0100c18e0100c28e0100c38e0100c48e0100c58e0100c68e0100c78e0100c88e0100c98e0100ca8e0100cb8e0100cc8e0100cd8e0100ce8e0100cf8e0100d08e0100d18e0100d28e0100d38e0100d48e0100d58e0100d68e0100d78e0100d88e0100d98e0100da8e0100db8e0100dc8e0100dd8e0100de8e0100df8e0100e08e0100e18e0100e28e0100e38e0100e48e0100e58e0100e68e0100e78e0100e88e0100e98e0100ea8e0100eb8e0100ec8e0100ed8e0100ee8e0100ef8e0100f08e0100f18e0100f28e0100f38e0100f48e0100f58e0100f68e0100f78e0100f88e0100f98e0100fa8e0100fb8e0100fc8e0100fd8e0100fe8e0100ff8e0100008f0100018f0100028f0100038f0100048f0100058f0100068f0100078f0100088f0100098f01000a8f01000b8f01000c8f01000d8f01000e8f01000f8f0100108f0100118f0100128f0100138f0100148f0100158f0100168f0100178f0100188f0100198f01001a8f01001b8f01001c8f01001d8f01001e8f01001f8f0100208f0100218f0100228f0100238f0100248f0100258f0100268f0100278f0100288f0100298f01002a8f01002b8f01002c8f01002d8f01002e8f01002f8f0100308f0100318f0100328f0100338f0100348f0100358f0100368f0100378f0100388f0100398f01003a8f01003b8f01003c8f01003d8f01003e8f01003f8f0100408f0100418f0100428f0100438f0100448f0100458f0100468f0100478f0100488f0100498f01004a8f01004b8f01004c8f01004d8f01004e8f01004f8f0100508f0100518f0100528f0100538f0100548f0100558f0100568f0100578f0100588f0100598f01005a8f01005b8f01005c8f01005d8f01005e8f01005f8f0100608f0100618f0100628f0100638f0100648f0100658f0100668f0100678f0100688f0100698f01006a8f01006b8f01006c8f01006d8f01006e8f01006f8f0100708f0100718f0100728f0100738f0100748f0100758f0100768f0100778f0100788f0100798f01007a8f01007b8f01007c8f01007d8f01007e8f01007f8f0100808f0100818f0100828f0100838f0100848f0100858f0100868f0100878f0100888f0100898f01008a8f01008b8f01008c8f01008d8f01008e8f01008f8f0100908f0100918f0100928f0100938f0100948f0100958f0100968f0100978f0100988f0100998f01009a8f01009b8f01009c8f01009d8f01009e8f01009f8f0100a08f0100a18f0100a28f0100a38f0100a48f0100a58f0100a68f0100a78f0100a88f0100a98f0100aa8f0100ab8f0100ac8f0100ad8f0100ae8f0100af8f0100b08f0100b18f0100b28f0100b38f0100b48f0100b58f0100b68f0100b78f0100b88f0100b98f0100ba8f0100bb8f0100bc8f0100bd8f0100be8f0100bf8f0100c08f0100c18f0100c28f0100c38f0100c48f0100c58f0100c68f0100c78f0100c88f0100c98f0100ca8f0100cb8f0100cc8f0100cd8f0100ce8f0100cf8f0100d08f0100d18f0100d28f0100d38f0100d48f0100d58f0100d68f0100d78f0100d88f0100d98f0100da8f0100db8f0100dc8f0100dd8f0100de8f0100df8f0100e08f0100e18f0100e28f0100e38f0100e48f0100e58f0100e68f0100e78f0100e88f0100e98f0100ea8f0100eb8f0100ec8f0100ed8f0100ee8f0100ef8f0100f08f0100f18f0100f28f0100f38f0100f48f0100f58f0100f68f0100f78f0100f88f0100f98f0100fa8f0100fb8f0100fc8f0100fd8f0100fe8f0100ff8f0100009001000190010002900100039001000490010005900100069001000790010008900100099001000a9001000b9001000c9001000d9001000e9001000f900100109001001190010012900100139001001490010015900100169001001790010018900100199001001a9001001b9001001c9001001d9001001e9001001f900100209001002190010022900100239001002490010025900100269001002790010028900100299001002a9001002b9001002c9001002d9001002e9001002f900100309001003190010032900100339001003490010035900100369001003790010038900100399001003a9001003b9001003c9001003d9001003e9001003f900100409001004190010042900100439001004490010045900100469001004790010048900100499001004a9001004b9001004c9001004d9001004e9001004f900100509001005190010052900100539001005490010055900100569001005790010058900100599001005a9001005b9001005c9001005d9001005e9001005f900100609001006190010062900100639001006490010065900100669001006790010068900100699001006a9001006b9001006c9001006d9001006e9001006f900100709001007190010072900100739001007490010075900100769001007790010078900100799001007a9001007b9001007c9001007d9001007e9001007f900100809001008190010082900100839001008490010085900100869001008790010088900100899001008a9001008b9001008c9001008d9001008e9001008f900100909001009190010092900100939001009490010095900100969001009790010098900100999001009a9001009b9001009c9001009d9001009e9001009f900100a0900100a1900100a2900100a3900100a4900100a5900100a6900100a7900100a8900100a9900100aa900100ab900100ac900100ad900100ae900100af900100b0900100b1900100b2900100b3900100b4900100b5900100b6900100b7900100b8900100b9900100ba900100bb900100bc900100bd900100be900100bf900100c0900100c1900100c2900100c3900100c4900100c5900100c6900100c7900100c8900100c9900100ca900100cb900100cc900100cd900100ce900100cf900100d0900100d1900100d2900100d3900100d4900100d5900100d6900100d7900100d8900100d9900100da900100db900100dc900100dd900100de900100df900100e0900100e1900100e2900100e3900100e4900100e5900100e6900100e7900100e8900100e9900100ea900100eb900100ec900100ed900100ee900100ef900100f0900100f1900100f2900100f3900100f4900100f5900100f6900100f7900100f8900100f9900100fa900100fb900100fc900100fd900100fe900100ff900100009101000191010002910100039101000491010005910100069101000791010008910100099101000a9101000b9101000c9101000d9101000e9101000f910100109101001191010012910100139101001491010015910100169101001791010018910100199101001a9101001b9101001c9101001d9101001e9101001f910100209101002191010022910100239101002491010025910100269101002791010028910100299101002a9101002b9101002c9101002d9101002e9101002f910100309101003191010032910100339101003491010035910100369101003791010038910100399101003a9101003b9101003c9101003d9101003e9101003f910100409101004191010042910100439101004491010045910100469101004791010048910100499101004a9101004b9101004c9101004d9101004e9101004f910100509101005191010052910100539101005491010055910100569101005791010058910100599101005a9101005b9101005c9101005d9101005e9101005f910100609101006191010062910100639101006491010065910100669101006791010068910100699101006a9101006b9101006c9101006d9101006e9101006f910100709101007191010072910100739101007491010075910100769101007791010078910100799101007a9101007b9101007c9101007d9101007e9101007f910100809101008191010082910100839101008491010085910100869101008791010088910100899101008a9101008b9101008c9101008d9101008e9101008f910100909101009191010092910100939101009491010095910100969101009791010098910100999101009a9101009b9101009c9101009d9101009e9101009f910100a0910100a1910100a2910100a3910100a4910100a5910100a6910100a7910100a8910100a9910100aa910100ab910100ac910100ad910100ae910100af910100b0910100b1910100b2910100b3910100b4910100b5910100b6910100b7910100b8910100b9910100ba910100bb910100bc910100bd910100be910100bf910100c0910100c1910100c2910100c3910100c4910100c5910100c6910100c7910100c8910100c9910100ca910100cb910100cc910100cd910100ce910100cf910100d0910100d1910100d2910100d3910100d4910100d5910100d6910100d7910100d8910100d9910100da910100db910100dc910100dd910100de910100df910100e0910100e1910100e2910100e3910100e4910100e5910100e6910100e7910100e8910100e9910100ea910100eb910100ec910100ed910100ee910100ef910100f0910100f1910100f2910100f3910100f4910100f5910100f6910100f7910100f8910100f9910100fa910100fb910100fc910100fd910100fe910100ff910100009201000192010002920100039201000492010005920100069201000792010008920100099201000a9201000b9201000c9201000d9201000e9201000f920100109201001192010012920100139201001492010015920100169201001792010018920100199201001a9201001b9201001c9201001d9201001e9201001f920100209201002192010022920100239201002492010025920100269201002792010028920100299201002a9201002b9201002c9201002d9201002e9201002f920100309201003192010032920100339201003492010035920100369201003792010038920100399201003a9201003b9201003c9201003d9201003e9201003f920100409201004192010042920100439201004492010045920100469201004792010048920100499201004a9201004b9201004c9201004d9201004e9201004f920100509201005192010052920100539201005492010055920100569201005792010058920100599201005a9201005b9201005c9201005d9201005e9201005f920100609201006192010062920100639201006492010065920100669201006792010068920100699201006a9201006b9201006c9201006d9201006e9201006f920100709201007192010072920100739201007492010075920100769201007792010078920100799201007a9201007b9201007c9201007d9201007e9201007f920100809201008192010082920100839201008492010085920100869201008792010088920100899201008a9201008b9201008c9201008d9201008e9201008f920100909201009192010092920100939201009492010095920100969201009792010098920100999201009a9201009b9201009c9201009d9201009e9201009f920100a0920100a1920100a2920100a3920100a4920100a5920100a6920100a7920100a8920100a9920100aa920100ab920100ac920100ad920100ae920100af920100b0920100b1920100b2920100b3920100b4920100b5920100b6920100b7920100b8920100b9920100ba920100bb920100bc920100bd920100be920100bf920100c0920100c1920100c2920100c3920100c4920100c5920100c6920100c7920100c8920100c9920100ca920100cb920100cc920100cd920100ce920100cf920100d0920100d1920100d2920100d3920100d4920100d5920100d6920100d7920100d8920100d9920100da920100db920100dc920100dd920100de920100df920100e0920100e1920100e2920100e3920100e4920100e5920100e6920100e7920100e8920100e9920100ea920100eb920100ec920100ed920100ee920100ef920100f0920100f1920100f2920100f3920100f4920100f5920100f6920100f7920100f8920100f9920100fa920100fb920100fc920100fd920100fe920100ff920100009301000193010002930100039301000493010005930100069301000793010008930100099301000a9301000b9301000c9301000d9301000e9301000f930100109301001193010012930100139301001493010015930100169301001793010018930100199301001a9301001b9301001c9301001d9301001e9301001f930100209301002193010022930100239301002493010025930100269301002793010028930100299301002a9301002b9301002c9301002d9301002e9301002f930100309301003193010032930100339301003493010035930100369301003793010038930100399301003a9301003b9301003c9301003d9301003e9301003f930100409301004193010042930100439301004493010045930100469301004793010048930100499301004a9301004b9301004c9301004d9301004e9301004f930100509301005193010052930100539301005493010055930100569301005793010058930100599301005a9301005b9301005c9301005d9301005e9301005f930100609301006193010062930100639301006493010065930100669301006793010068930100699301006a9301006b9301006c9301006d9301006e9301006f930100709301007193010072930100739301007493010075930100769301007793010078930100799301007a9301007b9301007c9301007d9301007e9301007f930100809301008193010082930100839301008493010085930100869301008793010088930100899301008a9301008b9301008c9301008d9301008e9301008f930100909301009193010092930100939301009493010095930100969301009793010098930100999301009a9301009b9301009c9301009d9301009e9301009f930100a0930100a1930100a2930100a3930100a4930100a5930100a6930100a7930100a8930100a9930100aa930100ab930100ac930100ad930100ae930100af930100b0930100b1930100b2930100b3930100b4930100b5930100b6930100b7930100b8930100b9930100ba930100bb930100bc930100bd930100be930100bf930100c0930100c1930100c2930100c3930100c4930100c5930100c6930100c7930100c8930100c9930100ca930100cb930100cc930100cd930100ce930100cf930100d0930100d1930100d2930100d3930100d4930100d5930100d6930100d7930100d8930100d9930100da930100db930100dc930100dd930100de930100df930100e0930100e1930100e2930100e3930100e4930100e5930100e6930100e7930100e8930100e9930100ea930100eb930100ec930100ed930100ee930100ef930100f0930100f1930100f2930100f3930100f4930100f5930100f6930100f7930100f8930100f9930100fa930100fb930100fc930100fd930100fe930100ff930100009401000194010002940100039401000494010005940100069401000794010008940100099401000a9401000b9401000c9401000d9401000e9401000f940100109401001194010012940100139401001494010015940100169401001794010018940100199401001a9401001b9401001c9401001d9401001e9401001f940100209401002194010022940100239401002494010025940100269401002794010028940100299401002a9401002b9401002c9401002d9401002e9401002f940100309401003194010032940100339401003494010035940100369401003794010038940100399401003a9401003b9401003c9401003d9401003e9401003f940100409401004194010042940100439401004494010045940100469401004794010048940100499401004a9401004b9401004c9401004d9401004e9401004f940100509401005194010052940100539401005494010055940100569401005794010058940100599401005a9401005b9401005c9401005d9401005e9401005f940100609401006194010062940100639401006494010065940100669401006794010068940100699401006a9401006b9401006c9401006d9401006e9401006f940100709401007194010072940100739401007494010075940100769401007794010078940100799401007a9401007b9401007c9401007d9401007e9401007f940100809401008194010082940100839401008494010085940100869401008794010088940100899401008a9401008b9401008c9401008d9401008e9401008f940100909401009194010092940100939401009494010095940100969401009794010098940100999401009a9401009b9401009c9401009d9401009e9401009f940100a0940100a1940100a2940100a3940100a4940100a5940100a6940100a7940100a8940100a9940100aa940100ab940100ac940100ad940100ae940100af940100b0940100b1940100b2940100b3940100b4940100b5940100b6940100b7940100b8940100b9940100ba940100bb940100bc940100bd940100be940100bf940100c0940100c1940100c2940100c3940100c4940100c5940100c6940100c7940100c8940100c9940100ca940100cb940100cc940100cd940100ce940100cf940100d0940100d1940100d2940100d3940100d4940100d5940100d6940100d7940100d8940100d9940100da940100db940100dc940100dd940100de940100df940100e0940100e1940100e2940100e3940100e4940100e5940100e6940100e7940100e8940100e9940100ea940100eb940100ec940100ed940100ee940100ef940100f0940100f1940100f2940100f3940100f4940100f5940100f6940100f7940100f8940100f9940100fa940100fb940100fc940100fd940100fe940100ff940100009501000195010002950100039501000495010005950100069501000795010008950100099501000a9501000b9501000c9501000d9501000e9501000f950100109501001195010012950100139501001495010015950100169501001795010018950100199501001a9501001b9501001c9501001d9501001e9501001f950100209501002195010022950100239501002495010025950100269501002795010028950100299501002a9501002b9501002c9501002d9501002e9501002f950100309501003195010032950100339501003495010035950100369501003795010038950100399501003a9501003b9501003c9501003d9501003e9501003f950100409501004195010042950100439501004495010045950100469501004795010048950100499501004a9501004b9501004c9501004d9501004e9501004f950100509501005195010052950100539501005495010055950100569501005795010058950100599501005a9501005b9501005c9501005d9501005e9501005f950100609501006195010062950100639501006495010065950100669501006795010068950100699501006a9501006b9501006c9501006d9501006e9501006f950100709501007195010072950100739501007495010075950100769501007795010078950100799501007a9501007b9501007c9501007d9501007e9501007f950100809501008195010082950100839501008495010085950100869501008795010088950100899501008a9501008b9501008c9501008d9501008e9501008f950100909501009195010092950100939501009495010095950100969501009795010098950100999501009a9501009b9501009c9501009d9501009e9501009f950100a0950100a1950100a2950100a3950100a4950100a5950100a6950100a7950100a8950100a9950100aa950100ab950100ac950100ad950100ae950100af950100b0950100b1950100b2950100b3950100b4950100b5950100b6950100b7950100b8950100b9950100ba950100bb950100bc950100bd950100be950100bf950100c0950100c1950100c2950100c3950100c4950100c5950100c6950100c7950100c8950100c9950100ca950100cb950100cc950100cd950100ce950100cf950100d0950100d1950100d2950100d3950100d4950100d5950100d6950100d7950100d8950100d9950100da950100db950100dc950100dd950100de950100df950100e0950100e1950100e2950100e3950100e4950100e5950100e6950100e7950100e8950100e9950100ea950100eb950100ec950100ed950100ee950100ef950100f0950100f1950100f2950100f3950100f4950100f5950100f6950100f7950100f8950100f9950100fa950100fb950100fc950100fd950100fe950100ff950100009601000196010002960100039601000496010005960100069601000796010008960100099601000a9601000b9601000c9601000d9601000e9601000f960100109601001196010012960100139601001496010015960100169601001796010018960100199601001a9601001b9601001c9601001d9601001e9601001f960100209601002196010022960100239601002496010025960100269601002796010028960100299601002a9601002b9601002c9601002d9601002e9601002f960100309601003196010032960100339601003496010035960100369601003796010038960100399601003a9601003b9601003c9601003d9601003e9601003f960100409601004196010042960100439601004496010045960100469601004796010048960100499601004a9601004b9601004c9601004d9601004e9601004f960100509601005196010052960100539601005496010055960100569601005796010058960100599601005a9601005b9601005c9601005d9601005e9601005f960100609601006196010062960100639601006496010065960100669601006796010068960100699601006a9601006b9601006c9601006d9601006e9601006f960100709601007196010072960100739601007496010075960100769601007796010078960100799601007a9601007b9601007c9601007d9601007e9601007f960100809601008196010082960100839601008496010085960100869601008796010088960100899601008a9601008b9601008c9601008d9601008e9601008f960100909601009196010092960100939601009496010095960100969601009796010098960100999601009a9601009b9601009c9601009d9601009e9601009f960100a0960100a1960100a2960100a3960100a4960100a5960100a6960100a7960100a8960100a9960100aa960100ab960100ac960100ad960100ae960100af960100b0960100b1960100b2960100b3960100b4960100b5960100b6960100b7960100b8960100b9960100ba960100bb960100bc960100bd960100be960100bf960100c0960100c1960100c2960100c3960100c4960100c5960100c6960100c7960100c8960100c9960100ca960100cb960100cc960100cd960100ce960100cf960100d0960100d1960100d2960100d3960100d4960100d5960100d6960100d7960100d8960100d9960100da960100db960100dc960100dd960100de960100df960100e0960100e1960100e2960100e3960100e4960100e5960100e6960100e7960100e8960100e9960100ea960100eb960100ec960100ed960100ee960100ef960100f0960100f1960100f2960100f3960100f4960100f5960100f6960100f7960100f8960100f9960100fa960100fb960100fc960100fd960100fe960100ff960100009701000197010002970100039701000497010005970100069701000797010008970100099701000a9701000b9701000c9701000d9701000e9701000f970100109701001197010012970100139701001497010015970100169701001797010018970100199701001a9701001b9701001c9701001d9701001e9701001f970100209701002197010022970100239701002497010025970100269701002797010028970100299701002a9701002b9701002c9701002d9701002e9701002f970100309701003197010032970100339701003497010035970100369701003797010038970100399701003a9701003b9701003c9701003d9701003e9701003f970100409701004197010042970100439701004497010045970100469701004797010048970100499701004a9701004b9701004c9701004d9701004e9701004f970100509701005197010052970100539701005497010055970100569701005797010058970100599701005a9701005b9701005c9701005d9701005e9701005f970100609701006197010062970100639701006497010065970100669701006797010068970100699701006a9701006b9701006c9701006d9701006e9701006f970100709701007197010072970100739701007497010075970100769701007797010078970100799701007a9701007b9701007c9701007d9701007e9701007f970100809701008197010082970100839701008497010085970100869701008797010088970100899701008a9701008b9701008c9701008d9701008e9701008f970100909701009197010092970100939701009497010095970100969701009797010098970100999701009a9701009b9701009c9701009d9701009e9701009f970100a0970100a1970100a2970100a3970100a4970100a5970100a6970100a7970100a8970100a9970100aa970100ab970100ac970100ad970100ae970100af970100b0970100b1970100b2970100b3970100b4970100b5970100b6970100b7970100b8970100b9970100ba970100bb970100bc970100bd970100be970100bf970100c0970100c1970100c2970100c3970100c4970100c5970100c6970100c7970100c8970100c9970100ca970100cb970100cc970100cd970100ce970100cf970100d0970100d1970100d2970100d3970100d4970100d5970100d6970100d7970100d8970100d9970100da970100db970100dc970100dd970100de970100df970100e0970100e1970100e2970100e3970100e4970100e5970100e6970100e7970100e8970100e9970100ea970100eb970100ec970100ed970100ee970100ef970100f0970100f1970100f2970100f3970100f4970100f5970100f6970100f7970100f8970100f9970100fa970100fb970100fc970100fd970100fe970100ff970100009801000198010002980100039801000498010005980100069801000798010008980100099801000a9801000b9801000c9801000d9801000e9801000f980100109801001198010012980100139801001498010015980100169801001798010018980100199801001a9801001b9801001c9801001d9801001e9801001f980100209801002198010022980100239801002498010025980100269801002798010028980100299801002a9801002b9801002c9801002d9801002e9801002f980100309801003198010032980100339801003498010035980100369801003798010038980100399801003a9801003b9801003c9801003d9801003e9801003f980100409801004198010042980100439801004498010045980100469801004798010048980100499801004a9801004b9801004c9801004d9801004e9801004f980100509801005198010052980100539801005498010055980100569801005798010058980100599801005a9801005b9801005c9801005d9801005e9801005f980100609801006198010062980100639801006498010065980100669801006798010068980100699801006a9801006b9801006c9801006d9801006e9801006f980100709801007198010072980100739801007498010075980100769801007798010078980100799801007a9801007b9801007c9801007d9801007e9801007f980100809801008198010082980100839801008498010085980100869801008798010088980100899801008a9801008b9801008c9801008d9801008e9801008f980100909801009198010092980100939801009498010095980100969801009798010098980100999801009a9801009b9801009c9801009d9801009e9801009f980100a0980100a1980100a2980100a3980100a4980100a5980100a6980100a7980100a8980100a9980100aa980100ab980100ac980100ad980100ae980100af980100b0980100b1980100b2980100b3980100b4980100b5980100b6980100b7980100b8980100b9980100ba980100bb980100bc980100bd980100be980100bf980100c0980100c1980100c2980100c3980100c4980100c5980100c6980100c7980100c8980100c9980100ca980100cb980100cc980100cd980100ce980100cf980100d0980100d1980100d2980100d3980100d4980100d5980100d6980100d7980100d8980100d9980100da980100db980100dc980100dd980100de980100df980100e0980100e1980100e2980100e3980100e4980100e5980100e6980100e7980100e8980100e9980100ea980100eb980100ec980100ed980100ee980100ef980100f0980100f1980100f2980100f3980100f4980100f5980100f6980100f7980100f8980100f9980100fa980100fb980100fc980100fd980100fe980100ff980100009901000199010002990100039901000499010005990100069901000799010008990100099901000a9901000b9901000c9901000d9901000e9901000f990100109901001199010012990100139901001499010015990100169901001799010018990100199901001a9901001b9901001c9901001d9901001e9901001f990100209901002199010022990100239901002499010025990100269901002799010028990100299901002a9901002b9901002c9901002d9901002e9901002f990100309901003199010032990100339901003499010035990100369901003799010038990100399901003a9901003b9901003c9901003d9901003e9901003f990100409901004199010042990100439901004499010045990100469901004799010048990100499901004a9901004b9901004c9901004d9901004e9901004f990100509901005199010052990100539901005499010055990100569901005799010058990100599901005a9901005b9901005c9901005d9901005e9901005f990100609901006199010062990100639901006499010065990100669901006799010068990100699901006a9901006b9901006c9901006d9901006e9901006f990100709901007199010072990100739901007499010075990100769901007799010078990100799901007a9901007b9901007c9901007d9901007e9901007f990100809901008199010082990100839901008499010085990100869901008799010088990100899901008a9901008b9901008c9901008d9901008e9901008f990100909901009199010092990100939901009499010095990100969901009799010098990100999901009a9901009b9901009c9901009d9901009e9901009f990100a0990100a1990100a2990100a3990100a4990100a5990100a6990100a7990100a8990100a9990100aa990100ab990100ac990100ad990100ae990100af990100b0990100b1990100b2990100b3990100b4990100b5990100b6990100b7990100b8990100b9990100ba990100bb990100bc990100bd990100be990100bf990100c0990100c1990100c2990100c3990100c4990100c5990100c6990100c7990100c8990100c9990100ca990100cb990100cc990100cd990100ce990100cf990100d0990100d1990100d2990100d3990100d4990100d5990100d6990100d7990100d8990100d9990100da990100db990100dc990100dd990100de990100df990100e0990100e1990100e2990100e3990100e4990100e5990100e6990100e7990100e8990100e9990100ea990100eb990100ec990100ed990100ee990100ef990100f0990100f1990100f2990100f3990100f4990100f5990100f6990100f7990100f8990100f9990100fa990100fb990100fc990100fd990100fe990100ff990100009a0100019a0100029a0100039a0100049a0100059a0100069a0100079a0100089a0100099a01000a9a01000b9a01000c9a01000d9a01000e9a01000f9a0100109a0100119a0100129a0100139a0100149a0100159a0100169a0100179a0100189a0100199a01001a9a01001b9a01001c9a01001d9a01001e9a01001f9a0100209a0100219a0100229a0100239a0100249a0100259a0100269a0100279a0100289a0100299a01002a9a01002b9a01002c9a01002d9a01002e9a01002f9a0100309a0100319a0100329a0100339a0100349a0100359a0100369a0100379a0100389a0100399a01003a9a01003b9a01003c9a01003d9a01003e9a01003f9a0100409a0100419a0100429a0100439a0100449a0100459a0100469a0100479a0100489a0100499a01004a9a01004b9a01004c9a01004d9a01004e9a01004f9a0100509a0100519a0100529a0100539a0100549a0100559a0100569a0100579a0100589a0100599a01005a9a01005b9a01005c9a01005d9a01005e9a01005f9a0100609a0100619a0100629a0100639a0100649a0100659a0100669a0100679a0100689a0100699a01006a9a01006b9a01006c9a01006d9a01006e9a01006f9a0100709a0100719a0100729a0100739a0100749a0100759a0100769a0100779a0100789a0100799a01007a9a01007b9a01007c9a01007d9a01007e9a01007f9a0100809a0100819a0100829a0100839a0100849a0100859a0100869a0100879a0100889a0100899a01008a9a01008b9a01008c9a01008d9a01008e9a01008f9a0100909a0100919a0100929a0100939a0100949a0100959a0100969a0100979a0100989a0100999a01009a9a01009b9a01009c9a01009d9a01009e9a01009f9a0100a09a0100a19a0100a29a0100a39a0100a49a0100a59a0100a69a0100a79a0100a89a0100a99a0100aa9a0100ab9a0100ac9a0100ad9a0100ae9a0100af9a0100b09a0100b19a0100b29a0100b39a0100b49a0100b59a0100b69a0100b79a0100b89a0100b99a0100ba9a0100bb9a0100bc9a0100bd9a0100be9a0100bf9a0100c09a0100c19a0100c29a0100c39a0100c49a0100c59a0100c69a0100c79a0100c89a0100c99a0100ca9a0100cb9a0100cc9a0100cd9a0100ce9a0100cf9a0100d09a0100d19a0100d29a0100d39a0100d49a0100d59a0100d69a0100d79a0100d89a0100d99a0100da9a0100db9a0100dc9a0100dd9a0100de9a0100df9a0100e09a0100e19a0100e29a0100e39a0100e49a0100e59a0100e69a0100e79a0100e89a0100e99a0100ea9a0100eb9a0100ec9a0100ed9a0100ee9a0100ef9a0100f09a0100f19a0100f29a0100f39a0100f49a0100f59a0100f69a0100f79a0100f89a0100f99a0100fa9a0100fb9a0100fc9a0100fd9a0100fe9a0100ff9a0100009b0100019b0100029b0100039b0100049b0100059b0100069b0100079b0100089b0100099b01000a9b01000b9b01000c9b01000d9b01000e9b01000f9b0100109b0100119b0100129b0100139b0100149b0100159b0100169b0100179b0100189b0100199b01001a9b01001b9b01001c9b01001d9b01001e9b01001f9b0100209b0100219b0100229b0100239b0100249b0100259b0100269b0100279b0100289b0100299b01002a9b01002b9b01002c9b01002d9b01002e9b01002f9b0100309b0100319b0100329b0100339b0100349b0100359b0100369b0100379b0100389b0100399b01003a9b01003b9b01003c9b01003d9b01003e9b01003f9b0100409b0100419b0100429b0100439b0100449b0100459b0100469b0100479b0100489b0100499b01004a9b01004b9b01004c9b01004d9b01004e9b01004f9b0100509b0100519b0100529b0100539b0100549b0100559b0100569b0100579b0100589b0100599b01005a9b01005b9b01005c9b01005d9b01005e9b01005f9b0100609b0100619b0100629b0100639b0100649b0100659b0100669b0100679b0100689b0100699b01006a9b01006b9b01006c9b01006d9b01006e9b01006f9b0100709b0100719b0100729b0100739b0100749b0100759b0100769b0100779b0100789b0100799b01007a9b01007b9b01007c9b01007d9b01007e9b01007f9b0100809b0100819b0100829b0100839b0100849b0100859b0100869b0100879b0100889b0100899b01008a9b01008b9b01008c9b01008d9b01008e9b01008f9b0100909b0100919b0100929b0100939b0100949b0100959b0100969b0100979b0100989b0100999b01009a9b01009b9b01009c9b01009d9b01009e9b01009f9b0100a09b0100a19b0100a29b0100a39b0100a49b0100a59b0100a69b0100a79b0100a89b0100a99b0100aa9b0100ab9b0100ac9b0100ad9b0100ae9b0100af9b0100b09b0100b19b0100b29b0100b39b0100b49b0100b59b0100b69b0100b79b0100b89b0100b99b0100ba9b0100bb9b0100bc9b0100bd9b0100be9b0100bf9b0100c09b0100c19b0100c29b0100c39b0100c49b0100c59b0100c69b0100c79b0100c89b0100c99b0100ca9b0100cb9b0100cc9b0100cd9b0100ce9b0100cf9b0100d09b0100d19b0100d29b0100d39b0100d49b0100d59b0100d69b0100d79b0100d89b0100d99b0100da9b0100db9b0100dc9b0100dd9b0100de9b0100df9b0100e09b0100e19b0100e29b0100e39b0100e49b0100e59b0100e69b0100e79b0100e89b0100e99b0100ea9b0100eb9b0100ec9b0100ed9b0100ee9b0100ef9b0100f09b0100f19b0100f29b0100f39b0100f49b0100f59b0100f69b0100f79b0100f89b0100f99b0100fa9b0100fb9b0100fc9b0100fd9b0100fe9b0100ff9b0100009c0100019c0100029c0100039c0100049c0100059c0100069c0100079c0100089c0100099c01000a9c01000b9c01000c9c01000d9c01000e9c01000f9c0100109c0100119c0100129c0100139c0100149c0100159c0100169c0100179c0100189c0100199c01001a9c01001b9c01001c9c01001d9c01001e9c01001f9c0100209c0100219c0100229c0100239c0100249c0100259c0100269c0100279c0100289c0100299c01002a9c01002b9c01002c9c01002d9c01002e9c01002f9c0100309c0100319c0100329c0100339c0100349c0100359c0100369c0100379c0100389c0100399c01003a9c01003b9c01003c9c01003d9c01003e9c01003f9c0100409c0100419c0100429c0100439c0100449c0100459c0100469c0100479c0100489c0100499c01004a9c01004b9c01004c9c01004d9c01004e9c01004f9c0100509c0100519c0100529c0100539c0100549c0100559c0100569c0100579c0100589c0100599c01005a9c01005b9c01005c9c01005d9c01005e9c01005f9c0100609c0100619c0100629c0100639c0100649c0100659c0100669c0100679c0100689c0100699c01006a9c01006b9c01006c9c01006d9c01006e9c01006f9c0100709c0100719c0100729c0100739c0100749c0100759c0100769c0100779c0100789c0100799c01007a9c01007b9c01007c9c01007d9c01007e9c01007f9c0100809c0100819c0100829c0100839c0100849c0100859c0100869c0100879c0100889c0100899c01008a9c01008b9c01008c9c01008d9c01008e9c01008f9c0100909c0100919c0100929c0100939c0100949c0100959c0100969c0100979c0100989c0100999c01009a9c01009b9c01009c9c01009d9c01009e9c01009f9c0100a09c0100a19c0100a29c0100a39c0100a49c0100a59c0100a69c0100a79c0100a89c0100a99c0100aa9c0100ab9c0100ac9c0100ad9c0100ae9c0100af9c0100b09c0100b19c0100b29c0100b39c0100b49c0100b59c0100b69c0100b79c0100b89c0100b99c0100ba9c0100bb9c0100bc9c0100bd9c0100be9c0100bf9c0100c09c0100c19c0100c29c0100c39c0100c49c0100c59c0100c69c0100c79c0100c89c0100c99c0100ca9c0100cb9c0100cc9c0100cd9c0100ce9c0100cf9c0100d09c0100d19c0100d29c0100d39c0100d49c0100d59c0100d69c0100d79c0100d89c0100d99c0100da9c0100db9c0100dc9c0100dd9c0100de9c0100df9c0100e09c0100e19c0100e29c0100e39c0100e49c0100e59c0100e69c0100e79c0100e89c0100e99c0100ea9c0100eb9c0100ec9c0100ed9c0100ee9c0100ef9c0100f09c0100f19c0100f29c0100f39c0100f49c0100f59c0100f69c0100f79c0100f89c0100f99c0100fa9c0100fb9c0100fc9c0100fd9c0100fe9c0100ff9c0100009d0100019d0100029d0100039d0100049d0100059d0100069d0100079d0100089d0100099d01000a9d01000b9d01000c9d01000d9d01000e9d01000f9d0100109d0100119d0100129d0100139d0100149d0100159d0100169d0100179d0100189d0100199d01001a9d01001b9d01001c9d01001d9d01001e9d01001f9d0100209d0100219d0100229d0100239d0100249d0100259d0100269d0100279d0100289d0100299d01002a9d01002b9d01002c9d01002d9d01002e9d01002f9d0100309d0100319d0100329d0100339d0100349d0100359d0100369d0100379d0100389d0100399d01003a9d01003b9d01003c9d01003d9d01003e9d01003f9d0100409d0100419d0100429d0100439d0100449d0100459d0100469d0100479d0100489d0100499d01004a9d01004b9d01004c9d01004d9d01004e9d01004f9d0100509d0100519d0100529d0100539d0100549d0100559d0100569d0100579d0100589d0100599d01005a9d01005b9d01005c9d01005d9d01005e9d01005f9d0100609d0100619d0100629d0100639d0100649d0100659d0100669d0100679d0100689d0100699d01006a9d01006b9d01006c9d01006d9d01006e9d01006f9d0100709d0100719d0100729d0100739d0100749d0100759d0100769d0100779d0100789d0100799d01007a9d01007b9d01007c9d01007d9d01007e9d01007f9d0100809d0100819d0100829d0100839d0100849d0100859d0100869d0100879d0100889d0100899d01008a9d01008b9d01008c9d01008d9d01008e9d01008f9d0100909d0100919d0100929d0100939d0100949d0100959d0100969d0100979d0100989d0100999d01009a9d01009b9d01009c9d01009d9d01009e9d01009f9d0100a09d0100a19d0100a29d0100a39d0100a49d0100a59d0100a69d0100a79d0100a89d0100a99d0100aa9d0100ab9d0100ac9d0100ad9d0100ae9d0100af9d0100b09d0100b19d0100b29d0100b39d0100b49d0100b59d0100b69d0100b79d0100b89d0100b99d0100ba9d0100bb9d0100bc9d0100bd9d0100be9d0100bf9d0100c09d0100c19d0100c29d0100c39d0100c49d0100c59d0100c69d0100c79d0100c89d0100c99d0100ca9d0100cb9d0100cc9d0100cd9d0100ce9d0100cf9d0100d09d0100d19d0100d29d0100d39d0100d49d0100d59d0100d69d0100d79d0100d89d0100d99d0100da9d0100db9d0100dc9d0100dd9d0100de9d0100df9d0100e09d0100e19d0100e29d0100e39d0100e49d0100e59d0100e69d0100e79d0100e89d0100e99d0100ea9d0100eb9d0100ec9d0100ed9d0100ee9d0100ef9d0100f09d0100f19d0100f29d0100f39d0100f49d0100f59d0100f69d0100f79d0100f89d0100f99d0100fa9d0100fb9d0100fc9d0100fd9d0100fe9d0100ff9d0100009e0100019e0100029e0100039e0100049e0100059e0100069e0100079e0100089e0100099e01000a9e01000b9e01000c9e01000d9e01000e9e01000f9e0100109e0100119e0100129e0100139e0100149e0100159e0100169e0100179e0100189e0100199e01001a9e01001b9e01001c9e01001d9e01001e9e01001f9e0100209e0100219e0100229e0100239e0100249e0100259e0100269e0100279e0100289e0100299e01002a9e01002b9e01002c9e01002d9e01002e9e01002f9e0100309e0100319e0100329e0100339e0100349e0100359e0100369e0100379e0100389e0100399e01003a9e01003b9e01003c9e01003d9e01003e9e01003f9e0100409e0100419e0100429e0100439e0100449e0100459e0100469e0100479e0100489e0100499e01004a9e01004b9e01004c9e01004d9e01004e9e01004f9e0100509e0100519e0100529e0100539e0100549e0100559e0100569e0100579e0100589e0100599e01005a9e01005b9e01005c9e01005d9e01005e9e01005f9e0100609e0100619e0100629e0100639e0100649e0100659e0100669e0100679e0100689e0100699e01006a9e01006b9e01006c9e01006d9e01006e9e01006f9e0100709e0100719e0100729e0100739e0100749e0100759e0100769e0100779e0100789e0100799e01007a9e01007b9e01007c9e01007d9e01007e9e01007f9e0100809e0100819e0100829e0100839e0100849e0100859e0100869e0100879e0100889e0100899e01008a9e01008b9e01008c9e01008d9e01008e9e01008f9e0100909e0100919e0100929e0100939e0100949e0100959e0100969e0100979e0100989e0100999e01009a9e01009b9e01009c9e01009d9e01009e9e01009f9e0100a09e0100a19e0100a29e0100a39e0100a49e0100a59e0100a69e0100a79e0100a89e0100a99e0100aa9e0100ab9e0100ac9e0100ad9e0100ae9e0100af9e0100b09e0100b19e0100b29e0100b39e0100b49e0100b59e0100b69e0100b79e0100b89e0100b99e0100ba9e0100bb9e0100bc9e0100bd9e0100be9e0100bf9e0100c09e0100c19e0100c29e0100c39e0100c49e0100c59e0100c69e0100c79e0100c89e0100c99e0100ca9e0100cb9e0100cc9e0100cd9e0100ce9e0100cf9e0100d09e0100d19e0100d29e0100d39e0100d49e0100d59e0100d69e0100d79e0100d89e0100d99e0100da9e0100db9e0100dc9e0100dd9e0100de9e0100df9e0100e09e0100e19e0100e29e0100e39e0100e49e0100e59e0100e69e0100e79e0100e89e0100e99e0100ea9e0100eb9e0100ec9e0100ed9e0100ee9e0100ef9e0100f09e0100f19e0100f29e0100f39e0100f49e0100f59e0100f69e0100f79e0100f89e0100f99e0100fa9e0100fb9e0100fc9e0100fd9e0100fe9e0100ff9e0100009f0100019f0100029f0100039f0100049f0100059f0100069f0100079f0100089f0100099f01000a9f01000b9f01000c9f01000d9f01000e9f01000f9f0100109f0100119f0100129f0100139f0100149f0100159f0100169f0100179f0100189f0100199f01001a9f01001b9f01001c9f01001d9f01001e9f01001f9f0100209f0100219f0100229f0100239f0100249f0100259f0100269f0100279f0100289f0100299f01002a9f01002b9f01002c9f01002d9f01002e9f01002f9f0100309f0100319f0100329f0100339f0100349f0100359f0100369f0100379f0100389f0100399f01003a9f01003b9f01003c9f01003d9f01003e9f01003f9f0100409f0100419f0100429f0100439f0100449f0100459f0100469f0100479f0100489f0100499f01004a9f01004b9f01004c9f01004d9f01004e9f01004f9f0100509f0100519f0100529f0100539f0100549f0100559f0100569f0100579f0100589f0100599f01005a9f01005b9f01005c9f01005d9f01005e9f01005f9f0100609f0100619f0100629f0100639f0100649f0100659f0100669f0100679f0100689f0100699f01006a9f01006b9f01006c9f01006d9f01006e9f01006f9f0100709f0100719f0100729f0100739f0100749f0100759f0100769f0100779f0100789f0100799f01007a9f01007b9f01007c9f01007d9f01007e9f01007f9f0100809f0100819f0100829f0100839f0100849f0100859f0100869f0100879f0100889f0100899f01008a9f01008b9f01008c9f01008d9f01008e9f01008f9f0100909f0100919f0100929f0100939f0100949f0100959f0100969f0100979f0100989f0100999f01009a9f01009b9f01009c9f01009d9f01009e9f01009f9f0100a09f0100a19f0100a29f0100a39f0100a49f0100a59f0100a69f0100a79f0100a89f0100a99f0100aa9f0100ab9f0100ac9f0100ad9f0100ae9f0100af9f0100b09f0100b19f0100b29f0100b39f0100b49f0100b59f0100b69f0100b79f0100b89f0100b99f0100ba9f0100bb9f0100bc9f0100bd9f0100be9f0100bf9f0100c09f0100c19f0100c29f0100c39f0100c49f0100c59f0100c69f0100c79f0100c89f0100c99f0100ca9f0100cb9f0100cc9f0100cd9f0100ce9f0100cf9f0100d09f0100d19f0100d29f0100d39f0100d49f0100d59f0100d69f0100d79f0100d89f0100d99f0100da9f0100db9f0100dc9f0100dd9f0100de9f0100df9f0100e09f0100e19f0100e29f0100e39f0100e49f0100e59f0100e69f0100e79f0100e89f0100e99f0100ea9f0100eb9f0100ec9f0100ed9f0100ee9f0100ef9f0100f09f0100f19f0100f29f0100f39f0100f49f0100f59f0100f69f0100f79f0100f89f0100f99f0100fa9f0100fb9f0100fc9f0100fd9f0100fe9f0100ff9f010000a0010001a0010002a0010003a0010004a0010005a0010006a0010007a0010008a0010009a001000aa001000ba001000ca001000da001000ea001000fa0010010a0010011a0010012a0010013a0010014a0010015a0010016a0010017a0010018a0010019a001001aa001001ba001001ca001001da001001ea001001fa0010020a0010021a0010022a0010023a0010024a0010025a0010026a0010027a0010028a0010029a001002aa001002ba001002ca001002da001002ea001002fa0010030a0010031a0010032a0010033a0010034a0010035a0010036a0010037a0010038a0010039a001003aa001003ba001003ca001003da001003ea001003fa0010040a0010041a0010042a0010043a0010044a0010045a0010046a0010047a0010048a0010049a001004aa001004ba001004ca001004da001004ea001004fa0010050a0010051a0010052a0010053a0010054a0010055a0010056a0010057a0010058a0010059a001005aa001005ba001005ca001005da001005ea001005fa0010060a0010061a0010062a0010063a0010064a0010065a0010066a0010067a0010068a0010069a001006aa001006ba001006ca001006da001006ea001006fa0010070a0010071a0010072a0010073a0010074a0010075a0010076a0010077a0010078a0010079a001007aa001007ba001007ca001007da001007ea001007fa0010080a0010081a0010082a0010083a0010084a0010085a0010086a0010087a0010088a0010089a001008aa001008ba001008ca001008da001008ea001008fa0010090a0010091a0010092a0010093a0010094a0010095a0010096a0010097a0010098a0010099a001009aa001009ba001009ca001009da001009ea001009fa00100a0a00100a1a00100a2a00100a3a00100a4a00100a5a00100a6a00100a7a00100a8a00100a9a00100aaa00100aba00100aca00100ada00100aea00100afa00100b0a00100b1a00100b2a00100b3a00100b4a00100b5a00100b6a00100b7a00100b8a00100b9a00100baa00100bba00100bca00100bda00100bea00100bfa00100c0a00100c1a00100c2a00100c3a00100c4a00100c5a00100c6a00100c7a00100c8a00100c9a00100caa00100cba00100cca00100cda00100cea00100cfa00100d0a00100d1a00100d2a00100d3a00100d4a00100d5a00100d6a00100d7a00100d8a00100d9a00100daa00100dba00100dca00100dda00100dea00100dfa00100e0a00100e1a00100e2a00100e3a00100e4a00100e5a00100e6a00100e7a00100e8a00100e9a00100eaa00100eba00100eca00100eda00100eea00100efa00100f0a00100f1a00100f2a00100f3a00100f4a00100f5a00100f6a00100f7a00100f8a00100f9a00100faa00100fba00100fca00100fda00100fea00100ffa0010000a1010001a1010002a1010003a1010004a1010005a1010006a1010007a1010008a1010009a101000aa101000ba101000ca101000da101000ea101000fa1010010a1010011a1010012a1010013a1010014a1010015a1010016a1010017a1010018a1010019a101001aa101001ba101001ca101001da101001ea101001fa1010020a1010021a1010022a1010023a1010024a1010025a1010026a1010027a1010028a1010029a101002aa101002ba101002ca101002da101002ea101002fa1010030a1010031a1010032a1010033a1010034a1010035a1010036a1010037a1010038a1010039a101003aa101003ba101003ca101003da101003ea101003fa1010040a1010041a1010042a1010043a1010044a1010045a1010046a1010047a1010048a1010049a101004aa101004ba101004ca101004da101004ea101004fa1010050a1010051a1010052a1010053a1010054a1010055a1010056a1010057a1010058a1010059a101005aa101005ba101005ca101005da101005ea101005fa1010060a1010061a1010062a1010063a1010064a1010065a1010066a1010067a1010068a1010069a101006aa101006ba101006ca101006da101006ea101006fa1010070a1010071a1010072a1010073a1010074a1010075a1010076a1010077a1010078a1010079a101007aa101007ba101007ca101007da101007ea101007fa1010080a1010081a1010082a1010083a1010084a1010085a1010086a1010087a1010088a1010089a101008aa101008ba101008ca101008da101008ea101008fa1010090a1010091a1010092a1010093a1010094a1010095a1010096a1010097a1010098a1010099a101009aa101009ba101009ca101009da101009ea101009fa10100a0a10100a1a10100a2a10100a3a10100a4a10100a5a10100a6a10100a7a10100a8a10100a9a10100aaa10100aba10100aca10100ada10100aea10100afa10100b0a10100b1a10100b2a10100b3a10100b4a10100b5a10100b6a10100b7a10100b8a10100b9a10100baa10100bba10100bca10100bda10100bea10100bfa10100c0a10100c1a10100c2a10100c3a10100c4a10100c5a10100c6a10100c7a10100c8a10100c9a10100caa10100cba10100cca10100cda10100cea10100cfa10100d0a10100d1a10100d2a10100d3a10100d4a10100d5a10100d6a10100d7a10100d8a10100d9a10100daa10100dba10100dca10100dda10100dea10100dfa10100e0a10100e1a10100e2a10100e3a10100e4a10100e5a10100e6a10100e7a10100e8a10100e9a10100eaa10100eba10100eca10100eda10100eea10100efa10100f0a10100f1a10100f2a10100f3a10100f4a10100f5a10100f6a10100f7a10100f8a10100f9a10100faa10100fba10100fca10100fda10100fea10100ffa1010000a2010001a2010002a2010003a2010004a2010005a2010006a2010007a2010008a2010009a201000aa201000ba201000ca201000da201000ea201000fa2010010a2010011a2010012a2010013a2010014a2010015a2010016a2010017a2010018a2010019a201001aa201001ba201001ca201001da201001ea201001fa2010020a2010021a2010022a2010023a2010024a2010025a2010026a2010027a2010028a2010029a201002aa201002ba201002ca201002da201002ea201002fa2010030a2010031a2010032a2010033a2010034a2010035a2010036a2010037a2010038a2010039a201003aa201003ba201003ca201003da201003ea201003fa2010040a2010041a2010042a2010043a2010044a2010045a2010046a2010047a2010048a2010049a201004aa201004ba201004ca201004da201004ea201004fa2010050a2010051a2010052a2010053a2010054a2010055a2010056a2010057a2010058a2010059a201005aa201005ba201005ca201005da201005ea201005fa2010060a2010061a2010062a2010063a2010064a2010065a2010066a2010067a2010068a2010069a201006aa201006ba201006ca201006da201006ea201006fa2010070a2010071a2010072a2010073a2010074a2010075a2010076a2010077a2010078a2010079a201007aa201007ba201007ca201007da201007ea201007fa2010080a2010081a2010082a2010083a2010084a2010085a2010086a2010087a2010088a2010089a201008aa201008ba201008ca201008da201008ea201008fa2010090a2010091a2010092a2010093a2010094a2010095a2010096a2010097a2010098a2010099a201009aa201009ba201009ca201009da201009ea201009fa20100a0a20100a1a20100a2a20100a3a20100a4a20100a5a20100a6a20100a7a20100a8a20100a9a20100aaa20100aba20100aca20100ada20100aea20100afa20100b0a20100b1a20100b2a20100b3a20100b4a20100b5a20100b6a20100b7a20100b8a20100b9a20100baa20100bba20100bca20100bda20100bea20100bfa20100c0a20100c1a20100c2a20100c3a20100c4a20100c5a20100c6a20100c7a20100c8a20100c9a20100caa20100cba20100cca20100cda20100cea20100cfa20100d0a20100d1a20100d2a20100d3a20100d4a20100d5a20100d6a20100d7a20100d8a20100d9a20100daa20100dba20100dca20100dda20100dea20100dfa20100e0a20100e1a20100e2a20100e3a20100e4a20100e5a20100e6a20100e7a20100e8a20100e9a20100eaa20100eba20100eca20100eda20100eea20100efa20100f0a20100f1a20100f2a20100f3a20100f4a20100f5a20100f6a20100f7a20100f8a20100f9a20100faa20100fba20100fca20100fda20100fea20100ffa2010000a3010001a3010002a3010003a3010004a3010005a3010006a3010007a3010008a3010009a301000aa301000ba301000ca301000da301000ea301000fa3010010a3010011a3010012a3010013a3010014a3010015a3010016a3010017a3010018a3010019a301001aa301001ba301001ca301001da301001ea301001fa3010020a3010021a3010022a3010023a3010024a3010025a3010026a3010027a3010028a3010029a301002aa301002ba301002ca301002da301002ea301002fa3010030a3010031a3010032a3010033a3010034a3010035a3010036a3010037a3010038a3010039a301003aa301003ba301003ca301003da301003ea301003fa3010040a3010041a3010042a3010043a3010044a3010045a3010046a3010047a3010048a3010049a301004aa301004ba301004ca301004da301004ea301004fa3010050a3010051a3010052a3010053a3010054a3010055a3010056a3010057a3010058a3010059a301005aa301005ba301005ca301005da301005ea301005fa3010060a3010061a3010062a3010063a3010064a3010065a3010066a3010067a3010068a3010069a301006aa301006ba301006ca301006da301006ea301006fa3010070a3010071a3010072a3010073a3010074a3010075a3010076a3010077a3010078a3010079a301007aa301007ba301007ca301007da301007ea301007fa3010080a3010081a3010082a3010083a3010084a3010085a3010086a3010087a3010088a3010089a301008aa301008ba301008ca301008da301008ea301008fa3010090a3010091a3010092a3010093a3010094a3010095a3010096a3010097a3010098a3010099a301009aa301009ba301009ca301009da301009ea301009fa30100a0a30100a1a30100a2a30100a3a30100a4a30100a5a30100a6a30100a7a30100a8a30100a9a30100aaa30100aba30100aca30100ada30100aea30100afa30100b0a30100b1a30100b2a30100b3a30100b4a30100b5a30100b6a30100b7a30100b8a30100b9a30100baa30100bba30100bca30100bda30100bea30100bfa30100c0a30100c1a30100c2a30100c3a30100c4a30100c5a30100c6a30100c7a30100c8a30100c9a30100caa30100cba30100cca30100cda30100cea30100cfa30100d0a30100d1a30100d2a30100d3a30100d4a30100d5a30100d6a30100d7a30100d8a30100d9a30100daa30100dba30100dca30100dda30100dea30100dfa30100e0a30100e1a30100e2a30100e3a30100e4a30100e5a30100e6a30100e7a30100e8a30100e9a30100eaa30100eba30100eca30100eda30100eea30100efa30100f0a30100f1a30100f2a30100f3a30100f4a30100f5a30100f6a30100f7a30100f8a30100f9a30100faa30100fba30100fca30100fda30100fea30100ffa3010000a4010001a4010002a4010003a4010004a4010005a4010006a4010007a4010008a4010009a401000aa401000ba401000ca401000da401000ea401000fa4010010a4010011a4010012a4010013a4010014a4010015a4010016a4010017a4010018a4010019a401001aa401001ba401001ca401001da401001ea401001fa4010020a4010021a4010022a4010023a4010024a4010025a4010026a4010027a4010028a4010029a401002aa401002ba401002ca401002da401002ea401002fa4010030a4010031a4010032a4010033a4010034a4010035a4010036a4010037a4010038a4010039a401003aa401003ba401003ca401003da401003ea401003fa4010040a4010041a4010042a4010043a4010044a4010045a4010046a4010047a4010048a4010049a401004aa401004ba401004ca401004da401004ea401004fa4010050a4010051a4010052a4010053a4010054a4010055a4010056a4010057a4010058a4010059a401005aa401005ba401005ca401005da401005ea401005fa4010060a4010061a4010062a4010063a4010064a4010065a4010066a4010067a4010068a4010069a401006aa401006ba401006ca401006da401006ea401006fa4010070a4010071a4010072a4010073a4010074a4010075a4010076a4010077a4010078a4010079a401007aa401007ba401007ca401007da401007ea401007fa4010080a4010081a4010082a4010083a4010084a4010085a4010086a4010087a4010088a4010089a401008aa401008ba401008ca401008da401008ea401008fa4010090a4010091a4010092a4010093a4010094a4010095a4010096a4010097a4010098a4010099a401009aa401009ba401009ca401009da401009ea401009fa40100a0a40100a1a40100a2a40100a3a40100a4a40100a5a40100a6a40100a7a40100a8a40100a9a40100aaa40100aba40100aca40100ada40100aea40100afa40100b0a40100b1a40100b2a40100b3a40100b4a40100b5a40100b6a40100b7a40100b8a40100b9a40100baa40100bba40100bca40100bda40100bea40100bfa40100c0a40100c1a40100c2a40100c3a40100c4a40100c5a40100c6a40100c7a40100c8a40100c9a40100caa40100cba40100cca40100cda40100cea40100cfa40100d0a40100d1a40100d2a40100d3a40100d4a40100d5a40100d6a40100d7a40100d8a40100d9a40100daa40100dba40100dca40100dda40100dea40100dfa40100e0a40100e1a40100e2a40100e3a40100e4a40100e5a40100e6a40100e7a40100e8a40100e9a40100eaa40100eba40100eca40100eda40100eea40100efa40100f0a40100f1a40100f2a40100f3a40100f4a40100f5a40100f6a40100f7a40100f8a40100f9a40100faa40100fba40100fca40100fda40100fea40100ffa4010000a5010001a5010002a5010003a5010004a5010005a5010006a5010007a5010008a5010009a501000aa501000ba501000ca501000da501000ea501000fa5010010a5010011a5010012a5010013a5010014a5010015a5010016a5010017a5010018a5010019a501001aa501001ba501001ca501001da501001ea501001fa5010020a5010021a5010022a5010023a5010024a5010025a5010026a5010027a5010028a5010029a501002aa501002ba501002ca501002da501002ea501002fa5010030a5010031a5010032a5010033a5010034a5010035a5010036a5010037a5010038a5010039a501003aa501003ba501003ca501003da501003ea501003fa5010040a5010041a5010042a5010043a5010044a5010045a5010046a5010047a5010048a5010049a501004aa501004ba501004ca501004da501004ea501004fa5010050a5010051a5010052a5010053a5010054a5010055a5010056a5010057a5010058a5010059a501005aa501005ba501005ca501005da501005ea501005fa5010060a5010061a5010062a5010063a5010064a5010065a5010066a5010067a5010068a5010069a501006aa501006ba501006ca501006da501006ea501006fa5010070a5010071a5010072a5010073a5010074a5010075a5010076a5010077a5010078a5010079a501007aa501007ba501007ca501007da501007ea501007fa5010080a5010081a5010082a5010083a5010084a5010085a5010086a5010087a5010088a5010089a501008aa501008ba501008ca501008da501008ea501008fa5010090a5010091a5010092a5010093a5010094a5010095a5010096a5010097a5010098a5010099a501009aa501009ba501009ca501009da501009ea501009fa50100a0a50100a1a50100a2a50100a3a50100a4a50100a5a50100a6a50100a7a50100a8a50100a9a50100aaa50100aba50100aca50100ada50100aea50100afa50100b0a50100b1a50100b2a50100b3a50100b4a50100b5a50100b6a50100b7a50100b8a50100b9a50100baa50100bba50100bca50100bda50100bea50100bfa50100c0a50100c1a50100c2a50100c3a50100c4a50100c5a50100c6a50100c7a50100c8a50100c9a50100caa50100cba50100cca50100cda50100cea50100cfa50100d0a50100d1a50100d2a50100d3a50100d4a50100d5a50100d6a50100d7a50100d8a50100d9a50100daa50100dba50100dca50100dda50100dea50100dfa50100e0a50100e1a50100e2a50100e3a50100e4a50100e5a50100e6a50100e7a50100e8a50100e9a50100eaa50100eba50100eca50100eda50100eea50100efa50100f0a50100f1a50100f2a50100f3a50100f4a50100f5a50100f6a50100f7a50100f8a50100f9a50100faa50100fba50100fca50100fda50100fea50100ffa5010000a6010001a6010002a6010003a6010004a6010005a6010006a6010007a6010008a6010009a601000aa601000ba601000ca601000da601000ea601000fa6010010a6010011a6010012a6010013a6010014a6010015a6010016a6010017a6010018a6010019a601001aa601001ba601001ca601001da601001ea601001fa6010020a6010021a6010022a6010023a6010024a6010025a6010026a6010027a6010028a6010029a601002aa601002ba601002ca601002da601002ea601002fa6010030a6010031a6010032a6010033a6010034a6010035a6010036a6010037a6010038a6010039a601003aa601003ba601003ca601003da601003ea601003fa6010040a6010041a6010042a6010043a6010044a6010045a6010046a6010047a6010048a6010049a601004aa601004ba601004ca601004da601004ea601004fa6010050a6010051a6010052a6010053a6010054a6010055a6010056a6010057a6010058a6010059a601005aa601005ba601005ca601005da601005ea601005fa6010060a6010061a6010062a6010063a6010064a6010065a6010066a6010067a6010068a6010069a601006aa601006ba601006ca601006da601006ea601006fa6010070a6010071a6010072a6010073a6010074a6010075a6010076a6010077a6010078a6010079a601007aa601007ba601007ca601007da601007ea601007fa6010080a6010081a6010082a6010083a6010084a6010085a6010086a6010087a6010088a6010089a601008aa601008ba601008ca601008da601008ea601008fa6010090a6010091a6010092a6010093a6010094a6010095a6010096a6010097a6010098a6010099a601009aa601009ba601009ca601009da601009ea601009fa60100a0a60100a1a60100a2a60100a3a60100a4a60100a5a60100a6a60100a7a60100a8a60100a9a60100aaa60100aba60100aca60100ada60100aea60100afa60100b0a60100b1a60100b2a60100b3a60100b4a60100b5a60100b6a60100b7a60100b8a60100b9a60100baa60100bba60100bca60100bda60100bea60100bfa60100c0a60100c1a60100c2a60100c3a60100c4a60100c5a60100c6a60100c7a60100c8a60100c9a60100caa60100cba60100cca60100cda60100cea60100cfa60100d0a60100d1a60100d2a60100d3a60100d4a60100d5a60100d6a60100d7a60100d8a60100d9a60100daa60100dba60100dca60100dda60100dea60100dfa60100e0a60100e1a60100e2a60100e3a60100e4a60100e5a60100e6a60100e7a60100e8a60100e9a60100eaa60100eba60100eca60100eda60100eea60100efa60100f0a60100f1a60100f2a60100f3a60100f4a60100f5a60100f6a60100f7a60100f8a60100f9a60100faa60100fba60100fca60100fda60100fea60100ffa6010000a7010001a7010002a7010003a7010004a7010005a7010006a7010007a7010008a7010009a701000aa701000ba701000ca701000da701000ea701000fa7010010a7010011a7010012a7010013a7010014a7010015a7010016a7010017a7010018a7010019a701001aa701001ba701001ca701001da701001ea701001fa7010020a7010021a7010022a7010023a7010024a7010025a7010026a7010027a7010028a7010029a701002aa701002ba701002ca701002da701002ea701002fa7010030a7010031a7010032a7010033a7010034a7010035a7010036a7010037a7010038a7010039a701003aa701003ba701003ca701003da701003ea701003fa7010040a7010041a7010042a7010043a7010044a7010045a7010046a7010047a7010048a7010049a701004aa701004ba701004ca701004da701004ea701004fa7010050a7010051a7010052a7010053a7010054a7010055a7010056a7010057a7010058a7010059a701005aa701005ba701005ca701005da701005ea701005fa7010060a7010061a7010062a7010063a7010064a7010065a7010066a7010067a7010068a7010069a701006aa701006ba701006ca701006da701006ea701006fa7010070a7010071a7010072a7010073a7010074a7010075a7010076a7010077a7010078a7010079a701007aa701007ba701007ca701007da701007ea701007fa7010080a7010081a7010082a7010083a7010084a7010085a7010086a7010087a7010088a7010089a701008aa701008ba701008ca701008da701008ea701008fa7010090a7010091a7010092a7010093a7010094a7010095a7010096a7010097a7010098a7010099a701009aa701009ba701009ca701009da701009ea701009fa70100a0a70100a1a70100a2a70100a3a70100a4a70100a5a70100a6a70100a7a70100a8a70100a9a70100aaa70100aba70100aca70100ada70100aea70100afa70100b0a70100b1a70100b2a70100b3a70100b4a70100b5a70100b6a70100b7a70100b8a70100b9a70100baa70100bba70100bca70100bda70100bea70100bfa70100c0a70100c1a70100c2a70100c3a70100c4a70100c5a70100c6a70100c7a70100c8a70100c9a70100caa70100cba70100cca70100cda70100cea70100cfa70100d0a70100d1a70100d2a70100d3a70100d4a70100d5a70100d6a70100d7a70100d8a70100d9a70100daa70100dba70100dca70100dda70100dea70100dfa70100e0a70100e1a70100e2a70100e3a70100e4a70100e5a70100e6a70100e7a70100e8a70100e9a70100eaa70100eba70100eca70100eda70100eea70100efa70100f0a70100f1a70100f2a70100f3a70100f4a70100f5a70100f6a70100f7a70100f8a70100f9a70100faa70100fba70100fca70100fda70100fea70100ffa7010000a8010001a8010002a8010003a8010004a8010005a8010006a8010007a8010008a8010009a801000aa801000ba801000ca801000da801000ea801000fa8010010a8010011a8010012a8010013a8010014a8010015a8010016a8010017a8010018a8010019a801001aa801001ba801001ca801001da801001ea801001fa8010020a8010021a8010022a8010023a8010024a8010025a8010026a8010027a8010028a8010029a801002aa801002ba801002ca801002da801002ea801002fa8010030a8010031a8010032a8010033a8010034a8010035a8010036a8010037a8010038a8010039a801003aa801003ba801003ca801003da801003ea801003fa8010040a8010041a8010042a8010043a8010044a8010045a8010046a8010047a8010048a8010049a801004aa801004ba801004ca801004da801004ea801004fa8010050a8010051a8010052a8010053a8010054a8010055a8010056a8010057a8010058a8010059a801005aa801005ba801005ca801005da801005ea801005fa8010060a8010061a8010062a8010063a8010064a8010065a8010066a8010067a8010068a8010069a801006aa801006ba801006ca801006da801006ea801006fa8010070a8010071a8010072a8010073a8010074a8010075a8010076a8010077a8010078a8010079a801007aa801007ba801007ca801007da801007ea801007fa8010080a8010081a8010082a8010083a8010084a8010085a8010086a8010087a8010088a8010089a801008aa801008ba801008ca801008da801008ea801008fa8010090a8010091a8010092a8010093a8010094a8010095a8010096a8010097a8010098a8010099a801009aa801009ba801009ca801009da801009ea801009fa80100a0a80100a1a80100a2a80100a3a80100a4a80100a5a80100a6a80100a7a80100a8a80100a9a80100aaa80100aba80100aca80100ada80100aea80100afa80100b0a80100b1a80100b2a80100b3a80100b4a80100b5a80100b6a80100b7a80100b8a80100b9a80100baa80100bba80100bca80100bda80100bea80100bfa80100c0a80100c1a80100c2a80100c3a80100c4a80100c5a80100c6a80100c7a80100c8a80100c9a80100caa80100cba80100cca80100cda80100cea80100cfa80100d0a80100d1a80100d2a80100d3a80100d4a80100d5a80100d6a80100d7a80100d8a80100d9a80100daa80100dba80100dca80100dda80100dea80100dfa80100e0a80100e1a80100e2a80100e3a80100e4a80100e5a80100e6a80100e7a80100e8a80100e9a80100eaa80100eba80100eca80100eda80100eea80100efa80100f0a80100f1a80100f2a80100f3a80100f4a80100f5a80100f6a80100f7a80100f8a80100f9a80100faa80100fba80100fca80100fda80100fea80100ffa8010000a9010001a9010002a9010003a9010004a9010005a9010006a9010007a9010008a9010009a901000aa901000ba901000ca901000da901000ea901000fa9010010a9010011a9010012a9010013a9010014a9010015a9010016a9010017a9010018a9010019a901001aa901001ba901001ca901001da901001ea901001fa9010020a9010021a9010022a9010023a9010024a9010025a9010026a9010027a9010028a9010029a901002aa901002ba901002ca901002da901002ea901002fa9010030a9010031a9010032a9010033a9010034a9010035a9010036a9010037a9010038a9010039a901003aa901003ba901003ca901003da901003ea901003fa9010040a9010041a9010042a9010043a9010044a9010045a9010046a9010047a9010048a9010049a901004aa901004ba901004ca901004da901004ea901004fa9010050a9010051a9010052a9010053a9010054a9010055a9010056a9010057a9010058a9010059a901005aa901005ba901005ca901005da901005ea901005fa9010060a9010061a9010062a9010063a9010064a9010065a9010066a9010067a9010068a9010069a901006aa901006ba901006ca901006da901006ea901006fa9010070a9010071a9010072a9010073a9010074a9010075a9010076a9010077a9010078a9010079a901007aa901007ba901007ca901007da901007ea901007fa9010080a9010081a9010082a9010083a9010084a9010085a9010086a9010087a9010088a9010089a901008aa901008ba901008ca901008da901008ea901008fa9010090a9010091a9010092a9010093a9010094a9010095a9010096a9010097a9010098a9010099a901009aa901009ba901009ca901009da901009ea901009fa90100a0a90100a1a90100a2a90100a3a90100a4a90100a5a90100a6a90100a7a90100a8a90100a9a90100aaa90100aba90100aca90100ada90100aea90100afa90100b0a90100b1a90100b2a90100b3a90100b4a90100b5a90100b6a90100b7a90100b8a90100b9a90100baa90100bba90100bca90100bda90100bea90100bfa90100c0a90100c1a90100c2a90100c3a90100c4a90100c5a90100c6a90100c7a90100c8a90100c9a90100caa90100cba90100cca90100cda90100cea90100cfa90100d0a90100d1a90100d2a90100d3a90100d4a90100d5a90100d6a90100d7a90100d8a90100d9a90100daa90100dba90100dca90100dda90100dea90100dfa90100e0a90100e1a90100e2a90100e3a90100e4a90100e5a90100e6a90100e7a90100e8a90100e9a90100eaa90100eba90100eca90100eda90100eea90100efa90100f0a90100f1a90100f2a90100f3a90100f4a90100f5a90100f6a90100f7a90100f8a90100f9a90100faa90100fba90100fca90100fda90100fea90100ffa9010000aa010001aa010002aa010003aa010004aa010005aa010006aa010007aa010008aa010009aa01000aaa01000baa01000caa01000daa01000eaa01000faa010010aa010011aa010012aa010013aa010014aa010015aa010016aa010017aa010018aa010019aa01001aaa01001baa01001caa01001daa01001eaa01001faa010020aa010021aa010022aa010023aa010024aa010025aa010026aa010027aa010028aa010029aa01002aaa01002baa01002caa01002daa01002eaa01002faa010030aa010031aa010032aa010033aa010034aa010035aa010036aa010037aa010038aa010039aa01003aaa01003baa01003caa01003daa01003eaa01003faa010040aa010041aa010042aa010043aa010044aa010045aa010046aa010047aa010048aa010049aa01004aaa01004baa01004caa01004daa01004eaa01004faa010050aa010051aa010052aa010053aa010054aa010055aa010056aa010057aa010058aa010059aa01005aaa01005baa01005caa01005daa01005eaa01005faa010060aa010061aa010062aa010063aa010064aa010065aa010066aa010067aa010068aa010069aa01006aaa01006baa01006caa01006daa01006eaa01006faa010070aa010071aa010072aa010073aa010074aa010075aa010076aa010077aa010078aa010079aa01007aaa01007baa01007caa01007daa01007eaa01007faa010080aa010081aa010082aa010083aa010084aa010085aa010086aa010087aa010088aa010089aa01008aaa01008baa01008caa01008daa01008eaa01008faa010090aa010091aa010092aa010093aa010094aa010095aa010096aa010097aa010098aa010099aa01009aaa01009baa01009caa01009daa01009eaa01009faa0100a0aa0100a1aa0100a2aa0100a3aa0100a4aa0100a5aa0100a6aa0100a7aa0100a8aa0100a9aa0100aaaa0100abaa0100acaa0100adaa0100aeaa0100afaa0100b0aa0100b1aa0100b2aa0100b3aa0100b4aa0100b5aa0100b6aa0100b7aa0100b8aa0100b9aa0100baaa0100bbaa0100bcaa0100bdaa0100beaa0100bfaa0100c0aa0100c1aa0100c2aa0100c3aa0100c4aa0100c5aa0100c6aa0100c7aa0100c8aa0100c9aa0100caaa0100cbaa0100ccaa0100cdaa0100ceaa0100cfaa0100d0aa0100d1aa0100d2aa0100d3aa0100d4aa0100d5aa0100d6aa0100d7aa0100d8aa0100d9aa0100daaa0100dbaa0100dcaa0100ddaa0100deaa0100dfaa0100e0aa0100e1aa0100e2aa0100e3aa0100e4aa0100e5aa0100e6aa0100e7aa0100e8aa0100e9aa0100eaaa0100ebaa0100ecaa0100edaa0100eeaa0100efaa0100f0aa0100f1aa0100f2aa0100f3aa0100f4aa0100f5aa0100f6aa0100f7aa0100f8aa0100f9aa0100faaa0100fbaa0100fcaa0100fdaa0100feaa0100ffaa010000ab010001ab010002ab010003ab010004ab010005ab010006ab010007ab010008ab010009ab01000aab01000bab01000cab01000dab01000eab01000fab010010ab010011ab010012ab010013ab010014ab010015ab010016ab010017ab010018ab010019ab01001aab01001bab01001cab01001dab01001eab01001fab010020ab010021ab010022ab010023ab010024ab010025ab010026ab010027ab010028ab010029ab01002aab01002bab01002cab01002dab01002eab01002fab010030ab010031ab010032ab010033ab010034ab010035ab010036ab010037ab010038ab010039ab01003aab01003bab01003cab01003dab01003eab01003fab010040ab010041ab010042ab010043ab010044ab010045ab010046ab010047ab010048ab010049ab01004aab01004bab01004cab01004dab01004eab01004fab010050ab010051ab010052ab010053ab010054ab010055ab010056ab010057ab010058ab010059ab01005aab01005bab01005cab01005dab01005eab01005fab010060ab010061ab010062ab010063ab010064ab010065ab010066ab010067ab010068ab010069ab01006aab01006bab01006cab01006dab01006eab01006fab010070ab010071ab010072ab010073ab010074ab010075ab010076ab010077ab010078ab010079ab01007aab01007bab01007cab01007dab01007eab01007fab010080ab010081ab010082ab010083ab010084ab010085ab010086ab010087ab010088ab010089ab01008aab01008bab01008cab01008dab01008eab01008fab010090ab010091ab010092ab010093ab010094ab010095ab010096ab010097ab010098ab010099ab01009aab01009bab01009cab01009dab01009eab01009fab0100a0ab0100a1ab0100a2ab0100a3ab0100a4ab0100a5ab0100a6ab0100a7ab0100a8ab0100a9ab0100aaab0100abab0100acab0100adab0100aeab0100afab0100b0ab0100b1ab0100b2ab0100b3ab0100b4ab0100b5ab0100b6ab0100b7ab0100b8ab0100b9ab0100baab0100bbab0100bcab0100bdab0100beab0100bfab0100c0ab0100c1ab0100c2ab0100c3ab0100c4ab0100c5ab0100c6ab0100c7ab0100c8ab0100c9ab0100caab0100cbab0100ccab0100cdab0100ceab0100cfab0100d0ab0100d1ab0100d2ab0100d3ab0100d4ab0100d5ab0100d6ab0100d7ab0100d8ab0100d9ab0100daab0100dbab0100dcab0100ddab0100deab0100dfab0100e0ab0100e1ab0100e2ab0100e3ab0100e4ab0100e5ab0100e6ab0100e7ab0100e8ab0100e9ab0100eaab0100ebab0100ecab0100edab0100eeab0100efab0100f0ab0100f1ab0100f2ab0100f3ab0100f4ab0100f5ab0100f6ab0100f7ab0100f8ab0100f9ab0100faab0100fbab0100fcab0100fdab0100feab0100ffab010000ac010001ac010002ac010003ac010004ac010005ac010006ac010007ac010008ac010009ac01000aac01000bac01000cac01000dac01000eac01000fac010010ac010011ac010012ac010013ac010014ac010015ac010016ac010017ac010018ac010019ac01001aac01001bac01001cac01001dac01001eac01001fac010020ac010021ac010022ac010023ac010024ac010025ac010026ac010027ac010028ac010029ac01002aac01002bac01002cac01002dac01002eac01002fac010030ac010031ac010032ac010033ac010034ac010035ac010036ac010037ac010038ac010039ac01003aac01003bac01003cac01003dac01003eac01003fac010040ac010041ac010042ac010043ac010044ac010045ac010046ac010047ac010048ac010049ac01004aac01004bac01004cac01004dac01004eac01004fac010050ac010051ac010052ac010053ac010054ac010055ac010056ac010057ac010058ac010059ac01005aac01005bac01005cac01005dac01005eac01005fac010060ac010061ac010062ac010063ac010064ac010065ac010066ac010067ac010068ac010069ac01006aac01006bac01006cac01006dac01006eac01006fac010070ac010071ac010072ac010073ac010074ac010075ac010076ac010077ac010078ac010079ac01007aac01007bac01007cac01007dac01007eac01007fac010080ac010081ac010082ac010083ac010084ac010085ac010086ac010087ac010088ac010089ac01008aac01008bac01008cac01008dac01008eac01008fac010090ac010091ac010092ac010093ac010094ac010095ac010096ac010097ac010098ac010099ac01009aac01009bac01009cac01009dac01009eac01009fac0100a0ac0100a1ac0100a2ac0100a3ac0100a4ac0100a5ac0100a6ac0100a7ac0100a8ac0100a9ac0100aaac0100abac0100acac0100adac0100aeac0100afac0100b0ac0100b1ac0100b2ac0100b3ac0100b4ac0100b5ac0100b6ac0100b7ac0100b8ac0100b9ac0100baac0100bbac0100bcac0100bdac0100beac0100bfac0100c0ac0100c1ac0100c2ac0100c3ac0100c4ac0100c5ac0100c6ac0100c7ac0100c8ac0100c9ac0100caac0100cbac0100ccac0100cdac0100ceac0100cfac0100d0ac0100d1ac0100d2ac0100d3ac0100d4ac0100d5ac0100d6ac0100d7ac0100d8ac0100d9ac0100daac0100dbac0100dcac0100ddac0100deac0100dfac0100e0ac0100e1ac0100e2ac0100e3ac0100e4ac0100e5ac0100e6ac0100e7ac0100e8ac0100e9ac0100eaac0100ebac0100ecac0100edac0100eeac0100efac0100f0ac0100f1ac0100f2ac0100f3ac0100f4ac0100f5ac0100f6ac0100f7ac0100f8ac0100f9ac0100faac0100fbac0100fcac0100fdac0100feac0100ffac010000ad010001ad010002ad010003ad010004ad010005ad010006ad010007ad010008ad010009ad01000aad01000bad01000cad01000dad01000ead01000fad010010ad010011ad010012ad010013ad010014ad010015ad010016ad010017ad010018ad010019ad01001aad01001bad01001cad01001dad01001ead01001fad010020ad010021ad010022ad010023ad010024ad010025ad010026ad010027ad010028ad010029ad01002aad01002bad01002cad01002dad01002ead01002fad010030ad010031ad010032ad010033ad010034ad010035ad010036ad010037ad010038ad010039ad01003aad01003bad01003cad01003dad01003ead01003fad010040ad010041ad010042ad010043ad010044ad010045ad010046ad010047ad010048ad010049ad01004aad01004bad01004cad01004dad01004ead01004fad010050ad010051ad010052ad010053ad010054ad010055ad010056ad010057ad010058ad010059ad01005aad01005bad01005cad01005dad01005ead01005fad010060ad010061ad010062ad010063ad010064ad010065ad010066ad010067ad010068ad010069ad01006aad01006bad01006cad01006dad01006ead01006fad010070ad010071ad010072ad010073ad010074ad010075ad010076ad010077ad010078ad010079ad01007aad01007bad01007cad01007dad01007ead01007fad010080ad010081ad010082ad010083ad010084ad010085ad010086ad010087ad010088ad010089ad01008aad01008bad01008cad01008dad01008ead01008fad010090ad010091ad010092ad010093ad010094ad010095ad010096ad010097ad010098ad010099ad01009aad01009bad01009cad01009dad01009ead01009fad0100a0ad0100a1ad0100a2ad0100a3ad0100a4ad0100a5ad0100a6ad0100a7ad0100a8ad0100a9ad0100aaad0100abad0100acad0100adad0100aead0100afad0100b0ad0100b1ad0100b2ad0100b3ad0100b4ad0100b5ad0100b6ad0100b7ad0100b8ad0100b9ad0100baad0100bbad0100bcad0100bdad0100bead0100bfad0100c0ad0100c1ad0100c2ad0100c3ad0100c4ad0100c5ad0100c6ad0100c7ad0100c8ad0100c9ad0100caad0100cbad0100ccad0100cdad0100cead0100cfad0100d0ad0100d1ad0100d2ad0100d3ad0100d4ad0100d5ad0100d6ad0100d7ad0100d8ad0100d9ad0100daad0100dbad0100dcad0100ddad0100dead0100dfad0100e0ad0100e1ad0100e2ad0100e3ad0100e4ad0100e5ad0100e6ad0100e7ad0100e8ad0100e9ad0100eaad0100ebad0100ecad0100edad0100eead0100efad0100f0ad0100f1ad0100f2ad0100f3ad0100f4ad0100f5ad0100f6ad0100f7ad0100f8ad0100f9ad0100faad0100fbad0100fcad0100fdad0100fead0100ffad010000ae010001ae010002ae010003ae010004ae010005ae010006ae010007ae010008ae010009ae01000aae01000bae01000cae01000dae01000eae01000fae010010ae010011ae010012ae010013ae010014ae010015ae010016ae010017ae010018ae010019ae01001aae01001bae01001cae01001dae01001eae01001fae010020ae010021ae010022ae010023ae010024ae010025ae010026ae010027ae010028ae010029ae01002aae01002bae01002cae01002dae01002eae01002fae010030ae010031ae010032ae010033ae010034ae010035ae010036ae010037ae010038ae010039ae01003aae01003bae01003cae01003dae01003eae01003fae010040ae010041ae010042ae010043ae010044ae010045ae010046ae010047ae010048ae010049ae01004aae01004bae01004cae01004dae01004eae01004fae010050ae010051ae010052ae010053ae010054ae010055ae010056ae010057ae010058ae010059ae01005aae01005bae01005cae01005dae01005eae01005fae010060ae010061ae010062ae010063ae010064ae010065ae010066ae010067ae010068ae010069ae01006aae01006bae01006cae01006dae01006eae01006fae010070ae010071ae010072ae010073ae010074ae010075ae010076ae010077ae010078ae010079ae01007aae01007bae01007cae01007dae01007eae01007fae010080ae010081ae010082ae010083ae010084ae010085ae010086ae010087ae010088ae010089ae01008aae01008bae01008cae01008dae01008eae01008fae010090ae010091ae010092ae010093ae010094ae010095ae010096ae010097ae010098ae010099ae01009aae01009bae01009cae01009dae01009eae01009fae0100a0ae0100a1ae0100a2ae0100a3ae0100a4ae0100a5ae0100a6ae0100a7ae0100a8ae0100a9ae0100aaae0100abae0100acae0100adae0100aeae0100afae0100b0ae0100b1ae0100b2ae0100b3ae0100b4ae0100b5ae0100b6ae0100b7ae0100b8ae0100b9ae0100baae0100bbae0100bcae0100bdae0100beae0100bfae0100c0ae0100c1ae0100c2ae0100c3ae0100c4ae0100c5ae0100c6ae0100c7ae0100c8ae0100c9ae0100caae0100cbae0100ccae0100cdae0100ceae0100cfae0100d0ae0100d1ae0100d2ae0100d3ae0100d4ae0100d5ae0100d6ae0100d7ae0100d8ae0100d9ae0100daae0100dbae0100dcae0100ddae0100deae0100dfae0100e0ae0100e1ae0100e2ae0100e3ae0100e4ae0100e5ae0100e6ae0100e7ae0100e8ae0100e9ae0100eaae0100ebae0100ecae0100edae0100eeae0100efae0100f0ae0100f1ae0100f2ae0100f3ae0100f4ae0100f5ae0100f6ae0100f7ae0100f8ae0100f9ae0100faae0100fbae0100fcae0100fdae0100feae0100ffae010000af010001af010002af010003af010004af010005af010006af010007af010008af010009af01000aaf01000baf01000caf01000daf01000eaf01000faf010010af010011af010012af010013af010014af010015af010016af010017af010018af010019af01001aaf01001baf01001caf01001daf01001eaf01001faf010020af010021af010022af010023af010024af010025af010026af010027af010028af010029af01002aaf01002baf01002caf01002daf01002eaf01002faf010030af010031af010032af010033af010034af010035af010036af010037af010038af010039af01003aaf01003baf01003caf01003daf01003eaf01003faf010040af010041af010042af010043af010044af010045af010046af010047af010048af010049af01004aaf01004baf01004caf01004daf01004eaf01004faf010050af010051af010052af010053af010054af010055af010056af010057af010058af010059af01005aaf01005baf01005caf01005daf01005eaf01005faf010060af010061af010062af010063af010064af010065af010066af010067af010068af010069af01006aaf01006baf01006caf01006daf01006eaf01006faf010070af010071af010072af010073af010074af010075af010076af010077af010078af010079af01007aaf01007baf01007caf01007daf01007eaf01007faf010080af010081af010082af010083af010084af010085af010086af010087af010088af010089af01008aaf01008baf01008caf01008daf01008eaf01008faf010090af010091af010092af010093af010094af010095af010096af010097af010098af010099af01009aaf01009baf01009caf01009daf01009eaf01009faf0100a0af0100a1af0100a2af0100a3af0100a4af0100a5af0100a6af0100a7af0100a8af0100a9af0100aaaf0100abaf0100acaf0100adaf0100aeaf0100afaf0100b0af0100b1af0100b2af0100b3af0100b4af0100b5af0100b6af0100b7af0100b8af0100b9af0100baaf0100bbaf0100bcaf0100bdaf0100beaf0100bfaf0100c0af0100c1af0100c2af0100c3af0100c4af0100c5af0100c6af0100c7af0100c8af0100c9af0100caaf0100cbaf0100ccaf0100cdaf0100ceaf0100cfaf0100d0af0100d1af0100d2af0100d3af0100d4af0100d5af0100d6af0100d7af0100d8af0100d9af0100daaf0100dbaf0100dcaf0100ddaf0100deaf0100dfaf0100e0af0100e1af0100e2af0100e3af0100e4af0100e5af0100e6af0100e7af0100e8af0100e9af0100eaaf0100ebaf0100ecaf0100edaf0100eeaf0100efaf0100f0af0100f1af0100f2af0100f3af0100f4af0100f5af0100f6af0100f7af0100f8af0100f9af0100faaf0100fbaf0100fcaf0100fdaf0100feaf0100ffaf010000b0010001b0010002b0010003b0010004b0010005b0010006b0010007b0010008b0010009b001000ab001000bb001000cb001000db001000eb001000fb0010010b0010011b0010012b0010013b0010014b0010015b0010016b0010017b0010018b0010019b001001ab001001bb001001cb001001db001001eb001001fb0010020b0010021b0010022b0010023b0010024b0010025b0010026b0010027b0010028b0010029b001002ab001002bb001002cb001002db001002eb001002fb0010030b0010031b0010032b0010033b0010034b0010035b0010036b0010037b0010038b0010039b001003ab001003bb001003cb001003db001003eb001003fb0010040b0010041b0010042b0010043b0010044b0010045b0010046b0010047b0010048b0010049b001004ab001004bb001004cb001004db001004eb001004fb0010050b0010051b0010052b0010053b0010054b0010055b0010056b0010057b0010058b0010059b001005ab001005bb001005cb001005db001005eb001005fb0010060b0010061b0010062b0010063b0010064b0010065b0010066b0010067b0010068b0010069b001006ab001006bb001006cb001006db001006eb001006fb0010070b0010071b0010072b0010073b0010074b0010075b0010076b0010077b0010078b0010079b001007ab001007bb001007cb001007db001007eb001007fb0010080b0010081b0010082b0010083b0010084b0010085b0010086b0010087b0010088b0010089b001008ab001008bb001008cb001008db001008eb001008fb0010090b0010091b0010092b0010093b0010094b0010095b0010096b0010097b0010098b0010099b001009ab001009bb001009cb001009db001009eb001009fb00100a0b00100a1b00100a2b00100a3b00100a4b00100a5b00100a6b00100a7b00100a8b00100a9b00100aab00100abb00100acb00100adb00100aeb00100afb00100b0b00100b1b00100b2b00100b3b00100b4b00100b5b00100b6b00100b7b00100b8b00100b9b00100bab00100bbb00100bcb00100bdb00100beb00100bfb00100c0b00100c1b00100c2b00100c3b00100c4b00100c5b00100c6b00100c7b00100c8b00100c9b00100cab00100cbb00100ccb00100cdb00100ceb00100cfb00100d0b00100d1b00100d2b00100d3b00100d4b00100d5b00100d6b00100d7b00100d8b00100d9b00100dab00100dbb00100dcb00100ddb00100deb00100dfb00100e0b00100e1b00100e2b00100e3b00100e4b00100e5b00100e6b00100e7b00100e8b00100e9b00100eab00100ebb00100ecb00100edb00100eeb00100efb00100f0b00100f1b00100f2b00100f3b00100f4b00100f5b00100f6b00100f7b00100f8b00100f9b00100fab00100fbb00100fcb00100fdb00100feb00100ffb0010000b1010001b1010002b1010003b1010004b1010005b1010006b1010007b1010008b1010009b101000ab101000bb101000cb101000db101000eb101000fb1010010b1010011b1010012b1010013b1010014b1010015b1010016b1010017b1010018b1010019b101001ab101001bb101001cb101001db101001eb101001fb1010020b1010021b1010022b1010023b1010024b1010025b1010026b1010027b1010028b1010029b101002ab101002bb101002cb101002db101002eb101002fb1010030b1010031b1010032b1010033b1010034b1010035b1010036b1010037b1010038b1010039b101003ab101003bb101003cb101003db101003eb101003fb1010040b1010041b1010042b1010043b1010044b1010045b1010046b1010047b1010048b1010049b101004ab101004bb101004cb101004db101004eb101004fb1010050b1010051b1010052b1010053b1010054b1010055b1010056b1010057b1010058b1010059b101005ab101005bb101005cb101005db101005eb101005fb1010060b1010061b1010062b1010063b1010064b1010065b1010066b1010067b1010068b1010069b101006ab101006bb101006cb101006db101006eb101006fb1010070b1010071b1010072b1010073b1010074b1010075b1010076b1010077b1010078b1010079b101007ab101007bb101007cb101007db101007eb101007fb1010080b1010081b1010082b1010083b1010084b1010085b1010086b1010087b1010088b1010089b101008ab101008bb101008cb101008db101008eb101008fb1010090b1010091b1010092b1010093b1010094b1010095b1010096b1010097b1010098b1010099b101009ab101009bb101009cb101009db101009eb101009fb10100a0b10100a1b10100a2b10100a3b10100a4b10100a5b10100a6b10100a7b10100a8b10100a9b10100aab10100abb10100acb10100adb10100aeb10100afb10100b0b10100b1b10100b2b10100b3b10100b4b10100b5b10100b6b10100b7b10100b8b10100b9b10100bab10100bbb10100bcb10100bdb10100beb10100bfb10100c0b10100c1b10100c2b10100c3b10100c4b10100c5b10100c6b10100c7b10100c8b10100c9b10100cab10100cbb10100ccb10100cdb10100ceb10100cfb10100d0b10100d1b10100d2b10100d3b10100d4b10100d5b10100d6b10100d7b10100d8b10100d9b10100dab10100dbb10100dcb10100ddb10100deb10100dfb10100e0b10100e1b10100e2b10100e3b10100e4b10100e5b10100e6b10100e7b10100e8b10100e9b10100eab10100ebb10100ecb10100edb10100eeb10100efb10100f0b10100f1b10100f2b10100f3b10100f4b10100f5b10100f6b10100f7b10100f8b10100f9b10100fab10100fbb10100fcb10100fdb10100feb10100ffb1010000b2010001b2010002b2010003b2010004b2010005b2010006b2010007b2010008b2010009b201000ab201000bb201000cb201000db201000eb201000fb2010010b2010011b2010012b2010013b2010014b2010015b2010016b2010017b2010018b2010019b201001ab201001bb201001cb201001db201001eb201001fb2010020b2010021b2010022b2010023b2010024b2010025b2010026b2010027b2010028b2010029b201002ab201002bb201002cb201002db201002eb201002fb2010030b2010031b2010032b2010033b2010034b2010035b2010036b2010037b2010038b2010039b201003ab201003bb201003cb201003db201003eb201003fb2010040b2010041b2010042b2010043b2010044b2010045b2010046b2010047b2010048b2010049b201004ab201004bb201004cb201004db201004eb201004fb2010050b2010051b2010052b2010053b2010054b2010055b2010056b2010057b2010058b2010059b201005ab201005bb201005cb201005db201005eb201005fb2010060b2010061b2010062b2010063b2010064b2010065b2010066b2010067b2010068b2010069b201006ab201006bb201006cb201006db201006eb201006fb2010070b2010071b2010072b2010073b2010074b2010075b2010076b2010077b2010078b2010079b201007ab201007bb201007cb201007db201007eb201007fb2010080b2010081b2010082b2010083b2010084b2010085b2010086b2010087b2010088b2010089b201008ab201008bb201008cb201008db201008eb201008fb2010090b2010091b2010092b2010093b2010094b2010095b2010096b2010097b2010098b2010099b201009ab201009bb201009cb201009db201009eb201009fb20100a0b20100a1b20100a2b20100a3b20100a4b20100a5b20100a6b20100a7b20100a8b20100a9b20100aab20100abb20100acb20100adb20100aeb20100afb20100b0b20100b1b20100b2b20100b3b20100b4b20100b5b20100b6b20100b7b20100b8b20100b9b20100bab20100bbb20100bcb20100bdb20100beb20100bfb20100c0b20100c1b20100c2b20100c3b20100c4b20100c5b20100c6b20100c7b20100c8b20100c9b20100cab20100cbb20100ccb20100cdb20100ceb20100cfb20100d0b20100d1b20100d2b20100d3b20100d4b20100d5b20100d6b20100d7b20100d8b20100d9b20100dab20100dbb20100dcb20100ddb20100deb20100dfb20100e0b20100e1b20100e2b20100e3b20100e4b20100e5b20100e6b20100e7b20100e8b20100e9b20100eab20100ebb20100ecb20100edb20100eeb20100efb20100f0b20100f1b20100f2b20100f3b20100f4b20100f5b20100f6b20100f7b20100f8b20100f9b20100fab20100fbb20100fcb20100fdb20100feb20100ffb2010000b3010001b3010002b3010003b3010004b3010005b3010006b3010007b3010008b3010009b301000ab301000bb301000cb301000db301000eb301000fb3010010b3010011b3010012b3010013b3010014b3010015b3010016b3010017b3010018b3010019b301001ab301001bb301001cb301001db301001eb301001fb3010020b3010021b3010022b3010023b3010024b3010025b3010026b3010027b3010028b3010029b301002ab301002bb301002cb301002db301002eb301002fb3010030b3010031b3010032b3010033b3010034b3010035b3010036b3010037b3010038b3010039b301003ab301003bb301003cb301003db301003eb301003fb3010040b3010041b3010042b3010043b3010044b3010045b3010046b3010047b3010048b3010049b301004ab301004bb301004cb301004db301004eb301004fb3010050b3010051b3010052b3010053b3010054b3010055b3010056b3010057b3010058b3010059b301005ab301005bb301005cb301005db301005eb301005fb3010060b3010061b3010062b3010063b3010064b3010065b3010066b3010067b3010068b3010069b301006ab301006bb301006cb301006db301006eb301006fb3010070b3010071b3010072b3010073b3010074b3010075b3010076b3010077b3010078b3010079b301007ab301007bb301007cb301007db301007eb301007fb3010080b3010081b3010082b3010083b3010084b3010085b3010086b3010087b3010088b3010089b301008ab301008bb301008cb301008db301008eb301008fb3010090b3010091b3010092b3010093b3010094b3010095b3010096b3010097b3010098b3010099b301009ab301009bb301009cb301009db301009eb301009fb30100a0b30100a1b30100a2b30100a3b30100a4b30100a5b30100a6b30100a7b30100a8b30100a9b30100aab30100abb30100acb30100adb30100aeb30100afb30100b0b30100b1b30100b2b30100b3b30100b4b30100b5b30100b6b30100b7b30100b8b30100b9b30100bab30100bbb30100bcb30100bdb30100beb30100bfb30100c0b30100c1b30100c2b30100c3b30100c4b30100c5b30100c6b30100c7b30100c8b30100c9b30100cab30100cbb30100ccb30100cdb30100ceb30100cfb30100d0b30100d1b30100d2b30100d3b30100d4b30100d5b30100d6b30100d7b30100d8b30100d9b30100dab30100dbb30100dcb30100ddb30100deb30100dfb30100e0b30100e1b30100e2b30100e3b30100e4b30100e5b30100e6b30100e7b30100e8b30100e9b30100eab30100ebb30100ecb30100edb30100eeb30100efb30100f0b30100f1b30100f2b30100f3b30100f4b30100f5b30100f6b30100f7b30100f8b30100f9b30100fab30100fbb30100fcb30100fdb30100feb30100ffb3010000b4010001b4010002b4010003b4010004b4010005b4010006b4010007b4010008b4010009b401000ab401000bb401000cb401000db401000eb401000fb4010010b4010011b4010012b4010013b4010014b4010015b4010016b4010017b4010018b4010019b401001ab401001bb401001cb401001db401001eb401001fb4010020b4010021b4010022b4010023b4010024b4010025b4010026b4010027b4010028b4010029b401002ab401002bb401002cb401002db401002eb401002fb4010030b4010031b4010032b4010033b4010034b4010035b4010036b4010037b4010038b4010039b401003ab401003bb401003cb401003db401003eb401003fb4010040b4010041b4010042b4010043b4010044b4010045b4010046b4010047b4010048b4010049b401004ab401004bb401004cb401004db401004eb401004fb4010050b4010051b4010052b4010053b4010054b4010055b4010056b4010057b4010058b4010059b401005ab401005bb401005cb401005db401005eb401005fb4010060b4010061b4010062b4010063b4010064b4010065b4010066b4010067b4010068b4010069b401006ab401006bb401006cb401006db401006eb401006fb4010070b4010071b4010072b4010073b4010074b4010075b4010076b4010077b4010078b4010079b401007ab401007bb401007cb401007db401007eb401007fb4010080b4010081b4010082b4010083b4010084b4010085b4010086b4010087b4010088b4010089b401008ab401008bb401008cb401008db401008eb401008fb4010090b4010091b4010092b4010093b4010094b4010095b4010096b4010097b4010098b4010099b401009ab401009bb401009cb401009db401009eb401009fb40100a0b40100a1b40100a2b40100a3b40100a4b40100a5b40100a6b40100a7b40100a8b40100a9b40100aab40100abb40100acb40100adb40100aeb40100afb40100b0b40100b1b40100b2b40100b3b40100b4b40100b5b40100b6b40100b7b40100b8b40100b9b40100bab40100bbb40100bcb40100bdb40100beb40100bfb40100c0b40100c1b40100c2b40100c3b40100c4b40100c5b40100c6b40100c7b40100c8b40100c9b40100cab40100cbb40100ccb40100cdb40100ceb40100cfb40100d0b40100d1b40100d2b40100d3b40100d4b40100d5b40100d6b40100d7b40100d8b40100d9b40100dab40100dbb40100dcb40100ddb40100deb40100dfb40100e0b40100e1b40100e2b40100e3b40100e4b40100e5b40100e6b40100e7b40100e8b40100e9b40100eab40100ebb40100ecb40100edb40100eeb40100efb40100f0b40100f1b40100f2b40100f3b40100f4b40100f5b40100f6b40100f7b40100f8b40100f9b40100fab40100fbb40100fcb40100fdb40100feb40100ffb4010000b5010001b5010002b5010003b5010004b5010005b5010006b5010007b5010008b5010009b501000ab501000bb501000cb501000db501000eb501000fb5010010b5010011b5010012b5010013b5010014b5010015b5010016b5010017b5010018b5010019b501001ab501001bb501001cb501001db501001eb501001fb5010020b5010021b5010022b5010023b5010024b5010025b5010026b5010027b5010028b5010029b501002ab501002bb501002cb501002db501002eb501002fb5010030b5010031b5010032b5010033b5010034b5010035b5010036b5010037b5010038b5010039b501003ab501003bb501003cb501003db501003eb501003fb5010040b5010041b5010042b5010043b5010044b5010045b5010046b5010047b5010048b5010049b501004ab501004bb501004cb501004db501004eb501004fb5010050b5010051b5010052b5010053b5010054b5010055b5010056b5010057b5010058b5010059b501005ab501005bb501005cb501005db501005eb501005fb5010060b5010061b5010062b5010063b5010064b5010065b5010066b5010067b5010068b5010069b501006ab501006bb501006cb501006db501006eb501006fb5010070b5010071b5010072b5010073b5010074b5010075b5010076b5010077b5010078b5010079b501007ab501007bb501007cb501007db501007eb501007fb5010080b5010081b5010082b5010083b5010084b5010085b5010086b5010087b5010088b5010089b501008ab501008bb501008cb501008db501008eb501008fb5010090b5010091b5010092b5010093b5010094b5010095b5010096b5010097b5010098b5010099b501009ab501009bb501009cb501009db501009eb501009fb50100a0b50100a1b50100a2b50100a3b50100a4b50100a5b50100a6b50100a7b50100a8b50100a9b50100aab50100abb50100acb50100adb50100aeb50100afb50100b0b50100b1b50100b2b50100b3b50100b4b50100b5b50100b6b50100b7b50100b8b50100b9b50100bab50100bbb50100bcb50100bdb50100beb50100bfb50100c0b50100c1b50100c2b50100c3b50100c4b50100c5b50100c6b50100c7b50100c8b50100c9b50100cab50100cbb50100ccb50100cdb50100ceb50100cfb50100d0b50100d1b50100d2b50100d3b50100d4b50100d5b50100d6b50100d7b50100d8b50100d9b50100dab50100dbb50100dcb50100ddb50100deb50100dfb50100e0b50100e1b50100e2b50100e3b50100e4b50100e5b50100e6b50100e7b50100e8b50100e9b50100eab50100ebb50100ecb50100edb50100eeb50100efb50100f0b50100f1b50100f2b50100f3b50100f4b50100f5b50100f6b50100f7b50100f8b50100f9b50100fab50100fbb50100fcb50100fdb50100feb50100ffb5010000b6010001b6010002b6010003b6010004b6010005b6010006b6010007b6010008b6010009b601000ab601000bb601000cb601000db601000eb601000fb6010010b6010011b6010012b6010013b6010014b6010015b6010016b6010017b6010018b6010019b601001ab601001bb601001cb601001db601001eb601001fb6010020b6010021b6010022b6010023b6010024b6010025b6010026b6010027b6010028b6010029b601002ab601002bb601002cb601002db601002eb601002fb6010030b6010031b6010032b6010033b6010034b6010035b6010036b6010037b6010038b6010039b601003ab601003bb601003cb601003db601003eb601003fb6010040b6010041b6010042b6010043b6010044b6010045b6010046b6010047b6010048b6010049b601004ab601004bb601004cb601004db601004eb601004fb6010050b6010051b6010052b6010053b6010054b6010055b6010056b6010057b6010058b6010059b601005ab601005bb601005cb601005db601005eb601005fb6010060b6010061b6010062b6010063b6010064b6010065b6010066b6010067b6010068b6010069b601006ab601006bb601006cb601006db601006eb601006fb6010070b6010071b6010072b6010073b6010074b6010075b6010076b6010077b6010078b6010079b601007ab601007bb601007cb601007db601007eb601007fb6010080b6010081b6010082b6010083b6010084b6010085b6010086b6010087b6010088b6010089b601008ab601008bb601008cb601008db601008eb601008fb6010090b6010091b6010092b6010093b6010094b6010095b6010096b6010097b6010098b6010099b601009ab601009bb601009cb601009db601009eb601009fb60100a0b60100a1b60100a2b60100a3b60100a4b60100a5b60100a6b60100a7b60100a8b60100a9b60100aab60100abb60100acb60100adb60100aeb60100afb60100b0b60100b1b60100b2b60100b3b60100b4b60100b5b60100b6b60100b7b60100b8b60100b9b60100bab60100bbb60100bcb60100bdb60100beb60100bfb60100c0b60100c1b60100c2b60100c3b60100c4b60100c5b60100c6b60100c7b60100c8b60100c9b60100cab60100cbb60100ccb60100cdb60100ceb60100cfb60100d0b60100d1b60100d2b60100d3b60100d4b60100d5b60100d6b60100d7b60100d8b60100d9b60100dab60100dbb60100dcb60100ddb60100deb60100dfb60100e0b60100e1b60100e2b60100e3b60100e4b60100e5b60100e6b60100e7b60100e8b60100e9b60100eab60100ebb60100ecb60100edb60100eeb60100efb60100f0b60100f1b60100f2b60100f3b60100f4b60100f5b60100f6b60100f7b60100f8b60100f9b60100fab60100fbb60100fcb60100fdb60100feb60100ffb6010000b7010001b7010002b7010003b7010004b7010005b7010006b7010007b7010008b7010009b701000ab701000bb701000cb701000db701000eb701000fb7010010b7010011b7010012b7010013b7010014b7010015b7010016b7010017b7010018b7010019b701001ab701001bb701001cb701001db701001eb701001fb7010020b7010021b7010022b7010023b7010024b7010025b7010026b7010027b7010028b7010029b701002ab701002bb701002cb701002db701002eb701002fb7010030b7010031b7010032b7010033b7010034b7010035b7010036b7010037b7010038b7010039b701003ab701003bb701003cb701003db701003eb701003fb7010040b7010041b7010042b7010043b7010044b7010045b7010046b7010047b7010048b7010049b701004ab701004bb701004cb701004db701004eb701004fb7010050b7010051b7010052b7010053b7010054b7010055b7010056b7010057b7010058b7010059b701005ab701005bb701005cb701005db701005eb701005fb7010060b7010061b7010062b7010063b7010064b7010065b7010066b7010067b7010068b7010069b701006ab701006bb701006cb701006db701006eb701006fb7010070b7010071b7010072b7010073b7010074b7010075b7010076b7010077b7010078b7010079b701007ab701007bb701007cb701007db701007eb701007fb7010080b7010081b7010082b7010083b7010084b7010085b7010086b7010087b7010088b7010089b701008ab701008bb701008cb701008db701008eb701008fb7010090b7010091b7010092b7010093b7010094b7010095b7010096b7010097b7010098b7010099b701009ab701009bb701009cb701009db701009eb701009fb70100a0b70100a1b70100a2b70100a3b70100a4b70100a5b70100a6b70100a7b70100a8b70100a9b70100aab70100abb70100acb70100adb70100aeb70100afb70100b0b70100b1b70100b2b70100b3b70100b4b70100b5b70100b6b70100b7b70100b8b70100b9b70100bab70100bbb70100bcb70100bdb70100beb70100bfb70100c0b70100c1b70100c2b70100c3b70100c4b70100c5b70100c6b70100c7b70100c8b70100c9b70100cab70100cbb70100ccb70100cdb70100ceb70100cfb70100d0b70100d1b70100d2b70100d3b70100d4b70100d5b70100d6b70100d7b70100d8b70100d9b70100dab70100dbb70100dcb70100ddb70100deb70100dfb70100e0b70100e1b70100e2b70100e3b70100e4b70100e5b70100e6b70100e7b70100e8b70100e9b70100eab70100ebb70100ecb70100edb70100eeb70100efb70100f0b70100f1b70100f2b70100f3b70100f4b70100f5b70100f6b70100f7b70100f8b70100f9b70100fab70100fbb70100fcb70100fdb70100feb70100ffb7010000b8010001b8010002b8010003b8010004b8010005b8010006b8010007b8010008b8010009b801000ab801000bb801000cb801000db801000eb801000fb8010010b8010011b8010012b8010013b8010014b8010015b8010016b8010017b8010018b8010019b801001ab801001bb801001cb801001db801001eb801001fb8010020b8010021b8010022b8010023b8010024b8010025b8010026b8010027b8010028b8010029b801002ab801002bb801002cb801002db801002eb801002fb8010030b8010031b8010032b8010033b8010034b8010035b8010036b8010037b8010038b8010039b801003ab801003bb801003cb801003db801003eb801003fb8010040b8010041b8010042b8010043b8010044b8010045b8010046b8010047b8010048b8010049b801004ab801004bb801004cb801004db801004eb801004fb8010050b8010051b8010052b8010053b8010054b8010055b8010056b8010057b8010058b8010059b801005ab801005bb801005cb801005db801005eb801005fb8010060b8010061b8010062b8010063b8010064b8010065b8010066b8010067b8010068b8010069b801006ab801006bb801006cb801006db801006eb801006fb8010070b8010071b8010072b8010073b8010074b8010075b8010076b8010077b8010078b8010079b801007ab801007bb801007cb801007db801007eb801007fb8010080b8010081b8010082b8010083b8010084b8010085b8010086b8010087b8010088b8010089b801008ab801008bb801008cb801008db801008eb801008fb8010090b8010091b8010092b8010093b8010094b8010095b8010096b8010097b8010098b8010099b801009ab801009bb801009cb801009db801009eb801009fb80100a0b80100a1b80100a2b80100a3b80100a4b80100a5b80100a6b80100a7b80100a8b80100a9b80100aab80100abb80100acb80100adb80100aeb80100afb80100b0b80100b1b80100b2b80100b3b80100b4b80100b5b80100b6b80100b7b80100b8b80100b9b80100bab80100bbb80100bcb80100bdb80100beb80100bfb80100c0b80100c1b80100c2b80100c3b80100c4b80100c5b80100c6b80100c7b80100c8b80100c9b80100cab80100cbb80100ccb80100cdb80100ceb80100cfb80100d0b80100d1b80100d2b80100d3b80100d4b80100d5b80100d6b80100d7b80100d8b80100d9b80100dab80100dbb80100dcb80100ddb80100deb80100dfb80100e0b80100e1b80100e2b80100e3b80100e4b80100e5b80100e6b80100e7b80100e8b80100e9b80100eab80100ebb80100ecb80100edb80100eeb80100efb80100f0b80100f1b80100f2b80100f3b80100f4b80100f5b80100f6b80100f7b80100f8b80100f9b80100fab80100fbb80100fcb80100fdb80100feb80100ffb8010000b9010001b9010002b9010003b9010004b9010005b9010006b9010007b9010008b9010009b901000ab901000bb901000cb901000db901000eb901000fb9010010b9010011b9010012b9010013b9010014b9010015b9010016b9010017b9010018b9010019b901001ab901001bb901001cb901001db901001eb901001fb9010020b9010021b9010022b9010023b9010024b9010025b9010026b9010027b9010028b9010029b901002ab901002bb901002cb901002db901002eb901002fb9010030b9010031b9010032b9010033b9010034b9010035b9010036b9010037b9010038b9010039b901003ab901003bb901003cb901003db901003eb901003fb9010040b9010041b9010042b9010043b9010044b9010045b9010046b9010047b9010048b9010049b901004ab901004bb901004cb901004db901004eb901004fb9010050b9010051b9010052b9010053b9010054b9010055b9010056b9010057b9010058b9010059b901005ab901005bb901005cb901005db901005eb901005fb9010060b9010061b9010062b9010063b9010064b9010065b9010066b9010067b9010068b9010069b901006ab901006bb901006cb901006db901006eb901006fb9010070b9010071b9010072b9010073b9010074b9010075b9010076b9010077b9010078b9010079b901007ab901007bb901007cb901007db901007eb901007fb9010080b9010081b9010082b9010083b9010084b9010085b9010086b9010087b9010088b9010089b901008ab901008bb901008cb901008db901008eb901008fb9010090b9010091b9010092b9010093b9010094b9010095b9010096b9010097b9010098b9010099b901009ab901009bb901009cb901009db901009eb901009fb90100a0b90100a1b90100a2b90100a3b90100a4b90100a5b90100a6b90100a7b90100a8b90100a9b90100aab90100abb90100acb90100adb90100aeb90100afb90100b0b90100b1b90100b2b90100b3b90100b4b90100b5b90100b6b90100b7b90100b8b90100b9b90100bab90100bbb90100bcb90100bdb90100beb90100bfb90100c0b90100c1b90100c2b90100c3b90100c4b90100c5b90100c6b90100c7b90100c8b90100c9b90100cab90100cbb90100ccb90100cdb90100ceb90100cfb90100d0b90100d1b90100d2b90100d3b90100d4b90100d5b90100d6b90100d7b90100d8b90100d9b90100dab90100dbb90100dcb90100ddb90100deb90100dfb90100e0b90100e1b90100e2b90100e3b90100e4b90100e5b90100e6b90100e7b90100e8b90100e9b90100eab90100ebb90100ecb90100edb90100eeb90100efb90100f0b90100f1b90100f2b90100f3b90100f4b90100f5b90100f6b90100f7b90100f8b90100f9b90100fab90100fbb90100fcb90100fdb90100feb90100ffb9010000ba010001ba010002ba010003ba010004ba010005ba010006ba010007ba010008ba010009ba01000aba01000bba01000cba01000dba01000eba01000fba010010ba010011ba010012ba010013ba010014ba010015ba010016ba010017ba010018ba010019ba01001aba01001bba01001cba01001dba01001eba01001fba010020ba010021ba010022ba010023ba010024ba010025ba010026ba010027ba010028ba010029ba01002aba01002bba01002cba01002dba01002eba01002fba010030ba010031ba010032ba010033ba010034ba010035ba010036ba010037ba010038ba010039ba01003aba01003bba01003cba01003dba01003eba01003fba010040ba010041ba010042ba010043ba010044ba010045ba010046ba010047ba010048ba010049ba01004aba01004bba01004cba01004dba01004eba01004fba010050ba010051ba010052ba010053ba010054ba010055ba010056ba010057ba010058ba010059ba01005aba01005bba01005cba01005dba01005eba01005fba010060ba010061ba010062ba010063ba010064ba010065ba010066ba010067ba010068ba010069ba01006aba01006bba01006cba01006dba01006eba01006fba010070ba010071ba010072ba010073ba010074ba010075ba010076ba010077ba010078ba010079ba01007aba01007bba01007cba01007dba01007eba01007fba010080ba010081ba010082ba010083ba010084ba010085ba010086ba010087ba010088ba010089ba01008aba01008bba01008cba01008dba01008eba01008fba010090ba010091ba010092ba010093ba010094ba010095ba010096ba010097ba010098ba010099ba01009aba01009bba01009cba01009dba01009eba01009fba0100a0ba0100a1ba0100a2ba0100a3ba0100a4ba0100a5ba0100a6ba0100a7ba0100a8ba0100a9ba0100aaba0100abba0100acba0100adba0100aeba0100afba0100b0ba0100b1ba0100b2ba0100b3ba0100b4ba0100b5ba0100b6ba0100b7ba0100b8ba0100b9ba0100baba0100bbba0100bcba0100bdba0100beba0100bfba0100c0ba0100c1ba0100c2ba0100c3ba0100c4ba0100c5ba0100c6ba0100c7ba0100c8ba0100c9ba0100caba0100cbba0100ccba0100cdba0100ceba0100cfba0100d0ba0100d1ba0100d2ba0100d3ba0100d4ba0100d5ba0100d6ba0100d7ba0100d8ba0100d9ba0100daba0100dbba0100dcba0100ddba0100deba0100dfba0100e0ba0100e1ba0100e2ba0100e3ba0100e4ba0100e5ba0100e6ba0100e7ba0100e8ba0100e9ba0100eaba0100ebba0100ecba0100edba0100eeba0100efba0100f0ba0100f1ba0100f2ba0100f3ba0100f4ba0100f5ba0100f6ba0100f7ba0100f8ba0100f9ba0100faba0100fbba0100fcba0100fdba0100feba0100ffba010000bb010001bb010002bb010003bb010004bb010005bb010006bb010007bb010008bb010009bb01000abb01000bbb01000cbb01000dbb01000ebb01000fbb010010bb010011bb010012bb010013bb010014bb010015bb010016bb010017bb010018bb010019bb01001abb01001bbb01001cbb01001dbb01001ebb01001fbb010020bb010021bb010022bb010023bb010024bb010025bb010026bb010027bb010028bb010029bb01002abb01002bbb01002cbb01002dbb01002ebb01002fbb010030bb010031bb010032bb010033bb010034bb010035bb010036bb010037bb010038bb010039bb01003abb01003bbb01003cbb01003dbb01003ebb01003fbb010040bb010041bb010042bb010043bb010044bb010045bb010046bb010047bb010048bb010049bb01004abb01004bbb01004cbb01004dbb01004ebb01004fbb010050bb010051bb010052bb010053bb010054bb010055bb010056bb010057bb010058bb010059bb01005abb01005bbb01005cbb01005dbb01005ebb01005fbb010060bb010061bb010062bb010063bb010064bb010065bb010066bb010067bb010068bb010069bb01006abb01006bbb01006cbb01006dbb01006ebb01006fbb010070bb010071bb010072bb010073bb010074bb010075bb010076bb010077bb010078bb010079bb01007abb01007bbb01007cbb01007dbb01007ebb01007fbb010080bb010081bb010082bb010083bb010084bb010085bb010086bb010087bb010088bb010089bb01008abb01008bbb01008cbb01008dbb01008ebb01008fbb010090bb010091bb010092bb010093bb010094bb010095bb010096bb010097bb010098bb010099bb01009abb01009bbb01009cbb01009dbb01009ebb01009fbb0100a0bb0100a1bb0100a2bb0100a3bb0100a4bb0100a5bb0100a6bb0100a7bb0100a8bb0100a9bb0100aabb0100abbb0100acbb0100adbb0100aebb0100afbb0100b0bb0100b1bb0100b2bb0100b3bb0100b4bb0100b5bb0100b6bb0100b7bb0100b8bb0100b9bb0100babb0100bbbb0100bcbb0100bdbb0100bebb0100bfbb0100c0bb0100c1bb0100c2bb0100c3bb0100c4bb0100c5bb0100c6bb0100c7bb0100c8bb0100c9bb0100cabb0100cbbb0100ccbb0100cdbb0100cebb0100cfbb0100d0bb0100d1bb0100d2bb0100d3bb0100d4bb0100d5bb0100d6bb0100d7bb0100d8bb0100d9bb0100dabb0100dbbb0100dcbb0100ddbb0100debb0100dfbb0100e0bb0100e1bb0100e2bb0100e3bb0100e4bb0100e5bb0100e6bb0100e7bb0100e8bb0100e9bb0100eabb0100ebbb0100ecbb0100edbb0100eebb0100efbb0100f0bb0100f1bb0100f2bb0100f3bb0100f4bb0100f5bb0100f6bb0100f7bb0100f8bb0100f9bb0100fabb0100fbbb0100fcbb0100fdbb0100febb0100ffbb010000bc010001bc010002bc010003bc010004bc010005bc010006bc010007bc010008bc010009bc01000abc01000bbc01000cbc01000dbc01000ebc01000fbc010010bc010011bc010012bc010013bc010014bc010015bc010016bc010017bc010018bc010019bc01001abc01001bbc01001cbc01001dbc01001ebc01001fbc010020bc010021bc010022bc010023bc010024bc010025bc010026bc010027bc010028bc010029bc01002abc01002bbc01002cbc01002dbc01002ebc01002fbc010030bc010031bc010032bc010033bc010034bc010035bc010036bc010037bc010038bc010039bc01003abc01003bbc01003cbc01003dbc01003ebc01003fbc010040bc010041bc010042bc010043bc010044bc010045bc010046bc010047bc010048bc010049bc01004abc01004bbc01004cbc01004dbc01004ebc01004fbc010050bc010051bc010052bc010053bc010054bc010055bc010056bc010057bc010058bc010059bc01005abc01005bbc01005cbc01005dbc01005ebc01005fbc010060bc010061bc010062bc010063bc010064bc010065bc010066bc010067bc010068bc010069bc01006abc01006bbc01006cbc01006dbc01006ebc01006fbc010070bc010071bc010072bc010073bc010074bc010075bc010076bc010077bc010078bc010079bc01007abc01007bbc01007cbc01007dbc01007ebc01007fbc010080bc010081bc010082bc010083bc010084bc010085bc010086bc010087bc010088bc010089bc01008abc01008bbc01008cbc01008dbc01008ebc01008fbc010090bc010091bc010092bc010093bc010094bc010095bc010096bc010097bc010098bc010099bc01009abc01009bbc01009cbc01009dbc01009ebc01009fbc0100a0bc0100a1bc0100a2bc0100a3bc0100a4bc0100a5bc0100a6bc0100a7bc0100a8bc0100a9bc0100aabc0100abbc0100acbc0100adbc0100aebc0100afbc0100b0bc0100b1bc0100b2bc0100b3bc0100b4bc0100b5bc0100b6bc0100b7bc0100b8bc0100b9bc0100babc0100bbbc0100bcbc0100bdbc0100bebc0100bfbc0100c0bc0100c1bc0100c2bc0100c3bc0100c4bc0100c5bc0100c6bc0100c7bc0100c8bc0100c9bc0100cabc0100cbbc0100ccbc0100cdbc0100cebc0100cfbc0100d0bc0100d1bc0100d2bc0100d3bc0100d4bc0100d5bc0100d6bc0100d7bc0100d8bc0100d9bc0100dabc0100dbbc0100dcbc0100ddbc0100debc0100dfbc0100e0bc0100e1bc0100e2bc0100e3bc0100e4bc0100e5bc0100e6bc0100e7bc0100e8bc0100e9bc0100eabc0100ebbc0100ecbc0100edbc0100eebc0100efbc0100f0bc0100f1bc0100f2bc0100f3bc0100f4bc0100f5bc0100f6bc0100f7bc0100f8bc0100f9bc0100fabc0100fbbc0100fcbc0100fdbc0100febc0100ffbc010000bd010001bd010002bd010003bd010004bd010005bd010006bd010007bd010008bd010009bd01000abd01000bbd01000cbd01000dbd01000ebd01000fbd010010bd010011bd010012bd010013bd010014bd010015bd010016bd010017bd010018bd010019bd01001abd01001bbd01001cbd01001dbd01001ebd01001fbd010020bd010021bd010022bd010023bd010024bd010025bd010026bd010027bd010028bd010029bd01002abd01002bbd01002cbd01002dbd01002ebd01002fbd010030bd010031bd010032bd010033bd010034bd010035bd010036bd010037bd010038bd010039bd01003abd01003bbd01003cbd01003dbd01003ebd01003fbd010040bd010041bd010042bd010043bd010044bd010045bd010046bd010047bd010048bd010049bd01004abd01004bbd01004cbd01004dbd01004ebd01004fbd010050bd010051bd010052bd010053bd010054bd010055bd010056bd010057bd010058bd010059bd01005abd01005bbd01005cbd01005dbd01005ebd01005fbd010060bd010061bd010062bd010063bd010064bd010065bd010066bd010067bd010068bd010069bd01006abd01006bbd01006cbd01006dbd01006ebd01006fbd010070bd010071bd010072bd010073bd010074bd010075bd010076bd010077bd010078bd010079bd01007abd01007bbd01007cbd01007dbd01007ebd01007fbd010080bd010081bd010082bd010083bd010084bd010085bd010086bd010087bd010088bd010089bd01008abd01008bbd01008cbd01008dbd01008ebd01008fbd010090bd010091bd010092bd010093bd010094bd010095bd010096bd010097bd010098bd010099bd01009abd01009bbd01009cbd01009dbd01009ebd01009fbd0100a0bd0100a1bd0100a2bd0100a3bd0100a4bd0100a5bd0100a6bd0100a7bd0100a8bd0100a9bd0100aabd0100abbd0100acbd0100adbd0100aebd0100afbd0100b0bd0100b1bd0100b2bd0100b3bd0100b4bd0100b5bd0100b6bd0100b7bd0100b8bd0100b9bd0100babd0100bbbd0100bcbd0100bdbd0100bebd0100bfbd0100c0bd0100c1bd0100c2bd0100c3bd0100c4bd0100c5bd0100c6bd0100c7bd0100c8bd0100c9bd0100cabd0100cbbd0100ccbd0100cdbd0100cebd0100cfbd0100d0bd0100d1bd0100d2bd0100d3bd0100d4bd0100d5bd0100d6bd0100d7bd0100d8bd0100d9bd0100dabd0100dbbd0100dcbd0100ddbd0100debd0100dfbd0100e0bd0100e1bd0100e2bd0100e3bd0100e4bd0100e5bd0100e6bd0100e7bd0100e8bd0100e9bd0100eabd0100ebbd0100ecbd0100edbd0100eebd0100efbd0100f0bd0100f1bd0100f2bd0100f3bd0100f4bd0100f5bd0100f6bd0100f7bd0100f8bd0100f9bd0100fabd0100fbbd0100fcbd0100fdbd0100febd0100ffbd010000be010001be010002be010003be010004be010005be010006be010007be010008be010009be01000abe01000bbe01000cbe01000dbe01000ebe01000fbe010010be010011be010012be010013be010014be010015be010016be010017be010018be010019be01001abe01001bbe01001cbe01001dbe01001ebe01001fbe010020be010021be010022be010023be010024be010025be010026be010027be010028be010029be01002abe01002bbe01002cbe01002dbe01002ebe01002fbe010030be010031be010032be010033be010034be010035be010036be010037be010038be010039be01003abe01003bbe01003cbe01003dbe01003ebe01003fbe010040be010041be010042be010043be010044be010045be010046be010047be010048be010049be01004abe01004bbe01004cbe01004dbe01004ebe01004fbe010050be010051be010052be010053be010054be010055be010056be010057be010058be010059be01005abe01005bbe01005cbe01005dbe01005ebe01005fbe010060be010061be010062be010063be010064be010065be010066be010067be010068be010069be01006abe01006bbe01006cbe01006dbe01006ebe01006fbe010070be010071be010072be010073be010074be010075be010076be010077be010078be010079be01007abe01007bbe01007cbe01007dbe01007ebe01007fbe010080be010081be010082be010083be010084be010085be010086be010087be010088be010089be01008abe01008bbe01008cbe01008dbe01008ebe01008fbe010090be010091be010092be010093be010094be010095be010096be010097be010098be010099be01009abe01009bbe01009cbe01009dbe01009ebe01009fbe0100a0be0100a1be0100a2be0100a3be0100a4be0100a5be0100a6be0100a7be0100a8be0100a9be0100aabe0100abbe0100acbe0100adbe0100aebe0100afbe0100b0be0100b1be0100b2be0100b3be0100b4be0100b5be0100b6be0100b7be0100b8be0100b9be0100babe0100bbbe0100bcbe0100bdbe0100bebe0100bfbe0100c0be0100c1be0100c2be0100c3be0100c4be0100c5be0100c6be0100c7be0100c8be0100c9be0100cabe0100cbbe0100ccbe0100cdbe0100cebe0100cfbe0100d0be0100d1be0100d2be0100d3be0100d4be0100d5be0100d6be0100d7be0100d8be0100d9be0100dabe0100dbbe0100dcbe0100ddbe0100debe0100dfbe0100e0be0100e1be0100e2be0100e3be0100e4be0100e5be0100e6be0100e7be0100e8be0100e9be0100eabe0100ebbe0100ecbe0100edbe0100eebe0100efbe0100f0be0100f1be0100f2be0100f3be0100f4be0100f5be0100f6be0100f7be0100f8be0100f9be0100fabe0100fbbe0100fcbe0100fdbe0100febe0100ffbe010000bf010001bf010002bf010003bf010004bf010005bf010006bf010007bf010008bf010009bf01000abf01000bbf01000cbf01000dbf01000ebf01000fbf010010bf010011bf010012bf010013bf010014bf010015bf010016bf010017bf010018bf010019bf01001abf01001bbf01001cbf01001dbf01001ebf01001fbf010020bf010021bf010022bf010023bf010024bf010025bf010026bf010027bf010028bf010029bf01002abf01002bbf01002cbf01002dbf01002ebf01002fbf010030bf010031bf010032bf010033bf010034bf010035bf010036bf010037bf010038bf010039bf01003abf01003bbf01003cbf01003dbf01003ebf01003fbf010040bf010041bf010042bf010043bf010044bf010045bf010046bf010047bf010048bf010049bf01004abf01004bbf01004cbf01004dbf01004ebf01004fbf010050bf010051bf010052bf010053bf010054bf010055bf010056bf010057bf010058bf010059bf01005abf01005bbf01005cbf01005dbf01005ebf01005fbf010060bf010061bf010062bf010063bf010064bf010065bf010066bf010067bf010068bf010069bf01006abf01006bbf01006cbf01006dbf01006ebf01006fbf010070bf010071bf010072bf010073bf010074bf010075bf010076bf010077bf010078bf010079bf01007abf01007bbf01007cbf01007dbf01007ebf01007fbf010080bf010081bf010082bf010083bf010084bf010085bf010086bf010087bf010088bf010089bf01008abf01008bbf01008cbf01008dbf01008ebf01008fbf010090bf010091bf010092bf010093bf010094bf010095bf010096bf010097bf010098bf010099bf01009abf01009bbf01009cbf01009dbf01009ebf01009fbf0100a0bf0100a1bf0100a2bf0100a3bf0100a4bf0100a5bf0100a6bf0100a7bf0100a8bf0100a9bf0100aabf0100abbf0100acbf0100adbf0100aebf0100afbf0100b0bf0100b1bf0100b2bf0100b3bf0100b4bf0100b5bf0100b6bf0100b7bf0100b8bf0100b9bf0100babf0100bbbf0100bcbf0100bdbf0100bebf0100bfbf0100c0bf0100c1bf0100c2bf0100c3bf0100c4bf0100c5bf0100c6bf0100c7bf0100c8bf0100c9bf0100cabf0100cbbf0100ccbf0100cdbf0100cebf0100cfbf0100d0bf0100d1bf0100d2bf0100d3bf0100d4bf0100d5bf0100d6bf0100d7bf0100d8bf0100d9bf0100dabf0100dbbf0100dcbf0100ddbf0100debf0100dfbf0100e0bf0100e1bf0100e2bf0100e3bf0100e4bf0100e5bf0100e6bf0100e7bf0100e8bf0100e9bf0100eabf0100ebbf0100ecbf0100edbf0100eebf0100efbf0100f0bf0100f1bf0100f2bf0100f3bf0100f4bf0100f5bf0100f6bf0100f7bf0100f8bf0100f9bf0100fabf0100fbbf0100fcbf0100fdbf0100febf0100ffbf010000c0010001c0010002c0010003c0010004c0010005c0010006c0010007c0010008c0010009c001000ac001000bc001000cc001000dc001000ec001000fc0010010c0010011c0010012c0010013c0010014c0010015c0010016c0010017c0010018c0010019c001001ac001001bc001001cc001001dc001001ec001001fc0010020c0010021c0010022c0010023c0010024c0010025c0010026c0010027c0010028c0010029c001002ac001002bc001002cc001002dc001002ec001002fc0010030c0010031c0010032c0010033c0010034c0010035c0010036c0010037c0010038c0010039c001003ac001003bc001003cc001003dc001003ec001003fc0010040c0010041c0010042c0010043c0010044c0010045c0010046c0010047c0010048c0010049c001004ac001004bc001004cc001004dc001004ec001004fc0010050c0010051c0010052c0010053c0010054c0010055c0010056c0010057c0010058c0010059c001005ac001005bc001005cc001005dc001005ec001005fc0010060c0010061c0010062c0010063c0010064c0010065c0010066c0010067c0010068c0010069c001006ac001006bc001006cc001006dc001006ec001006fc0010070c0010071c0010072c0010073c0010074c0010075c0010076c0010077c0010078c0010079c001007ac001007bc001007cc001007dc001007ec001007fc0010080c0010081c0010082c0010083c0010084c0010085c0010086c0010087c0010088c0010089c001008ac001008bc001008cc001008dc001008ec001008fc0010090c0010091c0010092c0010093c0010094c0010095c0010096c0010097c0010098c0010099c001009ac001009bc001009cc001009dc001009ec001009fc00100a0c00100a1c00100a2c00100a3c00100a4c00100a5c00100a6c00100a7c00100a8c00100a9c00100aac00100abc00100acc00100adc00100aec00100afc00100b0c00100b1c00100b2c00100b3c00100b4c00100b5c00100b6c00100b7c00100b8c00100b9c00100bac00100bbc00100bcc00100bdc00100bec00100bfc00100c0c00100c1c00100c2c00100c3c00100c4c00100c5c00100c6c00100c7c00100c8c00100c9c00100cac00100cbc00100ccc00100cdc00100cec00100cfc00100d0c00100d1c00100d2c00100d3c00100d4c00100d5c00100d6c00100d7c00100d8c00100d9c00100dac00100dbc00100dcc00100ddc00100dec00100dfc00100e0c00100e1c00100e2c00100e3c00100e4c00100e5c00100e6c00100e7c00100e8c00100e9c00100eac00100ebc00100ecc00100edc00100eec00100efc00100f0c00100f1c00100f2c00100f3c00100f4c00100f5c00100f6c00100f7c00100f8c00100f9c00100fac00100fbc00100fcc00100fdc00100fec00100ffc0010000c1010001c1010002c1010003c1010004c1010005c1010006c1010007c1010008c1010009c101000ac101000bc101000cc101000dc101000ec101000fc1010010c1010011c1010012c1010013c1010014c1010015c1010016c1010017c1010018c1010019c101001ac101001bc101001cc101001dc101001ec101001fc1010020c1010021c1010022c1010023c1010024c1010025c1010026c1010027c1010028c1010029c101002ac101002bc101002cc101002dc101002ec101002fc1010030c1010031c1010032c1010033c1010034c1010035c1010036c1010037c1010038c1010039c101003ac101003bc101003cc101003dc101003ec101003fc1010040c1010041c1010042c1010043c1010044c1010045c1010046c1010047c1010048c1010049c101004ac101004bc101004cc101004dc101004ec101004fc1010050c1010051c1010052c1010053c1010054c1010055c1010056c1010057c1010058c1010059c101005ac101005bc101005cc101005dc101005ec101005fc1010060c1010061c1010062c1010063c1010064c1010065c1010066c1010067c1010068c1010069c101006ac101006bc101006cc101006dc101006ec101006fc1010070c1010071c1010072c1010073c1010074c1010075c1010076c1010077c1010078c1010079c101007ac101007bc101007cc101007dc101007ec101007fc1010080c1010081c1010082c1010083c1010084c1010085c1010086c1010087c1010088c1010089c101008ac101008bc101008cc101008dc101008ec101008fc1010090c1010091c1010092c1010093c1010094c1010095c1010096c1010097c1010098c1010099c101009ac101009bc101009cc101009dc101009ec101009fc10100a0c10100a1c10100a2c10100a3c10100a4c10100a5c10100a6c10100a7c10100a8c10100a9c10100aac10100abc10100acc10100adc10100aec10100afc10100b0c10100b1c10100b2c10100b3c10100b4c10100b5c10100b6c10100b7c10100b8c10100b9c10100bac10100bbc10100bcc10100bdc10100bec10100bfc10100c0c10100c1c10100c2c10100c3c10100c4c10100c5c10100c6c10100c7c10100c8c10100c9c10100cac10100cbc10100ccc10100cdc10100cec10100cfc10100d0c10100d1c10100d2c10100d3c10100d4c10100d5c10100d6c10100d7c10100d8c10100d9c10100dac10100dbc10100dcc10100ddc10100dec10100dfc10100e0c10100e1c10100e2c10100e3c10100e4c10100e5c10100e6c10100e7c10100e8c10100e9c10100eac10100ebc10100ecc10100edc10100eec10100efc10100f0c10100f1c10100f2c10100f3c10100f4c10100f5c10100f6c10100f7c10100f8c10100f9c10100fac10100fbc10100fcc10100fdc10100fec10100ffc1010000c2010001c2010002c2010003c2010004c2010005c2010006c2010007c2010008c2010009c201000ac201000bc201000cc201000dc201000ec201000fc2010010c2010011c2010012c2010013c2010014c2010015c2010016c2010017c2010018c2010019c201001ac201001bc201001cc201001dc201001ec201001fc2010020c2010021c2010022c2010023c2010024c2010025c2010026c2010027c2010028c2010029c201002ac201002bc201002cc201002dc201002ec201002fc2010030c2010031c2010032c2010033c2010034c2010035c2010036c2010037c2010038c2010039c201003ac201003bc201003cc201003dc201003ec201003fc2010040c2010041c2010042c2010043c2010044c2010045c2010046c2010047c2010048c2010049c201004ac201004bc201004cc201004dc201004ec201004fc2010050c2010051c2010052c2010053c2010054c2010055c2010056c2010057c2010058c2010059c201005ac201005bc201005cc201005dc201005ec201005fc2010060c2010061c2010062c2010063c2010064c2010065c2010066c2010067c2010068c2010069c201006ac201006bc201006cc201006dc201006ec201006fc2010070c2010071c2010072c2010073c2010074c2010075c2010076c2010077c2010078c2010079c201007ac201007bc201007cc201007dc201007ec201007fc2010080c2010081c2010082c2010083c2010084c2010085c2010086c2010087c2010088c2010089c201008ac201008bc201008cc201008dc201008ec201008fc2010090c2010091c2010092c2010093c2010094c2010095c2010096c2010097c2010098c2010099c201009ac201009bc201009cc201009dc201009ec201009fc20100a0c20100a1c20100a2c20100a3c20100a4c20100a5c20100a6c20100a7c20100a8c20100a9c20100aac20100abc20100acc20100adc20100aec20100afc20100b0c20100b1c20100b2c20100b3c20100b4c20100b5c20100b6c20100b7c20100b8c20100b9c20100bac20100bbc20100bcc20100bdc20100bec20100bfc20100c0c20100c1c20100c2c20100c3c20100c4c20100c5c20100c6c20100c7c20100c8c20100c9c20100cac20100cbc20100ccc20100cdc20100cec20100cfc20100d0c20100d1c20100d2c20100d3c20100d4c20100d5c20100d6c20100d7c20100d8c20100d9c20100dac20100dbc20100dcc20100ddc20100dec20100dfc20100e0c20100e1c20100e2c20100e3c20100e4c20100e5c20100e6c20100e7c20100e8c20100e9c20100eac20100ebc20100ecc20100edc20100eec20100efc20100f0c20100f1c20100f2c20100f3c20100f4c20100f5c20100f6c20100f7c20100f8c20100f9c20100fac20100fbc20100fcc20100fdc20100fec20100ffc2010000c3010001c3010002c3010003c3010004c3010005c3010006c3010007c3010008c3010009c301000ac301000bc301000cc301000dc301000ec301000fc3010010c3010011c3010012c3010013c3010014c3010015c3010016c3010017c3010018c3010019c301001ac301001bc301001cc301001dc301001ec301001fc3010020c3010021c3010022c3010023c3010024c3010025c3010026c3010027c3010028c3010029c301002ac301002bc301002cc301002dc301002ec301002fc3010030c3010031c3010032c3010033c3010034c3010035c3010036c3010037c3010038c3010039c301003ac301003bc301003cc301003dc301003ec301003fc3010040c3010041c3010042c3010043c3010044c3010045c3010046c3010047c3010048c3010049c301004ac301004bc301004cc301004dc301004ec301004fc3010050c3010051c3010052c3010053c3010054c3010055c3010056c3010057c3010058c3010059c301005ac301005bc301005cc301005dc301005ec301005fc3010060c3010061c3010062c3010063c3010064c3010065c3010066c3010067c3010068c3010069c301006ac301006bc301006cc301006dc301006ec301006fc3010070c3010071c3010072c3010073c3010074c3010075c3010076c3010077c3010078c3010079c301007ac301007bc301007cc301007dc301007ec301007fc3010080c3010081c3010082c3010083c3010084c3010085c3010086c3010087c3010088c3010089c301008ac301008bc301008cc301008dc301008ec301008fc3010090c3010091c3010092c3010093c3010094c3010095c3010096c3010097c3010098c3010099c301009ac301009bc301009cc301009dc301009ec301009fc30100a0c30100a1c30100a2c30100a3c30100a4c30100a5c30100a6c30100a7c30100a8c30100a9c30100aac30100abc30100acc30100adc30100aec30100afc30100b0c30100b1c30100b2c30100b3c30100b4c30100b5c30100b6c30100b7c30100b8c30100b9c30100bac30100bbc30100bcc30100bdc30100bec30100bfc30100c0c30100c1c30100c2c30100c3c30100c4c30100c5c30100c6c30100c7c30100c8c30100c9c30100cac30100cbc30100ccc30100cdc30100cec30100cfc30100d0c30100d1c30100d2c30100d3c30100d4c30100d5c30100d6c30100d7c30100d8c30100d9c30100dac30100dbc30100dcc30100ddc30100dec30100dfc30100e0c30100e1c30100e2c30100e3c30100e4c30100e5c30100e6c30100e7c30100e8c30100e9c30100eac30100ebc30100ecc30100edc30100eec30100efc30100f0c30100f1c30100f2c30100f3c30100f4c30100f5c30100f6c30100f7c30100f8c30100f9c30100fac30100fbc30100fcc30100fdc30100fec30100ffc3010000c4010001c4010002c4010003c4010004c4010005c4010006c4010007c4010008c4010009c401000ac401000bc401000cc401000dc401000ec401000fc4010010c4010011c4010012c4010013c4010014c4010015c4010016c4010017c4010018c4010019c401001ac401001bc401001cc401001dc401001ec401001fc4010020c4010021c4010022c4010023c4010024c4010025c4010026c4010027c4010028c4010029c401002ac401002bc401002cc401002dc401002ec401002fc4010030c4010031c4010032c4010033c4010034c4010035c4010036c4010037c4010038c4010039c401003ac401003bc401003cc401003dc401003ec401003fc4010040c4010041c4010042c4010043c4010044c4010045c4010046c4010047c4010048c4010049c401004ac401004bc401004cc401004dc401004ec401004fc4010050c4010051c4010052c4010053c4010054c4010055c4010056c4010057c4010058c4010059c401005ac401005bc401005cc401005dc401005ec401005fc4010060c4010061c4010062c4010063c4010064c4010065c4010066c4010067c4010068c4010069c401006ac401006bc401006cc401006dc401006ec401006fc4010070c4010071c4010072c4010073c4010074c4010075c4010076c4010077c4010078c4010079c401007ac401007bc401007cc401007dc401007ec401007fc4010080c4010081c4010082c4010083c4010084c4010085c4010086c4010087c4010088c4010089c401008ac401008bc401008cc401008dc401008ec401008fc4010090c4010091c4010092c4010093c4010094c4010095c4010096c4010097c4010098c4010099c401009ac401009bc401009cc401009dc401009ec401009fc40100a0c40100a1c40100a2c40100a3c40100a4c40100a5c40100a6c40100a7c40100a8c40100a9c40100aac40100abc40100acc40100adc40100aec40100afc40100b0c40100b1c40100b2c40100b3c40100b4c40100b5c40100b6c40100b7c40100b8c40100b9c40100bac40100bbc40100bcc40100bdc40100bec40100bfc40100c0c40100c1c40100c2c40100c3c40100c4c40100c5c40100c6c40100c7c40100c8c40100c9c40100cac40100cbc40100ccc40100cdc40100cec40100cfc40100d0c40100d1c40100d2c40100d3c40100d4c40100d5c40100d6c40100d7c40100d8c40100d9c40100dac40100dbc40100dcc40100ddc40100dec40100dfc40100e0c40100e1c40100e2c40100e3c40100e4c40100e5c40100e6c40100e7c40100e8c40100e9c40100eac40100ebc40100ecc40100edc40100eec40100efc40100f0c40100f1c40100f2c40100f3c40100f4c40100f5c40100f6c40100f7c40100f8c40100f9c40100fac40100fbc40100fcc40100fdc40100fec40100ffc4010000c5010001c5010002c5010003c5010004c5010005c5010006c5010007c5010008c5010009c501000ac501000bc501000cc501000dc501000ec501000fc5010010c5010011c5010012c5010013c5010014c5010015c5010016c5010017c5010018c5010019c501001ac501001bc501001cc501001dc501001ec501001fc5010020c5010021c5010022c5010023c5010024c5010025c5010026c5010027c5010028c5010029c501002ac501002bc501002cc501002dc501002ec501002fc5010030c5010031c5010032c5010033c5010034c5010035c5010036c5010037c5010038c5010039c501003ac501003bc501003cc501003dc501003ec501003fc5010040c5010041c5010042c5010043c5010044c5010045c5010046c5010047c5010048c5010049c501004ac501004bc501004cc501004dc501004ec501004fc5010050c5010051c5010052c5010053c5010054c5010055c5010056c5010057c5010058c5010059c501005ac501005bc501005cc501005dc501005ec501005fc5010060c5010061c5010062c5010063c5010064c5010065c5010066c5010067c5010068c5010069c501006ac501006bc501006cc501006dc501006ec501006fc5010070c5010071c5010072c5010073c5010074c5010075c5010076c5010077c5010078c5010079c501007ac501007bc501007cc501007dc501007ec501007fc5010080c5010081c5010082c5010083c5010084c5010085c5010086c5010087c5010088c5010089c501008ac501008bc501008cc501008dc501008ec501008fc5010090c5010091c5010092c5010093c5010094c5010095c5010096c5010097c5010098c5010099c501009ac501009bc501009cc501009dc501009ec501009fc50100a0c50100a1c50100a2c50100a3c50100a4c50100a5c50100a6c50100a7c50100a8c50100a9c50100aac50100abc50100acc50100adc50100aec50100afc50100b0c50100b1c50100b2c50100b3c50100b4c50100b5c50100b6c50100b7c50100b8c50100b9c50100bac50100bbc50100bcc50100bdc50100bec50100bfc50100c0c50100c1c50100c2c50100c3c50100c4c50100c5c50100c6c50100c7c50100c8c50100c9c50100cac50100cbc50100ccc50100cdc50100cec50100cfc50100d0c50100d1c50100d2c50100d3c50100d4c50100d5c50100d6c50100d7c50100d8c50100d9c50100dac50100dbc50100dcc50100ddc50100dec50100dfc50100e0c50100e1c50100e2c50100e3c50100e4c50100e5c50100e6c50100e7c50100e8c50100e9c50100eac50100ebc50100ecc50100edc50100eec50100efc50100f0c50100f1c50100f2c50100f3c50100f4c50100f5c50100f6c50100f7c50100f8c50100f9c50100fac50100fbc50100fcc50100fdc50100fec50100ffc5010000c6010001c6010002c6010003c6010004c6010005c6010006c6010007c6010008c6010009c601000ac601000bc601000cc601000dc601000ec601000fc6010010c6010011c6010012c6010013c6010014c6010015c6010016c6010017c6010018c6010019c601001ac601001bc601001cc601001dc601001ec601001fc6010020c6010021c6010022c6010023c6010024c6010025c6010026c6010027c6010028c6010029c601002ac601002bc601002cc601002dc601002ec601002fc6010030c6010031c6010032c6010033c6010034c6010035c6010036c6010037c6010038c6010039c601003ac601003bc601003cc601003dc601003ec601003fc6010040c6010041c6010042c6010043c6010044c6010045c6010046c6010047c6010048c6010049c601004ac601004bc601004cc601004dc601004ec601004fc6010050c6010051c6010052c6010053c6010054c6010055c6010056c6010057c6010058c6010059c601005ac601005bc601005cc601005dc601005ec601005fc6010060c6010061c6010062c6010063c6010064c6010065c6010066c6010067c6010068c6010069c601006ac601006bc601006cc601006dc601006ec601006fc6010070c6010071c6010072c6010073c6010074c6010075c6010076c6010077c6010078c6010079c601007ac601007bc601007cc601007dc601007ec601007fc6010080c6010081c6010082c6010083c6010084c6010085c6010086c6010087c6010088c6010089c601008ac601008bc601008cc601008dc601008ec601008fc6010090c6010091c6010092c6010093c6010094c6010095c6010096c6010097c6010098c6010099c601009ac601009bc601009cc601009dc601009ec601009fc60100a0c60100a1c60100a2c60100a3c60100a4c60100a5c60100a6c60100a7c60100a8c60100a9c60100aac60100abc60100acc60100adc60100aec60100afc60100b0c60100b1c60100b2c60100b3c60100b4c60100b5c60100b6c60100b7c60100b8c60100b9c60100bac60100bbc60100bcc60100bdc60100bec60100bfc60100c0c60100c1c60100c2c60100c3c60100c4c60100c5c60100c6c60100c7c60100c8c60100c9c60100cac60100cbc60100ccc60100cdc60100cec60100cfc60100d0c60100d1c60100d2c60100d3c60100d4c60100d5c60100d6c60100d7c60100d8c60100d9c60100dac60100dbc60100dcc60100ddc60100dec60100dfc60100e0c60100e1c60100e2c60100e3c60100e4c60100e5c60100e6c60100e7c60100e8c60100e9c60100eac60100ebc60100ecc60100edc60100eec60100efc60100f0c60100f1c60100f2c60100f3c60100f4c60100f5c60100f6c60100f7c60100f8c60100f9c60100fac60100fbc60100fcc60100fdc60100fec60100ffc6010000c7010001c7010002c7010003c7010004c7010005c7010006c7010007c7010008c7010009c701000ac701000bc701000cc701000dc701000ec701000fc7010010c7010011c7010012c7010013c7010014c7010015c7010016c7010017c7010018c7010019c701001ac701001bc701001cc701001dc701001ec701001fc7010020c7010021c7010022c7010023c7010024c7010025c7010026c7010027c7010028c7010029c701002ac701002bc701002cc701002dc701002ec701002fc7010030c7010031c7010032c7010033c7010034c7010035c7010036c7010037c7010038c7010039c701003ac701003bc701003cc701003dc701003ec701003fc7010040c7010041c7010042c7010043c7010044c7010045c7010046c7010047c7010048c7010049c701004ac701004bc701004cc701004dc701004ec701004fc7010050c7010051c7010052c7010053c7010054c7010055c7010056c7010057c7010058c7010059c701005ac701005bc701005cc701005dc701005ec701005fc7010060c7010061c7010062c7010063c7010064c7010065c7010066c7010067c7010068c7010069c701006ac701006bc701006cc701006dc701006ec701006fc7010070c7010071c7010072c7010073c7010074c7010075c7010076c7010077c7010078c7010079c701007ac701007bc701007cc701007dc701007ec701007fc7010080c7010081c7010082c7010083c7010084c7010085c7010086c7010087c7010088c7010089c701008ac701008bc701008cc701008dc701008ec701008fc7010090c7010091c7010092c7010093c7010094c7010095c7010096c7010097c7010098c7010099c701009ac701009bc701009cc701009dc701009ec701009fc70100a0c70100a1c70100a2c70100a3c70100a4c70100a5c70100a6c70100a7c70100a8c70100a9c70100aac70100abc70100acc70100adc70100aec70100afc70100b0c70100b1c70100b2c70100b3c70100b4c70100b5c70100b6c70100b7c70100b8c70100b9c70100bac70100bbc70100bcc70100bdc70100bec70100bfc70100c0c70100c1c70100c2c70100c3c70100c4c70100c5c70100c6c70100c7c70100c8c70100c9c70100cac70100cbc70100ccc70100cdc70100cec70100cfc70100d0c70100d1c70100d2c70100d3c70100d4c70100d5c70100d6c70100d7c70100d8c70100d9c70100dac70100dbc70100dcc70100ddc70100dec70100dfc70100e0c70100e1c70100e2c70100e3c70100e4c70100e5c70100e6c70100e7c70100e8c70100e9c70100eac70100ebc70100ecc70100edc70100eec70100efc70100f0c70100f1c70100f2c70100f3c70100f4c70100f5c70100f6c70100f7c70100f8c70100f9c70100fac70100fbc70100fcc70100fdc70100fec70100ffc7010000c8010001c8010002c8010003c8010004c8010005c8010006c8010007c8010008c8010009c801000ac801000bc801000cc801000dc801000ec801000fc8010010c8010011c8010012c8010013c8010014c8010015c8010016c8010017c8010018c8010019c801001ac801001bc801001cc801001dc801001ec801001fc8010020c8010021c8010022c8010023c8010024c8010025c8010026c8010027c8010028c8010029c801002ac801002bc801002cc801002dc801002ec801002fc8010030c8010031c8010032c8010033c8010034c8010035c8010036c8010037c8010038c8010039c801003ac801003bc801003cc801003dc801003ec801003fc8010040c8010041c8010042c8010043c8010044c8010045c8010046c8010047c8010048c8010049c801004ac801004bc801004cc801004dc801004ec801004fc8010050c8010051c8010052c8010053c8010054c8010055c8010056c8010057c8010058c8010059c801005ac801005bc801005cc801005dc801005ec801005fc8010060c8010061c8010062c8010063c8010064c8010065c8010066c8010067c8010068c8010069c801006ac801006bc801006cc801006dc801006ec801006fc8010070c8010071c8010072c8010073c8010074c8010075c8010076c8010077c8010078c8010079c801007ac801007bc801007cc801007dc801007ec801007fc8010080c8010081c8010082c8010083c8010084c8010085c8010086c8010087c8010088c8010089c801008ac801008bc801008cc801008dc801008ec801008fc8010090c8010091c8010092c8010093c8010094c8010095c8010096c8010097c8010098c8010099c801009ac801009bc801009cc801009dc801009ec801009fc80100a0c80100a1c80100a2c80100a3c80100a4c80100a5c80100a6c80100a7c80100a8c80100a9c80100aac80100abc80100acc80100adc80100aec80100afc80100b0c80100b1c80100b2c80100b3c80100b4c80100b5c80100b6c80100b7c80100b8c80100b9c80100bac80100bbc80100bcc80100bdc80100bec80100bfc80100c0c80100c1c80100c2c80100c3c80100c4c80100c5c80100c6c80100c7c80100c8c80100c9c80100cac80100cbc80100ccc80100cdc80100cec80100cfc80100d0c80100d1c80100d2c80100d3c80100d4c80100d5c80100d6c80100d7c80100d8c80100d9c80100dac80100dbc80100dcc80100ddc80100dec80100dfc80100e0c80100e1c80100e2c80100e3c80100e4c80100e5c80100e6c80100e7c80100e8c80100e9c80100eac80100ebc80100ecc80100edc80100eec80100efc80100f0c80100f1c80100f2c80100f3c80100f4c80100f5c80100f6c80100f7c80100f8c80100f9c80100fac80100fbc80100fcc80100fdc80100fec80100ffc8010000c9010001c9010002c9010003c9010004c9010005c9010006c9010007c9010008c9010009c901000ac901000bc901000cc901000dc901000ec901000fc9010010c9010011c9010012c9010013c9010014c9010015c9010016c9010017c9010018c9010019c901001ac901001bc901001cc901001dc901001ec901001fc9010020c9010021c9010022c9010023c9010024c9010025c9010026c9010027c9010028c9010029c901002ac901002bc901002cc901002dc901002ec901002fc9010030c9010031c9010032c9010033c9010034c9010035c9010036c9010037c9010038c9010039c901003ac901003bc901003cc901003dc901003ec901003fc9010040c9010041c9010042c9010043c9010044c9010045c9010046c9010047c9010048c9010049c901004ac901004bc901004cc901004dc901004ec901004fc9010050c9010051c9010052c9010053c9010054c9010055c9010056c9010057c9010058c9010059c901005ac901005bc901005cc901005dc901005ec901005fc9010060c9010061c9010062c9010063c9010064c9010065c9010066c9010067c9010068c9010069c901006ac901006bc901006cc901006dc901006ec901006fc9010070c9010071c9010072c9010073c9010074c9010075c9010076c9010077c9010078c9010079c901007ac901007bc901007cc901007dc901007ec901007fc9010080c9010081c9010082c9010083c9010084c9010085c9010086c9010087c9010088c9010089c901008ac901008bc901008cc901008dc901008ec901008fc9010090c9010091c9010092c9010093c9010094c9010095c9010096c9010097c9010098c9010099c901009ac901009bc901009cc901009dc901009ec901009fc90100a0c90100a1c90100a2c90100a3c90100a4c90100a5c90100a6c90100a7c90100a8c90100a9c90100aac90100abc90100acc90100adc90100aec90100afc90100b0c90100b1c90100b2c90100b3c90100b4c90100b5c90100b6c90100b7c90100b8c90100b9c90100bac90100bbc90100bcc90100bdc90100bec90100bfc90100c0c90100c1c90100c2c90100c3c90100c4c90100c5c90100c6c90100c7c90100c8c90100c9c90100cac90100cbc90100ccc90100cdc90100cec90100cfc90100d0c90100d1c90100d2c90100d3c90100d4c90100d5c90100d6c90100d7c90100d8c90100d9c90100dac90100dbc90100dcc90100ddc90100dec90100dfc90100e0c90100e1c90100e2c90100e3c90100e4c90100e5c90100e6c90100e7c90100e8c90100e9c90100eac90100ebc90100ecc90100edc90100eec90100efc90100f0c90100f1c90100f2c90100f3c90100f4c90100f5c90100f6c90100f7c90100f8c90100f9c90100fac90100fbc90100fcc90100fdc90100fec90100ffc9010000ca010001ca010002ca010003ca010004ca010005ca010006ca010007ca010008ca010009ca01000aca01000bca01000cca01000dca01000eca01000fca010010ca010011ca010012ca010013ca010014ca010015ca010016ca010017ca010018ca010019ca01001aca01001bca01001cca01001dca01001eca01001fca010020ca010021ca010022ca010023ca010024ca010025ca010026ca010027ca010028ca010029ca01002aca01002bca01002cca01002dca01002eca01002fca010030ca010031ca010032ca010033ca010034ca010035ca010036ca010037ca010038ca010039ca01003aca01003bca01003cca01003dca01003eca01003fca010040ca010041ca010042ca010043ca010044ca010045ca010046ca010047ca010048ca010049ca01004aca01004bca01004cca01004dca01004eca01004fca010050ca010051ca010052ca010053ca010054ca010055ca010056ca010057ca010058ca010059ca01005aca01005bca01005cca01005dca01005eca01005fca010060ca010061ca010062ca010063ca010064ca010065ca010066ca010067ca010068ca010069ca01006aca01006bca01006cca01006dca01006eca01006fca010070ca010071ca010072ca010073ca010074ca010075ca010076ca010077ca010078ca010079ca01007aca01007bca01007cca01007dca01007eca01007fca010080ca010081ca010082ca010083ca010084ca010085ca010086ca010087ca010088ca010089ca01008aca01008bca01008cca01008dca01008eca01008fca010090ca010091ca010092ca010093ca010094ca010095ca010096ca010097ca010098ca010099ca01009aca01009bca01009cca01009dca01009eca01009fca0100a0ca0100a1ca0100a2ca0100a3ca0100a4ca0100a5ca0100a6ca0100a7ca0100a8ca0100a9ca0100aaca0100abca0100acca0100adca0100aeca0100afca0100b0ca0100b1ca0100b2ca0100b3ca0100b4ca0100b5ca0100b6ca0100b7ca0100b8ca0100b9ca0100baca0100bbca0100bcca0100bdca0100beca0100bfca0100c0ca0100c1ca0100c2ca0100c3ca0100c4ca0100c5ca0100c6ca0100c7ca0100c8ca0100c9ca0100caca0100cbca0100ccca0100cdca0100ceca0100cfca0100d0ca0100d1ca0100d2ca0100d3ca0100d4ca0100d5ca0100d6ca0100d7ca0100d8ca0100d9ca0100daca0100dbca0100dcca0100ddca0100deca0100dfca0100e0ca0100e1ca0100e2ca0100e3ca0100e4ca0100e5ca0100e6ca0100e7ca0100e8ca0100e9ca0100eaca0100ebca0100ecca0100edca0100eeca0100efca0100f0ca0100f1ca0100f2ca0100f3ca0100f4ca0100f5ca0100f6ca0100f7ca0100f8ca0100f9ca0100faca0100fbca0100fcca0100fdca0100feca0100ffca010000cb010001cb010002cb010003cb010004cb010005cb010006cb010007cb010008cb010009cb01000acb01000bcb01000ccb01000dcb01000ecb01000fcb010010cb010011cb010012cb010013cb010014cb010015cb010016cb010017cb010018cb010019cb01001acb01001bcb01001ccb01001dcb01001ecb01001fcb010020cb010021cb010022cb010023cb010024cb010025cb010026cb010027cb010028cb010029cb01002acb01002bcb01002ccb01002dcb01002ecb01002fcb010030cb010031cb010032cb010033cb010034cb010035cb010036cb010037cb010038cb010039cb01003acb01003bcb01003ccb01003dcb01003ecb01003fcb010040cb010041cb010042cb010043cb010044cb010045cb010046cb010047cb010048cb010049cb01004acb01004bcb01004ccb01004dcb01004ecb01004fcb010050cb010051cb010052cb010053cb010054cb010055cb010056cb010057cb010058cb010059cb01005acb01005bcb01005ccb01005dcb01005ecb01005fcb010060cb010061cb010062cb010063cb010064cb010065cb010066cb010067cb010068cb010069cb01006acb01006bcb01006ccb01006dcb01006ecb01006fcb010070cb010071cb010072cb010073cb010074cb010075cb010076cb010077cb010078cb010079cb01007acb01007bcb01007ccb01007dcb01007ecb01007fcb010080cb010081cb010082cb010083cb010084cb010085cb010086cb010087cb010088cb010089cb01008acb01008bcb01008ccb01008dcb01008ecb01008fcb010090cb010091cb010092cb010093cb010094cb010095cb010096cb010097cb010098cb010099cb01009acb01009bcb01009ccb01009dcb01009ecb01009fcb0100a0cb0100a1cb0100a2cb0100a3cb0100a4cb0100a5cb0100a6cb0100a7cb0100a8cb0100a9cb0100aacb0100abcb0100accb0100adcb0100aecb0100afcb0100b0cb0100b1cb0100b2cb0100b3cb0100b4cb0100b5cb0100b6cb0100b7cb0100b8cb0100b9cb0100bacb0100bbcb0100bccb0100bdcb0100becb0100bfcb0100c0cb0100c1cb0100c2cb0100c3cb0100c4cb0100c5cb0100c6cb0100c7cb0100c8cb0100c9cb0100cacb0100cbcb0100cccb0100cdcb0100cecb0100cfcb0100d0cb0100d1cb0100d2cb0100d3cb0100d4cb0100d5cb0100d6cb0100d7cb0100d8cb0100d9cb0100dacb0100dbcb0100dccb0100ddcb0100decb0100dfcb0100e0cb0100e1cb0100e2cb0100e3cb0100e4cb0100e5cb0100e6cb0100e7cb0100e8cb0100e9cb0100eacb0100ebcb0100eccb0100edcb0100eecb0100efcb0100f0cb0100f1cb0100f2cb0100f3cb0100f4cb0100f5cb0100f6cb0100f7cb0100f8cb0100f9cb0100facb0100fbcb0100fccb0100fdcb0100fecb0100ffcb010000cc010001cc010002cc010003cc010004cc010005cc010006cc010007cc010008cc010009cc01000acc01000bcc01000ccc01000dcc01000ecc01000fcc010010cc010011cc010012cc010013cc010014cc010015cc010016cc010017cc010018cc010019cc01001acc01001bcc01001ccc01001dcc01001ecc01001fcc010020cc010021cc010022cc010023cc010024cc010025cc010026cc010027cc010028cc010029cc01002acc01002bcc01002ccc01002dcc01002ecc01002fcc010030cc010031cc010032cc010033cc010034cc010035cc010036cc010037cc010038cc010039cc01003acc01003bcc01003ccc01003dcc01003ecc01003fcc010040cc010041cc010042cc010043cc010044cc010045cc010046cc010047cc010048cc010049cc01004acc01004bcc01004ccc01004dcc01004ecc01004fcc010050cc010051cc010052cc010053cc010054cc010055cc010056cc010057cc010058cc010059cc01005acc01005bcc01005ccc01005dcc01005ecc01005fcc010060cc010061cc010062cc010063cc010064cc010065cc010066cc010067cc010068cc010069cc01006acc01006bcc01006ccc01006dcc01006ecc01006fcc010070cc010071cc010072cc010073cc010074cc010075cc010076cc010077cc010078cc010079cc01007acc01007bcc01007ccc01007dcc01007ecc01007fcc010080cc010081cc010082cc010083cc010084cc010085cc010086cc010087cc010088cc010089cc01008acc01008bcc01008ccc01008dcc01008ecc01008fcc010090cc010091cc010092cc010093cc010094cc010095cc010096cc010097cc010098cc010099cc01009acc01009bcc01009ccc01009dcc01009ecc01009fcc0100a0cc0100a1cc0100a2cc0100a3cc0100a4cc0100a5cc0100a6cc0100a7cc0100a8cc0100a9cc0100aacc0100abcc0100accc0100adcc0100aecc0100afcc0100b0cc0100b1cc0100b2cc0100b3cc0100b4cc0100b5cc0100b6cc0100b7cc0100b8cc0100b9cc0100bacc0100bbcc0100bccc0100bdcc0100becc0100bfcc0100c0cc0100c1cc0100c2cc0100c3cc0100c4cc0100c5cc0100c6cc0100c7cc0100c8cc0100c9cc0100cacc0100cbcc0100cccc0100cdcc0100cecc0100cfcc0100d0cc0100d1cc0100d2cc0100d3cc0100d4cc0100d5cc0100d6cc0100d7cc0100d8cc0100d9cc0100dacc0100dbcc0100dccc0100ddcc0100decc0100dfcc0100e0cc0100e1cc0100e2cc0100e3cc0100e4cc0100e5cc0100e6cc0100e7cc0100e8cc0100e9cc0100eacc0100ebcc0100eccc0100edcc0100eecc0100efcc0100f0cc0100f1cc0100f2cc0100f3cc0100f4cc0100f5cc0100f6cc0100f7cc0100f8cc0100f9cc0100facc0100fbcc0100fccc0100fdcc0100fecc0100ffcc010000cd010001cd010002cd010003cd010004cd010005cd010006cd010007cd010008cd010009cd01000acd01000bcd01000ccd01000dcd01000ecd01000fcd010010cd010011cd010012cd010013cd010014cd010015cd010016cd010017cd010018cd010019cd01001acd01001bcd01001ccd01001dcd01001ecd01001fcd010020cd010021cd010022cd010023cd010024cd010025cd010026cd010027cd010028cd010029cd01002acd01002bcd01002ccd01002dcd01002ecd01002fcd010030cd010031cd010032cd010033cd010034cd010035cd010036cd010037cd010038cd010039cd01003acd01003bcd01003ccd01003dcd01003ecd01003fcd010040cd010041cd010042cd010043cd010044cd010045cd010046cd010047cd010048cd010049cd01004acd01004bcd01004ccd01004dcd01004ecd01004fcd010050cd010051cd010052cd010053cd010054cd010055cd010056cd010057cd010058cd010059cd01005acd01005bcd01005ccd01005dcd01005ecd01005fcd010060cd010061cd010062cd010063cd010064cd010065cd010066cd010067cd010068cd010069cd01006acd01006bcd01006ccd01006dcd01006ecd01006fcd010070cd010071cd010072cd010073cd010074cd010075cd010076cd010077cd010078cd010079cd01007acd01007bcd01007ccd01007dcd01007ecd01007fcd010080cd010081cd010082cd010083cd010084cd010085cd010086cd010087cd010088cd010089cd01008acd01008bcd01008ccd01008dcd01008ecd01008fcd010090cd010091cd010092cd010093cd010094cd010095cd010096cd010097cd010098cd010099cd01009acd01009bcd01009ccd01009dcd01009ecd01009fcd0100a0cd0100a1cd0100a2cd0100a3cd0100a4cd0100a5cd0100a6cd0100a7cd0100a8cd0100a9cd0100aacd0100abcd0100accd0100adcd0100aecd0100afcd0100b0cd0100b1cd0100b2cd0100b3cd0100b4cd0100b5cd0100b6cd0100b7cd0100b8cd0100b9cd0100bacd0100bbcd0100bccd0100bdcd0100becd0100bfcd0100c0cd0100c1cd0100c2cd0100c3cd0100c4cd0100c5cd0100c6cd0100c7cd0100c8cd0100c9cd0100cacd0100cbcd0100cccd0100cdcd0100cecd0100cfcd0100d0cd0100d1cd0100d2cd0100d3cd0100d4cd0100d5cd0100d6cd0100d7cd0100d8cd0100d9cd0100dacd0100dbcd0100dccd0100ddcd0100decd0100dfcd0100e0cd0100e1cd0100e2cd0100e3cd0100e4cd0100e5cd0100e6cd0100e7cd0100e8cd0100e9cd0100eacd0100ebcd0100eccd0100edcd0100eecd0100efcd0100f0cd0100f1cd0100f2cd0100f3cd0100f4cd0100f5cd0100f6cd0100f7cd0100f8cd0100f9cd0100facd0100fbcd0100fccd0100fdcd0100fecd0100ffcd010000ce010001ce010002ce010003ce010004ce010005ce010006ce010007ce010008ce010009ce01000ace01000bce01000cce01000dce01000ece01000fce010010ce010011ce010012ce010013ce010014ce010015ce010016ce010017ce010018ce010019ce01001ace01001bce01001cce01001dce01001ece01001fce010020ce010021ce010022ce010023ce010024ce010025ce010026ce010027ce010028ce010029ce01002ace01002bce01002cce01002dce01002ece01002fce010030ce010031ce010032ce010033ce010034ce010035ce010036ce010037ce010038ce010039ce01003ace01003bce01003cce01003dce01003ece01003fce010040ce010041ce010042ce010043ce010044ce010045ce010046ce010047ce010048ce010049ce01004ace01004bce01004cce01004dce01004ece01004fce010050ce010051ce010052ce010053ce010054ce010055ce010056ce010057ce010058ce010059ce01005ace01005bce01005cce01005dce01005ece01005fce010060ce010061ce010062ce010063ce010064ce010065ce010066ce010067ce010068ce010069ce01006ace01006bce01006cce01006dce01006ece01006fce010070ce010071ce010072ce010073ce010074ce010075ce010076ce010077ce010078ce010079ce01007ace01007bce01007cce01007dce01007ece01007fce010080ce010081ce010082ce010083ce010084ce010085ce010086ce010087ce010088ce010089ce01008ace01008bce01008cce01008dce01008ece01008fce010090ce010091ce010092ce010093ce010094ce010095ce010096ce010097ce010098ce010099ce01009ace01009bce01009cce01009dce01009ece01009fce0100a0ce0100a1ce0100a2ce0100a3ce0100a4ce0100a5ce0100a6ce0100a7ce0100a8ce0100a9ce0100aace0100abce0100acce0100adce0100aece0100afce0100b0ce0100b1ce0100b2ce0100b3ce0100b4ce0100b5ce0100b6ce0100b7ce0100b8ce0100b9ce0100bace0100bbce0100bcce0100bdce0100bece0100bfce0100c0ce0100c1ce0100c2ce0100c3ce0100c4ce0100c5ce0100c6ce0100c7ce0100c8ce0100c9ce0100cace0100cbce0100ccce0100cdce0100cece0100cfce0100d0ce0100d1ce0100d2ce0100d3ce0100d4ce0100d5ce0100d6ce0100d7ce0100d8ce0100d9ce0100dace0100dbce0100dcce0100ddce0100dece0100dfce0100e0ce0100e1ce0100e2ce0100e3ce0100e4ce0100e5ce0100e6ce0100e7ce0100e8ce0100e9ce0100eace0100ebce0100ecce0100edce0100eece0100efce0100f0ce0100f1ce0100f2ce0100f3ce0100f4ce0100f5ce0100f6ce0100f7ce0100f8ce0100f9ce0100face0100fbce0100fcce0100fdce0100fece0100ffce010000cf010001cf010002cf010003cf010004cf010005cf010006cf010007cf010008cf010009cf01000acf01000bcf01000ccf01000dcf01000ecf01000fcf010010cf010011cf010012cf010013cf010014cf010015cf010016cf010017cf010018cf010019cf01001acf01001bcf01001ccf01001dcf01001ecf01001fcf010020cf010021cf010022cf010023cf010024cf010025cf010026cf010027cf010028cf010029cf01002acf01002bcf01002ccf01002dcf01002ecf01002fcf010030cf010031cf010032cf010033cf010034cf010035cf010036cf010037cf010038cf010039cf01003acf01003bcf01003ccf01003dcf01003ecf01003fcf010040cf010041cf010042cf010043cf010044cf010045cf010046cf010047cf010048cf010049cf01004acf01004bcf01004ccf01004dcf01004ecf01004fcf010050cf010051cf010052cf010053cf010054cf010055cf010056cf010057cf010058cf010059cf01005acf01005bcf01005ccf01005dcf01005ecf01005fcf010060cf010061cf010062cf010063cf010064cf010065cf010066cf010067cf010068cf010069cf01006acf01006bcf01006ccf01006dcf01006ecf01006fcf010070cf010071cf010072cf010073cf010074cf010075cf010076cf010077cf010078cf010079cf01007acf01007bcf01007ccf01007dcf01007ecf01007fcf010080cf010081cf010082cf010083cf010084cf010085cf010086cf010087cf010088cf010089cf01008acf01008bcf01008ccf01008dcf01008ecf01008fcf010090cf010091cf010092cf010093cf010094cf010095cf010096cf010097cf010098cf010099cf01009acf01009bcf01009ccf01009dcf01009ecf01009fcf0100a0cf0100a1cf0100a2cf0100a3cf0100a4cf0100a5cf0100a6cf0100a7cf0100a8cf0100a9cf0100aacf0100abcf0100accf0100adcf0100aecf0100afcf0100b0cf0100b1cf0100 + assetHash: + serializedVersion: 2 + Hash: 89dc08ce3b7bdd19d72491ae74ebe55f + fileUnit: 0 diff --git a/Assets/ResourcesData/Etc/Etc Mesh.meta b/Assets/ResourcesData/Etc/Etc Mesh.meta new file mode 100644 index 00000000..e86e3c3e --- /dev/null +++ b/Assets/ResourcesData/Etc/Etc Mesh.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5969188dc12b5904b934ff5b0c208cd7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ResourcesData/Etc/Etc Mesh/Billboard Mesh.glb b/Assets/ResourcesData/Etc/Etc Mesh/Billboard Mesh.glb new file mode 100644 index 00000000..4b93ba39 --- /dev/null +++ b/Assets/ResourcesData/Etc/Etc Mesh/Billboard Mesh.glb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe865f1225228d80c8e1e240bccd8748173340271f24400c19a144876a86a8d7 +size 1428 diff --git a/Assets/ResourcesData/Etc/Etc Mesh/Billboard Mesh.glb.meta b/Assets/ResourcesData/Etc/Etc Mesh/Billboard Mesh.glb.meta new file mode 100644 index 00000000..ab6b20ed --- /dev/null +++ b/Assets/ResourcesData/Etc/Etc Mesh/Billboard Mesh.glb.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b9612f164569ac141a07cc6ea20e50e6 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: cc45016b844e7624dae3aec10fb443ea, type: 3} + reverseAxis: 0 + renderPipeline: 0 diff --git a/Assets/Scripts/Editor/MaterialObjectSelector.cs b/Assets/Scripts/Editor/MaterialObjectSelector.cs new file mode 100644 index 00000000..c987242d --- /dev/null +++ b/Assets/Scripts/Editor/MaterialObjectSelector.cs @@ -0,0 +1,87 @@ +using UnityEngine; +using UnityEditor; +using System.Collections.Generic; +using System.Linq; + +public class MaterialObjectSelector : EditorWindow +{ + [MenuItem("Tools/Select Objects Using Material")] + public static void ShowWindow() + { + GetWindow("Material Object Selector"); + } + + void OnGUI() + { + GUILayout.Label("Material Object Selector", EditorStyles.boldLabel); + GUILayout.Space(10); + + GUILayout.Label("선택한 머티리얼을 사용하는 모든 오브젝트를 선택합니다."); + GUILayout.Space(5); + + if (GUILayout.Button("Select Objects Using Selected Material", GUILayout.Height(30))) + { + SelectObjectsUsingSelectedMaterial(); + } + } + + void SelectObjectsUsingSelectedMaterial() + { + Object[] selectedObjects = Selection.objects; + + if (selectedObjects == null || selectedObjects.Length == 0) + { + EditorUtility.DisplayDialog("Error", "머티리얼을 선택해주세요.", "OK"); + return; + } + + List selectedMaterials = new List(); + + foreach (Object obj in selectedObjects) + { + if (obj is Material material) + { + selectedMaterials.Add(material); + } + } + + if (selectedMaterials.Count == 0) + { + EditorUtility.DisplayDialog("Error", "선택된 오브젝트 중 머티리얼이 없습니다.", "OK"); + return; + } + + List objectsWithMaterial = new List(); + GameObject[] allGameObjects = FindObjectsOfType(); + + foreach (GameObject go in allGameObjects) + { + Renderer renderer = go.GetComponent(); + if (renderer != null) + { + Material[] materials = renderer.sharedMaterials; + + foreach (Material mat in materials) + { + if (mat != null && selectedMaterials.Contains(mat)) + { + objectsWithMaterial.Add(go); + break; + } + } + } + } + + if (objectsWithMaterial.Count > 0) + { + Selection.objects = objectsWithMaterial.ToArray(); + Debug.Log($"선택된 머티리얼을 사용하는 {objectsWithMaterial.Count}개의 오브젝트를 선택했습니다."); + + SceneView.FrameLastActiveSceneView(); + } + else + { + EditorUtility.DisplayDialog("Info", "선택된 머티리얼을 사용하는 오브젝트가 없습니다.", "OK"); + } + } +} \ No newline at end of file diff --git a/Assets/Scripts/Editor/MaterialObjectSelector.cs.meta b/Assets/Scripts/Editor/MaterialObjectSelector.cs.meta new file mode 100644 index 00000000..af8032d6 --- /dev/null +++ b/Assets/Scripts/Editor/MaterialObjectSelector.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 168e3885341c0174b84f8ac006481f2f \ No newline at end of file