diff --git a/Android/basic/src/main/java/com/tencent/liteav/basic/IntentUtils.java b/Android/basic/src/main/java/com/tencent/liteav/basic/IntentUtils.java index ca632ace..14e7b56a 100644 --- a/Android/basic/src/main/java/com/tencent/liteav/basic/IntentUtils.java +++ b/Android/basic/src/main/java/com/tencent/liteav/basic/IntentUtils.java @@ -25,7 +25,7 @@ public static void safeStartActivity(Context context, Intent intent) { } context.startActivity(intent); } catch (ActivityNotFoundException e) { - Log.e("TAG", "ActivityNotFoundException : " + intent.toString()); + Log.e(TAG, "ActivityNotFoundException : " + intent.toString()); } } } diff --git a/Android/basic/src/main/java/com/tencent/liteav/basic/RTCubeUtils.java b/Android/basic/src/main/java/com/tencent/liteav/basic/RTCubeUtils.java index 667b3f5e..48e98bd5 100644 --- a/Android/basic/src/main/java/com/tencent/liteav/basic/RTCubeUtils.java +++ b/Android/basic/src/main/java/com/tencent/liteav/basic/RTCubeUtils.java @@ -22,6 +22,10 @@ public static String getApplicationName(Context context) { applicationInfo = null; } String applicationName = (String) packageManager.getApplicationLabel(applicationInfo); + if (applicationInfo != null) { + applicationName = context.getResources().getString(applicationInfo.labelRes); + } + return TextUtils.isEmpty(applicationName) ? "" : applicationName; } diff --git a/Android/build.gradle b/Android/build.gradle index 6613c85a..f4352527 100644 --- a/Android/build.gradle +++ b/Android/build.gradle @@ -12,6 +12,9 @@ buildscript { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + + // 添加神策分析 android-gradle-plugin2 依赖 + classpath 'com.sensorsdata.analytics.android:android-gradle-plugin2:3.5.3' } } @@ -31,5 +34,6 @@ task clean(type: Delete) { ext { liteavSdk="com.tencent.liteav:LiteAVSDK_Live:latest.release" - imSdk = "com.tencent.imsdk:imsdk-plus:7.1.3925" + roomEngineSdk = "com.tencent.liteav.tuikit:tuiroomengine:latest.release" + imSdk = "com.tencent.imsdk:imsdk-plus:7.3.4358" } diff --git a/Android/gradle.properties b/Android/gradle.properties index dc251f57..ce9f4796 100644 --- a/Android/gradle.properties +++ b/Android/gradle.properties @@ -6,7 +6,7 @@ # http://www.gradle.org/docs/current/userguide/build_environment.html # Specifies the JVM arguments used for the daemon process. # The setting is particularly useful for tweaking memory settings. -org.gradle.jvmargs=-Xmx1536m +org.gradle.jvmargs=-Xmx4608M # When configured, Gradle will run in incubating parallel mode. # This option should only be used with decoupled projects. More details, visit # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects diff --git a/Android/showlive/src/main/java/com/tencent/liteav/showlive/ui/floatwindow/FloatWindow.java b/Android/showlive/src/main/java/com/tencent/liteav/showlive/ui/floatwindow/FloatWindow.java index 92b2f585..b2ebb628 100644 --- a/Android/showlive/src/main/java/com/tencent/liteav/showlive/ui/floatwindow/FloatWindow.java +++ b/Android/showlive/src/main/java/com/tencent/liteav/showlive/ui/floatwindow/FloatWindow.java @@ -16,6 +16,7 @@ import android.view.WindowManager; import android.widget.ImageView; +import com.tencent.liteav.basic.IntentUtils; import com.tencent.liteav.showlive.R; import com.tencent.liteav.showlive.model.services.room.bean.RoomInfo; import com.tencent.liteav.showlive.ui.ShowLiveAudienceActivity; @@ -164,7 +165,7 @@ public void onClick(View v) { intent.putExtra(TCConstants.PUSHER_NAME, mRoomInfo.roomName); intent.putExtra(TCConstants.COVER_PIC, mRoomInfo.coverUrl); intent.putExtra(TCConstants.PUSHER_AVATAR, mRoomInfo.coverUrl); - mContext.getApplicationContext().startActivity(intent); + IntentUtils.safeStartActivity(mContext, intent); } }); mImageClose.setOnClickListener(new View.OnClickListener() { diff --git a/Android/tuiaudioeffect/src/main/java/com/tencent/qcloud/tuikit/tuiaudioeffect/view/TUIAudioEffectView.java b/Android/tuiaudioeffect/src/main/java/com/tencent/qcloud/tuikit/tuiaudioeffect/view/TUIAudioEffectView.java index bbea0f18..997788a4 100644 --- a/Android/tuiaudioeffect/src/main/java/com/tencent/qcloud/tuikit/tuiaudioeffect/view/TUIAudioEffectView.java +++ b/Android/tuiaudioeffect/src/main/java/com/tencent/qcloud/tuikit/tuiaudioeffect/view/TUIAudioEffectView.java @@ -297,11 +297,12 @@ private void handleBGM(final int position, final BGMItemEntity model) { mButtonBGMPlay.setVisibility(VISIBLE); mButtonBGMPlay.setImageResource(R.drawable.tuiaudioeffect_bgm_pause); // 开始播放音乐时,无论是否首次均需重新设置变调和音量,因为音乐id发生了变化 - mPresenter.setMusicPitch(position, mViewVoicePitch.getPitch()); mPresenter.setMusicPlayoutVolume(position, mViewMusicVolume.getVolume()); mPresenter.setMusicPublishVolume(position, mViewMusicVolume.getVolume()); mPresenter.setMusicObserver(mBGMId, new BGMListener()); mPresenter.startPlayMusic(position, model.mPath, true); + // 音调需要在startPlayMusic之后调用才会生效 + mPresenter.setMusicPitch(position, mViewVoicePitch.getPitch()); mGetMusicDurationCallback = new AudioEffectModel.GetMusicDurationCallback() { @Override public void onSuccess(String path, long duration) { diff --git a/Android/tuibeauty/build.gradle b/Android/tuibeauty/build.gradle index 7d3a2e24..7fc856b8 100644 --- a/Android/tuibeauty/build.gradle +++ b/Android/tuibeauty/build.gradle @@ -19,7 +19,7 @@ android { dependencies { api fileTree(dir: 'libs', include: ['*.jar']) - api 'com.tencent.mediacloud:TencentEffect_S1-04:2.4.2.324' + api 'com.tencent.mediacloud:TencentEffect_S1-04:3.0.0.13' api "androidx.constraintlayout:constraintlayout:1.1.3" api 'com.google.android.material:material:1.4.0' api "com.google.code.gson:gson:2.8.6" diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/default.fshader b/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/default.fshader deleted file mode 100644 index 9664966c..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/default.fshader +++ /dev/null @@ -1,17 +0,0 @@ -material { - name : default, - shadingModel : lit, - blending : opaque, - parameters : [ - - ] -} - -fragment { - void material(inout MaterialInputs material) { - - prepareMaterial(material); - - material.baseColor = float4(0.5,0.5,0.5,1); - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/default_desktop.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/default_desktop.filamat deleted file mode 100644 index d8145d69..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/default_desktop.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/default_mobile.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/default_mobile.filamat deleted file mode 100644 index f31b9f85..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/default_mobile.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/error.fshader b/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/error.fshader deleted file mode 100644 index a407295a..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/error.fshader +++ /dev/null @@ -1,18 +0,0 @@ -material { - name : studio_error_shader, - shadingModel : unlit, - blending : opaque, - parameters : [ - { - type : int, - name : error - } - ] -} - -fragment { - void material(inout MaterialInputs material) { - prepareMaterial(material); - material.baseColor = float4(0.8431, 0, 0.2509, 1.0); - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/error_desktop.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/error_desktop.filamat deleted file mode 100644 index 0aebb28e..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/error_desktop.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/error_mobile.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/error_mobile.filamat deleted file mode 100644 index ee3f907b..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/error_mobile.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_fade.fshader b/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_fade.fshader deleted file mode 100644 index 8afe7e46..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_fade.fshader +++ /dev/null @@ -1,611 +0,0 @@ -material { - name : lit_fade, - requires : [ uv0, uv1, color ], - shadingModel : lit, - blending : fade, - depthWrite : true, - doubleSided : false, - flipUV : false, - specularAmbientOcclusion: simple, - parameters : [ - { - type : float4, - name : baseColorFactor, - ls_editor : { - defaultValue: [1,1,1,1], - uiType: "color", - label:"颜色" - } - }, - { - type : bool, - name : baseColorEnableTexture, - ls_editor : { - defaultValue: false, - label:"颜色纹理" - } - }, - { - type : sampler2d, - name : baseColorMap, - ls_editor : { - defaultValue: "", - showIfKey: "baseColorEnableTexture", - uiType: "file", - label:" - 贴图", - fileType: ["ImageData", "PAGFileData", "RenderTarget", "EnvMap_KTX"] - } - }, - { - type : int, - name : baseColorIndex, - ls_editor : { - defaultValue: 0, - uiType: "enum", - showIfKey: "baseColorEnableTexture", - enum: [{ - label:"UV0", - value: 0 - },{ - label:"UV1", - value: 1 - }], - label:" - UV集" - } - }, - { - type : bool, - name : baseColorTexturePremultiplied, - ls_editor : { - defaultValue: false, - showIfKey: "baseColorEnableTexture", - label:" - 已预乘", - } - }, - { - type : mat3, - name : baseColorUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden: true - } - }, - - { - type : float, - name : metallicFactor, - ls_editor : { - defaultValue: 0, - uiType:"float", - label: "金属度", - numberStep: 0.01, - numberRangeFrom: 0, - numberRangeTo: 1 - } - }, - { - type : float, - name : roughnessFactor, - ls_editor : { - defaultValue: 0, - label:"粗糙度", - numberStep: 0.01, - numberRangeFrom: 0, - numberRangeTo: 1 - } - }, - { - type : bool, - name : metallicRoughnessEnableTexture, - ls_editor : { - defaultValue: false, - label: "金属度粗糙度纹理" - } - }, - { - type : sampler2d, - name : metallicRoughnessMap, - ls_editor : { - defaultValue: "", - showIfKey: "metallicRoughnessEnableTexture", - uiType: "file", - label:" - 贴图", - fileType: ["ImageData", "PAGFileData", "RenderTarget", "EnvMap_KTX"] - } - }, - { - type : int, - name : metallicRoughnessIndex, - ls_editor : { - defaultValue: 0, - showIfKey: "metallicRoughnessEnableTexture", - uiType: "enum", - enum: [{ - label:"UV0", - value: 0 - },{ - label:"UV1", - value: 1 - }], - label:" - UV集" - } - }, - { - type : int, - name : metallicSamplingChannel, - ls_editor : { - defaultValue: 2, - showIfKey: "metallicRoughnessEnableTexture", - uiType: "enum", - enum: [ - { - label:"r", - value: 0 - },{ - label:"g", - value: 1 - },{ - label:"b", - value: 2 - }], - label:" - 金属度通道", - } - }, - - { - type : int, - name : roughnessSamplingChannel, - ls_editor : { - defaultValue: 1, - showIfKey: "metallicRoughnessEnableTexture", - uiType: "enum", - enum: [ - { - label:"r", - value: 0 - },{ - label:"g", - value: 1 - },{ - label:"b", - value: 2 - }], - label:" - 粗糙度通道", - } - }, - - { - type : mat3, - name : metallicRoughnessUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - }, - { - type : bool, - name : aoEnableTexture, - ls_editor : { - defaultValue: false, - label: "AO纹理" - } - }, - { - type : sampler2d, - name : occlusionMap, - ls_editor : { - defaultValue: "", - showIfKey: "aoEnableTexture", - uiType: "file", - label:" - 贴图", - fileType: ["ImageData", "PAGFileData", "RenderTarget", "EnvMap_KTX"] - } - }, - { - type : int, - name : aoIndex, - ls_editor : { - defaultValue: 0, - showIfKey: "aoEnableTexture", - uiType: "enum", - enum: [{ - label:"UV0", - value: 0 - },{ - label:"UV1", - value: 1 - }], - label:" - UV集" - } - }, - { - type : int, - name : aoSamplingChannel, - ls_editor : { - defaultValue: 0, - showIfKey: "aoEnableTexture", - uiType: "enum", - enum: [ - { - label:"r", - value: 0 - },{ - label:"g", - value: 1 - },{ - label:"b", - value: 2 - }], - label:" - Channel" - } - }, - { - type : float, - name : aoStrength, - ls_editor : { - defaultValue: 1, - showIfKey: "aoEnableTexture", - numberStep: 0.01, - numberRangeFrom: 0, - numberRangeTo: 1, - label: " - 强度" - } - }, - { - type : mat3, - name : occlusionUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - }, - - { - type : bool, - name : normalEnableTexture, - ls_editor : { - defaultValue: false, - label: "法线纹理" - } - }, - { - type : sampler2d, - name : normalMap, - ls_editor : { - defaultValue: "", - showIfKey: "normalEnableTexture", - uiType: "file", - label:" - 贴图", - fileType: ["ImageData", "PAGFileData", "RenderTarget", "EnvMap_KTX"] - } - }, - { - type : int, - name : normalIndex, - ls_editor : { - defaultValue: -1, - showIfKey: "normalEnableTexture", - label: " - UV集", - uiType: "enum", - enum: [{ - label:"UV0", - value: 0 - },{ - label:"UV1", - value: 1 - }] - } - }, - { - type : float, - name : normalScale, - ls_editor : { - defaultValue: 1, - showIfKey: "normalEnableTexture", - label: " - Scale", - uiType: "float", - numberStep: 0.01, - numberRangeFrom: 0, - numberRangeTo: 1 - } - }, - { - type : bool, - name : normalEnableGReverse, - ls_editor : { - defaultValue: false, - showIfKey: "normalEnableTexture", - label: " - G通道反转" - } - }, - - { - type : mat3, - name : normalUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - }, - { - type : float4, - name : emissiveFactor, - ls_editor : { - defaultValue: [0,0,0,1], - uiType: "color", - label: "自发光" - } - }, - { - type : bool, - name : emissiveEnableTexture, - ls_editor : { - defaultValue: false, - label: "自发光纹理" - } - }, - { - type : sampler2d, - name : emissiveMap, - ls_editor : { - defaultValue : "", - showIfKey: "emissiveEnableTexture", - uiType: "file", - label:" - 贴图", - fileType: ["ImageData", "PAGFileData", "RenderTarget", "EnvMap_KTX"] - } - }, - { - type : int, - name : emissiveIndex, - ls_editor : { - defaultValue: -1, - showIfKey: "emissiveEnableTexture", - label: " - UV集", - uiType: "enum", - enum: [{ - label:"UV0", - value: 0 - },{ - label:"UV1", - value: 1 - }] - } - }, - { - type : float, - name : emissiveStrength, - ls_editor : { - defaultValue: 1, - label: " - 强度", - uiType: "float", - numberStep: 1, - numberRangeFrom: 0, - numberRangeTo: 255 - } - }, - { - type : mat3, - name : emissiveUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - }, - { - type : bool, - name : emissiveEnableTextureColorMultiply, - ls_editor : { - defaultValue: true, - showIfKey: "emissiveEnableTexture", - label: " - 预乘" - } - }, - - { - type : bool, - name : clearCoatEnableTexture, - ls_editor : { - defaultValue: false, - uiHidden : true - } - }, - { - type : float, - name : clearCoatFactor, - ls_editor : { - defaultValue: 0, - uiHidden : true - } - }, - { - type : int, - name : clearCoatIndex, - ls_editor : { - defaultValue: -1, - uiHidden : true - } - }, - { - type : sampler2d, - name : clearCoatMap, - ls_editor : { - defaultValue: "", - uiHidden : true - } - }, - { - type : mat3, - name : clearCoatUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - }, - - { - type : bool, - name : clearCoatRoughnessEnableTexture, - ls_editor : { - defaultValue: false, - uiHidden : true - } - }, - { - type : int, - name : clearCoatRoughnessIndex, - ls_editor : { - defaultValue: -1, - uiHidden : true - } - }, - { - type : float, - name : clearCoatRoughnessFactor, - ls_editor : { - defaultValue: 0, - uiHidden : true - } - }, - { - type : sampler2d, - name : clearCoatRoughnessMap, - ls_editor : { - defaultValue: "", - uiHidden : true - } - }, - { - type : mat3, - name : clearCoatRoughnessUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - }, - { - type : bool, - name : clearCoatNormalEnableTexture, - ls_editor : { - defaultValue: false, - uiHidden : true - } - }, - { - type : float, - name : clearCoatNormalScale, - ls_editor : { - defaultValue: 1, - uiHidden : true - } - }, - { - type : int, - name : clearCoatNormalIndex, - ls_editor : { - defaultValue: 0, - uiHidden : true - } - }, - { - type : sampler2d, - name : clearCoatNormalMap, - ls_editor : { - defaultValue: "", - uiHidden : true - } - }, - { - type : mat3, - name : clearCoatNormalUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - } - ] -} - -fragment { - void material(inout MaterialInputs material) { - highp float2 uvs[2]; - uvs[0] = getUV0(); - uvs[1] = getUV1(); - - if (materialParams.normalEnableTexture) { - highp float2 uv = uvs[materialParams.normalIndex]; - uv = (vec3(uv, 1.0) * materialParams.normalUvMatrix).xy; - material.normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - if (materialParams.normalEnableGReverse){ - material.normal.y = 1.0 - material.normal.y; - } - material.normal.xy *= materialParams.normalScale; - } - if (materialParams.clearCoatNormalEnableTexture) { - highp float2 uv = uvs[materialParams.clearCoatNormalIndex]; - uv = (vec3(uv, 1.0) * materialParams.clearCoatNormalUvMatrix).xy; - material.clearCoatNormal = texture(materialParams_clearCoatNormalMap, uv).xyz * 2.0 - 1.0; - material.clearCoatNormal.xy *= materialParams.clearCoatNormalScale; - } - - prepareMaterial(material); - material.baseColor = materialParams.baseColorFactor; - - if (materialParams.baseColorEnableTexture) { - highp float2 uv = uvs[materialParams.baseColorIndex]; - uv = (vec3(uv, 1.0) * materialParams.baseColorUvMatrix).xy; - material.baseColor *= texture(materialParams_baseColorMap, uv); - } - #if defined(BLEND_MODE_TRANSPARENT) - if (!materialParams.baseColorTexturePremultiplied) { - material.baseColor.rgb *= material.baseColor.a; - } - #endif - material.baseColor *= getColor(); - - material.roughness = materialParams.roughnessFactor; - material.metallic = materialParams.metallicFactor; - - // KHR_materials_clearcoat forbids clear coat from - // being applied in the specular/glossiness model - material.clearCoat = materialParams.clearCoatFactor; - material.clearCoatRoughness = materialParams.clearCoatRoughnessFactor; - - if (materialParams.clearCoatEnableTexture) { - highp float2 uv = uvs[materialParams.clearCoatIndex]; - uv = (vec3(uv, 1.0) * materialParams.clearCoatUvMatrix).xy; - material.clearCoat *= texture(materialParams_clearCoatMap, uv).r; - } - if (materialParams.clearCoatRoughnessEnableTexture) { - highp float2 uv = uvs[materialParams.clearCoatRoughnessIndex]; - uv = (vec3(uv, 1.0) * materialParams.clearCoatRoughnessUvMatrix).xy; - material.clearCoatRoughness *= texture(materialParams_clearCoatRoughnessMap, uv).g; - } - - if (materialParams.metallicRoughnessEnableTexture) { - highp float2 uv = uvs[materialParams.metallicRoughnessIndex]; - uv = (vec3(uv, 1.0) * materialParams.metallicRoughnessUvMatrix).xy; - - vec4 mr = texture(materialParams_metallicRoughnessMap, uv); - material.roughness *= mr[materialParams.roughnessSamplingChannel]; - material.metallic *= mr[materialParams.metallicSamplingChannel]; - } - - if (materialParams.aoEnableTexture) { - highp float2 uv = uvs[materialParams.aoIndex]; - uv = (vec3(uv, 1.0) * materialParams.occlusionUvMatrix).xy; - material.ambientOcclusion = texture(materialParams_occlusionMap, uv)[materialParams.aoSamplingChannel] * materialParams.aoStrength; - } - - material.emissive = vec4(materialParams.emissiveFactor.rgb * materialParams.emissiveStrength, 0.0); - if (materialParams.emissiveEnableTexture) { - highp float2 uv = uvs[materialParams.emissiveIndex]; - uv = (vec3(uv, 1.0) * materialParams.emissiveUvMatrix).xy; - if (materialParams.emissiveEnableTextureColorMultiply) { - material.emissive.rgb *= texture(materialParams_emissiveMap, uv).rgb; - } else { - material.emissive.rgb = materialParams.emissiveStrength * texture(materialParams_emissiveMap, uv).rgb; - } - } - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_fade_desktop.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_fade_desktop.filamat deleted file mode 100644 index fc72f925..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_fade_desktop.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_fade_mobile.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_fade_mobile.filamat deleted file mode 100644 index 1d5bfaa4..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_fade_mobile.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_masked.fshader b/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_masked.fshader deleted file mode 100644 index 4b7e0847..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_masked.fshader +++ /dev/null @@ -1,611 +0,0 @@ -material { - name : lit_masked, - requires : [ uv0, uv1, color ], - shadingModel : lit, - blending : masked, - depthWrite : true, - doubleSided : false, - flipUV : false, - specularAmbientOcclusion: simple, - parameters : [ - { - type : float4, - name : baseColorFactor, - ls_editor : { - defaultValue: [1,1,1,1], - uiType: "color", - label:"颜色" - } - }, - { - type : bool, - name : baseColorEnableTexture, - ls_editor : { - defaultValue: false, - label:"颜色纹理" - } - }, - { - type : sampler2d, - name : baseColorMap, - ls_editor : { - defaultValue: "", - showIfKey: "baseColorEnableTexture", - uiType: "file", - label:" - 贴图", - fileType: ["ImageData", "PAGFileData", "RenderTarget", "EnvMap_KTX"] - } - }, - { - type : int, - name : baseColorIndex, - ls_editor : { - defaultValue: 0, - uiType: "enum", - showIfKey: "baseColorEnableTexture", - enum: [{ - label:"UV0", - value: 0 - },{ - label:"UV1", - value: 1 - }], - label:" - UV集" - } - }, - { - type : bool, - name : baseColorTexturePremultiplied, - ls_editor : { - defaultValue: false, - showIfKey: "baseColorEnableTexture", - label:" - 已预乘", - } - }, - { - type : mat3, - name : baseColorUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden: true - } - }, - - { - type : float, - name : metallicFactor, - ls_editor : { - defaultValue: 0, - uiType:"float", - label: "金属度", - numberStep: 0.01, - numberRangeFrom: 0, - numberRangeTo: 1 - } - }, - { - type : float, - name : roughnessFactor, - ls_editor : { - defaultValue: 0, - label:"粗糙度", - numberStep: 0.01, - numberRangeFrom: 0, - numberRangeTo: 1 - } - }, - { - type : bool, - name : metallicRoughnessEnableTexture, - ls_editor : { - defaultValue: false, - label: "金属度粗糙度纹理" - } - }, - { - type : sampler2d, - name : metallicRoughnessMap, - ls_editor : { - defaultValue: "", - showIfKey: "metallicRoughnessEnableTexture", - uiType: "file", - label:" - 贴图", - fileType: ["ImageData", "PAGFileData", "RenderTarget", "EnvMap_KTX"] - } - }, - { - type : int, - name : metallicRoughnessIndex, - ls_editor : { - defaultValue: 0, - showIfKey: "metallicRoughnessEnableTexture", - uiType: "enum", - enum: [{ - label:"UV0", - value: 0 - },{ - label:"UV1", - value: 1 - }], - label:" - UV集" - } - }, - { - type : int, - name : metallicSamplingChannel, - ls_editor : { - defaultValue: 2, - showIfKey: "metallicRoughnessEnableTexture", - uiType: "enum", - enum: [ - { - label:"r", - value: 0 - },{ - label:"g", - value: 1 - },{ - label:"b", - value: 2 - }], - label:" - 金属度通道", - } - }, - - { - type : int, - name : roughnessSamplingChannel, - ls_editor : { - defaultValue: 1, - showIfKey: "metallicRoughnessEnableTexture", - uiType: "enum", - enum: [ - { - label:"r", - value: 0 - },{ - label:"g", - value: 1 - },{ - label:"b", - value: 2 - }], - label:" - 粗糙度通道", - } - }, - - { - type : mat3, - name : metallicRoughnessUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - }, - { - type : bool, - name : aoEnableTexture, - ls_editor : { - defaultValue: false, - label: "AO纹理" - } - }, - { - type : sampler2d, - name : occlusionMap, - ls_editor : { - defaultValue: "", - showIfKey: "aoEnableTexture", - uiType: "file", - label:" - 贴图", - fileType: ["ImageData", "PAGFileData", "RenderTarget", "EnvMap_KTX"] - } - }, - { - type : int, - name : aoIndex, - ls_editor : { - defaultValue: 0, - showIfKey: "aoEnableTexture", - uiType: "enum", - enum: [{ - label:"UV0", - value: 0 - },{ - label:"UV1", - value: 1 - }], - label:" - UV集" - } - }, - { - type : int, - name : aoSamplingChannel, - ls_editor : { - defaultValue: 0, - showIfKey: "aoEnableTexture", - uiType: "enum", - enum: [ - { - label:"r", - value: 0 - },{ - label:"g", - value: 1 - },{ - label:"b", - value: 2 - }], - label:" - Channel" - } - }, - { - type : float, - name : aoStrength, - ls_editor : { - defaultValue: 1, - showIfKey: "aoEnableTexture", - numberStep: 0.01, - numberRangeFrom: 0, - numberRangeTo: 1, - label: " - 强度" - } - }, - { - type : mat3, - name : occlusionUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - }, - - { - type : bool, - name : normalEnableTexture, - ls_editor : { - defaultValue: false, - label: "法线纹理" - } - }, - { - type : sampler2d, - name : normalMap, - ls_editor : { - defaultValue: "", - showIfKey: "normalEnableTexture", - uiType: "file", - label:" - 贴图", - fileType: ["ImageData", "PAGFileData", "RenderTarget", "EnvMap_KTX"] - } - }, - { - type : int, - name : normalIndex, - ls_editor : { - defaultValue: -1, - showIfKey: "normalEnableTexture", - label: " - UV集", - uiType: "enum", - enum: [{ - label:"UV0", - value: 0 - },{ - label:"UV1", - value: 1 - }] - } - }, - { - type : float, - name : normalScale, - ls_editor : { - defaultValue: 1, - showIfKey: "normalEnableTexture", - label: " - Scale", - uiType: "float", - numberStep: 0.01, - numberRangeFrom: 0, - numberRangeTo: 1 - } - }, - { - type : bool, - name : normalEnableGReverse, - ls_editor : { - defaultValue: false, - showIfKey: "normalEnableTexture", - label: " - G通道反转" - } - }, - - { - type : mat3, - name : normalUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - }, - { - type : float4, - name : emissiveFactor, - ls_editor : { - defaultValue: [0,0,0,1], - uiType: "color", - label: "自发光" - } - }, - { - type : bool, - name : emissiveEnableTexture, - ls_editor : { - defaultValue: false, - label: "自发光纹理" - } - }, - { - type : sampler2d, - name : emissiveMap, - ls_editor : { - defaultValue : "", - showIfKey: "emissiveEnableTexture", - uiType: "file", - label:" - 贴图", - fileType: ["ImageData", "PAGFileData", "RenderTarget", "EnvMap_KTX"] - } - }, - { - type : int, - name : emissiveIndex, - ls_editor : { - defaultValue: -1, - showIfKey: "emissiveEnableTexture", - label: " - UV集", - uiType: "enum", - enum: [{ - label:"UV0", - value: 0 - },{ - label:"UV1", - value: 1 - }] - } - }, - { - type : float, - name : emissiveStrength, - ls_editor : { - defaultValue: 1, - label: " - 强度", - uiType: "float", - numberStep: 1, - numberRangeFrom: 0, - numberRangeTo: 255 - } - }, - { - type : mat3, - name : emissiveUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - }, - { - type : bool, - name : emissiveEnableTextureColorMultiply, - ls_editor : { - defaultValue: true, - showIfKey: "emissiveEnableTexture", - label: " - 预乘" - } - }, - - { - type : bool, - name : clearCoatEnableTexture, - ls_editor : { - defaultValue: false, - uiHidden : true - } - }, - { - type : float, - name : clearCoatFactor, - ls_editor : { - defaultValue: 0, - uiHidden : true - } - }, - { - type : int, - name : clearCoatIndex, - ls_editor : { - defaultValue: -1, - uiHidden : true - } - }, - { - type : sampler2d, - name : clearCoatMap, - ls_editor : { - defaultValue: "", - uiHidden : true - } - }, - { - type : mat3, - name : clearCoatUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - }, - - { - type : bool, - name : clearCoatRoughnessEnableTexture, - ls_editor : { - defaultValue: false, - uiHidden : true - } - }, - { - type : int, - name : clearCoatRoughnessIndex, - ls_editor : { - defaultValue: -1, - uiHidden : true - } - }, - { - type : float, - name : clearCoatRoughnessFactor, - ls_editor : { - defaultValue: 0, - uiHidden : true - } - }, - { - type : sampler2d, - name : clearCoatRoughnessMap, - ls_editor : { - defaultValue: "", - uiHidden : true - } - }, - { - type : mat3, - name : clearCoatRoughnessUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - }, - { - type : bool, - name : clearCoatNormalEnableTexture, - ls_editor : { - defaultValue: false, - uiHidden : true - } - }, - { - type : float, - name : clearCoatNormalScale, - ls_editor : { - defaultValue: 1, - uiHidden : true - } - }, - { - type : int, - name : clearCoatNormalIndex, - ls_editor : { - defaultValue: 0, - uiHidden : true - } - }, - { - type : sampler2d, - name : clearCoatNormalMap, - ls_editor : { - defaultValue: "", - uiHidden : true - } - }, - { - type : mat3, - name : clearCoatNormalUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - } - ] -} - -fragment { - void material(inout MaterialInputs material) { - highp float2 uvs[2]; - uvs[0] = getUV0(); - uvs[1] = getUV1(); - - if (materialParams.normalEnableTexture) { - highp float2 uv = uvs[materialParams.normalIndex]; - uv = (vec3(uv, 1.0) * materialParams.normalUvMatrix).xy; - material.normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - if (materialParams.normalEnableGReverse){ - material.normal.y = 1.0 - material.normal.y; - } - material.normal.xy *= materialParams.normalScale; - } - if (materialParams.clearCoatNormalEnableTexture) { - highp float2 uv = uvs[materialParams.clearCoatNormalIndex]; - uv = (vec3(uv, 1.0) * materialParams.clearCoatNormalUvMatrix).xy; - material.clearCoatNormal = texture(materialParams_clearCoatNormalMap, uv).xyz * 2.0 - 1.0; - material.clearCoatNormal.xy *= materialParams.clearCoatNormalScale; - } - - prepareMaterial(material); - material.baseColor = materialParams.baseColorFactor; - - if (materialParams.baseColorEnableTexture) { - highp float2 uv = uvs[materialParams.baseColorIndex]; - uv = (vec3(uv, 1.0) * materialParams.baseColorUvMatrix).xy; - material.baseColor *= texture(materialParams_baseColorMap, uv); - } - #if defined(BLEND_MODE_TRANSPARENT) - if (!materialParams.baseColorTexturePremultiplied) { - material.baseColor.rgb *= material.baseColor.a; - } - #endif - material.baseColor *= getColor(); - - material.roughness = materialParams.roughnessFactor; - material.metallic = materialParams.metallicFactor; - - // KHR_materials_clearcoat forbids clear coat from - // being applied in the specular/glossiness model - material.clearCoat = materialParams.clearCoatFactor; - material.clearCoatRoughness = materialParams.clearCoatRoughnessFactor; - - if (materialParams.clearCoatEnableTexture) { - highp float2 uv = uvs[materialParams.clearCoatIndex]; - uv = (vec3(uv, 1.0) * materialParams.clearCoatUvMatrix).xy; - material.clearCoat *= texture(materialParams_clearCoatMap, uv).r; - } - if (materialParams.clearCoatRoughnessEnableTexture) { - highp float2 uv = uvs[materialParams.clearCoatRoughnessIndex]; - uv = (vec3(uv, 1.0) * materialParams.clearCoatRoughnessUvMatrix).xy; - material.clearCoatRoughness *= texture(materialParams_clearCoatRoughnessMap, uv).g; - } - - if (materialParams.metallicRoughnessEnableTexture) { - highp float2 uv = uvs[materialParams.metallicRoughnessIndex]; - uv = (vec3(uv, 1.0) * materialParams.metallicRoughnessUvMatrix).xy; - - vec4 mr = texture(materialParams_metallicRoughnessMap, uv); - material.roughness *= mr[materialParams.roughnessSamplingChannel]; - material.metallic *= mr[materialParams.metallicSamplingChannel]; - } - - if (materialParams.aoEnableTexture) { - highp float2 uv = uvs[materialParams.aoIndex]; - uv = (vec3(uv, 1.0) * materialParams.occlusionUvMatrix).xy; - material.ambientOcclusion = texture(materialParams_occlusionMap, uv)[materialParams.aoSamplingChannel] * materialParams.aoStrength; - } - - material.emissive = vec4(materialParams.emissiveFactor.rgb * materialParams.emissiveStrength, 0.0); - if (materialParams.emissiveEnableTexture) { - highp float2 uv = uvs[materialParams.emissiveIndex]; - uv = (vec3(uv, 1.0) * materialParams.emissiveUvMatrix).xy; - if (materialParams.emissiveEnableTextureColorMultiply) { - material.emissive.rgb *= texture(materialParams_emissiveMap, uv).rgb; - } else { - material.emissive.rgb = materialParams.emissiveStrength * texture(materialParams_emissiveMap, uv).rgb; - } - } - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_masked_desktop.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_masked_desktop.filamat deleted file mode 100644 index 41ce5dd6..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_masked_desktop.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_masked_mobile.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_masked_mobile.filamat deleted file mode 100644 index c786fccc..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_masked_mobile.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_opaque.fshader b/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_opaque.fshader deleted file mode 100644 index 61e85242..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_opaque.fshader +++ /dev/null @@ -1,611 +0,0 @@ -material { - name : lit_opaque, - requires : [ uv0, uv1, color ], - shadingModel : lit, - blending : opaque, - depthWrite : true, - doubleSided : false, - flipUV : false, - specularAmbientOcclusion: simple, - parameters : [ - { - type : float4, - name : baseColorFactor, - ls_editor : { - defaultValue: [1,1,1,1], - uiType: "color", - label:"颜色" - } - }, - { - type : bool, - name : baseColorEnableTexture, - ls_editor : { - defaultValue: false, - label:"颜色纹理" - } - }, - { - type : sampler2d, - name : baseColorMap, - ls_editor : { - defaultValue: "", - showIfKey: "baseColorEnableTexture", - uiType: "file", - label:" - 贴图", - fileType: ["ImageData", "PAGFileData", "RenderTarget", "EnvMap_KTX"] - } - }, - { - type : int, - name : baseColorIndex, - ls_editor : { - defaultValue: 0, - uiType: "enum", - showIfKey: "baseColorEnableTexture", - enum: [{ - label:"UV0", - value: 0 - },{ - label:"UV1", - value: 1 - }], - label:" - UV集" - } - }, - { - type : bool, - name : baseColorTexturePremultiplied, - ls_editor : { - defaultValue: false, - showIfKey: "baseColorEnableTexture", - label:" - 已预乘", - } - }, - { - type : mat3, - name : baseColorUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden: true - } - }, - - { - type : float, - name : metallicFactor, - ls_editor : { - defaultValue: 0, - uiType:"float", - label: "金属度", - numberStep: 0.01, - numberRangeFrom: 0, - numberRangeTo: 1 - } - }, - { - type : float, - name : roughnessFactor, - ls_editor : { - defaultValue: 0, - label:"粗糙度", - numberStep: 0.01, - numberRangeFrom: 0, - numberRangeTo: 1 - } - }, - { - type : bool, - name : metallicRoughnessEnableTexture, - ls_editor : { - defaultValue: false, - label: "金属度粗糙度纹理" - } - }, - { - type : sampler2d, - name : metallicRoughnessMap, - ls_editor : { - defaultValue: "", - showIfKey: "metallicRoughnessEnableTexture", - uiType: "file", - label:" - 贴图", - fileType: ["ImageData", "PAGFileData", "RenderTarget", "EnvMap_KTX"] - } - }, - { - type : int, - name : metallicRoughnessIndex, - ls_editor : { - defaultValue: 0, - showIfKey: "metallicRoughnessEnableTexture", - uiType: "enum", - enum: [{ - label:"UV0", - value: 0 - },{ - label:"UV1", - value: 1 - }], - label:" - UV集" - } - }, - { - type : int, - name : metallicSamplingChannel, - ls_editor : { - defaultValue: 2, - showIfKey: "metallicRoughnessEnableTexture", - uiType: "enum", - enum: [ - { - label:"r", - value: 0 - },{ - label:"g", - value: 1 - },{ - label:"b", - value: 2 - }], - label:" - 金属度通道", - } - }, - - { - type : int, - name : roughnessSamplingChannel, - ls_editor : { - defaultValue: 1, - showIfKey: "metallicRoughnessEnableTexture", - uiType: "enum", - enum: [ - { - label:"r", - value: 0 - },{ - label:"g", - value: 1 - },{ - label:"b", - value: 2 - }], - label:" - 粗糙度通道", - } - }, - - { - type : mat3, - name : metallicRoughnessUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - }, - { - type : bool, - name : aoEnableTexture, - ls_editor : { - defaultValue: false, - label: "AO纹理" - } - }, - { - type : sampler2d, - name : occlusionMap, - ls_editor : { - defaultValue: "", - showIfKey: "aoEnableTexture", - uiType: "file", - label:" - 贴图", - fileType: ["ImageData", "PAGFileData", "RenderTarget", "EnvMap_KTX"] - } - }, - { - type : int, - name : aoIndex, - ls_editor : { - defaultValue: 0, - showIfKey: "aoEnableTexture", - uiType: "enum", - enum: [{ - label:"UV0", - value: 0 - },{ - label:"UV1", - value: 1 - }], - label:" - UV集" - } - }, - { - type : int, - name : aoSamplingChannel, - ls_editor : { - defaultValue: 0, - showIfKey: "aoEnableTexture", - uiType: "enum", - enum: [ - { - label:"r", - value: 0 - },{ - label:"g", - value: 1 - },{ - label:"b", - value: 2 - }], - label:" - Channel" - } - }, - { - type : float, - name : aoStrength, - ls_editor : { - defaultValue: 1, - showIfKey: "aoEnableTexture", - numberStep: 0.01, - numberRangeFrom: 0, - numberRangeTo: 1, - label: " - 强度" - } - }, - { - type : mat3, - name : occlusionUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - }, - - { - type : bool, - name : normalEnableTexture, - ls_editor : { - defaultValue: false, - label: "法线纹理" - } - }, - { - type : sampler2d, - name : normalMap, - ls_editor : { - defaultValue: "", - showIfKey: "normalEnableTexture", - uiType: "file", - label:" - 贴图", - fileType: ["ImageData", "PAGFileData", "RenderTarget", "EnvMap_KTX"] - } - }, - { - type : int, - name : normalIndex, - ls_editor : { - defaultValue: -1, - showIfKey: "normalEnableTexture", - label: " - UV集", - uiType: "enum", - enum: [{ - label:"UV0", - value: 0 - },{ - label:"UV1", - value: 1 - }] - } - }, - { - type : float, - name : normalScale, - ls_editor : { - defaultValue: 1, - showIfKey: "normalEnableTexture", - label: " - Scale", - uiType: "float", - numberStep: 0.01, - numberRangeFrom: 0, - numberRangeTo: 1 - } - }, - { - type : bool, - name : normalEnableGReverse, - ls_editor : { - defaultValue: false, - showIfKey: "normalEnableTexture", - label: " - G通道反转" - } - }, - - { - type : mat3, - name : normalUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - }, - { - type : float4, - name : emissiveFactor, - ls_editor : { - defaultValue: [0,0,0,1], - uiType: "color", - label: "自发光" - } - }, - { - type : bool, - name : emissiveEnableTexture, - ls_editor : { - defaultValue: false, - label: "自发光纹理" - } - }, - { - type : sampler2d, - name : emissiveMap, - ls_editor : { - defaultValue : "", - showIfKey: "emissiveEnableTexture", - uiType: "file", - label:" - 贴图", - fileType: ["ImageData", "PAGFileData", "RenderTarget", "EnvMap_KTX"] - } - }, - { - type : int, - name : emissiveIndex, - ls_editor : { - defaultValue: -1, - showIfKey: "emissiveEnableTexture", - label: " - UV集", - uiType: "enum", - enum: [{ - label:"UV0", - value: 0 - },{ - label:"UV1", - value: 1 - }] - } - }, - { - type : float, - name : emissiveStrength, - ls_editor : { - defaultValue: 1, - label: " - 强度", - uiType: "float", - numberStep: 1, - numberRangeFrom: 0, - numberRangeTo: 255 - } - }, - { - type : mat3, - name : emissiveUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - }, - { - type : bool, - name : emissiveEnableTextureColorMultiply, - ls_editor : { - defaultValue: true, - showIfKey: "emissiveEnableTexture", - label: " - 预乘" - } - }, - - { - type : bool, - name : clearCoatEnableTexture, - ls_editor : { - defaultValue: false, - uiHidden : true - } - }, - { - type : float, - name : clearCoatFactor, - ls_editor : { - defaultValue: 0, - uiHidden : true - } - }, - { - type : int, - name : clearCoatIndex, - ls_editor : { - defaultValue: -1, - uiHidden : true - } - }, - { - type : sampler2d, - name : clearCoatMap, - ls_editor : { - defaultValue: "", - uiHidden : true - } - }, - { - type : mat3, - name : clearCoatUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - }, - - { - type : bool, - name : clearCoatRoughnessEnableTexture, - ls_editor : { - defaultValue: false, - uiHidden : true - } - }, - { - type : int, - name : clearCoatRoughnessIndex, - ls_editor : { - defaultValue: -1, - uiHidden : true - } - }, - { - type : float, - name : clearCoatRoughnessFactor, - ls_editor : { - defaultValue: 0, - uiHidden : true - } - }, - { - type : sampler2d, - name : clearCoatRoughnessMap, - ls_editor : { - defaultValue: "", - uiHidden : true - } - }, - { - type : mat3, - name : clearCoatRoughnessUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - }, - { - type : bool, - name : clearCoatNormalEnableTexture, - ls_editor : { - defaultValue: false, - uiHidden : true - } - }, - { - type : float, - name : clearCoatNormalScale, - ls_editor : { - defaultValue: 1, - uiHidden : true - } - }, - { - type : int, - name : clearCoatNormalIndex, - ls_editor : { - defaultValue: 0, - uiHidden : true - } - }, - { - type : sampler2d, - name : clearCoatNormalMap, - ls_editor : { - defaultValue: "", - uiHidden : true - } - }, - { - type : mat3, - name : clearCoatNormalUvMatrix, - ls_editor : { - defaultValue: [1,0,0,0,1,0,0,0,1], - uiHidden : true - } - } - ] -} - -fragment { - void material(inout MaterialInputs material) { - highp float2 uvs[2]; - uvs[0] = getUV0(); - uvs[1] = getUV1(); - - if (materialParams.normalEnableTexture) { - highp float2 uv = uvs[materialParams.normalIndex]; - uv = (vec3(uv, 1.0) * materialParams.normalUvMatrix).xy; - material.normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - if (materialParams.normalEnableGReverse){ - material.normal.y = 1.0 - material.normal.y; - } - material.normal.xy *= materialParams.normalScale; - } - if (materialParams.clearCoatNormalEnableTexture) { - highp float2 uv = uvs[materialParams.clearCoatNormalIndex]; - uv = (vec3(uv, 1.0) * materialParams.clearCoatNormalUvMatrix).xy; - material.clearCoatNormal = texture(materialParams_clearCoatNormalMap, uv).xyz * 2.0 - 1.0; - material.clearCoatNormal.xy *= materialParams.clearCoatNormalScale; - } - - prepareMaterial(material); - material.baseColor = materialParams.baseColorFactor; - - if (materialParams.baseColorEnableTexture) { - highp float2 uv = uvs[materialParams.baseColorIndex]; - uv = (vec3(uv, 1.0) * materialParams.baseColorUvMatrix).xy; - material.baseColor *= texture(materialParams_baseColorMap, uv); - } - #if defined(BLEND_MODE_TRANSPARENT) - if (!materialParams.baseColorTexturePremultiplied) { - material.baseColor.rgb *= material.baseColor.a; - } - #endif - material.baseColor *= getColor(); - - material.roughness = materialParams.roughnessFactor; - material.metallic = materialParams.metallicFactor; - - // KHR_materials_clearcoat forbids clear coat from - // being applied in the specular/glossiness model - material.clearCoat = materialParams.clearCoatFactor; - material.clearCoatRoughness = materialParams.clearCoatRoughnessFactor; - - if (materialParams.clearCoatEnableTexture) { - highp float2 uv = uvs[materialParams.clearCoatIndex]; - uv = (vec3(uv, 1.0) * materialParams.clearCoatUvMatrix).xy; - material.clearCoat *= texture(materialParams_clearCoatMap, uv).r; - } - if (materialParams.clearCoatRoughnessEnableTexture) { - highp float2 uv = uvs[materialParams.clearCoatRoughnessIndex]; - uv = (vec3(uv, 1.0) * materialParams.clearCoatRoughnessUvMatrix).xy; - material.clearCoatRoughness *= texture(materialParams_clearCoatRoughnessMap, uv).g; - } - - if (materialParams.metallicRoughnessEnableTexture) { - highp float2 uv = uvs[materialParams.metallicRoughnessIndex]; - uv = (vec3(uv, 1.0) * materialParams.metallicRoughnessUvMatrix).xy; - - vec4 mr = texture(materialParams_metallicRoughnessMap, uv); - material.roughness *= mr[materialParams.roughnessSamplingChannel]; - material.metallic *= mr[materialParams.metallicSamplingChannel]; - } - - if (materialParams.aoEnableTexture) { - highp float2 uv = uvs[materialParams.aoIndex]; - uv = (vec3(uv, 1.0) * materialParams.occlusionUvMatrix).xy; - material.ambientOcclusion = texture(materialParams_occlusionMap, uv)[materialParams.aoSamplingChannel] * materialParams.aoStrength; - } - - material.emissive = vec4(materialParams.emissiveFactor.rgb * materialParams.emissiveStrength, 0.0); - if (materialParams.emissiveEnableTexture) { - highp float2 uv = uvs[materialParams.emissiveIndex]; - uv = (vec3(uv, 1.0) * materialParams.emissiveUvMatrix).xy; - if (materialParams.emissiveEnableTextureColorMultiply) { - material.emissive.rgb *= texture(materialParams_emissiveMap, uv).rgb; - } else { - material.emissive.rgb = materialParams.emissiveStrength * texture(materialParams_emissiveMap, uv).rgb; - } - } - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_opaque_desktop.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_opaque_desktop.filamat deleted file mode 100644 index 40e8b162..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_opaque_desktop.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_opaque_mobile.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_opaque_mobile.filamat deleted file mode 100644 index 5d7e8e60..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/lit_opaque_mobile.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/sp_pbr.fshader b/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/sp_pbr.fshader deleted file mode 100644 index d19c213d..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/custom-material-buildin-shaders/sp_pbr.fshader +++ /dev/null @@ -1,541 +0,0 @@ -material { - name : sp_pbr, - requires : [ uv0], - shadingModel : lit, - blending : opaque, - depthWrite : true, - culling: back, - doubleSided : false, - flipUV : false, - customPostEffect : true, - parameters : [ - { - type : float4, - name : baseColorFactor, - ls_editor : { - defaultValue: [1,1,1,1], - uiType: "color", - label:"颜色" - } - }, - { - type : bool, - name : baseColorEnableTexture, - ls_editor : { - defaultValue: false, - label:"颜色纹理" - } - }, - { - type : sampler2d, - name : baseColorMap, - ls_editor : { - defaultValue: "", - showIfKey: "baseColorEnableTexture", - uiType: "file", - label:" - 贴图", - fileType: ["ImageData", "PAGFileData", "RenderTarget", "EnvMap_KTX"] - } - }, - { - type : bool, - name : metallicRoughnessAOEnableTexture, - ls_editor : { - defaultValue: false, - label: "金属度粗糙度AO纹理" - } - }, - { - type : sampler2d, - name : metallicRoughnessAOMap, - ls_editor : { - defaultValue: "", - showIfKey: "metallicRoughnessAOEnableTexture", - uiType: "file", - label:" - 贴图", - fileType: ["ImageData", "PAGFileData", "RenderTarget", "EnvMap_KTX"] - } - }, - { - type : float, - name : metallicFactor, - ls_editor : { - defaultValue: 1.0, - showIf: [{ - metallicRoughnessAOEnableTexture: [false], - }], - uiType:"float", - label: "金属度", - numberStep: 0.01, - numberRangeFrom: 0, - numberRangeTo: 1 - } - }, - { - type : float, - name : roughnessFactor, - ls_editor : { - defaultValue: 1.0, - showIf: [{ - metallicRoughnessAOEnableTexture: [false], - }], - uiType:"float", - label: "粗糙度", - numberStep: 0.01, - numberRangeFrom: 0, - numberRangeTo: 1.0 - } - }, - { - type : bool, - name : normalEnableTexture, - ls_editor : { - defaultValue: false, - label: "法线纹理" - } - }, - { - type : sampler2d, - name : normalMap, - ls_editor : { - defaultValue: "", - showIfKey: "normalEnableTexture", - uiType: "file", - label:" - 贴图", - fileType: ["ImageData", "PAGFileData", "RenderTarget", "EnvMap_KTX"] - } - }, - { - type : sampler2d, - name : diffuse_tex, - ls_editor : { - defaultValue: "", - uiType: "file", - label:"漫反射贴图", - fileType: ["ImageData", "PAGFileData", "RenderTarget", "EnvMap_KTX"] - } - }, - { - type : sampler2d, - name : specular_tex, - ls_editor : { - defaultValue: "", - uiType: "file", - label:"环境高光贴图", - fileType: ["ImageData", "PAGFileData", "RenderTarget", "EnvMap_KTX"] - } - }, - { - type : float, - name : envRotation, - ls_editor : { - defaultValue: 0, - uiType:"float", - label: "环境光旋转", - numberStep: 1, - numberRangeFrom: 0, - numberRangeTo: 360 - } - }, - { - type : float, - name : envExposure, - ls_editor : { - defaultValue: 0, - uiType:"float", - label: "曝光", - numberStep: 0.01, - numberRangeFrom: -10, - numberRangeTo: 10 - } - }, - { - type : float2, - name : EnvmapSpecularSize, - ls_editor : { - label: "EnvmapSpecularSize", - defaultValue: [512.0, 256.0] - } - }, - { - type : int, - name : toneMapping, - ls_editor : { - defaultValue: 0, - uiType: "enum", - enum: [{ - label:"ACES", - value: 0 - },{ - label:"Linear", - value: 1 - },{ - label:"Reinhard", - value: 2 - },{ - label:"不使用HDR", - value: 3 - }], - label:"ToneMapping" - } - } - ], - variables : [ - UserWorldNormal, - UserWorldPosition - ] -} - -vertex { - - void materialVertex(inout MaterialVertexInputs material) { - - material.UserWorldNormal.xyz = material.worldNormal; - material.UserWorldPosition.xyz = material.worldPosition.xyz; - } -} - - - -fragment { - #define SC_EPSILON 1e-6 - - struct SurfaceProperties { - vec3 albedo; - float opacity; - vec3 normal; - float metallic; - float roughness; - vec3 emissive; - vec3 ao; - vec3 specularAo; - vec3 bakedShadows; - vec3 specColor; - }; - struct LightingComponents { - vec3 directDiffuse; - vec3 directSpecular; - vec3 indirectDiffuse; - vec3 indirectSpecular; - vec3 emitted; - vec3 transmitted; - }; - struct LightProperties { - vec3 direction; - vec3 color; - float attenuation; - }; - - SurfaceProperties defaultSurfaceProperties() { - SurfaceProperties surfaceProperties; - surfaceProperties.albedo = vec3(0.0); - surfaceProperties.opacity = 1.0; - surfaceProperties.normal = vec3(0.0); - surfaceProperties.metallic = 0.0; - surfaceProperties.roughness = 0.0; - surfaceProperties.emissive = vec3(0.0); - surfaceProperties.ao = vec3(1.0); - surfaceProperties.specularAo = vec3(1.0); - surfaceProperties.bakedShadows = vec3(1.0); - return surfaceProperties; - } - - LightingComponents defaultLightingComponents() { - LightingComponents lighting; - lighting.directDiffuse = vec3(0.0); - lighting.directSpecular = vec3(0.0); - lighting.indirectDiffuse = vec3(1.0); - lighting.indirectSpecular = vec3(0.0); - lighting.emitted = vec3(0.0); - lighting.transmitted = vec3(0.0); - return lighting; - } - - //global variables - vec2 g_uv; - - // utils function - float _atan2(float x, float y) { - float signx = x < 0.0 ? -1.0 : 1.0; - return signx * acos(clamp(y / length(vec2(x, y)), -1.0, 1.0)); - } - float User_srgbToLinear(float x) { return pow(x, 2.2); } - float User_linearToSrgb(float x) { return pow(x, 1.0 / 2.2); } - vec3 User_srgbToLinear(vec3 color) { - return vec3(User_srgbToLinear(color.r), User_srgbToLinear(color.g), User_srgbToLinear(color.b)); - } - vec3 User_linearToSrgb(vec3 color) { - return vec3(User_linearToSrgb(color.r), User_linearToSrgb(color.g), User_linearToSrgb(color.b)); - } - vec2 calcPanoramicTexCoordsFromDir(vec3 reflDir, float rotationDegrees) { - vec2 uv; - uv.x = _atan2(reflDir.x, -reflDir.z) - PI / 2.0; - uv.y = acos(reflDir.y); - uv = uv / vec2(2.0 * PI, PI); - uv.y = 1.0 - uv.y; - uv.x += rotationDegrees / 360.0; - uv.x = fract(uv.x + floor(uv.x) + 1.0); - return uv; - } - vec3 pow3(vec3 color, float x){ - color.r = pow(color.r, x); - color.g = pow(color.g, x); - color.b = pow(color.b, x); - return color; - } - - float powN(float value, float n){ - float res = 1.0; - for(float i=0.0;i 0 时才做 mix - mixAlpha = (1.0-step(blurred.a, 0.0)) * mixAlpha; - // type = 1 时 bloom 的 entity 不 mix, 保持原来颜色 - if (materialParams.type > 0 && bloom.a > 0.0) { - mixAlpha = 0.0; - } - material.baseColor = mix(primary, blurred, mixAlpha); - // blur 的 entity 与不做 bloom 的 entity 重叠部分颜色采用相加模式 - if(primary.a*blurred.a > 0.0 && bloom.a <= 0.0) { - material.baseColor = blurred * mixAlpha + primary; - } - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/colorGrading.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/colorGrading.filamat deleted file mode 100644 index dc43ad48..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/colorGrading.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/colorGradingAsSubpass.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/colorGradingAsSubpass.filamat deleted file mode 100644 index 169d84fd..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/colorGradingAsSubpass.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/defaultMaterial.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/defaultMaterial.filamat deleted file mode 100644 index f7958abb..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/defaultMaterial.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/diamond.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/diamond.filamat deleted file mode 100644 index f1c184f3..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/diamond.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/diamond.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/diamond.mat deleted file mode 100644 index 2c5c45fb..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/diamond.mat +++ /dev/null @@ -1,152 +0,0 @@ -material { - name : test, - shadingModel : unlit, - blending : transparent, - parameters : [ - { - type : samplerCubemap, - name : refractTex - }, - { - type : sampler2d, - name : fakeTex - }, - { - type : float3, - name : refractIndex - }, - { - type : float3, - name : refractSpeed - }, - { - type : float4, - name : baseColor - }, - { - type : float4, - name : mixFactor - }, - { - type : float, - name : maxBounce - }, - { - type : float, - name : finalAlpha - } - ], - requires : [uv0, color, tangents], - variables : [ - norm, view - ] -} - -vertex { - void materialVertex(inout MaterialVertexInputs material) { - float3 normal = normalize(material.worldNormal); - float3 viewDir = -normalize(getWorldCameraPosition() - material.worldPosition.xyz); - - material.view.xyz = viewDir.xyz; - material.norm.xyz = normal.xyz; - } -} - -fragment { - vec3 getColor(vec3 dir) { - float rx = abs(dir.x); - float ry = abs(dir.y); - float rz = abs(dir.z); - if (rx >= ry && rx >= rz) { - float ma = 1.0 / abs(dir.x); - if(dir.x > 0.0) { - float sc = -dir.z; - float tc = -dir.y; - vec2 addr= vec2((sc * ma + 1.0) * 0.5, (tc * ma + 1.0f) * 0.5); - return texture(materialParams_fakeTex, addr).rgb; - } else { - float sc = dir.z; - float tc = -dir.y; - vec2 addr= vec2((sc * ma + 1.0) * 0.5, (tc * ma + 1.0f) * 0.5); - return texture(materialParams_fakeTex, addr).rgb; - } - } else if (ry >= rx && ry >= rz) { - float ma = 1.0 / abs(dir.y); - if(dir.y > 0.0) { - float sc = dir.x; - float tc = dir.z; - vec2 addr= vec2((sc * ma + 1.0) * 0.5, (tc * ma + 1.0f) * 0.5); - return texture(materialParams_fakeTex, addr).rgb; - } else { - float sc = dir.x; - float tc = -dir.z; - vec2 addr= vec2((sc * ma + 1.0) * 0.5, (tc * ma + 1.0f) * 0.5); - return texture(materialParams_fakeTex, addr).rgb; - } - } else { - float ma = 1.0 / abs(dir.z); - if(dir.z > 0.0) { - float sc = dir.x; - float tc = -dir.y; - vec2 addr= vec2((sc * ma + 1.0) * 0.5, (tc * ma + 1.0f) * 0.5); - return texture(materialParams_fakeTex, addr).rgb; - } else { - float sc = -dir.x; - float tc = -dir.y; - vec2 addr= vec2((sc * ma + 1.0) * 0.5, (tc * ma + 1.0f) * 0.5); - return texture(materialParams_fakeTex, addr).rgb; - } - } - return vec3(1.0, 0.0, 0.0); - } - - void material(inout MaterialInputs material) { - prepareMaterial(material); - - float COS_CRITICAL_ANGLE = sqrt(1.0 - 1.0/(materialParams.refractIndex.r * materialParams.refractIndex.r)); - - float3 viewDir = -getWorldViewVector(); - float3 normal = getWorldNormalVector(); - float fresnelFactor = pow(1.0 - abs(dot(viewDir, normal)), 2.0); - float3 color = texture(materialParams_refractTex, viewDir).rgb * 2.0 - 1.0; - - float3 inDir = refract(viewDir, normal, 1.0/materialParams.refractIndex.r); - float3 inDirR, inDirG, inDirB; - for (float bounce = 0.0; bounce < materialParams.maxBounce; bounce++) - { - float3 inN = texture(materialParams_refractTex, inDir).rgb * 2.0 - 1.0; - if (abs(dot(-inDir, inN)) > COS_CRITICAL_ANGLE) { - inDirR.rgb = refract(inDir, inN, materialParams.refractIndex.r); - inDirG.rgb = refract(inDir, inN, materialParams.refractIndex.g + bounce * materialParams.refractSpeed.g); - inDirB.rgb = refract(inDir, inN, materialParams.refractIndex.b + bounce * materialParams.refractSpeed.b); - break; - } - - if (bounce == materialParams.maxBounce-1.0) { - inDirR.rgb = refract(inDir, inN, 1.0/ materialParams.refractIndex.r); - inDirG.rgb = refract(inDir, inN, 1.0/ (materialParams.refractIndex.g + bounce * materialParams.refractSpeed.g)); - inDirB.rgb = refract(inDir, inN, 1.0/ (materialParams.refractIndex.b + bounce * materialParams.refractSpeed.b)); - break; - } - inDir = reflect(inDir, inN); - } - - //float2 uv = gl_FragCoord.xy * getResolution().zw; uv.y = 1.0 - uv.y; - //float3 dir = float3(1.0, uv.x * 2.0 - 1.0, uv.y * 2.0 - 1.0); // select POSITIVE_Y - //material.baseColor.rgb = texture(materialParams_specCube, dir).rgb; - - material.baseColor.rgb = getColor(getWorldReflectedVector()); - material.baseColor.rgb = material.baseColor.rgb * fresnelFactor; - material.baseColor.r += getColor(inDirR.rgb).r * (1.0 - fresnelFactor); - material.baseColor.g += getColor(inDirG.rgb).g * (1.0 - fresnelFactor); - material.baseColor.b += getColor(inDirB.rgb).b * (1.0 - fresnelFactor); - - material.baseColor.r = mix(material.baseColor.r, materialParams.baseColor.r, materialParams.mixFactor.r); - material.baseColor.g = mix(material.baseColor.g, materialParams.baseColor.g, materialParams.mixFactor.g); - material.baseColor.b = mix(material.baseColor.b, materialParams.baseColor.b, materialParams.mixFactor.b); - - //material.baseColor.rgb = color.rgb; - material.baseColor.a = materialParams.finalAlpha; - material.baseColor.rgb *= material.baseColor.a; - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic.mat deleted file mode 100644 index 918246bf..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic.mat +++ /dev/null @@ -1,276 +0,0 @@ -material { - name : pbr, - shadingModel : lit, - blending : ${BLENDING}, - doubleSided: true, - transparency : ${TRANSPARENCY}, - parameters : [ - - { type : sampler2d, name : baseColorMap }, - { type : sampler2d, name : normalMap }, - { type : sampler2d, name : metallicRoughnessSpecularMap }, - { type : sampler2d, name : skinMaskMap }, - { type : sampler2d, name : roughnessMap }, - { type : sampler2d, name : metallicMap }, - { - type : bool, - name : alphaPremultiplied - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : hasAlphaMap - }, - { - type: float3, - name: hsvColor - }, - { - type : float, - name : metallic - }, - { - type : float, - name : roughness - }, - { - type : float, - name : specular - }, - { - type : float, - name : anisotropy - }, - { - type : float3, - name : anisotropyDirection - }, - { - type : bool, - name : hasNormalMap - }, - { - type : bool, - name : hasMRSMap - }, - { - type : bool, - name : hasMaskMap - }, - { - type: bool, - name: isEtcImage - }, - { - type : bool, - name : hasRoughnessMap - }, - { - type : bool, - name : hasMetallicMap - }, - { - type: float3, - name: deltaHSV - }, - { - type: float4, - name: emissionColor - }, - { - type : float, - name : specularIntensity - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - vec3 rgb2hsv(vec3 c) { - vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - float d = q.x - min(q.w, q.y); - float e = 0.0001; - - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - vec3 hsv2rgb(vec3 c) { - vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - vec3 blend2(vec3 left, vec3 right, float pos){ - return vec3(left.r * (1.0-pos) + right.r * pos, left.g * (1.0-pos) + right.g * pos, left.b * (1.0-pos) + right.b * pos); - } - - vec3 blend3(vec3 left, vec3 main, vec3 right,float pos) - { - if (pos < 0.0){ - return blend2(left, main, pos + 1.0); - } - else if (pos > 0.0){ - return blend2(main, right, pos); - } - else{ - return main; - } - } - - // deltaH scaled from 0~1 , deltaS:0~1 deltaV:-1~1 - vec4 applyColorizeHSV(vec4 mainColor, vec3 deltaHSV) - { - float deltaH = deltaHSV.x; - vec3 hueRGB = hsv2rgb(vec3(deltaH,1.0,1.0)); - float saturation = deltaHSV.y; - float lightness = deltaHSV.z; - float value = rgb2hsv(mainColor.rgb).z; - - vec3 cc = blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - if (lightness <= -1.0){ - return vec4(0,0,0,mainColor.a); - } - else if (lightness >= 1.0){ - return vec4(1,1,1,mainColor.a); - } - else if (lightness >= 0.0){ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 - lightness) * (value - 1.0) + 1.0); - return vec4(c.rgb,mainColor.a); - } - else{ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 + lightness) * (value) - 1.0); - return vec4(c.rgb,mainColor.a); - } - } - - vec4 applyHSV(vec4 color, vec3 deltaHSV) { - if (deltaHSV.x != 0.0) { - vec3 hsv = rgb2hsv(color.rgb); - hsv.x += deltaHSV.x; - if (hsv.x > 6.0) { - hsv.x = hsv.x - 6.0; - } else if (hsv.x < 0.0) { - hsv.x = hsv.x + 6.0; - } - color.rgb = hsv2rgb(hsv); - } - - if (deltaHSV.y != 0.0) { - float c_max = max(color.r, max(color.g, color.b)); - float c_min = min(color.r, min(color.g, color.b)); - float delta = c_max - c_min; - if (delta != 0.0) { - float v = c_max + c_min; - float l = v * 0.5; - float s = l < 0.5 ? (delta / v) : ((delta) / (2.0 - v)); - if (deltaHSV.y >= 0.0) { - float alpha = (deltaHSV.y + s) >= 1.0 ? s : (1.0 - deltaHSV.y); - alpha = 1.0 / alpha - 1.0; - color.rgb = color.rgb + (color.rgb - l) * alpha; - } - else { - float alpha = deltaHSV.y; - color.rgb = l + (color.rgb - l) * (1.0 + alpha); - } - } - } - - if (deltaHSV.z != 0.0) { - color.rgb = deltaHSV.z > 0.0 ? (color.rgb * (1.0 - deltaHSV.z) + deltaHSV.z) : (color.rgb + color.rgb * deltaHSV.z); - } - return color; - } - - mediump vec4 HSVColorizeABSCore(mediump vec4 mainColor, mediump float deltaH, mediump float deltaS, mediump float deltaV) { - mediump vec3 hueRGB = hsv2rgb(vec3(deltaH / 360.0, 1.0, 1.0)); - mediump float saturation = deltaS / 100.0; - mediump float lightness = clamp(deltaV / 100.0, -1.0, 1.0); - mediump float value = rgb2hsv(mainColor.rgb).z; - - mediump vec3 cc = blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - return lightness >= 0.0 ? vec4(blend3(vec3(0.0, 0.0, 0.0), cc, vec3(1.0, 1.0, 1.0), 2.0 * (1.0 - lightness) * (value - 1.0) + 1.0), mainColor.a) : - vec4(blend3(vec3(0.0, 0.0, 0.0), cc, vec3(1.0, 1.0, 1.0), 2.0 * (1.0 + lightness) * (value) - 1.0), mainColor.a); - } - - mediump vec4 HSVColorizeABS(mediump vec4 mainColor, mediump vec4 hsvColor) { - vec4 result = HSVColorizeABSCore(mainColor, hsvColor.x, hsvColor.y, hsvColor.z); - return result; - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - material.normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - } - prepareMaterial(material); - - float3 deltaHSV = materialParams.deltaHSV; - lowp float skinFactor = 0.0; - if (materialParams.hasMaskMap) { - lowp float skinMask = texture(materialParams_skinMaskMap, uv).r; - skinFactor = step(1e-2, skinMask); - } - float4 albedoColor = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedoColor.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedoColor.rgb *= albedoColor.a; - } - float4 hsv = vec4(materialParams.hsvColor, 1.0); - float4 hsvColor = HSVColorizeABS(albedoColor, hsv); - float4 newColor = albedoColor * (1.0 - skinFactor) + hsvColor * skinFactor; - - if(deltaHSV.x != 0.0 || deltaHSV.y != 0.0 || deltaHSV.z != 0.0) { - if (skinFactor > 0.1) { - newColor = applyHSV(newColor, deltaHSV); - } - } - material.baseColor = vec4(newColor.rgb, albedoColor.a); - - float metallic = lerp(materialParams.metallic, 0.0, skinFactor); - float roughness = lerp(materialParams.roughness, 0.25, skinFactor); - float reflectance = lerp(materialParams.specular, 0.0, skinFactor); - if (materialParams.hasMRSMap) { - vec4 metalRoughSpec = texture(materialParams_metallicRoughnessSpecularMap, uv); - metallic = lerp(lerp(metalRoughSpec.r, 1.0, materialParams.metallic), 0.0, skinFactor); //mrs.r * materialParams.metallicFactor; - roughness = lerp(lerp(metalRoughSpec.g, 1.0, materialParams.roughness), 0.25, skinFactor); //mrs.g * materialParams.roughnessFactor; - reflectance = lerp(lerp(metalRoughSpec.b, 1.0, materialParams.specular), 0.0, skinFactor); //mrs.b * materialParams.reflectanceFactor; - } - if (materialParams.hasMetallicMap) { - vec4 metallicColor = texture(materialParams_metallicMap, uv); - metallic = lerp(lerp(metallicColor.r, 1.0, materialParams.metallic), 0.0, skinFactor); - } - if (materialParams.hasRoughnessMap) { - vec4 roughnessColor = texture(materialParams_roughnessMap, uv); - roughness = lerp(lerp(roughnessColor.r, 1.0, materialParams.roughness), 0.25, skinFactor); - } - material.metallic = metallic; - // 经验值,不加0.2这些素材感觉都高光过强 - material.roughness = saturate(roughness + 0.2); - material.reflectance = reflectance * materialParams.specularIntensity; - - material.anisotropy = lerp(materialParams.anisotropy, 0.0, skinFactor); //materialParams.anisotropy; - material.anisotropyDirection = lerpv(materialParams.anisotropyDirection, float3(1.0, 0.0, 0.0), skinFactor); - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_fade.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_fade.filamat deleted file mode 100644 index 7237888c..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_fade.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_fade.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_fade.mat deleted file mode 100644 index c7f85db0..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_fade.mat +++ /dev/null @@ -1,276 +0,0 @@ -material { - name : pbr, - shadingModel : lit, - blending : fade, - doubleSided: true, - transparency : twoPassesTwoSides, - parameters : [ - - { type : sampler2d, name : baseColorMap }, - { type : sampler2d, name : normalMap }, - { type : sampler2d, name : metallicRoughnessSpecularMap }, - { type : sampler2d, name : skinMaskMap }, - { type : sampler2d, name : roughnessMap }, - { type : sampler2d, name : metallicMap }, - { - type : bool, - name : alphaPremultiplied - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : hasAlphaMap - }, - { - type: float3, - name: hsvColor - }, - { - type : float, - name : metallic - }, - { - type : float, - name : roughness - }, - { - type : float, - name : specular - }, - { - type : float, - name : anisotropy - }, - { - type : float3, - name : anisotropyDirection - }, - { - type : bool, - name : hasNormalMap - }, - { - type : bool, - name : hasMRSMap - }, - { - type : bool, - name : hasMaskMap - }, - { - type: bool, - name: isEtcImage - }, - { - type : bool, - name : hasRoughnessMap - }, - { - type : bool, - name : hasMetallicMap - }, - { - type: float3, - name: deltaHSV - }, - { - type: float4, - name: emissionColor - }, - { - type : float, - name : specularIntensity - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - vec3 rgb2hsv(vec3 c) { - vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - float d = q.x - min(q.w, q.y); - float e = 0.0001; - - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - vec3 hsv2rgb(vec3 c) { - vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - vec3 blend2(vec3 left, vec3 right, float pos){ - return vec3(left.r * (1.0-pos) + right.r * pos, left.g * (1.0-pos) + right.g * pos, left.b * (1.0-pos) + right.b * pos); - } - - vec3 blend3(vec3 left, vec3 main, vec3 right,float pos) - { - if (pos < 0.0){ - return blend2(left, main, pos + 1.0); - } - else if (pos > 0.0){ - return blend2(main, right, pos); - } - else{ - return main; - } - } - - // deltaH scaled from 0~1 , deltaS:0~1 deltaV:-1~1 - vec4 applyColorizeHSV(vec4 mainColor, vec3 deltaHSV) - { - float deltaH = deltaHSV.x; - vec3 hueRGB = hsv2rgb(vec3(deltaH,1.0,1.0)); - float saturation = deltaHSV.y; - float lightness = deltaHSV.z; - float value = rgb2hsv(mainColor.rgb).z; - - vec3 cc = blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - if (lightness <= -1.0){ - return vec4(0,0,0,mainColor.a); - } - else if (lightness >= 1.0){ - return vec4(1,1,1,mainColor.a); - } - else if (lightness >= 0.0){ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 - lightness) * (value - 1.0) + 1.0); - return vec4(c.rgb,mainColor.a); - } - else{ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 + lightness) * (value) - 1.0); - return vec4(c.rgb,mainColor.a); - } - } - - vec4 applyHSV(vec4 color, vec3 deltaHSV) { - if (deltaHSV.x != 0.0) { - vec3 hsv = rgb2hsv(color.rgb); - hsv.x += deltaHSV.x; - if (hsv.x > 6.0) { - hsv.x = hsv.x - 6.0; - } else if (hsv.x < 0.0) { - hsv.x = hsv.x + 6.0; - } - color.rgb = hsv2rgb(hsv); - } - - if (deltaHSV.y != 0.0) { - float c_max = max(color.r, max(color.g, color.b)); - float c_min = min(color.r, min(color.g, color.b)); - float delta = c_max - c_min; - if (delta != 0.0) { - float v = c_max + c_min; - float l = v * 0.5; - float s = l < 0.5 ? (delta / v) : ((delta) / (2.0 - v)); - if (deltaHSV.y >= 0.0) { - float alpha = (deltaHSV.y + s) >= 1.0 ? s : (1.0 - deltaHSV.y); - alpha = 1.0 / alpha - 1.0; - color.rgb = color.rgb + (color.rgb - l) * alpha; - } - else { - float alpha = deltaHSV.y; - color.rgb = l + (color.rgb - l) * (1.0 + alpha); - } - } - } - - if (deltaHSV.z != 0.0) { - color.rgb = deltaHSV.z > 0.0 ? (color.rgb * (1.0 - deltaHSV.z) + deltaHSV.z) : (color.rgb + color.rgb * deltaHSV.z); - } - return color; - } - - mediump vec4 HSVColorizeABSCore(mediump vec4 mainColor, mediump float deltaH, mediump float deltaS, mediump float deltaV) { - mediump vec3 hueRGB = hsv2rgb(vec3(deltaH / 360.0, 1.0, 1.0)); - mediump float saturation = deltaS / 100.0; - mediump float lightness = clamp(deltaV / 100.0, -1.0, 1.0); - mediump float value = rgb2hsv(mainColor.rgb).z; - - mediump vec3 cc = blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - return lightness >= 0.0 ? vec4(blend3(vec3(0.0, 0.0, 0.0), cc, vec3(1.0, 1.0, 1.0), 2.0 * (1.0 - lightness) * (value - 1.0) + 1.0), mainColor.a) : - vec4(blend3(vec3(0.0, 0.0, 0.0), cc, vec3(1.0, 1.0, 1.0), 2.0 * (1.0 + lightness) * (value) - 1.0), mainColor.a); - } - - mediump vec4 HSVColorizeABS(mediump vec4 mainColor, mediump vec4 hsvColor) { - vec4 result = HSVColorizeABSCore(mainColor, hsvColor.x, hsvColor.y, hsvColor.z); - return result; - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - material.normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - } - prepareMaterial(material); - - float3 deltaHSV = materialParams.deltaHSV; - lowp float skinFactor = 0.0; - if (materialParams.hasMaskMap) { - lowp float skinMask = texture(materialParams_skinMaskMap, uv).r; - skinFactor = step(1e-2, skinMask); - } - float4 albedoColor = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedoColor.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedoColor.rgb *= albedoColor.a; - } - float4 hsv = vec4(materialParams.hsvColor, 1.0); - float4 hsvColor = HSVColorizeABS(albedoColor, hsv); - float4 newColor = albedoColor * (1.0 - skinFactor) + hsvColor * skinFactor; - - if(deltaHSV.x != 0.0 || deltaHSV.y != 0.0 || deltaHSV.z != 0.0) { - if (skinFactor > 0.1) { - newColor = applyHSV(newColor, deltaHSV); - } - } - material.baseColor = vec4(newColor.rgb, albedoColor.a); - - float metallic = lerp(materialParams.metallic, 0.0, skinFactor); - float roughness = lerp(materialParams.roughness, 0.25, skinFactor); - float reflectance = lerp(materialParams.specular, 0.0, skinFactor); - if (materialParams.hasMRSMap) { - vec4 metalRoughSpec = texture(materialParams_metallicRoughnessSpecularMap, uv); - metallic = lerp(lerp(metalRoughSpec.r, 1.0, materialParams.metallic), 0.0, skinFactor); //mrs.r * materialParams.metallicFactor; - roughness = lerp(lerp(metalRoughSpec.g, 1.0, materialParams.roughness), 0.25, skinFactor); //mrs.g * materialParams.roughnessFactor; - reflectance = lerp(lerp(metalRoughSpec.b, 1.0, materialParams.specular), 0.0, skinFactor); //mrs.b * materialParams.reflectanceFactor; - } - if (materialParams.hasMetallicMap) { - vec4 metallicColor = texture(materialParams_metallicMap, uv); - metallic = lerp(lerp(metallicColor.r, 1.0, materialParams.metallic), 0.0, skinFactor); - } - if (materialParams.hasRoughnessMap) { - vec4 roughnessColor = texture(materialParams_roughnessMap, uv); - roughness = lerp(lerp(roughnessColor.r, 1.0, materialParams.roughness), 0.25, skinFactor); - } - material.metallic = metallic; - // 经验值,不加0.2这些素材感觉都高光过强 - material.roughness = saturate(roughness + 0.2); - material.reflectance = reflectance * materialParams.specularIntensity; - - material.anisotropy = lerp(materialParams.anisotropy, 0.0, skinFactor); //materialParams.anisotropy; - material.anisotropyDirection = lerpv(materialParams.anisotropyDirection, float3(1.0, 0.0, 0.0), skinFactor); - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_masked.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_masked.filamat deleted file mode 100644 index 352acaa5..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_masked.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_masked.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_masked.mat deleted file mode 100644 index 39a0cbec..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_masked.mat +++ /dev/null @@ -1,276 +0,0 @@ -material { - name : pbr, - shadingModel : lit, - blending : masked, - doubleSided: true, - transparency : default, - parameters : [ - - { type : sampler2d, name : baseColorMap }, - { type : sampler2d, name : normalMap }, - { type : sampler2d, name : metallicRoughnessSpecularMap }, - { type : sampler2d, name : skinMaskMap }, - { type : sampler2d, name : roughnessMap }, - { type : sampler2d, name : metallicMap }, - { - type : bool, - name : alphaPremultiplied - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : hasAlphaMap - }, - { - type: float3, - name: hsvColor - }, - { - type : float, - name : metallic - }, - { - type : float, - name : roughness - }, - { - type : float, - name : specular - }, - { - type : float, - name : anisotropy - }, - { - type : float3, - name : anisotropyDirection - }, - { - type : bool, - name : hasNormalMap - }, - { - type : bool, - name : hasMRSMap - }, - { - type : bool, - name : hasMaskMap - }, - { - type: bool, - name: isEtcImage - }, - { - type : bool, - name : hasRoughnessMap - }, - { - type : bool, - name : hasMetallicMap - }, - { - type: float3, - name: deltaHSV - }, - { - type: float4, - name: emissionColor - }, - { - type : float, - name : specularIntensity - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - vec3 rgb2hsv(vec3 c) { - vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - float d = q.x - min(q.w, q.y); - float e = 0.0001; - - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - vec3 hsv2rgb(vec3 c) { - vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - vec3 blend2(vec3 left, vec3 right, float pos){ - return vec3(left.r * (1.0-pos) + right.r * pos, left.g * (1.0-pos) + right.g * pos, left.b * (1.0-pos) + right.b * pos); - } - - vec3 blend3(vec3 left, vec3 main, vec3 right,float pos) - { - if (pos < 0.0){ - return blend2(left, main, pos + 1.0); - } - else if (pos > 0.0){ - return blend2(main, right, pos); - } - else{ - return main; - } - } - - // deltaH scaled from 0~1 , deltaS:0~1 deltaV:-1~1 - vec4 applyColorizeHSV(vec4 mainColor, vec3 deltaHSV) - { - float deltaH = deltaHSV.x; - vec3 hueRGB = hsv2rgb(vec3(deltaH,1.0,1.0)); - float saturation = deltaHSV.y; - float lightness = deltaHSV.z; - float value = rgb2hsv(mainColor.rgb).z; - - vec3 cc = blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - if (lightness <= -1.0){ - return vec4(0,0,0,mainColor.a); - } - else if (lightness >= 1.0){ - return vec4(1,1,1,mainColor.a); - } - else if (lightness >= 0.0){ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 - lightness) * (value - 1.0) + 1.0); - return vec4(c.rgb,mainColor.a); - } - else{ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 + lightness) * (value) - 1.0); - return vec4(c.rgb,mainColor.a); - } - } - - vec4 applyHSV(vec4 color, vec3 deltaHSV) { - if (deltaHSV.x != 0.0) { - vec3 hsv = rgb2hsv(color.rgb); - hsv.x += deltaHSV.x; - if (hsv.x > 6.0) { - hsv.x = hsv.x - 6.0; - } else if (hsv.x < 0.0) { - hsv.x = hsv.x + 6.0; - } - color.rgb = hsv2rgb(hsv); - } - - if (deltaHSV.y != 0.0) { - float c_max = max(color.r, max(color.g, color.b)); - float c_min = min(color.r, min(color.g, color.b)); - float delta = c_max - c_min; - if (delta != 0.0) { - float v = c_max + c_min; - float l = v * 0.5; - float s = l < 0.5 ? (delta / v) : ((delta) / (2.0 - v)); - if (deltaHSV.y >= 0.0) { - float alpha = (deltaHSV.y + s) >= 1.0 ? s : (1.0 - deltaHSV.y); - alpha = 1.0 / alpha - 1.0; - color.rgb = color.rgb + (color.rgb - l) * alpha; - } - else { - float alpha = deltaHSV.y; - color.rgb = l + (color.rgb - l) * (1.0 + alpha); - } - } - } - - if (deltaHSV.z != 0.0) { - color.rgb = deltaHSV.z > 0.0 ? (color.rgb * (1.0 - deltaHSV.z) + deltaHSV.z) : (color.rgb + color.rgb * deltaHSV.z); - } - return color; - } - - mediump vec4 HSVColorizeABSCore(mediump vec4 mainColor, mediump float deltaH, mediump float deltaS, mediump float deltaV) { - mediump vec3 hueRGB = hsv2rgb(vec3(deltaH / 360.0, 1.0, 1.0)); - mediump float saturation = deltaS / 100.0; - mediump float lightness = clamp(deltaV / 100.0, -1.0, 1.0); - mediump float value = rgb2hsv(mainColor.rgb).z; - - mediump vec3 cc = blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - return lightness >= 0.0 ? vec4(blend3(vec3(0.0, 0.0, 0.0), cc, vec3(1.0, 1.0, 1.0), 2.0 * (1.0 - lightness) * (value - 1.0) + 1.0), mainColor.a) : - vec4(blend3(vec3(0.0, 0.0, 0.0), cc, vec3(1.0, 1.0, 1.0), 2.0 * (1.0 + lightness) * (value) - 1.0), mainColor.a); - } - - mediump vec4 HSVColorizeABS(mediump vec4 mainColor, mediump vec4 hsvColor) { - vec4 result = HSVColorizeABSCore(mainColor, hsvColor.x, hsvColor.y, hsvColor.z); - return result; - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - material.normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - } - prepareMaterial(material); - - float3 deltaHSV = materialParams.deltaHSV; - lowp float skinFactor = 0.0; - if (materialParams.hasMaskMap) { - lowp float skinMask = texture(materialParams_skinMaskMap, uv).r; - skinFactor = step(1e-2, skinMask); - } - float4 albedoColor = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedoColor.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedoColor.rgb *= albedoColor.a; - } - float4 hsv = vec4(materialParams.hsvColor, 1.0); - float4 hsvColor = HSVColorizeABS(albedoColor, hsv); - float4 newColor = albedoColor * (1.0 - skinFactor) + hsvColor * skinFactor; - - if(deltaHSV.x != 0.0 || deltaHSV.y != 0.0 || deltaHSV.z != 0.0) { - if (skinFactor > 0.1) { - newColor = applyHSV(newColor, deltaHSV); - } - } - material.baseColor = vec4(newColor.rgb, albedoColor.a); - - float metallic = lerp(materialParams.metallic, 0.0, skinFactor); - float roughness = lerp(materialParams.roughness, 0.25, skinFactor); - float reflectance = lerp(materialParams.specular, 0.0, skinFactor); - if (materialParams.hasMRSMap) { - vec4 metalRoughSpec = texture(materialParams_metallicRoughnessSpecularMap, uv); - metallic = lerp(lerp(metalRoughSpec.r, 1.0, materialParams.metallic), 0.0, skinFactor); //mrs.r * materialParams.metallicFactor; - roughness = lerp(lerp(metalRoughSpec.g, 1.0, materialParams.roughness), 0.25, skinFactor); //mrs.g * materialParams.roughnessFactor; - reflectance = lerp(lerp(metalRoughSpec.b, 1.0, materialParams.specular), 0.0, skinFactor); //mrs.b * materialParams.reflectanceFactor; - } - if (materialParams.hasMetallicMap) { - vec4 metallicColor = texture(materialParams_metallicMap, uv); - metallic = lerp(lerp(metallicColor.r, 1.0, materialParams.metallic), 0.0, skinFactor); - } - if (materialParams.hasRoughnessMap) { - vec4 roughnessColor = texture(materialParams_roughnessMap, uv); - roughness = lerp(lerp(roughnessColor.r, 1.0, materialParams.roughness), 0.25, skinFactor); - } - material.metallic = metallic; - // 经验值,不加0.2这些素材感觉都高光过强 - material.roughness = saturate(roughness + 0.2); - material.reflectance = reflectance * materialParams.specularIntensity; - - material.anisotropy = lerp(materialParams.anisotropy, 0.0, skinFactor); //materialParams.anisotropy; - material.anisotropyDirection = lerpv(materialParams.anisotropyDirection, float3(1.0, 0.0, 0.0), skinFactor); - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_opaque.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_opaque.filamat deleted file mode 100644 index f6d9a481..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_opaque.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_opaque.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_opaque.mat deleted file mode 100644 index d633fe94..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_opaque.mat +++ /dev/null @@ -1,276 +0,0 @@ -material { - name : pbr, - shadingModel : lit, - blending : opaque, - doubleSided: true, - transparency : default, - parameters : [ - - { type : sampler2d, name : baseColorMap }, - { type : sampler2d, name : normalMap }, - { type : sampler2d, name : metallicRoughnessSpecularMap }, - { type : sampler2d, name : skinMaskMap }, - { type : sampler2d, name : roughnessMap }, - { type : sampler2d, name : metallicMap }, - { - type : bool, - name : alphaPremultiplied - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : hasAlphaMap - }, - { - type: float3, - name: hsvColor - }, - { - type : float, - name : metallic - }, - { - type : float, - name : roughness - }, - { - type : float, - name : specular - }, - { - type : float, - name : anisotropy - }, - { - type : float3, - name : anisotropyDirection - }, - { - type : bool, - name : hasNormalMap - }, - { - type : bool, - name : hasMRSMap - }, - { - type : bool, - name : hasMaskMap - }, - { - type: bool, - name: isEtcImage - }, - { - type : bool, - name : hasRoughnessMap - }, - { - type : bool, - name : hasMetallicMap - }, - { - type: float3, - name: deltaHSV - }, - { - type: float4, - name: emissionColor - }, - { - type : float, - name : specularIntensity - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - vec3 rgb2hsv(vec3 c) { - vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - float d = q.x - min(q.w, q.y); - float e = 0.0001; - - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - vec3 hsv2rgb(vec3 c) { - vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - vec3 blend2(vec3 left, vec3 right, float pos){ - return vec3(left.r * (1.0-pos) + right.r * pos, left.g * (1.0-pos) + right.g * pos, left.b * (1.0-pos) + right.b * pos); - } - - vec3 blend3(vec3 left, vec3 main, vec3 right,float pos) - { - if (pos < 0.0){ - return blend2(left, main, pos + 1.0); - } - else if (pos > 0.0){ - return blend2(main, right, pos); - } - else{ - return main; - } - } - - // deltaH scaled from 0~1 , deltaS:0~1 deltaV:-1~1 - vec4 applyColorizeHSV(vec4 mainColor, vec3 deltaHSV) - { - float deltaH = deltaHSV.x; - vec3 hueRGB = hsv2rgb(vec3(deltaH,1.0,1.0)); - float saturation = deltaHSV.y; - float lightness = deltaHSV.z; - float value = rgb2hsv(mainColor.rgb).z; - - vec3 cc = blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - if (lightness <= -1.0){ - return vec4(0,0,0,mainColor.a); - } - else if (lightness >= 1.0){ - return vec4(1,1,1,mainColor.a); - } - else if (lightness >= 0.0){ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 - lightness) * (value - 1.0) + 1.0); - return vec4(c.rgb,mainColor.a); - } - else{ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 + lightness) * (value) - 1.0); - return vec4(c.rgb,mainColor.a); - } - } - - vec4 applyHSV(vec4 color, vec3 deltaHSV) { - if (deltaHSV.x != 0.0) { - vec3 hsv = rgb2hsv(color.rgb); - hsv.x += deltaHSV.x; - if (hsv.x > 6.0) { - hsv.x = hsv.x - 6.0; - } else if (hsv.x < 0.0) { - hsv.x = hsv.x + 6.0; - } - color.rgb = hsv2rgb(hsv); - } - - if (deltaHSV.y != 0.0) { - float c_max = max(color.r, max(color.g, color.b)); - float c_min = min(color.r, min(color.g, color.b)); - float delta = c_max - c_min; - if (delta != 0.0) { - float v = c_max + c_min; - float l = v * 0.5; - float s = l < 0.5 ? (delta / v) : ((delta) / (2.0 - v)); - if (deltaHSV.y >= 0.0) { - float alpha = (deltaHSV.y + s) >= 1.0 ? s : (1.0 - deltaHSV.y); - alpha = 1.0 / alpha - 1.0; - color.rgb = color.rgb + (color.rgb - l) * alpha; - } - else { - float alpha = deltaHSV.y; - color.rgb = l + (color.rgb - l) * (1.0 + alpha); - } - } - } - - if (deltaHSV.z != 0.0) { - color.rgb = deltaHSV.z > 0.0 ? (color.rgb * (1.0 - deltaHSV.z) + deltaHSV.z) : (color.rgb + color.rgb * deltaHSV.z); - } - return color; - } - - mediump vec4 HSVColorizeABSCore(mediump vec4 mainColor, mediump float deltaH, mediump float deltaS, mediump float deltaV) { - mediump vec3 hueRGB = hsv2rgb(vec3(deltaH / 360.0, 1.0, 1.0)); - mediump float saturation = deltaS / 100.0; - mediump float lightness = clamp(deltaV / 100.0, -1.0, 1.0); - mediump float value = rgb2hsv(mainColor.rgb).z; - - mediump vec3 cc = blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - return lightness >= 0.0 ? vec4(blend3(vec3(0.0, 0.0, 0.0), cc, vec3(1.0, 1.0, 1.0), 2.0 * (1.0 - lightness) * (value - 1.0) + 1.0), mainColor.a) : - vec4(blend3(vec3(0.0, 0.0, 0.0), cc, vec3(1.0, 1.0, 1.0), 2.0 * (1.0 + lightness) * (value) - 1.0), mainColor.a); - } - - mediump vec4 HSVColorizeABS(mediump vec4 mainColor, mediump vec4 hsvColor) { - vec4 result = HSVColorizeABSCore(mainColor, hsvColor.x, hsvColor.y, hsvColor.z); - return result; - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - material.normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - } - prepareMaterial(material); - - float3 deltaHSV = materialParams.deltaHSV; - lowp float skinFactor = 0.0; - if (materialParams.hasMaskMap) { - lowp float skinMask = texture(materialParams_skinMaskMap, uv).r; - skinFactor = step(1e-2, skinMask); - } - float4 albedoColor = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedoColor.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedoColor.rgb *= albedoColor.a; - } - float4 hsv = vec4(materialParams.hsvColor, 1.0); - float4 hsvColor = HSVColorizeABS(albedoColor, hsv); - float4 newColor = albedoColor * (1.0 - skinFactor) + hsvColor * skinFactor; - - if(deltaHSV.x != 0.0 || deltaHSV.y != 0.0 || deltaHSV.z != 0.0) { - if (skinFactor > 0.1) { - newColor = applyHSV(newColor, deltaHSV); - } - } - material.baseColor = vec4(newColor.rgb, albedoColor.a); - - float metallic = lerp(materialParams.metallic, 0.0, skinFactor); - float roughness = lerp(materialParams.roughness, 0.25, skinFactor); - float reflectance = lerp(materialParams.specular, 0.0, skinFactor); - if (materialParams.hasMRSMap) { - vec4 metalRoughSpec = texture(materialParams_metallicRoughnessSpecularMap, uv); - metallic = lerp(lerp(metalRoughSpec.r, 1.0, materialParams.metallic), 0.0, skinFactor); //mrs.r * materialParams.metallicFactor; - roughness = lerp(lerp(metalRoughSpec.g, 1.0, materialParams.roughness), 0.25, skinFactor); //mrs.g * materialParams.roughnessFactor; - reflectance = lerp(lerp(metalRoughSpec.b, 1.0, materialParams.specular), 0.0, skinFactor); //mrs.b * materialParams.reflectanceFactor; - } - if (materialParams.hasMetallicMap) { - vec4 metallicColor = texture(materialParams_metallicMap, uv); - metallic = lerp(lerp(metallicColor.r, 1.0, materialParams.metallic), 0.0, skinFactor); - } - if (materialParams.hasRoughnessMap) { - vec4 roughnessColor = texture(materialParams_roughnessMap, uv); - roughness = lerp(lerp(roughnessColor.r, 1.0, materialParams.roughness), 0.25, skinFactor); - } - material.metallic = metallic; - // 经验值,不加0.2这些素材感觉都高光过强 - material.roughness = saturate(roughness + 0.2); - material.reflectance = reflectance * materialParams.specularIntensity; - - material.anisotropy = lerp(materialParams.anisotropy, 0.0, skinFactor); //materialParams.anisotropy; - material.anisotropyDirection = lerpv(materialParams.anisotropyDirection, float3(1.0, 0.0, 0.0), skinFactor); - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_transparent.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_transparent.filamat deleted file mode 100644 index 334ca485..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_transparent.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_transparent.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_transparent.mat deleted file mode 100644 index b384fa48..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_basic_transparent.mat +++ /dev/null @@ -1,276 +0,0 @@ -material { - name : pbr, - shadingModel : lit, - blending : transparent, - doubleSided: true, - transparency : twoPassesTwoSides, - parameters : [ - - { type : sampler2d, name : baseColorMap }, - { type : sampler2d, name : normalMap }, - { type : sampler2d, name : metallicRoughnessSpecularMap }, - { type : sampler2d, name : skinMaskMap }, - { type : sampler2d, name : roughnessMap }, - { type : sampler2d, name : metallicMap }, - { - type : bool, - name : alphaPremultiplied - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : hasAlphaMap - }, - { - type: float3, - name: hsvColor - }, - { - type : float, - name : metallic - }, - { - type : float, - name : roughness - }, - { - type : float, - name : specular - }, - { - type : float, - name : anisotropy - }, - { - type : float3, - name : anisotropyDirection - }, - { - type : bool, - name : hasNormalMap - }, - { - type : bool, - name : hasMRSMap - }, - { - type : bool, - name : hasMaskMap - }, - { - type: bool, - name: isEtcImage - }, - { - type : bool, - name : hasRoughnessMap - }, - { - type : bool, - name : hasMetallicMap - }, - { - type: float3, - name: deltaHSV - }, - { - type: float4, - name: emissionColor - }, - { - type : float, - name : specularIntensity - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - vec3 rgb2hsv(vec3 c) { - vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - float d = q.x - min(q.w, q.y); - float e = 0.0001; - - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - vec3 hsv2rgb(vec3 c) { - vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - vec3 blend2(vec3 left, vec3 right, float pos){ - return vec3(left.r * (1.0-pos) + right.r * pos, left.g * (1.0-pos) + right.g * pos, left.b * (1.0-pos) + right.b * pos); - } - - vec3 blend3(vec3 left, vec3 main, vec3 right,float pos) - { - if (pos < 0.0){ - return blend2(left, main, pos + 1.0); - } - else if (pos > 0.0){ - return blend2(main, right, pos); - } - else{ - return main; - } - } - - // deltaH scaled from 0~1 , deltaS:0~1 deltaV:-1~1 - vec4 applyColorizeHSV(vec4 mainColor, vec3 deltaHSV) - { - float deltaH = deltaHSV.x; - vec3 hueRGB = hsv2rgb(vec3(deltaH,1.0,1.0)); - float saturation = deltaHSV.y; - float lightness = deltaHSV.z; - float value = rgb2hsv(mainColor.rgb).z; - - vec3 cc = blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - if (lightness <= -1.0){ - return vec4(0,0,0,mainColor.a); - } - else if (lightness >= 1.0){ - return vec4(1,1,1,mainColor.a); - } - else if (lightness >= 0.0){ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 - lightness) * (value - 1.0) + 1.0); - return vec4(c.rgb,mainColor.a); - } - else{ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 + lightness) * (value) - 1.0); - return vec4(c.rgb,mainColor.a); - } - } - - vec4 applyHSV(vec4 color, vec3 deltaHSV) { - if (deltaHSV.x != 0.0) { - vec3 hsv = rgb2hsv(color.rgb); - hsv.x += deltaHSV.x; - if (hsv.x > 6.0) { - hsv.x = hsv.x - 6.0; - } else if (hsv.x < 0.0) { - hsv.x = hsv.x + 6.0; - } - color.rgb = hsv2rgb(hsv); - } - - if (deltaHSV.y != 0.0) { - float c_max = max(color.r, max(color.g, color.b)); - float c_min = min(color.r, min(color.g, color.b)); - float delta = c_max - c_min; - if (delta != 0.0) { - float v = c_max + c_min; - float l = v * 0.5; - float s = l < 0.5 ? (delta / v) : ((delta) / (2.0 - v)); - if (deltaHSV.y >= 0.0) { - float alpha = (deltaHSV.y + s) >= 1.0 ? s : (1.0 - deltaHSV.y); - alpha = 1.0 / alpha - 1.0; - color.rgb = color.rgb + (color.rgb - l) * alpha; - } - else { - float alpha = deltaHSV.y; - color.rgb = l + (color.rgb - l) * (1.0 + alpha); - } - } - } - - if (deltaHSV.z != 0.0) { - color.rgb = deltaHSV.z > 0.0 ? (color.rgb * (1.0 - deltaHSV.z) + deltaHSV.z) : (color.rgb + color.rgb * deltaHSV.z); - } - return color; - } - - mediump vec4 HSVColorizeABSCore(mediump vec4 mainColor, mediump float deltaH, mediump float deltaS, mediump float deltaV) { - mediump vec3 hueRGB = hsv2rgb(vec3(deltaH / 360.0, 1.0, 1.0)); - mediump float saturation = deltaS / 100.0; - mediump float lightness = clamp(deltaV / 100.0, -1.0, 1.0); - mediump float value = rgb2hsv(mainColor.rgb).z; - - mediump vec3 cc = blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - return lightness >= 0.0 ? vec4(blend3(vec3(0.0, 0.0, 0.0), cc, vec3(1.0, 1.0, 1.0), 2.0 * (1.0 - lightness) * (value - 1.0) + 1.0), mainColor.a) : - vec4(blend3(vec3(0.0, 0.0, 0.0), cc, vec3(1.0, 1.0, 1.0), 2.0 * (1.0 + lightness) * (value) - 1.0), mainColor.a); - } - - mediump vec4 HSVColorizeABS(mediump vec4 mainColor, mediump vec4 hsvColor) { - vec4 result = HSVColorizeABSCore(mainColor, hsvColor.x, hsvColor.y, hsvColor.z); - return result; - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - material.normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - } - prepareMaterial(material); - - float3 deltaHSV = materialParams.deltaHSV; - lowp float skinFactor = 0.0; - if (materialParams.hasMaskMap) { - lowp float skinMask = texture(materialParams_skinMaskMap, uv).r; - skinFactor = step(1e-2, skinMask); - } - float4 albedoColor = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedoColor.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedoColor.rgb *= albedoColor.a; - } - float4 hsv = vec4(materialParams.hsvColor, 1.0); - float4 hsvColor = HSVColorizeABS(albedoColor, hsv); - float4 newColor = albedoColor * (1.0 - skinFactor) + hsvColor * skinFactor; - - if(deltaHSV.x != 0.0 || deltaHSV.y != 0.0 || deltaHSV.z != 0.0) { - if (skinFactor > 0.1) { - newColor = applyHSV(newColor, deltaHSV); - } - } - material.baseColor = vec4(newColor.rgb, albedoColor.a); - - float metallic = lerp(materialParams.metallic, 0.0, skinFactor); - float roughness = lerp(materialParams.roughness, 0.25, skinFactor); - float reflectance = lerp(materialParams.specular, 0.0, skinFactor); - if (materialParams.hasMRSMap) { - vec4 metalRoughSpec = texture(materialParams_metallicRoughnessSpecularMap, uv); - metallic = lerp(lerp(metalRoughSpec.r, 1.0, materialParams.metallic), 0.0, skinFactor); //mrs.r * materialParams.metallicFactor; - roughness = lerp(lerp(metalRoughSpec.g, 1.0, materialParams.roughness), 0.25, skinFactor); //mrs.g * materialParams.roughnessFactor; - reflectance = lerp(lerp(metalRoughSpec.b, 1.0, materialParams.specular), 0.0, skinFactor); //mrs.b * materialParams.reflectanceFactor; - } - if (materialParams.hasMetallicMap) { - vec4 metallicColor = texture(materialParams_metallicMap, uv); - metallic = lerp(lerp(metallicColor.r, 1.0, materialParams.metallic), 0.0, skinFactor); - } - if (materialParams.hasRoughnessMap) { - vec4 roughnessColor = texture(materialParams_roughnessMap, uv); - roughness = lerp(lerp(roughnessColor.r, 1.0, materialParams.roughness), 0.25, skinFactor); - } - material.metallic = metallic; - // 经验值,不加0.2这些素材感觉都高光过强 - material.roughness = saturate(roughness + 0.2); - material.reflectance = reflectance * materialParams.specularIntensity; - - material.anisotropy = lerp(materialParams.anisotropy, 0.0, skinFactor); //materialParams.anisotropy; - material.anisotropyDirection = lerpv(materialParams.anisotropyDirection, float3(1.0, 0.0, 0.0), skinFactor); - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair.mat deleted file mode 100644 index 7c2f7aac..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair.mat +++ /dev/null @@ -1,209 +0,0 @@ -material { - name : pbr, - shadingModel : lit, - blending : ${BLENDING}, - doubleSided: true, - depthWrite: true, - transparency : ${TRANSPARENCY}, - parameters : [ - { - type : float, - name : specular - }, - { - type : float, - name : specularIntensity - }, - { - type : float, - name : roughness - }, - { - type : float, - name : anisotropy - }, - { - type : float3, - name : anisotropyDirection - }, - { - type : float, - name : metallic - }, - { - type: float3, - name: hsvColor - }, - - { - type : sampler2d, - name : baseColorMap - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : hasAlphaMap - }, - // normal map - { - type : sampler2d, - name : normalMap - }, - - // ambient occlusion map - { - type: sampler2d, - name: aoMap - }, - { - type: float, - name: aoIntensity - }, - { - type : bool, - name : hasAoMap - }, - - { - type : sampler2d, - name : metallicRoughnessSpecularMap - }, - { - type : bool, - name : hasMRSMap - }, - - { - type : sampler2d, - name : hairMaskMap - }, - { - type : bool, - name : hasHairMap - }, - { - type : bool, - name : hasNormalMap - }, - { - type : bool, - name : alphaPremultiplied - }, - { - type: float4, - name: emissionColor - }, - { - type: bool, - name: isEtcImage - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - mediump vec3 Blend2(mediump vec3 left, mediump vec3 right, mediump float pos) { - return vec3(left.r * (1.0-pos) + right.r * pos, left.g * (1.0-pos) + right.g * pos, left.b * (1.0-pos) + right.b * pos); - } - - mediump vec3 Blend3(mediump vec3 left, mediump vec3 main, mediump vec3 right, mediump float pos) { - return pos < 0.0 ? Blend2(left, main, 1.0 + pos) : Blend2(main, right, pos); - } - - mediump vec3 RGBtoHSV(mediump vec3 c) { - mediump vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - mediump vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - mediump vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - mediump float d = q.x - min(q.w, q.y); - mediump float e = 0.0001; - - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - mediump vec3 HSVtoRGB(mediump vec3 c) { - mediump vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - mediump vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - mediump vec4 HSVColorizeABSCore(mediump vec4 mainColor, mediump float deltaH, mediump float deltaS, mediump float deltaV) { - mediump vec3 hueRGB = HSVtoRGB(vec3(deltaH / 360.0, 1.0, 1.0)); - mediump float saturation = deltaS / 100.0; - mediump float lightness = clamp(deltaV / 100.0, -1.0, 1.0); - mediump float value = RGBtoHSV(mainColor.rgb).z; - - mediump vec3 cc = Blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - return lightness >= 0.0 ? vec4(Blend3(vec3(0.0, 0.0, 0.0), cc, vec3(1.0, 1.0, 1.0), 2.0 * (1.0 - lightness) * (value - 1.0) + 1.0), mainColor.a) : - vec4(Blend3(vec3(0.0, 0.0, 0.0), cc, vec3(1.0, 1.0, 1.0), 2.0 * (1.0 + lightness) * (value) - 1.0), mainColor.a); - } - - mediump vec4 HSVColorizeABS(mediump vec4 mainColor, mediump vec4 hsvColor) { - vec4 result = HSVColorizeABSCore(mainColor, hsvColor.x, hsvColor.y, hsvColor.z); - return result; - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - material.normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - } - prepareMaterial(material); - - float4 albedo = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedo.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedo.rgb *= albedo.a; - } - float4 hsv = vec4(materialParams.hsvColor, 1.0); - float4 oldColor = albedo; - lowp float hairMask = 1.0; - if (materialParams.hasHairMap) { - hairMask = texture(materialParams_hairMaskMap, uv).r; - } - albedo.rgb = hairMask * albedo.rgb; - albedo = HSVColorizeABS(albedo, hsv); - - albedo.rgb = lerpv(oldColor.rgb, albedo.rgb, hairMask); - material.baseColor = float4(albedo.rgb, oldColor.a); - - if (materialParams.hasMRSMap) { - vec4 metalRoughSpec = texture(materialParams_metallicRoughnessSpecularMap, uv); - material.metallic = lerp(metalRoughSpec.r, 1.0, materialParams.metallic); - material.roughness = lerp(metalRoughSpec.g, 1.0, materialParams.roughness); - material.reflectance = lerp(metalRoughSpec.b, 1.0, materialParams.specular) * materialParams.specularIntensity; - } else { - material.metallic = materialParams.metallic; - material.roughness = materialParams.roughness; - material.reflectance = materialParams.specular * materialParams.specularIntensity; - } - - mediump float ao = 1.0; - if (materialParams.hasAoMap) { - ao = texture(materialParams_aoMap, uv).r * materialParams.aoIntensity; - } - material.ambientOcclusion = ao; - - material.anisotropy = materialParams.anisotropy; - material.anisotropyDirection = materialParams.anisotropyDirection; - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_fade.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_fade.filamat deleted file mode 100644 index a5e5f373..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_fade.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_fade.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_fade.mat deleted file mode 100644 index e3b1ec96..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_fade.mat +++ /dev/null @@ -1,209 +0,0 @@ -material { - name : pbr, - shadingModel : lit, - blending : fade, - doubleSided: true, - depthWrite: true, - transparency : twoPassesTwoSides, - parameters : [ - { - type : float, - name : specular - }, - { - type : float, - name : specularIntensity - }, - { - type : float, - name : roughness - }, - { - type : float, - name : anisotropy - }, - { - type : float3, - name : anisotropyDirection - }, - { - type : float, - name : metallic - }, - { - type: float3, - name: hsvColor - }, - - { - type : sampler2d, - name : baseColorMap - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : hasAlphaMap - }, - // normal map - { - type : sampler2d, - name : normalMap - }, - - // ambient occlusion map - { - type: sampler2d, - name: aoMap - }, - { - type: float, - name: aoIntensity - }, - { - type : bool, - name : hasAoMap - }, - - { - type : sampler2d, - name : metallicRoughnessSpecularMap - }, - { - type : bool, - name : hasMRSMap - }, - - { - type : sampler2d, - name : hairMaskMap - }, - { - type : bool, - name : hasHairMap - }, - { - type : bool, - name : hasNormalMap - }, - { - type : bool, - name : alphaPremultiplied - }, - { - type: float4, - name: emissionColor - }, - { - type: bool, - name: isEtcImage - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - mediump vec3 Blend2(mediump vec3 left, mediump vec3 right, mediump float pos) { - return vec3(left.r * (1.0-pos) + right.r * pos, left.g * (1.0-pos) + right.g * pos, left.b * (1.0-pos) + right.b * pos); - } - - mediump vec3 Blend3(mediump vec3 left, mediump vec3 main, mediump vec3 right, mediump float pos) { - return pos < 0.0 ? Blend2(left, main, 1.0 + pos) : Blend2(main, right, pos); - } - - mediump vec3 RGBtoHSV(mediump vec3 c) { - mediump vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - mediump vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - mediump vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - mediump float d = q.x - min(q.w, q.y); - mediump float e = 0.0001; - - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - mediump vec3 HSVtoRGB(mediump vec3 c) { - mediump vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - mediump vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - mediump vec4 HSVColorizeABSCore(mediump vec4 mainColor, mediump float deltaH, mediump float deltaS, mediump float deltaV) { - mediump vec3 hueRGB = HSVtoRGB(vec3(deltaH / 360.0, 1.0, 1.0)); - mediump float saturation = deltaS / 100.0; - mediump float lightness = clamp(deltaV / 100.0, -1.0, 1.0); - mediump float value = RGBtoHSV(mainColor.rgb).z; - - mediump vec3 cc = Blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - return lightness >= 0.0 ? vec4(Blend3(vec3(0.0, 0.0, 0.0), cc, vec3(1.0, 1.0, 1.0), 2.0 * (1.0 - lightness) * (value - 1.0) + 1.0), mainColor.a) : - vec4(Blend3(vec3(0.0, 0.0, 0.0), cc, vec3(1.0, 1.0, 1.0), 2.0 * (1.0 + lightness) * (value) - 1.0), mainColor.a); - } - - mediump vec4 HSVColorizeABS(mediump vec4 mainColor, mediump vec4 hsvColor) { - vec4 result = HSVColorizeABSCore(mainColor, hsvColor.x, hsvColor.y, hsvColor.z); - return result; - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - material.normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - } - prepareMaterial(material); - - float4 albedo = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedo.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedo.rgb *= albedo.a; - } - float4 hsv = vec4(materialParams.hsvColor, 1.0); - float4 oldColor = albedo; - lowp float hairMask = 1.0; - if (materialParams.hasHairMap) { - hairMask = texture(materialParams_hairMaskMap, uv).r; - } - albedo.rgb = hairMask * albedo.rgb; - albedo = HSVColorizeABS(albedo, hsv); - - albedo.rgb = lerpv(oldColor.rgb, albedo.rgb, hairMask); - material.baseColor = float4(albedo.rgb, oldColor.a); - - if (materialParams.hasMRSMap) { - vec4 metalRoughSpec = texture(materialParams_metallicRoughnessSpecularMap, uv); - material.metallic = lerp(metalRoughSpec.r, 1.0, materialParams.metallic); - material.roughness = lerp(metalRoughSpec.g, 1.0, materialParams.roughness); - material.reflectance = lerp(metalRoughSpec.b, 1.0, materialParams.specular) * materialParams.specularIntensity; - } else { - material.metallic = materialParams.metallic; - material.roughness = materialParams.roughness; - material.reflectance = materialParams.specular * materialParams.specularIntensity; - } - - mediump float ao = 1.0; - if (materialParams.hasAoMap) { - ao = texture(materialParams_aoMap, uv).r * materialParams.aoIntensity; - } - material.ambientOcclusion = ao; - - material.anisotropy = materialParams.anisotropy; - material.anisotropyDirection = materialParams.anisotropyDirection; - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_masked.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_masked.filamat deleted file mode 100644 index d1fa285f..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_masked.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_masked.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_masked.mat deleted file mode 100644 index cb16867c..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_masked.mat +++ /dev/null @@ -1,209 +0,0 @@ -material { - name : pbr, - shadingModel : lit, - blending : masked, - doubleSided: true, - depthWrite: true, - transparency : default, - parameters : [ - { - type : float, - name : specular - }, - { - type : float, - name : specularIntensity - }, - { - type : float, - name : roughness - }, - { - type : float, - name : anisotropy - }, - { - type : float3, - name : anisotropyDirection - }, - { - type : float, - name : metallic - }, - { - type: float3, - name: hsvColor - }, - - { - type : sampler2d, - name : baseColorMap - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : hasAlphaMap - }, - // normal map - { - type : sampler2d, - name : normalMap - }, - - // ambient occlusion map - { - type: sampler2d, - name: aoMap - }, - { - type: float, - name: aoIntensity - }, - { - type : bool, - name : hasAoMap - }, - - { - type : sampler2d, - name : metallicRoughnessSpecularMap - }, - { - type : bool, - name : hasMRSMap - }, - - { - type : sampler2d, - name : hairMaskMap - }, - { - type : bool, - name : hasHairMap - }, - { - type : bool, - name : hasNormalMap - }, - { - type : bool, - name : alphaPremultiplied - }, - { - type: float4, - name: emissionColor - }, - { - type: bool, - name: isEtcImage - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - mediump vec3 Blend2(mediump vec3 left, mediump vec3 right, mediump float pos) { - return vec3(left.r * (1.0-pos) + right.r * pos, left.g * (1.0-pos) + right.g * pos, left.b * (1.0-pos) + right.b * pos); - } - - mediump vec3 Blend3(mediump vec3 left, mediump vec3 main, mediump vec3 right, mediump float pos) { - return pos < 0.0 ? Blend2(left, main, 1.0 + pos) : Blend2(main, right, pos); - } - - mediump vec3 RGBtoHSV(mediump vec3 c) { - mediump vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - mediump vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - mediump vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - mediump float d = q.x - min(q.w, q.y); - mediump float e = 0.0001; - - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - mediump vec3 HSVtoRGB(mediump vec3 c) { - mediump vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - mediump vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - mediump vec4 HSVColorizeABSCore(mediump vec4 mainColor, mediump float deltaH, mediump float deltaS, mediump float deltaV) { - mediump vec3 hueRGB = HSVtoRGB(vec3(deltaH / 360.0, 1.0, 1.0)); - mediump float saturation = deltaS / 100.0; - mediump float lightness = clamp(deltaV / 100.0, -1.0, 1.0); - mediump float value = RGBtoHSV(mainColor.rgb).z; - - mediump vec3 cc = Blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - return lightness >= 0.0 ? vec4(Blend3(vec3(0.0, 0.0, 0.0), cc, vec3(1.0, 1.0, 1.0), 2.0 * (1.0 - lightness) * (value - 1.0) + 1.0), mainColor.a) : - vec4(Blend3(vec3(0.0, 0.0, 0.0), cc, vec3(1.0, 1.0, 1.0), 2.0 * (1.0 + lightness) * (value) - 1.0), mainColor.a); - } - - mediump vec4 HSVColorizeABS(mediump vec4 mainColor, mediump vec4 hsvColor) { - vec4 result = HSVColorizeABSCore(mainColor, hsvColor.x, hsvColor.y, hsvColor.z); - return result; - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - material.normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - } - prepareMaterial(material); - - float4 albedo = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedo.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedo.rgb *= albedo.a; - } - float4 hsv = vec4(materialParams.hsvColor, 1.0); - float4 oldColor = albedo; - lowp float hairMask = 1.0; - if (materialParams.hasHairMap) { - hairMask = texture(materialParams_hairMaskMap, uv).r; - } - albedo.rgb = hairMask * albedo.rgb; - albedo = HSVColorizeABS(albedo, hsv); - - albedo.rgb = lerpv(oldColor.rgb, albedo.rgb, hairMask); - material.baseColor = float4(albedo.rgb, oldColor.a); - - if (materialParams.hasMRSMap) { - vec4 metalRoughSpec = texture(materialParams_metallicRoughnessSpecularMap, uv); - material.metallic = lerp(metalRoughSpec.r, 1.0, materialParams.metallic); - material.roughness = lerp(metalRoughSpec.g, 1.0, materialParams.roughness); - material.reflectance = lerp(metalRoughSpec.b, 1.0, materialParams.specular) * materialParams.specularIntensity; - } else { - material.metallic = materialParams.metallic; - material.roughness = materialParams.roughness; - material.reflectance = materialParams.specular * materialParams.specularIntensity; - } - - mediump float ao = 1.0; - if (materialParams.hasAoMap) { - ao = texture(materialParams_aoMap, uv).r * materialParams.aoIntensity; - } - material.ambientOcclusion = ao; - - material.anisotropy = materialParams.anisotropy; - material.anisotropyDirection = materialParams.anisotropyDirection; - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_opaque.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_opaque.filamat deleted file mode 100644 index bf1c5773..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_opaque.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_opaque.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_opaque.mat deleted file mode 100644 index b0543ffa..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_opaque.mat +++ /dev/null @@ -1,209 +0,0 @@ -material { - name : pbr, - shadingModel : lit, - blending : opaque, - doubleSided: true, - depthWrite: true, - transparency : default, - parameters : [ - { - type : float, - name : specular - }, - { - type : float, - name : specularIntensity - }, - { - type : float, - name : roughness - }, - { - type : float, - name : anisotropy - }, - { - type : float3, - name : anisotropyDirection - }, - { - type : float, - name : metallic - }, - { - type: float3, - name: hsvColor - }, - - { - type : sampler2d, - name : baseColorMap - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : hasAlphaMap - }, - // normal map - { - type : sampler2d, - name : normalMap - }, - - // ambient occlusion map - { - type: sampler2d, - name: aoMap - }, - { - type: float, - name: aoIntensity - }, - { - type : bool, - name : hasAoMap - }, - - { - type : sampler2d, - name : metallicRoughnessSpecularMap - }, - { - type : bool, - name : hasMRSMap - }, - - { - type : sampler2d, - name : hairMaskMap - }, - { - type : bool, - name : hasHairMap - }, - { - type : bool, - name : hasNormalMap - }, - { - type : bool, - name : alphaPremultiplied - }, - { - type: float4, - name: emissionColor - }, - { - type: bool, - name: isEtcImage - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - mediump vec3 Blend2(mediump vec3 left, mediump vec3 right, mediump float pos) { - return vec3(left.r * (1.0-pos) + right.r * pos, left.g * (1.0-pos) + right.g * pos, left.b * (1.0-pos) + right.b * pos); - } - - mediump vec3 Blend3(mediump vec3 left, mediump vec3 main, mediump vec3 right, mediump float pos) { - return pos < 0.0 ? Blend2(left, main, 1.0 + pos) : Blend2(main, right, pos); - } - - mediump vec3 RGBtoHSV(mediump vec3 c) { - mediump vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - mediump vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - mediump vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - mediump float d = q.x - min(q.w, q.y); - mediump float e = 0.0001; - - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - mediump vec3 HSVtoRGB(mediump vec3 c) { - mediump vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - mediump vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - mediump vec4 HSVColorizeABSCore(mediump vec4 mainColor, mediump float deltaH, mediump float deltaS, mediump float deltaV) { - mediump vec3 hueRGB = HSVtoRGB(vec3(deltaH / 360.0, 1.0, 1.0)); - mediump float saturation = deltaS / 100.0; - mediump float lightness = clamp(deltaV / 100.0, -1.0, 1.0); - mediump float value = RGBtoHSV(mainColor.rgb).z; - - mediump vec3 cc = Blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - return lightness >= 0.0 ? vec4(Blend3(vec3(0.0, 0.0, 0.0), cc, vec3(1.0, 1.0, 1.0), 2.0 * (1.0 - lightness) * (value - 1.0) + 1.0), mainColor.a) : - vec4(Blend3(vec3(0.0, 0.0, 0.0), cc, vec3(1.0, 1.0, 1.0), 2.0 * (1.0 + lightness) * (value) - 1.0), mainColor.a); - } - - mediump vec4 HSVColorizeABS(mediump vec4 mainColor, mediump vec4 hsvColor) { - vec4 result = HSVColorizeABSCore(mainColor, hsvColor.x, hsvColor.y, hsvColor.z); - return result; - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - material.normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - } - prepareMaterial(material); - - float4 albedo = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedo.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedo.rgb *= albedo.a; - } - float4 hsv = vec4(materialParams.hsvColor, 1.0); - float4 oldColor = albedo; - lowp float hairMask = 1.0; - if (materialParams.hasHairMap) { - hairMask = texture(materialParams_hairMaskMap, uv).r; - } - albedo.rgb = hairMask * albedo.rgb; - albedo = HSVColorizeABS(albedo, hsv); - - albedo.rgb = lerpv(oldColor.rgb, albedo.rgb, hairMask); - material.baseColor = float4(albedo.rgb, oldColor.a); - - if (materialParams.hasMRSMap) { - vec4 metalRoughSpec = texture(materialParams_metallicRoughnessSpecularMap, uv); - material.metallic = lerp(metalRoughSpec.r, 1.0, materialParams.metallic); - material.roughness = lerp(metalRoughSpec.g, 1.0, materialParams.roughness); - material.reflectance = lerp(metalRoughSpec.b, 1.0, materialParams.specular) * materialParams.specularIntensity; - } else { - material.metallic = materialParams.metallic; - material.roughness = materialParams.roughness; - material.reflectance = materialParams.specular * materialParams.specularIntensity; - } - - mediump float ao = 1.0; - if (materialParams.hasAoMap) { - ao = texture(materialParams_aoMap, uv).r * materialParams.aoIntensity; - } - material.ambientOcclusion = ao; - - material.anisotropy = materialParams.anisotropy; - material.anisotropyDirection = materialParams.anisotropyDirection; - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_transparent.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_transparent.filamat deleted file mode 100644 index bf1bdb53..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_transparent.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_transparent.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_transparent.mat deleted file mode 100644 index 1b75fab8..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/disney_hair_transparent.mat +++ /dev/null @@ -1,209 +0,0 @@ -material { - name : pbr, - shadingModel : lit, - blending : transparent, - doubleSided: true, - depthWrite: true, - transparency : twoPassesTwoSides, - parameters : [ - { - type : float, - name : specular - }, - { - type : float, - name : specularIntensity - }, - { - type : float, - name : roughness - }, - { - type : float, - name : anisotropy - }, - { - type : float3, - name : anisotropyDirection - }, - { - type : float, - name : metallic - }, - { - type: float3, - name: hsvColor - }, - - { - type : sampler2d, - name : baseColorMap - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : hasAlphaMap - }, - // normal map - { - type : sampler2d, - name : normalMap - }, - - // ambient occlusion map - { - type: sampler2d, - name: aoMap - }, - { - type: float, - name: aoIntensity - }, - { - type : bool, - name : hasAoMap - }, - - { - type : sampler2d, - name : metallicRoughnessSpecularMap - }, - { - type : bool, - name : hasMRSMap - }, - - { - type : sampler2d, - name : hairMaskMap - }, - { - type : bool, - name : hasHairMap - }, - { - type : bool, - name : hasNormalMap - }, - { - type : bool, - name : alphaPremultiplied - }, - { - type: float4, - name: emissionColor - }, - { - type: bool, - name: isEtcImage - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - mediump vec3 Blend2(mediump vec3 left, mediump vec3 right, mediump float pos) { - return vec3(left.r * (1.0-pos) + right.r * pos, left.g * (1.0-pos) + right.g * pos, left.b * (1.0-pos) + right.b * pos); - } - - mediump vec3 Blend3(mediump vec3 left, mediump vec3 main, mediump vec3 right, mediump float pos) { - return pos < 0.0 ? Blend2(left, main, 1.0 + pos) : Blend2(main, right, pos); - } - - mediump vec3 RGBtoHSV(mediump vec3 c) { - mediump vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - mediump vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - mediump vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - mediump float d = q.x - min(q.w, q.y); - mediump float e = 0.0001; - - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - mediump vec3 HSVtoRGB(mediump vec3 c) { - mediump vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - mediump vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - mediump vec4 HSVColorizeABSCore(mediump vec4 mainColor, mediump float deltaH, mediump float deltaS, mediump float deltaV) { - mediump vec3 hueRGB = HSVtoRGB(vec3(deltaH / 360.0, 1.0, 1.0)); - mediump float saturation = deltaS / 100.0; - mediump float lightness = clamp(deltaV / 100.0, -1.0, 1.0); - mediump float value = RGBtoHSV(mainColor.rgb).z; - - mediump vec3 cc = Blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - return lightness >= 0.0 ? vec4(Blend3(vec3(0.0, 0.0, 0.0), cc, vec3(1.0, 1.0, 1.0), 2.0 * (1.0 - lightness) * (value - 1.0) + 1.0), mainColor.a) : - vec4(Blend3(vec3(0.0, 0.0, 0.0), cc, vec3(1.0, 1.0, 1.0), 2.0 * (1.0 + lightness) * (value) - 1.0), mainColor.a); - } - - mediump vec4 HSVColorizeABS(mediump vec4 mainColor, mediump vec4 hsvColor) { - vec4 result = HSVColorizeABSCore(mainColor, hsvColor.x, hsvColor.y, hsvColor.z); - return result; - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - material.normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - } - prepareMaterial(material); - - float4 albedo = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedo.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedo.rgb *= albedo.a; - } - float4 hsv = vec4(materialParams.hsvColor, 1.0); - float4 oldColor = albedo; - lowp float hairMask = 1.0; - if (materialParams.hasHairMap) { - hairMask = texture(materialParams_hairMaskMap, uv).r; - } - albedo.rgb = hairMask * albedo.rgb; - albedo = HSVColorizeABS(albedo, hsv); - - albedo.rgb = lerpv(oldColor.rgb, albedo.rgb, hairMask); - material.baseColor = float4(albedo.rgb, oldColor.a); - - if (materialParams.hasMRSMap) { - vec4 metalRoughSpec = texture(materialParams_metallicRoughnessSpecularMap, uv); - material.metallic = lerp(metalRoughSpec.r, 1.0, materialParams.metallic); - material.roughness = lerp(metalRoughSpec.g, 1.0, materialParams.roughness); - material.reflectance = lerp(metalRoughSpec.b, 1.0, materialParams.specular) * materialParams.specularIntensity; - } else { - material.metallic = materialParams.metallic; - material.roughness = materialParams.roughness; - material.reflectance = materialParams.specular * materialParams.specularIntensity; - } - - mediump float ao = 1.0; - if (materialParams.hasAoMap) { - ao = texture(materialParams_aoMap, uv).r * materialParams.aoIntensity; - } - material.ambientOcclusion = ao; - - material.anisotropy = materialParams.anisotropy; - material.anisotropyDirection = materialParams.anisotropyDirection; - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/dof.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/dof.filamat deleted file mode 100644 index d5650d0e..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/dof.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/dofCombine.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/dofCombine.filamat deleted file mode 100644 index ee430e21..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/dofCombine.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/dofDilate.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/dofDilate.filamat deleted file mode 100644 index 98ef3413..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/dofDilate.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/dofDownsample.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/dofDownsample.filamat deleted file mode 100644 index 04e7d0ee..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/dofDownsample.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/dofMipmap.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/dofMipmap.filamat deleted file mode 100644 index b60f3d5a..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/dofMipmap.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/dofTiles.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/dofTiles.filamat deleted file mode 100644 index 61c9b994..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/dofTiles.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/face_mesh.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/face_mesh.filamat deleted file mode 100644 index acb94e13..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/face_mesh.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/face_mesh.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/face_mesh.mat deleted file mode 100644 index c79bb382..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/face_mesh.mat +++ /dev/null @@ -1,85 +0,0 @@ -// Simple unlit material that uses the colors associated with each vertex. -// -// This source material must be compiled to a binary material using the matc tool. -// The command used to compile this material is: -// matc -p mobile -a opengl -o app/src/main/assets/baked_color.filamat app/src/materials/baked_color.mat -// -// See build.gradle for an example of how to compile materials automatically -// Please refer to the documentation for more information about matc and the materials system. - -material { - name : face_mesh, - shadingModel : unlit, - parameters : [ - { - type : sampler2d, - name : texture - }, - { - type : sampler2d, - name : positionTex, - }, - { - type : mat4, - name : oldTransform - }, - { - type : mat4, - name : newTransformInverse - } - ], - requires : [uv0, color], - variables : [ - color1 - ] -} - -vertex { - void materialVertex(inout MaterialVertexInputs material) { - float4 p0 = texture(materialParams_positionTex, vec2(material.uv0.x + 0.001, material.uv0.y + 0.001)); - float4 p1 = texture(materialParams_positionTex, vec2(material.uv0.x + 0.001, material.uv0.y - 0.001)); - float4 p2 = texture(materialParams_positionTex, vec2(material.uv0.x - 0.001, material.uv0.y + 0.001)); - float4 p3 = texture(materialParams_positionTex, vec2(material.uv0.x - 0.001, material.uv0.y - 0.001)); - //getWorldFromModelMatrix() = rootWorldTransform * materialParams.newTransform - float4 p = getClipFromWorldMatrix() * getWorldFromModelMatrix() * materialParams.newTransformInverse * materialParams.oldTransform * getPosition(); - float3 pos = p.xyz / p.w; - pos = pos * 0.5 + 0.5; - material.color1 = vec4(pos.xy, 0.0, 1.0); - //material.worldPosition.xyz += (getWorldFromModelMatrix() * vec4(0.5, 0.5, 0.0, 1.0)).xyz; - } -} - -fragment { - vec3 GammaToLinearSpace (vec3 sRGB) - { - return sRGB * (sRGB * (sRGB * 0.305306011 + 0.682171111) + 0.012522878); - } - - vec3 powv(vec3 color, float value){ - return vec3(pow(color.r, value), pow(color.g, value), pow(color.b, value)); - } - - vec3 LinearToGammaSpace (vec3 linRGB) - { - return max(1.055 * powv(linRGB, 0.416666667) - 0.055, 0.0); - } - - float sRGB_to_linear(float color) { - return color <= 0.04045 ? color / 12.92 : pow((color + 0.055) / 1.055, 2.4); - } - - vec3 GTLSpace (vec3 sRGB) - { - return vec3(sRGB_to_linear(sRGB.r), sRGB_to_linear(sRGB.g), sRGB_to_linear(sRGB.b)); - } - - - void material(inout MaterialInputs material) { - prepareMaterial(material); - //material.baseColor = variable_color1; - vec4 color1 = texture(materialParams_texture, vec2(variable_color1.x, 1.0 - variable_color1.y)); - color1.rgb = GTLSpace(color1.rgb); - material.baseColor = color1; - //material.baseColor.rgb /= 3.0; - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/face_mesh_blend.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/face_mesh_blend.filamat deleted file mode 100644 index 89a0e1ee..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/face_mesh_blend.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/face_mesh_blend.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/face_mesh_blend.mat deleted file mode 100755 index b72da8c6..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/face_mesh_blend.mat +++ /dev/null @@ -1,105 +0,0 @@ -material { - name : face_mesh_blend, - shadingModel : unlit, - depthWrite: true, - depthCulling: false, - parameters : [ - { - type : sampler2d, - name : texture - }, - { - type : sampler2d, - name : color - }, - { - type : sampler2d, - name : secondary - }, - { - type : float, - name : sigma - }, - { - type : float, - name : offset - }, - { - type : sampler2d, - name : camera - }, - { - type : mat4, - name : mvpMatrix - }, - { - type : float, - name : scale - }, - { - type : mat4, - name : oldTransform - }, - { - type : mat4, - name : newTransform - }, - { - type : mat4, - name : scaleTransform - }, - { - type : sampler2d, - name : blendTex, - }, - { - type : sampler2d, - name : roughnessMap - }, - { - type : float, - name : renderTime, - }, - { - type : float, - name : blendWeight, - } - ], - requires: [ - uv0 - ], - variables : [ - pos,color_s - ] -} - -vertex { - void materialVertex(inout MaterialVertexInputs material) { - vec4 xPos = materialParams.mvpMatrix * materialParams.scaleTransform *getPosition(); - float width = getResolution().x * materialParams.scale; - float height = getResolution().y * materialParams.scale; - xPos.x = xPos.x / width * 2.0 - 1.0; - xPos.y = xPos.y / height * 2.0 - 1.0; - float depth = max(width, height); - xPos.z = -xPos.z / depth; - material.worldPosition = inverse(getClipFromWorldMatrix()) * xPos; - } -} - -fragment { - void material(inout MaterialInputs material) { - prepareMaterial(material); - float2 uv = uvToRenderTargetUV(getUV0()); - vec4 color1 = texture(materialParams_texture, float2(uv.x, 1.0 - uv.y)); - uv = getUV0(); - vec4 color2 = texture(materialParams_blendTex, float2(uv.x, 1.0 - uv.y)); - - //float alpha = (materialParams.renderTime - (4.0 * floor(materialParams.renderTime / 4.0))) / 4.0; - float alpha = materialParams.blendWeight; - alpha *= color2.a; - vec4 color; - color.rgb = color1.rgb * color1.a * (1.0 - alpha) + color2.rgb * alpha; - color.a = alpha + color1.a * (1.0 - alpha); - material.baseColor = color; - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/face_mesh_lit.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/face_mesh_lit.filamat deleted file mode 100644 index d7bd3ae5..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/face_mesh_lit.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/face_mesh_lit.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/face_mesh_lit.mat deleted file mode 100644 index f77c2a21..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/face_mesh_lit.mat +++ /dev/null @@ -1,79 +0,0 @@ -// Simple unlit material that uses the colors associated with each vertex. -// -// This source material must be compiled to a binary material using the matc tool. -// The command used to compile this material is: -// matc -p mobile -a opengl -o app/src/main/assets/baked_color.filamat app/src/materials/baked_color.mat -// -// See build.gradle for an example of how to compile materials automatically -// Please refer to the documentation for more information about matc and the materials system. - -material { - name : face_mesh_lit, - shadingModel : lit, - parameters : [ - { type : sampler2d, name : texture }, - { type : sampler2d, name : positionTex }, - - { type : mat4, name : oldTransform }, - { type : mat4, name : newTransformInverse }, - - { type : float, name : blendFactor }, - { type : float4, name : baseColorFactor }, - { type : sampler2d, name : baseColorMap }, - - { type : float, name : metallicFactor }, - { type : float, name : roughnessFactor }, - { type : float, name : ambientOcclusionFactor }, - { type : sampler2d, name : occlusionMetallicRoughnessMap } - ], - requires : [uv0, color], - variables : [ - color1 - ] -} - -vertex { - void materialVertex(inout MaterialVertexInputs material) { - float4 p0 = texture(materialParams_positionTex, vec2(material.uv0.x + 0.001, material.uv0.y + 0.001)); - float4 p1 = texture(materialParams_positionTex, vec2(material.uv0.x + 0.001, material.uv0.y - 0.001)); - float4 p2 = texture(materialParams_positionTex, vec2(material.uv0.x - 0.001, material.uv0.y + 0.001)); - float4 p3 = texture(materialParams_positionTex, vec2(material.uv0.x - 0.001, material.uv0.y - 0.001)); - //getWorldFromModelMatrix() = rootWorldTransform * materialParams.newTransform - float4 p = getClipFromWorldMatrix() * getWorldFromModelMatrix() * materialParams.newTransformInverse * materialParams.oldTransform * getPosition(); - float3 pos = p.xyz / p.w; - pos = pos * 0.5 + 0.5; - material.color1 = vec4(pos.xy, 0.0, 1.0); - //material.worldPosition.xyz += (getWorldFromModelMatrix() * vec4(0.5, 0.5, 0.0, 1.0)).xyz; - } -} - -fragment { - vec3 powv(vec3 color, float value){ - return vec3(pow(color.r, value), pow(color.g, value), pow(color.b, value)); - } - - float sRGB_to_linear(float color) { - return color <= 0.04045 ? color / 12.92 : pow((color + 0.055) / 1.055, 2.4); - } - - vec3 GTLSpace (vec3 sRGB) - { - return vec3(sRGB_to_linear(sRGB.r), sRGB_to_linear(sRGB.g), sRGB_to_linear(sRGB.b)); - } - - void material(inout MaterialInputs material) { - prepareMaterial(material); - float2 uv0 = getUV0(); - - vec4 color1 = texture(materialParams_texture, vec2(variable_color1.x, 1.0 - variable_color1.y)); // color1 is from camera texture - color1.rgb = GTLSpace(color1.rgb); - vec4 color2 = materialParams.baseColorFactor; - color2 *= texture(materialParams_baseColorMap, uv0); - material.baseColor = mix(color1, color2, materialParams.blendFactor); - - vec4 mr = texture(materialParams_occlusionMetallicRoughnessMap, uv0); - material.ambientOcclusion = materialParams.ambientOcclusionFactor * mr.r; - material.roughness = materialParams.roughnessFactor * mr.g; - material.metallic = materialParams.metallicFactor * mr.b; - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/filament_head.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/filament_head.filamat deleted file mode 100644 index 1b4c5c01..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/filament_head.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/filament_head.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/filament_head.mat deleted file mode 100644 index 2920d4b5..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/filament_head.mat +++ /dev/null @@ -1,24 +0,0 @@ -// Simple unlit material that uses the colors associated with each vertex. -// -// This source material must be compiled to a binary material using the matc tool. -// The command used to compile this material is: -// matc -p mobile -a opengl -o app/src/main/assets/baked_color.filamat app/src/materials/baked_color.mat -// -// See build.gradle for an example of how to compile materials automatically -// Please refer to the documentation for more information about matc and the materials system. - -material { - name : filament_head, - shadingModel : unlit, - shadowMultiplier : true, - blending : opaque -} - -// These are used for face shadow, Please not delete these codes. -fragment { - void material(inout MaterialInputs material) { - prepareMaterial(material); - // baseColor defines the color and opacity of the final shadow - material.baseColor = vec4(0.0, 0.0, 0.0, 0.7); - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/filament_head_3dmm.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/filament_head_3dmm.filamat deleted file mode 100644 index a3c41814..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/filament_head_3dmm.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/filament_head_3dmm.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/filament_head_3dmm.mat deleted file mode 100644 index cd289923..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/filament_head_3dmm.mat +++ /dev/null @@ -1,74 +0,0 @@ -// Simple unlit material that uses the colors associated with each vertex. -// -// This source material must be compiled to a binary material using the matc tool. -// The command used to compile this material is: -// matc -p mobile -a opengl -o app/src/main/assets/baked_color.filamat app/src/materials/baked_color.mat -// -// See build.gradle for an example of how to compile materials automatically -// Please refer to the documentation for more information about matc and the materials system. - -material { - name : filament_head, - shadingModel : lit, - parameters : [ - { type : sampler2d, name : baseColorMap }, - { type : sampler2d, name : mrMap }, - { type : sampler2d, name : cameraTexture }, - - { - type : float, - name : blendFactor - }, - { - type : float, - name : metallicFactor - }, - { - type : float, - name : roughnessFactor - }, - { - type : float, - name : ambientOcclusionFactor - }, - { - type : float, - name : reflectance - }, - { - type : float, - name : anisotropy - }, - { - type : float3, - name : anisotropyDirection - } - ], - requires : [ - uv0 - ], -} -// These are used for face shadow, Please not delete these codes. -fragment { - void material(inout MaterialInputs material) { - prepareMaterial(material); - vec2 uv = getUV0(); - vec2 screenUV = gl_FragCoord.xy * getResolution().zw; - screenUV.y = 1.0 - screenUV.y; - - // baseColor defines the color and opacity of the final shadow - float4 baseColor = texture(materialParams_baseColorMap, uv); - float4 screenColor = texture(materialParams_cameraTexture, screenUV); - material.baseColor = mix(screenColor, baseColor, materialParams.blendFactor); - - float3 mra = texture(materialParams_mrMap, uv).rgb; - - material.roughness = materialParams.roughnessFactor; - material.metallic = materialParams.metallicFactor; - material.reflectance = materialParams.reflectance; - material.anisotropy = materialParams.anisotropy; - material.anisotropyDirection = materialParams.anisotropyDirection; - - //material.ambientOcclusion = materialParams.ambientOcclusionFactor; - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fur.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fur.filamat deleted file mode 100644 index a121299b..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fur.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fur.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fur.mat deleted file mode 100644 index 743c8c62..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fur.mat +++ /dev/null @@ -1,230 +0,0 @@ -material { - name : fur, - parameters : [ - { - type : sampler2d, - name : texture - }, - { - type : sampler2d, - name : fur - }, - { - type : float, - name : offset - }, - { - type : float, - name : time - }, - { - type : float, - name : furLength - }, - { - type : float, - name : tming - }, - { - type : float, - name : dming - }, - { - type : float, - name : fresnelLv - }, - { - type : float, - name : spacing - }, - { - type : float4, - name : gravity - }, - { - type : float4, - name : wind - } - ], - requires : [ - uv0, position, color, tangents - ], - variables : [ - vertex, lights, specular - ], - shadingModel : unlit, - blending : transparent, - flipUV:false -} - -vertex { - - const float _SHExposure = 1.0; - const float _FurSHExposure = 1.0; - const vec4 _Color = vec4(1.0,1.0,1.0,1); - const float _DirLightExposure = 1.0; - const vec4 _DirLightColor = vec4(1, 1, 1, 1); - - vec3 GammaToLinearSpace (vec3 sRGB) - { - return sRGB * (sRGB * (sRGB * 0.305306011 + 0.682171111) + 0.012522878); - } - - vec3 CalcEnvDiffuseBrdf(vec3 normal) - { - //vec4 n = _envRot * vec4(normal, 1.0); - //vec3 envDiffuse = vec3(dot(n, _envSHR * n), dot(n, _envSHG * n), dot(n, _envSHB * n)); - //return (envDiffuse) * _EnvExposure; - vec3 envDiffuse = vec3(1, 1, 1); - return GammaToLinearSpace( envDiffuse ) * _SHExposure * _FurSHExposure; - } - - vec3 powv(vec3 color, float value){ - return vec3(pow(color.r, value), pow(color.g, value), pow(color.b, value)); - } - - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - //vec3 SH(vec3 ref_dir) - //{ - - // mat4 sh_r = mat4(vec4(-0.033192723, -0.001821944, 0.207927387, 0.018505111), - // vec4(0.000000000, 0.033192723, -0.116561720, 0.125891055), - // vec4(0.000000000, 0.000000000, -0.004179386, -0.119403430), - // vec4(0.000000000, 0.000000000, 0.000000000, 0.727640226)); - - // mat4 sh_g = mat4(vec4(-0.040833838, -0.005019249, 0.209770154, 0.001172696), - // vec4(0.000000000, 0.040833838, -0.119359312, 0.165181556), - // vec4(0.000000000, 0.000000000, -0.010006203, -0.124774773), - // vec4(0.000000000, 0.000000000, 0.000000000, 0.725567236)); - - // mat4 sh_b = mat4(vec4(-0.051333459, 0.000662888, 0.191847408, -0.016157521), - // vec4(0.000000000, 0.051333459, -0.120322257, 0.227566714), - // vec4(0.000000000, 0.000000000, -0.024883129, -0.127375589), - // vec4(0.000000000, 0.000000000, 0.000000000, 0.695387512)); - - // float env_rot = 0.0; - - // float PIX2 = 6.283185307179586476925286766559f; - // float rot = env_rot * PIX2 ; - - // float cos_env_rot = cos(rot); - // float sin_env_rot = sin(rot); - - // vec4 irrad_dir = vec4(normalize(float3(cos_env_rot * ref_dir.x + sin_env_rot * ref_dir.z, ref_dir.y, -sin_env_rot * ref_dir.x + cos_env_rot * ref_dir.z)), 1.0f); - - // float r = dot(irrad_dir, sh_r * irrad_dir); - // float g = dot(irrad_dir, sh_g * irrad_dir); - // float b = dot(irrad_dir, sh_b * irrad_dir); - - // return powv(float3(r, g, b),1.33) * _SHExposure *_FurSHExposure; - //} - - void materialVertex(inout MaterialVertexInputs material) { - const vec4 _UVoffset = vec4(0, 0, 0, 0); - float FUR_OFFSET = materialParams.offset; - //const vec4 _Gravity = vec4(0.0, 0.0, 0.0, 0.3); - //float spacing = materialParams.furLength * 0.1; - //const vec4 _Wind = vec4(5, 50, 50, 0.2); - float spacing = materialParams.furLength * materialParams.spacing; - vec4 _Gravity = materialParams.gravity; - vec4 _Wind = materialParams.wind; - - vec3 forceDirection = vec3(0.0, 0.0, 0.0); - // Wind 低配可以去掉 - forceDirection.x = sin(materialParams.time * 1.5 * _Wind.x + material.worldPosition.x * 0.5*_Wind.z) * _Wind.w; - forceDirection.y = cos(materialParams.time * 0.5 * _Wind.x + material.worldPosition.y * 0.4*_Wind.y) * _Wind.w; - forceDirection.z = sin(materialParams.time * 0.7 * _Wind.x + material.worldPosition.y * 0.3*_Wind.y) * _Wind.w; - - // 顶点offset - vec3 displacement = forceDirection + _Gravity.xyz; //顶点方向 - float displacementFactor = FUR_OFFSET * FUR_OFFSET; - - vec3 aNormal = material.worldNormal.xyz; - aNormal.xyz += (displacement * displacementFactor * aNormal.z); - vec3 n = aNormal * FUR_OFFSET * (spacing * saturate(1.0+_Gravity.w)); //spacing顶点色alpha通道控制毛发扩展长度 - - vec4 wpos = vec4(material.worldPosition.xyz + n.xyz, 1.0); - material.worldPosition = wpos; - - // uv offuse - vec2 uvoffset = _UVoffset.xy * FUR_OFFSET + (forceDirection.xy * _UVoffset.zw * FUR_OFFSET); - uvoffset *= 0.1; // 尺寸太小不好调整 缩小精度。 - - vec2 uv1 = material.uv0 + uvoffset; - vec2 uv2 = material.uv0 + uvoffset; - material.vertex = vec4(uv1, uv2); // ??? - - //坐标 - //vec3 N = material.worldNormal.xyz; - - //vec3 V = normalize(getWorldCameraPosition() - material.worldPosition.xyz); - //vec3 L = normalize(vec3(0, -2, -6)); - //vec3 R = normalize(V + L); - - // 灯光 - //float NoV = saturate(dot(N,V)); - //float NoL = dot(L,N); - //float Occlusion = FUR_OFFSET*FUR_OFFSET; - - // 轮廓光 - //float RimLight = (1.0 - NoV ) ;//*fresnelLv ; - //RimLight *= Occlusion; - //RimLight *= (RimLight+(1.0 - NoV)); - //RimLight *= materialParams.fresnelLv; - - // 环境光 - //vec3 SHL = CalcEnvDiffuseBrdf(N); //环境颜色 可以用单色替代 - //SHL = SH(N); - //SHL *= _SHExposure; //环境光转到线性空间 简易 - //SHL = lerpv (SHL, _Color.xyz * SHL, 1.0 - Occlusion * _Color.a); //环境颜色与AO颜色 - //SHL += SHL*RimLight; - - // 平行光 - //float FurFilter = materialParams.furLength * 0.5; - //float DirLight = saturate(NoL + Occlusion*FurFilter); - //vec3 diffuseSum = SHL + DirLight*_DirLightExposure *_DirLightColor.xyz; //灯光与环境合并 - - //material.lights = vec4(diffuseSum, 1.0); - //material.specular = vec4(saturate(NoL)); - } -} - -fragment { - - vec3 powv(vec3 color, float value){ - return vec3(pow(color.r, value), pow(color.g, value), pow(color.b, value)); - } - - void material(inout MaterialInputs material) { - - float FUR_OFFSET = materialParams.offset; - float2 uv = getUV0().xy; - - prepareMaterial(material); - - //贴图计算 - float Noise = texture(materialParams_texture, variable_vertex.zw).r; - vec4 color1 = texture(materialParams_fur, variable_vertex.xy); - color1.rgb *= color1.rgb; - //贴图计算 END - //float vcolormask = saturate(variable_lights.a); - - //color1.rgb = color1.rgb * variable_lights.rgb + variable_specular.xyz; - //color1.rgb *= (1.0 + (1.0-vcolormask)); - - //float furMask = 1.0 - materialParams.dming * vcolormask; - float furMask = 1.0 - materialParams.dming; - float alpha = saturate((Noise*2.0 - (FUR_OFFSET*FUR_OFFSET+(FUR_OFFSET*furMask*5.0))) * materialParams.tming); - alpha *= color1.a; - color1.a = alpha; - - color1.rgb = powv(color1.rgb, 0.4545); - - color1.rgb *= alpha; - - material.baseColor = color1; - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fur_light.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fur_light.filamat deleted file mode 100644 index bcdaf086..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fur_light.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fur_light.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fur_light.mat deleted file mode 100644 index 34f73500..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fur_light.mat +++ /dev/null @@ -1,305 +0,0 @@ -material { - name : fur_light, - parameters : [ - { - type : sampler2d, - name : texture - }, - { - type : sampler2d, - name : fur - }, - { - type : float, - name : offset - }, - { - type : float, - name : time - }, - { - type : float, - name : furLength - }, - { - type : float, - name : tming - }, - { - type : float, - name : dming - }, - { - type : float, - name : spacing - }, - { - type : float4, - name : gravity - }, - { - type : float4, - name : wind - }, - { - type : float4, - name : shadowColor - }, - { - type : float, - name : roughness - }, - { - type : float, - name : reflectance - }, - { - type : float, - name : anisotropy - }, - { - type : float3, - name : anisotropyDirection - }, - { - type : float4, - name : uvOffset - }, - { - type : float4, - name : _BaseColor - }, - { - type : float4, - name : _SubTexUV - }, - { - type : float3, - name : SHL - }, - { - type : float4, - name : _DirLightColor - }, - { - type : float3, - name : _SPColor1 - }, - { - type : float3, - name : _SPColor2 - }, - { - type : float, - name : _specOff - }, - { - type : float4, - name : shiftTexTilingOffset - }, - { - type : float, - name : _FurDirLightExposure - }, - { - type : float, - name : _LightFilter - }, - { - type : float, - name : _FresnelLV - }, - { - type : float, - name : _glossiness_1 - }, - { - type : float, - name : _glossiness_2 - }, - { - type: bool, - name: enableLight - } - ], - requires : [ - uv0, tangents - ], - variables : [ - vertex - ], - shadingModel : lit, - blending : transparent, - postLightingBlending : multiply, - flipUV:false -} - -vertex { - vec2 TRANSFORM_TEX(vec2 uv, vec4 tilingOffset){ - return uv * tilingOffset.xy + uv * tilingOffset.zw; - } - - void materialVertex(inout MaterialVertexInputs material) { - float FUR_OFFSET = materialParams.offset; - - float spacing = materialParams.furLength * 0.1; - vec4 _Gravity = materialParams.gravity; - vec4 _Wind = materialParams.wind; - float4 _UVoffset = materialParams.uvOffset; - float4 _SubTexUV = materialParams._SubTexUV;//float4(4.0, 8.0, 1.0, 0); - float4 shiftTexTilingOffset = float4(1.0, 1.0, 0.0, 0.0); - - vec3 forceDirection = vec3(0.0, 0.0, 0.0); - // Wind 低配可以去掉 - forceDirection.x = sin(materialParams.time * 1.5 * _Wind.x + material.worldPosition.x * 0.5*_Wind.z) * _Wind.w; - forceDirection.y = cos(materialParams.time * 0.5 * _Wind.x + material.worldPosition.y * 0.4*_Wind.y) * _Wind.w; - forceDirection.z = sin(materialParams.time * 0.7 * _Wind.x + material.worldPosition.y * 0.3*_Wind.y) * _Wind.w; - - // 顶点offset - vec3 displacement = forceDirection + _Gravity.xyz; //顶点方向 - float displacementFactor = FUR_OFFSET * FUR_OFFSET; - - vec3 aNormal = material.worldNormal.xyz; - aNormal.xyz += (displacement * displacementFactor * aNormal.z); - vec3 n = aNormal * FUR_OFFSET * (spacing * saturate(1.0+_Gravity.w)); //spacing顶点色alpha通道控制毛发扩展长度 - - vec4 wpos = vec4(material.worldPosition.xyz + n.xyz, 1.0); - material.worldPosition = wpos; - - // uv offuse - vec2 uvoffset = _UVoffset.xy * FUR_OFFSET + (forceDirection.xy * _UVoffset.zw *FUR_OFFSET) ; - uvoffset *= 0.1; // 尺寸太小不好调整 缩小精度。 - float2 flowmap = float2(_SubTexUV.w * FUR_OFFSET * 0.1); //flowmap - - vec2 uv1 = TRANSFORM_TEX(material.uv0, shiftTexTilingOffset) + (uvoffset + flowmap) * (float2(1.0, 1.0) / _SubTexUV.xy); - vec2 uv2 = TRANSFORM_TEX(material.uv0, materialParams.shiftTexTilingOffset) *_SubTexUV.xy + uvoffset + flowmap; - material.vertex = vec4(uv1, uv2); // ??? - - } -} - -fragment { - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - vec3 powv(vec3 color, float value){ - return vec3(pow(color.r, value), pow(color.g, value), pow(color.b, value)); - } - - float3 calculateLights(){ - float FUR_OFFSET = materialParams.offset; - vec3 lightDir = frameUniforms.lightDirection; - float4 _Color = materialParams.shadowColor; - float _FresnelLV = materialParams._FresnelLV;//0.2; - float _LightFilter = materialParams._LightFilter;//0.0; - float _FurDirLightExposure = materialParams._FurDirLightExposure;//1.0; - float _DirLightExposure = 1.0; - float4 _DirLightColor = materialParams._DirLightColor;//float4(1.0, 1.0, 1.0, 1.0); - mat3 tangentFrame = getWorldTangentFrame(); - float3 N = getWorldNormalVector(); - float3 T = tangentFrame[0]; - float3 BT = tangentFrame[1]; - - float NoV = shading_NoV; - float NoL = saturate(dot(shading_normal, lightDir)); - float Occlusion =FUR_OFFSET*FUR_OFFSET; - //轮廓光------------------ - float RimLight = (1.0- NoV ) ;//*_FresnelLV ; - RimLight *=Occlusion; - RimLight *=RimLight+(1.0- NoV); - RimLight *=_FresnelLV; - - //环境光------------------ - float3 SHL;//CalcEnvDiffuseBrdf(N); //环境颜色 可以用单色替代 - SHL = materialParams.SHL;//float3(1.0, 1.0, 1.0);//SH(N); - //SHL *= _SHExposure; //环境光转到线性空间 简易 - SHL = lerpv (SHL, _Color.rgb * SHL, 1.0 - Occlusion * _Color.a); //环境颜色与AO颜色 - SHL += SHL * RimLight; - //平行光------------------ - float FurFilter =(materialParams.furLength * 0.5); - float DirLight = saturate(NoL * (1.0 + _LightFilter) + _LightFilter*0.5 + Occlusion*FurFilter);//saturate(Occlusion *_LightFilter+(1-_LightFilter)*0.5);//丰富灯光细节 - //DirLight= saturate (DirLight); - float3 diffuseSum =SHL + DirLight*_FurDirLightExposure* _DirLightExposure *_DirLightColor.rgb ; //灯光与环境合并 - return diffuseSum; - } - - float StrandSpecular(float3 T, float3 V, float3 L, float exponent){ - float3 H = normalize(V + L); - float dotTH = dot(T, H); - float sinTH = sqrt(1.0 - dotTH * dotTH); - float dirAtten = smoothstep(-1.0, 0.0, dotTH); - return dirAtten * pow(sinTH, exponent); - } - - float3 calculateSpecular(){ - float FUR_OFFSET = materialParams.offset; - vec3 L = frameUniforms.lightDirection; - vec3 V = getWorldViewVector(); - float NoL = saturate(dot(shading_normal, L)); - float3 _SPColor1 = materialParams._SPColor1;//float3(1, 0, 0); - float3 _SPColor2 = materialParams._SPColor2;//float3(0, 1, 0); - float _glossiness_1 = materialParams._glossiness_1;//2.0; - float _glossiness_2 = materialParams._glossiness_2;//55.0; - float _specOff = materialParams._specOff;//0.0; - - mat3 tangentFrame = getWorldTangentFrame(); - float3 N = getWorldNormalVector(); - float3 T = tangentFrame[0]; - float3 BT = tangentFrame[1]; - - //Sp_Anisotropy - float2 Roughness = float2(_glossiness_1,_glossiness_2) ; - float3 T1 = normalize(_specOff*N+BT); - float SPec1 =StrandSpecular (T1,V,L,Roughness.x);//*FUR_OFFSET; - float SPec2 =StrandSpecular (T1,V,L,Roughness.y) *FUR_OFFSET; - float3 Specular = saturate(SPec1*_SPColor1 + SPec2*_SPColor2) *saturate(NoL); - return Specular; - } - - void material(inout MaterialInputs material) { - - float FUR_OFFSET = materialParams.offset; - float4 shadowColor = materialParams.shadowColor; - float FUR_OFFSET_SQ = FUR_OFFSET * FUR_OFFSET; - - prepareMaterial(material); - - float4 _BaseColor = materialParams._BaseColor;//float4(1.0, 1.0, 1.0, 1.0); - float4 _SubTexUV = materialParams._SubTexUV;//float4(4.0, 8.0, 1.0, 0); - - - //贴图计算 - float Noise = texture(materialParams_texture, variable_vertex.zw).r; - vec4 color = texture(materialParams_fur, variable_vertex.xy); - color.rgb *=_BaseColor.rgb; - //color.rgb *= color.rgb; - - if (materialParams.enableLight) { - float3 lights = calculateLights(); - float3 Specular = calculateSpecular(); - color.rgb =color.rgb * lights + Specular; - } - - float vcolormask = saturate(color.a + _SubTexUV.z) ; - - color.rgb *= 1.0 + (1.0 - vcolormask); - - float furMask = 1.0 - materialParams.dming * vcolormask ; - float alpha = saturate((Noise*2.0 - (FUR_OFFSET_SQ + (FUR_OFFSET*furMask*5.0))) * materialParams.tming); - alpha *= color.a; - color.a = alpha; - - material.baseColor = color; - - material.anisotropy = 0.0;//materialParams.anisotropy; - //material.roughness = materialParams.roughness; - //material.metallic = 0.0; - //material.reflectance = materialParams.reflectance; - //material.clearCoat = 0.0; - //material.clearCoatRoughness = 0.0; - //material.anisotropyDirection = materialParams.anisotropyDirection; - - material.postLightingColor = vec4(alpha, alpha, alpha, 1); - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fur_light_new.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fur_light_new.filamat deleted file mode 100644 index a1ff924a..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fur_light_new.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fur_light_new.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fur_light_new.mat deleted file mode 100644 index 46c73cc5..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fur_light_new.mat +++ /dev/null @@ -1,285 +0,0 @@ -material { - name : fur_light, - parameters : [ - { - type : float, - name : offset - }, - { - type : float, - name : time - }, - { - type : float4, - name : _BaseColor - }, - { - type : float4, - name : shadowColor - }, - { - type : sampler2d, - name : fur - }, - { - type : sampler2d, - name : texture - }, - // Light =============================================== - { - type : float4, - name : _DirLightColor - }, - { - type : float, - name : _DirLightExposure - }, - { - type : float, - name : _FurDirLightExposure - }, - { - type : float3, - name : SHL - }, - { - type : float, - name : _LightFilter - }, - { - type : float, - name : _FresnelLV - }, - { - type : float3, - name : _SPColor1 - }, - { - type : float3, - name : _SPColor2 - }, - { - type : float, - name : _glossiness_1 - }, - { - type : float, - name : _glossiness_2 - }, - { - type : float, - name : _specOff - }, - { - type : float3, - name : lightDirection - }, - // FurAlpha =============================================== - { - type : float4, - name : _SubTexUV - }, - { - type : float4, - name : uvOffset - }, - { - type : float, - name : tming - }, - { - type : float, - name : dming - }, - // FurVertex =============================================== - { - type : float, - name : furLength - }, - { - type : float4, - name : gravity - }, - { - type : float4, - name : wind - }, - // obsolete =============================================== - { - type : float, - name : spacing - }, - { - type : float, - name : roughness - }, - { - type : float, - name : reflectance - }, - { - type : float, - name : anisotropy - }, - { - type : float3, - name : anisotropyDirection - }, - { - type : float4, - name : shiftTexTilingOffset - }, - { - type : bool, - name : enableLight - } - ], - requires : [ - uv0, tangents - ], - variables : [ - uv, lights, Specular - ], - shadingModel : lit, - blending : transparent, - postLightingBlending : multiply, - flipUV:false -} - -vertex { - float3 lerpv(float3 a, float3 b, float w) { - return a + w * (b-a); - } - float StrandSpecular(float3 T, float3 V, float3 L, float exponent){ - float3 H = normalize(V + L); - float dotTH = dot(T, H); - float sinTH = sqrt(1.0 - dotTH * dotTH); - float dirAtten = smoothstep(-1.0, 0.0, dotTH); - return dirAtten * pow(sinTH, exponent); - } - void materialVertex(inout MaterialVertexInputs material) { - float FUR_OFFSET = materialParams.offset; - - float spacing = materialParams.furLength * 0.1; - float4 _Gravity = materialParams.gravity; - float4 _Wind = materialParams.wind; - float4 _UVoffset = materialParams.uvOffset; - float4 _SubTexUV = materialParams._SubTexUV; - - float3 forceDirection = float3(0.0, 0.0, 0.0); - float3 position = material.worldPosition.xyz; - - // Wind 低配可以去掉=============================================== - forceDirection.x = sin(materialParams.time * 1.5 * _Wind.x + position.x * 0.5*_Wind.z) * _Wind.w; - forceDirection.y = cos(materialParams.time * 0.5 * _Wind.x + position.y * 0.4*_Wind.y) * _Wind.w; - forceDirection.z = sin(materialParams.time * 0.7 * _Wind.x + position.y * 0.3*_Wind.y) * _Wind.w; - - // 顶点offset=============================================== - float3 displacement = forceDirection + _Gravity.xyz; //顶点方向 - float displacementFactor = FUR_OFFSET * FUR_OFFSET; - - float3 aNormal = material.worldNormal.xyz; - aNormal.xyz += displacement * displacementFactor; - float3 n = aNormal * FUR_OFFSET * (spacing * saturate(1.0 + _Gravity.w)); //spacing顶点色alpha通道控制毛发扩展长度 - - material.worldPosition = float4(position + n, 1.0); - - // uv offuse=============================================== - float2 uvoffset = _UVoffset.xy * FUR_OFFSET + (forceDirection.xy * _UVoffset.zw *FUR_OFFSET) ; - uvoffset *= 0.1; // 尺寸太小不好调整 缩小精度。 - float2 flowmap = float2(_SubTexUV.w * FUR_OFFSET * 0.1); //flowmap - - float2 uv1 = material.uv0 + (uvoffset + flowmap) * (float2(1.0, 1.0) / _SubTexUV.xy); - float2 uv2 = material.uv0 *_SubTexUV.xy + uvoffset + flowmap; - material.uv = float4(uv1.x, uv1.y, uv2.x, uv2.y); - - //坐标=============================================== - float3 N = material.worldNormal; - float3 T = vertex_worldTangent.xyz; - float3 BT = normalize(cross(N,T) * vertex_worldTangent.w); - - float3 V = normalize(-position.xyz); - float3 L = normalize(materialParams.lightDirection.xyz); - - //灯光 =============================================== - float NoV = saturate(dot(N,V)); - float NoL = dot(L,N); - float Occlusion =FUR_OFFSET*FUR_OFFSET; - - float _FresnelLV = materialParams._FresnelLV;//0.2; - - float4 _Color = materialParams.shadowColor; - - float _LightFilter = materialParams._LightFilter;//0.0; - float _DirLightExposure = materialParams._DirLightExposure;//1.0; - float _FurDirLightExposure = materialParams._FurDirLightExposure;//1.0; - float4 _DirLightColor = materialParams._DirLightColor;//float4(1.0, 1.0, 1.0, 1.0); - - float _glossiness_1 = materialParams._glossiness_1;//2.0; - float _glossiness_2 = materialParams._glossiness_2;//55.0; - float _specOff = materialParams._specOff;//0.0; - float3 _SPColor1 = materialParams._SPColor1;//float3(1, 0, 0); - float3 _SPColor2 = materialParams._SPColor2;//float3(0, 1, 0); - - //轮廓光------------------ - float RimLight = (1.0- NoV ) ;//*_FresnelLV ; - RimLight *=Occlusion; - RimLight *=RimLight+(1.0- NoV); - RimLight *=_FresnelLV; - - //环境光------------------ - float3 SHL = materialParams.SHL;//CalcEnvDiffuseBrdf(N); //环境颜色 可以用单色替代 - //SHL *= _SHExposure; //环境光转到线性空间 简易 - SHL = lerpv(SHL, _Color.rgb * SHL, 1.0 - Occlusion * _Color.a); //环境颜色与AO颜色 - SHL += SHL * RimLight; - //平行光------------------ - float FurFilter =(materialParams.furLength * 0.5); - float DirLight = saturate(NoL * (1.0 + _LightFilter) + _LightFilter*0.5 + Occlusion*FurFilter);//saturate(Occlusion *_LightFilter+(1-_LightFilter)*0.5);//丰富灯光细节 - //DirLight= saturate (DirLight); - float3 diffuseSum =SHL + DirLight*_FurDirLightExposure* _DirLightExposure *_DirLightColor.rgb ; //灯光与环境合并 - material.lights.rgb = diffuseSum; - material.lights.a = 1.0; - - //Sp_Anisotropy - float2 Roughness = float2(_glossiness_1,_glossiness_2); - float3 T1 = normalize(_specOff*N+BT); - float SPec1 =StrandSpecular (T1,V,L,Roughness.x);//*FUR_OFFSET; - float SPec2 =StrandSpecular (T1,V,L,Roughness.y) *FUR_OFFSET; - material.Specular.rgb = saturate(SPec1*_SPColor1 + SPec2*_SPColor2) * saturate(NoL); - } -} - -fragment { - float3 powv(float3 color, float value){ - return float3(pow(color.r, value), pow(color.g, value), pow(color.b, value)); - } - void material(inout MaterialInputs material) { - - float FUR_OFFSET = materialParams.offset; - float4 shadowColor = materialParams.shadowColor; - - prepareMaterial(material); - - float4 _BaseColor = materialParams._BaseColor;//float4(1.0, 1.0, 1.0, 1.0); - float4 _SubTexUV = materialParams._SubTexUV;//float4(4.0, 8.0, 1.0, 0); - - //贴图计算 - float Noise = texture(materialParams_texture, variable_uv.zw).r; - float4 color = texture(materialParams_fur, variable_uv.xy); - color.rgb *=_BaseColor.rgb; - color.rgb *= color.rgb; - //贴图计算 END - float3 Lights = variable_lights.rgb; - float vcolormask = saturate(variable_lights.a + _SubTexUV.z); - - color.rgb =color.rgb * Lights + variable_Specular.rgb; - color.rgb *= 1.0 + (1.0 -vcolormask); - - float FurMask = 1.0 - materialParams.dming * vcolormask ; - float alpha = saturate(Noise*2.0 - (sq(FUR_OFFSET) + (FUR_OFFSET*FurMask*5.0))) * materialParams.tming; - - material.baseColor.a = alpha; - material.baseColor.rgb = powv(color.rgb,1.0/2.2); - material.postLightingColor = float4(alpha, alpha, alpha, 1.0); - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fxaa.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fxaa.filamat deleted file mode 100644 index 1fe724b8..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/fxaa.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/hbao.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/hbao.filamat deleted file mode 100644 index 187b5247..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/hbao.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/hbao_noise.dat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/hbao_noise.dat deleted file mode 100644 index e598c7d5..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/hbao_noise.dat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_feather.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_feather.filamat deleted file mode 100644 index 74eef503..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_feather.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_feather.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_feather.mat deleted file mode 100755 index 8d68d833..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_feather.mat +++ /dev/null @@ -1,117 +0,0 @@ -material { - name : head_feather_mix, - shadingModel : unlit, - depthWrite: true, - depthCulling: false, - parameters : [ - { - type : sampler2d, - name : color - }, - { - type : sampler2d, - name : secondary - }, - { - type : float, - name : sigma - }, - { - type : float, - name : offsetX - }, - { - type : float, - name : offsetY - }, - { - type : float, - name : scale - } - ], - requires: [ - uv0 - ], -} - - -fragment { - - - const int kGaussianSampleCount = 9; - const float kReinhardWeight = 5.0; - - - vec3 Tonemap_ReinhardWeighted(const vec3 x, float weight) { - // Weighted Reinhard tone-mapping operator designed for post-processing - // This tone-mapping operator is invertible - return x * (weight / (max3(x) + 1.0)); - } - - - // 正态分布概率密度函数 - float normpdf(in float x, in float sigma) { - return 0.39894*exp(-0.5*x*x/(sigma*sigma))/sigma; - } - - void material(inout MaterialInputs material) { - prepareMaterial(material); - float2 uv = uvToRenderTargetUV(getUV0()); - vec4 primary = texture(materialParams_color, uv); - vec4 second = texture(materialParams_secondary, uv); - float sigma = materialParams.sigma; - float offsetX = materialParams.offsetX; - float offsetY = materialParams.offsetY; - - if (primary.a > 0.0 && second.a < 0.01) { - //declare stuff - const int mSize = 18; - const int kSize = (mSize-1)/2; - float kernel[mSize]; - vec4 final_color = vec4(0.0); - float4 resolution = getResolution(); - float2 uv = uvToRenderTargetUV(getUV0()); - - //create the 1-D kernel - float Z = 0.0; - for (int j = 0; j <= kSize; ++j) { - kernel[kSize+j] = kernel[kSize-j] = normpdf(float(j), sigma); - } - - - //get the normalization factor (as the gaussian has been clamped) - for (int j = 0; j < mSize; ++j) { - Z += kernel[j]; - } - - - float total_g = 0.0; - float weight_g = 0.0; - - //read out the texels - for (int i = -kSize; i <= kSize; ++i) { - for (int j = 0; j <= kSize; ++j) { - float i_f = float(i); - float j_f = float(j); - vec2 st = vec2(uv.x+i_f/resolution.x*offsetX, uv.y+j_f/resolution.y*offsetY); - vec4 og = texture(materialParams_color, uv); - vec4 sColor = texture(materialParams_color, st); - float weight = kernel[kSize+j]*kernel[kSize+i]; - if (sColor.a == 1.0) { - sColor.rgb = og.rgb; - } else { - sColor.rgb *= sColor.a; - } - total_g += weight; - final_color += sColor * weight; - } - } - - float4 result = final_color / total_g; - material.baseColor = result; - - } else { - material.baseColor = primary; - } - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_index.txt b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_index.txt deleted file mode 100644 index f5628730..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_index.txt +++ /dev/null @@ -1 +0,0 @@ -119, 20, 388, 120, 802, 117, 782, 117, 802, 436, 20, 801, 120, 388, 803, 803, 388, 784, 436, 0, 20, 803, 384, 785, 803, 785, 783, 783, 785, 155, 803, 784, 384, 784, 388, 20, 0, 436, 21, 384, 18, 785, 785, 171, 155, 384, 784, 0, 0, 784, 20, 786, 795, 2, 387, 1, 19, 786, 2, 1, 787, 878, 788, 19, 14, 17, 19, 789, 14, 4, 11, 3, 5, 797, 798, 5, 4, 797, 798, 13, 5, 790, 16, 13, 790, 13, 798, 385, 792, 11, 793, 385, 11, 6, 11, 12, 6, 24, 793, 6, 793, 11, 6, 12, 7, 6, 7, 25, 6, 25, 24, 7, 794, 26, 7, 26, 25, 794, 787, 26, 790, 93, 16, 8, 11, 792, 8, 792, 796, 3, 17, 14, 4, 3, 14, 797, 4, 14, 795, 791, 2, 462, 519, 799, 462, 799, 23, 462, 24, 386, 9, 520, 386, 9, 386, 24, 10, 520, 9, 10, 518, 520, 26, 15, 518, 26, 518, 10, 11, 4, 12, 12, 4, 5, 12, 5, 13, 12, 13, 7, 13, 794, 7, 794, 13, 16, 790, 798, 2, 790, 2, 791, 2, 798, 789, 798, 797, 789, 797, 14, 789, 16, 787, 794, 16, 93, 878, 16, 878, 787, 790, 791, 93, 519, 209, 148, 519, 148, 22, 519, 22, 799, 796, 792, 385, 796, 385, 22, 3, 8, 140, 3, 140, 136, 3, 11, 8, 17, 3, 136, 800, 20, 924, 21, 795, 786, 786, 389, 21, 1, 389, 786, 18, 389, 1, 18, 1, 387, 18, 171, 785, 18, 387, 171, 2, 789, 1, 789, 19, 1, 19, 17, 946, 437, 791, 795, 436, 795, 21, 800, 801, 20, 803, 783, 802, 802, 120, 803, 18, 384, 389, 389, 384, 0, 21, 389, 0, 22, 385, 799, 23, 799, 385, 23, 793, 24, 23, 24, 462, 23, 385, 793, 9, 24, 25, 25, 10, 9, 25, 26, 10, 26, 787, 788, 26, 788, 15, 391, 393, 396, 391, 396, 807, 804, 28, 551, 394, 45, 807, 394, 807, 806, 805, 807, 45, 804, 806, 28, 804, 394, 806, 390, 27, 393, 393, 27, 395, 393, 391, 390, 45, 394, 40, 394, 392, 820, 394, 804, 392, 391, 807, 805, 807, 31, 30, 807, 30, 806, 393, 395, 31, 396, 393, 31, 807, 396, 31, 31, 557, 397, 29, 30, 808, 30, 31, 397, 29, 28, 806, 30, 29, 806, 398, 810, 563, 398, 563, 468, 566, 399, 811, 563, 810, 32, 809, 816, 402, 813, 819, 34, 813, 37, 819, 566, 398, 468, 566, 811, 398, 819, 809, 812, 809, 819, 38, 37, 813, 183, 819, 33, 34, 34, 33, 35, 819, 35, 33, 812, 35, 819, 402, 815, 812, 402, 818, 815, 814, 69, 34, 34, 35, 814, 182, 77, 814, 400, 399, 182, 400, 182, 814, 400, 35, 811, 400, 811, 399, 400, 814, 35, 811, 35, 812, 815, 398, 811, 815, 811, 812, 815, 810, 398, 816, 820, 817, 402, 812, 809, 815, 818, 810, 401, 36, 817, 810, 818, 401, 810, 401, 817, 817, 32, 810, 817, 820, 32, 36, 402, 816, 36, 816, 817, 818, 402, 36, 36, 401, 818, 816, 809, 38, 38, 819, 37, 805, 45, 827, 55, 45, 40, 39, 225, 390, 40, 394, 51, 821, 411, 53, 822, 827, 828, 403, 46, 410, 41, 823, 414, 41, 414, 404, 41, 409, 823, 43, 56, 828, 54, 825, 824, 405, 39, 826, 50, 392, 466, 392, 50, 820, 828, 824, 70, 828, 70, 829, 55, 44, 54, 828, 829, 43, 827, 55, 828, 406, 823, 409, 406, 409, 830, 46, 411, 830, 46, 403, 407, 826, 39, 47, 830, 42, 65, 411, 46, 407, 408, 391, 47, 390, 391, 408, 48, 38, 37, 816, 48, 51, 831, 825, 54, 51, 48, 44, 49, 56, 43, 822, 828, 56, 822, 56, 821, 42, 821, 49, 42, 411, 821, 53, 805, 52, 408, 39, 390, 50, 32, 820, 50, 466, 237, 51, 394, 820, 51, 820, 816, 55, 827, 45, 391, 805, 53, 47, 39, 408, 39, 405, 225, 48, 816, 38, 40, 44, 55, 40, 51, 44, 52, 805, 827, 53, 47, 391, 407, 403, 826, 407, 826, 47, 403, 405, 826, 37, 44, 48, 832, 44, 37, 832, 54, 44, 827, 822, 821, 827, 821, 52, 52, 821, 53, 407, 47, 53, 407, 53, 411, 830, 409, 46, 410, 41, 404, 410, 46, 409, 410, 409, 41, 832, 37, 831, 832, 831, 54, 55, 54, 824, 55, 824, 828, 821, 56, 49, 411, 42, 830, 57, 610, 834, 57, 834, 833, 58, 838, 837, 58, 837, 60, 58, 60, 836, 58, 836, 835, 839, 59, 840, 839, 840, 67, 839, 67, 71, 833, 834, 841, 833, 841, 412, 833, 412, 199, 412, 841, 838, 412, 838, 58, 412, 58, 835, 844, 843, 842, 59, 842, 843, 60, 121, 836, 60, 837, 844, 61, 43, 829, 61, 851, 845, 62, 43, 61, 62, 61, 845, 62, 49, 43, 62, 845, 846, 62, 846, 63, 62, 63, 49, 63, 42, 49, 63, 846, 847, 63, 847, 64, 63, 64, 42, 64, 847, 848, 65, 42, 64, 65, 64, 848, 65, 848, 849, 66, 830, 65, 66, 65, 849, 406, 830, 66, 406, 66, 413, 406, 413, 850, 406, 850, 823, 414, 823, 850, 414, 602, 404, 67, 845, 851, 67, 840, 845, 840, 59, 843, 840, 843, 846, 840, 846, 845, 843, 844, 847, 843, 847, 846, 844, 848, 847, 848, 837, 838, 848, 838, 849, 848, 844, 837, 841, 413, 66, 841, 66, 849, 841, 849, 838, 413, 841, 834, 413, 834, 68, 413, 68, 850, 68, 834, 610, 68, 610, 602, 68, 602, 414, 68, 414, 850, 69, 813, 34, 183, 813, 69, 77, 69, 814, 632, 182, 399, 854, 37, 183, 37, 854, 831, 70, 824, 861, 825, 861, 824, 415, 61, 829, 415, 829, 70, 415, 851, 61, 67, 851, 864, 67, 864, 71, 71, 456, 839, 852, 421, 86, 430, 79, 431, 416, 87, 859, 423, 73, 75, 430, 422, 417, 852, 425, 855, 855, 424, 861, 72, 428, 418, 72, 418, 856, 72, 856, 419, 76, 419, 856, 76, 425, 419, 858, 424, 857, 79, 80, 431, 75, 854, 423, 855, 421, 852, 416, 859, 419, 73, 853, 75, 420, 74, 854, 419, 852, 416, 422, 73, 81, 422, 853, 73, 853, 422, 430, 417, 79, 430, 859, 80, 428, 859, 431, 80, 431, 859, 87, 854, 183, 423, 420, 854, 429, 855, 860, 74, 855, 74, 420, 420, 421, 855, 425, 426, 857, 72, 859, 428, 72, 419, 859, 423, 77, 73, 423, 183, 69, 74, 831, 854, 855, 857, 424, 425, 857, 855, 425, 852, 419, 862, 861, 424, 862, 858, 863, 862, 424, 858, 861, 860, 855, 425, 76, 426, 426, 76, 800, 76, 856, 801, 76, 801, 800, 426, 800, 858, 858, 92, 863, 858, 857, 426, 863, 92, 864, 77, 78, 73, 78, 81, 73, 427, 78, 77, 427, 83, 78, 427, 266, 83, 417, 422, 81, 79, 417, 865, 79, 865, 84, 79, 84, 80, 428, 82, 418, 418, 876, 856, 81, 78, 83, 83, 417, 81, 865, 417, 83, 865, 83, 84, 82, 428, 85, 82, 868, 418, 428, 80, 89, 428, 89, 85, 876, 418, 868, 436, 856, 876, 642, 83, 266, 84, 642, 866, 84, 866, 867, 82, 85, 434, 80, 84, 867, 80, 867, 89, 85, 89, 438, 83, 642, 84, 866, 642, 432, 274, 432, 642, 75, 429, 854, 86, 420, 429, 86, 421, 420, 86, 416, 852, 429, 75, 869, 87, 874, 431, 869, 75, 875, 429, 869, 86, 86, 871, 416, 75, 853, 872, 431, 873, 430, 430, 873, 872, 430, 872, 853, 431, 874, 873, 416, 874, 87, 869, 875, 870, 869, 870, 86, 86, 870, 871, 75, 872, 875, 88, 867, 866, 88, 433, 89, 88, 89, 867, 868, 82, 434, 434, 85, 438, 90, 868, 434, 90, 876, 868, 435, 866, 432, 435, 432, 91, 435, 433, 88, 435, 88, 866, 90, 95, 437, 438, 89, 433, 95, 434, 438, 95, 90, 434, 876, 90, 437, 439, 435, 91, 439, 91, 96, 439, 433, 435, 92, 858, 800, 864, 456, 71, 801, 856, 436, 876, 795, 436, 788, 878, 877, 878, 93, 438, 791, 95, 93, 795, 876, 437, 877, 94, 15, 877, 15, 788, 94, 281, 15, 95, 791, 437, 95, 438, 93, 433, 439, 877, 433, 877, 878, 433, 878, 438, 877, 439, 96, 96, 94, 877, 879, 906, 885, 881, 880, 106, 440, 883, 907, 906, 880, 885, 880, 896, 885, 882, 886, 881, 440, 443, 99, 898, 99, 889, 895, 887, 442, 890, 891, 889, 891, 442, 98, 100, 894, 893, 895, 879, 885, 100, 912, 879, 894, 442, 891, 894, 891, 890, 894, 890, 893, 895, 100, 879, 885, 887, 895, 887, 885, 896, 882, 897, 886, 442, 887, 98, 892, 97, 887, 888, 889, 97, 898, 889, 888, 897, 888, 892, 97, 892, 888, 892, 887, 896, 98, 887, 97, 890, 889, 899, 98, 97, 889, 98, 889, 891, 896, 897, 892, 886, 897, 896, 886, 880, 881, 886, 896, 880, 884, 897, 882, 883, 897, 884, 883, 898, 897, 440, 99, 883, 898, 883, 99, 99, 443, 441, 898, 888, 897, 442, 894, 895, 894, 100, 895, 440, 107, 443, 899, 889, 99, 893, 444, 100, 899, 900, 893, 899, 893, 890, 441, 443, 110, 443, 107, 902, 900, 899, 103, 441, 904, 99, 99, 904, 899, 105, 104, 901, 101, 905, 904, 101, 910, 905, 101, 110, 903, 101, 904, 110, 903, 110, 902, 102, 899, 904, 102, 904, 905, 103, 899, 102, 103, 102, 901, 104, 900, 103, 104, 103, 901, 105, 912, 100, 100, 444, 105, 444, 893, 900, 444, 900, 104, 444, 104, 105, 905, 909, 901, 905, 901, 102, 105, 901, 909, 105, 909, 912, 903, 911, 101, 910, 101, 911, 906, 106, 880, 882, 881, 913, 882, 913, 884, 883, 884, 908, 883, 908, 907, 440, 907, 107, 108, 909, 905, 910, 108, 905, 445, 879, 912, 445, 906, 879, 913, 881, 106, 107, 907, 109, 111, 903, 902, 108, 180, 909, 914, 108, 910, 111, 446, 911, 111, 911, 903, 910, 911, 446, 910, 446, 914, 909, 180, 912, 117, 906, 445, 117, 106, 906, 106, 117, 913, 913, 117, 447, 915, 109, 907, 915, 908, 112, 915, 907, 908, 908, 884, 913, 109, 116, 916, 109, 916, 107, 916, 111, 107, 441, 110, 904, 902, 110, 443, 902, 107, 111, 916, 113, 111, 119, 912, 180, 119, 445, 912, 917, 109, 915, 917, 116, 109, 917, 915, 112, 112, 908, 913, 112, 913, 447, 116, 113, 916, 113, 116, 115, 114, 914, 446, 114, 446, 918, 114, 923, 914, 918, 446, 111, 918, 111, 113, 113, 115, 921, 116, 922, 118, 116, 118, 115, 917, 927, 922, 917, 922, 116, 112, 122, 917, 117, 445, 120, 445, 119, 120, 918, 124, 919, 124, 918, 113, 920, 113, 921, 920, 124, 113, 118, 921, 115, 123, 118, 922, 122, 927, 917, 112, 447, 122, 108, 456, 180, 108, 914, 181, 181, 914, 923, 919, 121, 842, 919, 842, 923, 919, 923, 114, 919, 114, 918, 119, 180, 924, 447, 117, 782, 123, 925, 185, 123, 185, 118, 924, 20, 119, 120, 119, 388, 920, 926, 124, 921, 190, 920, 921, 185, 190, 118, 185, 921, 967, 927, 122, 123, 922, 157, 123, 157, 965, 123, 965, 925, 124, 121, 919, 125, 156, 978, 163, 783, 127, 163, 127, 928, 126, 127, 783, 929, 157, 149, 930, 929, 149, 965, 133, 448, 931, 455, 932, 931, 157, 929, 934, 967, 125, 127, 135, 134, 935, 135, 127, 935, 127, 126, 128, 454, 187, 936, 449, 937, 129, 450, 936, 938, 138, 151, 938, 129, 137, 938, 137, 138, 130, 940, 939, 130, 939, 151, 131, 139, 132, 131, 132, 942, 131, 942, 941, 132, 943, 944, 132, 944, 942, 945, 8, 796, 945, 140, 8, 946, 17, 136, 133, 128, 448, 455, 931, 947, 929, 947, 931, 929, 930, 452, 933, 934, 167, 933, 167, 948, 933, 948, 452, 134, 135, 950, 134, 950, 949, 135, 951, 950, 936, 937, 455, 936, 455, 947, 947, 137, 129, 947, 129, 936, 137, 947, 929, 138, 929, 452, 138, 137, 929, 948, 130, 151, 948, 151, 452, 139, 950, 132, 139, 949, 950, 950, 951, 943, 950, 943, 132, 140, 952, 136, 454, 179, 953, 454, 953, 187, 449, 179, 937, 450, 453, 449, 450, 449, 936, 450, 129, 954, 450, 954, 453, 954, 938, 955, 954, 129, 938, 141, 172, 956, 141, 956, 939, 141, 939, 940, 142, 941, 942, 142, 175, 174, 142, 174, 159, 142, 159, 941, 143, 942, 944, 143, 944, 957, 143, 175, 142, 143, 142, 942, 953, 702, 703, 704, 453, 451, 704, 449, 453, 451, 453, 144, 451, 144, 701, 144, 331, 701, 145, 959, 164, 145, 164, 710, 145, 710, 707, 145, 707, 958, 146, 175, 961, 146, 961, 706, 146, 705, 960, 146, 960, 175, 147, 176, 962, 147, 962, 711, 147, 706, 961, 147, 961, 176, 148, 209, 508, 148, 508, 708, 148, 708, 963, 148, 963, 22, 964, 945, 796, 964, 796, 22, 965, 448, 966, 931, 932, 157, 150, 930, 149, 150, 149, 927, 150, 927, 967, 150, 933, 930, 150, 967, 934, 150, 934, 933, 930, 933, 452, 452, 151, 138, 151, 939, 938, 955, 938, 939, 955, 939, 956, 958, 707, 331, 958, 331, 144, 968, 946, 136, 952, 969, 968, 952, 968, 136, 952, 152, 970, 952, 970, 969, 952, 140, 152, 152, 945, 153, 152, 153, 971, 152, 971, 970, 152, 140, 945, 153, 178, 972, 153, 972, 971, 153, 945, 964, 153, 964, 178, 154, 708, 335, 154, 335, 509, 154, 509, 973, 154, 963, 708, 946, 171, 387, 946, 387, 19, 155, 126, 783, 156, 125, 122, 156, 122, 447, 156, 447, 782, 122, 125, 967, 149, 922, 927, 149, 157, 922, 965, 966, 925, 158, 960, 705, 158, 705, 338, 158, 338, 709, 158, 709, 974, 159, 174, 976, 159, 976, 975, 159, 975, 941, 160, 139, 131, 160, 131, 941, 160, 941, 975, 160, 975, 166, 949, 139, 160, 949, 160, 166, 949, 166, 977, 161, 162, 127, 161, 127, 134, 161, 134, 949, 161, 949, 977, 162, 928, 127, 162, 978, 928, 928, 978, 782, 928, 782, 163, 163, 782, 802, 163, 802, 783, 164, 173, 974, 164, 974, 709, 164, 709, 345, 164, 345, 710, 164, 959, 173, 165, 975, 976, 165, 172, 141, 165, 141, 940, 165, 940, 975, 166, 975, 940, 166, 940, 130, 977, 166, 130, 977, 130, 948, 167, 934, 162, 167, 162, 161, 167, 161, 977, 167, 977, 948, 978, 162, 934, 978, 934, 125, 978, 156, 782, 168, 973, 509, 168, 509, 351, 168, 351, 711, 168, 711, 962, 169, 170, 971, 169, 971, 972, 169, 972, 177, 169, 177, 957, 169, 957, 944, 169, 944, 170, 170, 970, 971, 170, 944, 943, 170, 943, 970, 970, 951, 969, 970, 943, 951, 935, 968, 969, 935, 969, 951, 935, 951, 135, 935, 946, 968, 126, 171, 946, 126, 946, 935, 171, 126, 155, 449, 704, 702, 449, 702, 179, 453, 954, 144, 144, 954, 955, 956, 958, 144, 956, 144, 955, 172, 959, 145, 172, 145, 958, 172, 958, 956, 173, 165, 976, 173, 976, 974, 173, 959, 172, 173, 172, 165, 174, 960, 158, 174, 158, 974, 174, 974, 976, 175, 960, 174, 176, 143, 957, 176, 957, 962, 176, 961, 175, 176, 175, 143, 177, 972, 973, 177, 973, 168, 177, 168, 962, 177, 962, 957, 178, 154, 973, 178, 973, 972, 178, 964, 963, 178, 963, 154, 963, 964, 22, 702, 953, 179, 179, 454, 937, 454, 455, 937, 454, 128, 455, 455, 128, 133, 455, 133, 932, 932, 133, 965, 965, 157, 932, 800, 924, 92, 92, 924, 180, 180, 456, 864, 180, 864, 92, 456, 108, 839, 839, 108, 181, 181, 923, 59, 181, 59, 839, 842, 59, 923, 842, 121, 60, 842, 60, 844, 632, 427, 182, 182, 427, 77, 77, 423, 69, 860, 825, 831, 860, 831, 74, 861, 825, 860, 862, 70, 861, 415, 862, 863, 415, 863, 851, 415, 70, 862, 864, 851, 863, 184, 925, 981, 184, 981, 979, 184, 979, 980, 184, 980, 185, 184, 185, 925, 190, 998, 920, 186, 121, 124, 186, 836, 121, 186, 124, 926, 920, 998, 926, 185, 980, 190, 981, 966, 448, 981, 448, 982, 187, 997, 189, 187, 189, 188, 187, 188, 128, 188, 982, 448, 188, 448, 128, 953, 997, 187, 981, 925, 966, 953, 703, 997, 192, 983, 759, 984, 198, 985, 199, 986, 983, 984, 985, 986, 984, 986, 199, 195, 457, 196, 196, 457, 197, 987, 988, 991, 197, 988, 987, 458, 990, 989, 458, 989, 198, 998, 987, 991, 998, 991, 990, 998, 990, 458, 197, 457, 988, 194, 992, 195, 993, 992, 194, 193, 996, 994, 993, 994, 992, 193, 995, 996, 995, 771, 770, 995, 770, 996, 195, 992, 457, 198, 989, 985, 189, 997, 193, 189, 993, 982, 189, 982, 188, 982, 993, 194, 982, 194, 981, 979, 981, 194, 979, 194, 195, 979, 195, 196, 979, 196, 197, 979, 197, 980, 191, 186, 926, 191, 926, 998, 191, 836, 186, 836, 191, 198, 835, 999, 412, 199, 412, 999, 199, 983, 833, 192, 57, 833, 192, 833, 983, 192, 759, 57, 997, 703, 771, 997, 771, 995, 997, 995, 193, 994, 189, 193, 993, 189, 994, 980, 197, 987, 987, 190, 980, 190, 987, 998, 998, 458, 191, 458, 198, 191, 836, 198, 984, 836, 984, 835, 999, 835, 984, 999, 984, 199, 211, 689, 521, 522, 523, 524, 201, 524, 550, 201, 211, 526, 524, 523, 550, 524, 212, 213, 213, 210, 522, 213, 522, 524, 525, 524, 201, 201, 526, 525, 524, 525, 212, 459, 528, 202, 529, 280, 530, 527, 202, 536, 541, 531, 528, 533, 534, 541, 533, 208, 534, 534, 208, 535, 543, 535, 461, 538, 537, 463, 460, 208, 537, 460, 537, 538, 460, 464, 208, 203, 535, 208, 203, 208, 464, 203, 215, 204, 529, 530, 539, 529, 539, 204, 461, 536, 543, 316, 540, 463, 316, 463, 532, 532, 541, 546, 541, 532, 533, 534, 542, 541, 543, 542, 534, 543, 534, 535, 205, 544, 519, 205, 519, 462, 205, 464, 460, 205, 460, 544, 205, 462, 386, 205, 386, 464, 464, 386, 206, 206, 386, 520, 207, 206, 520, 207, 520, 518, 518, 15, 545, 518, 545, 207, 463, 537, 533, 463, 533, 532, 537, 208, 533, 535, 203, 204, 539, 461, 535, 539, 535, 204, 539, 530, 461, 536, 202, 543, 543, 202, 531, 543, 531, 542, 531, 541, 542, 541, 317, 546, 15, 281, 545, 530, 279, 461, 317, 541, 528, 209, 519, 544, 209, 544, 214, 209, 214, 508, 540, 214, 538, 540, 538, 463, 532, 547, 316, 546, 547, 532, 200, 549, 629, 527, 278, 213, 527, 213, 459, 459, 213, 212, 212, 336, 528, 212, 528, 459, 536, 278, 527, 527, 459, 202, 528, 531, 202, 528, 336, 317, 278, 536, 649, 549, 522, 210, 549, 210, 548, 522, 549, 200, 200, 688, 523, 211, 201, 550, 688, 211, 550, 550, 523, 688, 522, 200, 523, 526, 336, 525, 336, 212, 525, 278, 210, 213, 214, 544, 538, 544, 460, 538, 206, 203, 464, 215, 203, 206, 215, 206, 207, 207, 204, 215, 545, 529, 204, 545, 204, 207, 545, 280, 529, 27, 467, 395, 467, 465, 556, 224, 554, 556, 551, 466, 392, 551, 392, 804, 465, 226, 556, 551, 552, 554, 584, 224, 556, 553, 27, 390, 553, 465, 27, 553, 226, 465, 555, 554, 224, 466, 555, 235, 555, 466, 551, 555, 551, 554, 467, 556, 560, 467, 561, 395, 467, 560, 561, 28, 552, 551, 467, 27, 465, 556, 554, 552, 28, 29, 558, 560, 559, 557, 556, 28, 558, 556, 559, 560, 28, 556, 552, 561, 560, 557, 561, 557, 31, 31, 395, 561, 569, 568, 563, 569, 563, 32, 216, 572, 564, 468, 563, 568, 565, 572, 217, 567, 399, 566, 566, 468, 220, 572, 219, 564, 217, 262, 218, 399, 567, 469, 399, 469, 632, 217, 218, 565, 566, 220, 567, 565, 219, 572, 218, 262, 630, 218, 219, 565, 470, 216, 564, 219, 218, 630, 630, 469, 219, 220, 564, 219, 469, 220, 219, 469, 567, 220, 220, 468, 568, 564, 220, 571, 564, 571, 470, 221, 470, 472, 221, 472, 569, 221, 569, 562, 221, 562, 222, 470, 221, 222, 470, 222, 216, 568, 571, 220, 570, 569, 472, 568, 570, 571, 570, 568, 569, 471, 470, 571, 471, 571, 570, 471, 570, 472, 472, 470, 471, 572, 223, 217, 222, 562, 580, 569, 50, 237, 569, 237, 562, 569, 32, 50, 572, 233, 223, 222, 572, 216, 572, 222, 233, 584, 556, 238, 229, 580, 224, 579, 477, 229, 573, 236, 232, 227, 576, 475, 227, 475, 473, 227, 473, 403, 227, 403, 410, 404, 481, 474, 404, 474, 239, 579, 240, 255, 579, 255, 256, 466, 235, 562, 585, 255, 240, 229, 584, 240, 586, 574, 585, 586, 575, 574, 230, 479, 576, 230, 576, 474, 230, 474, 480, 231, 475, 576, 476, 226, 553, 476, 553, 225, 232, 479, 573, 232, 475, 231, 232, 231, 479, 233, 477, 223, 580, 555, 224, 578, 587, 588, 578, 581, 587, 478, 238, 236, 478, 236, 582, 234, 223, 579, 234, 579, 256, 477, 579, 223, 477, 233, 580, 235, 555, 580, 586, 587, 581, 586, 581, 575, 478, 582, 586, 588, 583, 578, 228, 236, 238, 226, 228, 556, 390, 225, 553, 237, 466, 562, 580, 562, 235, 556, 228, 238, 476, 225, 577, 476, 577, 228, 476, 228, 226, 225, 405, 577, 233, 222, 580, 580, 229, 477, 229, 224, 584, 584, 478, 240, 584, 238, 478, 475, 228, 577, 473, 475, 577, 473, 577, 405, 473, 405, 403, 236, 228, 232, 228, 475, 232, 576, 479, 231, 239, 410, 404, 239, 474, 576, 239, 576, 227, 239, 227, 410, 223, 234, 615, 579, 229, 240, 585, 240, 478, 585, 478, 586, 586, 582, 587, 582, 588, 587, 588, 582, 236, 588, 236, 573, 573, 583, 588, 479, 583, 573, 589, 609, 610, 589, 610, 57, 241, 590, 591, 241, 591, 245, 241, 245, 606, 241, 606, 607, 242, 482, 366, 242, 515, 604, 242, 604, 482, 515, 242, 502, 515, 603, 604, 609, 589, 243, 609, 243, 608, 243, 590, 241, 243, 241, 607, 243, 607, 608, 244, 605, 245, 244, 592, 482, 482, 592, 366, 257, 574, 575, 257, 594, 593, 246, 257, 575, 246, 595, 594, 246, 594, 257, 246, 575, 581, 246, 581, 247, 246, 247, 596, 246, 596, 595, 247, 581, 578, 247, 578, 248, 247, 248, 597, 247, 597, 596, 248, 578, 583, 248, 598, 597, 249, 248, 583, 249, 583, 479, 249, 599, 598, 249, 598, 248, 250, 249, 479, 250, 479, 230, 250, 230, 600, 250, 600, 599, 250, 599, 249, 480, 474, 601, 480, 600, 230, 481, 601, 474, 481, 404, 602, 604, 593, 594, 604, 594, 251, 251, 482, 604, 251, 594, 595, 252, 253, 482, 252, 482, 251, 252, 251, 595, 252, 595, 596, 252, 596, 253, 253, 254, 605, 253, 605, 244, 253, 244, 482, 253, 596, 597, 253, 597, 254, 254, 606, 245, 254, 245, 605, 254, 597, 598, 254, 598, 606, 607, 606, 598, 607, 598, 599, 599, 600, 608, 599, 608, 607, 480, 601, 609, 480, 609, 608, 480, 608, 600, 481, 602, 610, 481, 610, 609, 481, 609, 601, 630, 632, 469, 223, 615, 258, 255, 585, 574, 255, 574, 611, 255, 611, 367, 255, 367, 612, 234, 256, 616, 234, 616, 615, 256, 255, 612, 256, 612, 485, 256, 485, 616, 257, 611, 574, 257, 593, 621, 257, 621, 263, 257, 263, 611, 603, 593, 604, 603, 621, 593, 515, 265, 603, 258, 489, 272, 268, 626, 614, 484, 624, 259, 623, 625, 270, 258, 272, 262, 272, 627, 262, 623, 622, 617, 613, 485, 261, 613, 616, 485, 484, 635, 260, 487, 483, 488, 483, 617, 619, 483, 619, 488, 620, 618, 628, 626, 268, 615, 622, 261, 617, 624, 633, 627, 259, 624, 627, 259, 627, 272, 260, 624, 484, 270, 625, 484, 615, 489, 258, 616, 626, 615, 616, 613, 626, 626, 613, 614, 261, 622, 613, 622, 614, 613, 620, 486, 618, 617, 483, 623, 623, 483, 487, 623, 487, 625, 625, 487, 635, 625, 635, 484, 618, 261, 485, 618, 486, 261, 367, 628, 618, 367, 618, 485, 367, 263, 628, 263, 264, 620, 263, 620, 628, 263, 621, 264, 261, 486, 617, 619, 617, 486, 277, 619, 486, 277, 488, 619, 277, 486, 620, 277, 620, 629, 629, 620, 264, 265, 264, 621, 262, 627, 266, 262, 631, 630, 631, 262, 266, 630, 631, 427, 630, 427, 632, 631, 266, 427, 624, 260, 633, 487, 638, 635, 635, 634, 260, 487, 488, 267, 636, 488, 277, 636, 278, 488, 266, 627, 633, 260, 637, 633, 260, 634, 637, 634, 273, 641, 638, 487, 639, 635, 273, 634, 635, 638, 273, 267, 639, 487, 267, 488, 278, 278, 636, 210, 642, 266, 633, 642, 633, 637, 637, 640, 642, 640, 637, 634, 640, 634, 641, 639, 493, 492, 639, 492, 638, 638, 492, 276, 638, 276, 273, 267, 278, 493, 267, 493, 639, 642, 640, 274, 259, 272, 644, 259, 644, 269, 259, 269, 484, 270, 484, 269, 623, 270, 271, 268, 489, 615, 271, 614, 622, 268, 614, 271, 623, 271, 622, 489, 268, 272, 268, 271, 491, 269, 645, 646, 270, 646, 647, 271, 647, 490, 269, 644, 645, 269, 646, 270, 270, 647, 271, 272, 643, 648, 268, 643, 272, 268, 491, 643, 271, 490, 491, 272, 648, 644, 641, 275, 640, 641, 494, 275, 273, 276, 494, 273, 494, 641, 275, 274, 640, 275, 91, 274, 274, 91, 432, 278, 649, 493, 275, 494, 652, 275, 652, 91, 492, 282, 276, 493, 536, 492, 276, 282, 494, 650, 264, 265, 650, 265, 651, 365, 629, 264, 365, 264, 650, 651, 265, 515, 277, 629, 549, 277, 549, 548, 548, 636, 277, 210, 636, 548, 280, 282, 530, 279, 530, 282, 536, 279, 492, 536, 461, 279, 280, 545, 281, 649, 536, 493, 492, 279, 282, 494, 282, 280, 494, 280, 652, 652, 280, 281, 652, 96, 91, 652, 281, 94, 652, 94, 96, 500, 653, 658, 657, 676, 283, 676, 657, 656, 500, 658, 659, 655, 654, 659, 284, 283, 655, 284, 657, 283, 657, 660, 656, 286, 666, 497, 661, 662, 287, 661, 287, 663, 292, 664, 291, 285, 664, 663, 285, 495, 664, 291, 495, 290, 653, 666, 658, 497, 666, 495, 495, 285, 497, 495, 291, 664, 290, 495, 666, 498, 666, 653, 498, 290, 666, 666, 286, 658, 659, 665, 667, 659, 658, 286, 655, 659, 667, 497, 285, 288, 286, 497, 288, 665, 286, 287, 287, 286, 288, 287, 288, 663, 667, 665, 662, 663, 288, 285, 665, 659, 286, 664, 292, 668, 664, 668, 663, 668, 661, 663, 665, 287, 662, 659, 654, 500, 667, 284, 655, 667, 289, 284, 289, 657, 284, 660, 657, 289, 496, 656, 660, 667, 662, 289, 289, 662, 661, 496, 660, 289, 496, 289, 661, 496, 668, 292, 496, 661, 668, 290, 298, 291, 496, 685, 656, 669, 292, 291, 669, 291, 298, 496, 670, 685, 292, 670, 496, 673, 674, 672, 293, 674, 678, 293, 294, 670, 671, 294, 293, 670, 294, 685, 670, 672, 674, 670, 674, 293, 672, 669, 673, 673, 669, 298, 499, 290, 498, 290, 499, 298, 298, 499, 673, 498, 653, 680, 674, 673, 677, 499, 677, 673, 293, 678, 671, 498, 677, 499, 498, 680, 677, 500, 680, 653, 655, 681, 654, 676, 675, 283, 283, 675, 681, 681, 655, 283, 656, 295, 676, 502, 674, 677, 502, 678, 674, 680, 694, 679, 680, 679, 677, 500, 305, 680, 500, 654, 681, 676, 296, 675, 297, 676, 295, 300, 671, 501, 501, 671, 678, 682, 501, 678, 682, 678, 502, 682, 306, 501, 680, 305, 688, 680, 688, 694, 500, 689, 305, 681, 689, 500, 683, 676, 297, 296, 676, 683, 299, 681, 675, 299, 675, 296, 297, 295, 684, 672, 292, 669, 672, 670, 292, 685, 294, 671, 685, 671, 656, 671, 684, 295, 671, 295, 656, 671, 300, 684, 301, 300, 501, 693, 679, 694, 689, 681, 299, 297, 302, 303, 683, 297, 303, 683, 303, 692, 692, 299, 296, 692, 296, 683, 684, 302, 297, 684, 300, 302, 300, 301, 307, 300, 304, 302, 306, 301, 501, 301, 686, 307, 300, 307, 304, 690, 303, 302, 303, 691, 692, 521, 299, 692, 686, 301, 306, 309, 690, 302, 309, 302, 304, 691, 303, 690, 691, 690, 700, 692, 691, 699, 689, 299, 521, 687, 693, 694, 677, 695, 502, 695, 677, 679, 366, 306, 682, 366, 682, 502, 693, 695, 679, 693, 687, 695, 592, 686, 306, 687, 200, 365, 305, 211, 688, 689, 211, 305, 309, 308, 696, 200, 694, 688, 686, 698, 368, 686, 592, 698, 697, 308, 304, 697, 304, 307, 308, 309, 304, 200, 687, 694, 747, 692, 699, 521, 692, 747, 309, 696, 756, 691, 700, 699, 686, 368, 307, 690, 364, 700, 690, 309, 364, 344, 312, 337, 354, 337, 312, 713, 715, 318, 310, 713, 330, 311, 350, 747, 311, 747, 329, 311, 329, 716, 311, 716, 717, 718, 354, 312, 718, 312, 320, 719, 506, 321, 321, 506, 504, 721, 720, 504, 723, 722, 720, 723, 720, 721, 313, 724, 725, 313, 725, 726, 313, 726, 347, 314, 323, 340, 314, 340, 727, 314, 727, 728, 314, 728, 315, 315, 728, 730, 315, 730, 729, 316, 731, 540, 546, 317, 332, 503, 513, 514, 321, 732, 714, 732, 715, 714, 318, 322, 713, 318, 715, 732, 716, 330, 733, 716, 733, 717, 319, 312, 343, 319, 343, 342, 319, 342, 734, 319, 734, 735, 320, 312, 319, 320, 319, 735, 320, 735, 736, 546, 737, 547, 546, 332, 737, 505, 513, 503, 732, 321, 504, 732, 504, 318, 318, 504, 720, 318, 720, 322, 322, 330, 713, 322, 720, 722, 724, 348, 733, 724, 733, 330, 724, 313, 348, 323, 735, 734, 323, 314, 315, 729, 736, 735, 729, 735, 323, 729, 323, 315, 547, 333, 316, 547, 737, 333, 355, 510, 505, 355, 505, 370, 719, 510, 511, 719, 511, 506, 506, 721, 504, 506, 512, 738, 506, 738, 721, 723, 721, 738, 723, 738, 739, 324, 726, 725, 324, 725, 357, 324, 357, 358, 325, 728, 727, 325, 727, 339, 325, 339, 359, 326, 730, 728, 326, 728, 325, 326, 325, 360, 326, 740, 730, 703, 702, 355, 704, 511, 510, 704, 510, 702, 704, 507, 511, 704, 451, 507, 507, 701, 356, 507, 451, 701, 701, 331, 356, 741, 710, 345, 741, 707, 710, 327, 743, 360, 327, 360, 742, 327, 742, 705, 327, 705, 146, 327, 146, 706, 327, 706, 743, 328, 744, 361, 328, 361, 743, 328, 743, 706, 328, 706, 147, 328, 147, 711, 328, 711, 744, 508, 745, 708, 746, 214, 540, 746, 540, 731, 756, 503, 514, 756, 712, 503, 715, 364, 714, 700, 310, 329, 700, 715, 713, 700, 713, 310, 329, 310, 330, 329, 330, 716, 330, 322, 722, 330, 722, 724, 725, 724, 722, 725, 722, 723, 739, 357, 725, 739, 725, 723, 331, 707, 741, 331, 741, 356, 332, 317, 336, 332, 336, 354, 737, 748, 333, 737, 332, 748, 333, 749, 731, 333, 731, 316, 731, 749, 750, 731, 750, 334, 334, 751, 363, 334, 363, 746, 334, 746, 731, 334, 750, 751, 335, 708, 745, 526, 337, 354, 337, 526, 211, 337, 211, 344, 521, 747, 350, 329, 747, 699, 329, 699, 700, 364, 715, 700, 756, 696, 712, 338, 705, 742, 338, 742, 752, 338, 752, 709, 339, 727, 753, 339, 753, 754, 339, 754, 359, 340, 323, 341, 340, 341, 348, 340, 348, 347, 340, 347, 753, 340, 753, 727, 341, 323, 734, 341, 734, 755, 342, 343, 349, 342, 755, 734, 344, 343, 312, 344, 211, 350, 345, 709, 752, 346, 753, 726, 346, 726, 324, 346, 324, 358, 346, 754, 753, 347, 348, 313, 347, 726, 753, 348, 341, 755, 348, 755, 733, 717, 342, 349, 717, 733, 755, 717, 755, 342, 349, 350, 311, 349, 311, 717, 350, 349, 343, 350, 343, 344, 350, 211, 521, 351, 509, 362, 351, 362, 744, 351, 744, 711, 352, 751, 750, 352, 730, 740, 353, 750, 749, 353, 729, 730, 353, 730, 352, 353, 352, 750, 749, 333, 736, 749, 736, 729, 749, 729, 353, 748, 718, 320, 748, 320, 736, 748, 736, 333, 718, 748, 332, 718, 332, 354, 354, 336, 526, 512, 506, 511, 512, 511, 507, 512, 356, 738, 512, 507, 356, 356, 739, 738, 741, 357, 739, 741, 739, 356, 357, 345, 358, 357, 741, 345, 358, 754, 346, 358, 345, 752, 358, 752, 754, 359, 754, 752, 359, 752, 742, 360, 325, 359, 360, 359, 742, 361, 740, 326, 361, 326, 360, 361, 360, 743, 361, 744, 740, 362, 509, 751, 362, 751, 352, 362, 352, 740, 362, 740, 744, 363, 509, 335, 363, 335, 745, 363, 745, 746, 363, 751, 509, 508, 214, 746, 508, 746, 745, 702, 510, 355, 510, 719, 505, 513, 505, 719, 513, 719, 321, 513, 714, 514, 513, 321, 714, 756, 514, 714, 756, 714, 364, 364, 309, 756, 200, 629, 365, 365, 650, 687, 650, 695, 687, 651, 502, 695, 651, 695, 650, 502, 651, 515, 502, 242, 366, 592, 306, 366, 698, 592, 244, 698, 244, 245, 217, 258, 262, 217, 223, 258, 367, 611, 263, 367, 485, 612, 265, 621, 603, 757, 712, 696, 757, 696, 308, 307, 774, 697, 697, 378, 308, 368, 758, 379, 379, 307, 368, 379, 774, 307, 308, 378, 757, 712, 369, 503, 712, 377, 369, 369, 371, 503, 370, 371, 772, 370, 772, 375, 371, 370, 505, 371, 505, 503, 375, 355, 370, 375, 703, 355, 375, 771, 703, 372, 368, 698, 372, 698, 245, 372, 245, 591, 372, 591, 758, 372, 758, 368, 589, 759, 760, 781, 761, 765, 781, 765, 374, 383, 760, 761, 781, 383, 761, 779, 773, 762, 774, 763, 764, 774, 764, 373, 382, 766, 379, 382, 780, 765, 382, 765, 766, 379, 766, 767, 379, 767, 763, 373, 764, 762, 778, 779, 768, 778, 768, 516, 777, 778, 516, 777, 516, 769, 777, 769, 517, 517, 769, 770, 776, 770, 771, 779, 762, 768, 517, 770, 776, 374, 765, 780, 369, 377, 778, 369, 376, 371, 712, 773, 377, 773, 712, 757, 773, 757, 378, 773, 378, 762, 774, 378, 697, 758, 380, 382, 758, 382, 379, 380, 758, 591, 381, 380, 591, 381, 591, 590, 381, 590, 775, 590, 243, 781, 590, 781, 775, 243, 589, 383, 243, 383, 781, 589, 57, 759, 375, 776, 771, 375, 517, 776, 375, 772, 517, 772, 371, 376, 772, 376, 777, 772, 777, 517, 778, 376, 369, 778, 777, 376, 778, 377, 779, 377, 773, 779, 378, 373, 762, 378, 774, 373, 379, 763, 774, 382, 380, 780, 780, 380, 381, 775, 780, 381, 775, 781, 374, 775, 374, 780, 383, 589, 760, 416, 86, 87, 87, 86, 431, 431, 86, 869, 431, 869, 430, 430, 869, 75, 430, 75, 853, 272, 489, 259, 259, 489, 269, 269, 489, 268, 269, 268, 270, 270, 268, 271, 807, 396, 806, 806, 396, 31, 806, 31, 28, 28, 31, 395, 28, 395, 552, 552, 395, 467, 552, 467, 556 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_model_index.txt b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_model_index.txt deleted file mode 100644 index 2ea6226e..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_model_index.txt +++ /dev/null @@ -1 +0,0 @@ -25,23,26,1,26,23,34,42,7,10,32,29,24,0,2,16,34,36,5,12,35,10,30,35,36,34,17,13,9,28,14,33,38,31,11,1,12,13,37,41,4,0,37,21,19,23,25,0,18,14,39,11,31,29,37,28,8,15,40,38,41,38,33,6,42,34,31,2,27,36,39,22,22,39,38,25,3,15,30,29,27,23,0,24,196,411,410,708,48,707,868,457,68,27,2,126,59,61,60,55,711,712,121,551,779,558,284,493,546,412,551,429,64,866,718,67,717,457,719,720,453,454,721,299,123,267,66,311,999,357,358,1149,134,138,77,76,75,74,277,276,279,544,434,549,724,72,470,0,4,726,190,192,855,590,373,361,726,81,727,364,371,572,867,865,1226,845,852,188,113,114,1037,734,732,735,1071,1072,517,739,736,740,169,735,732,846,845,174,743,741,744,94,740,736,505,181,88,96,744,741,112,748,745,1085,525,1061,114,117,119,99,749,745,1119,1118,206,750,501,751,522,1082,1064,176,93,92,113,117,114,100,505,105,181,752,754,757,755,758,752,525,754,255,644,645,760,759,761,83,758,755,764,762,765,106,761,759,108,765,762,95,770,754,110,765,766,95,738,769,525,753,1071,182,740,776,112,775,772,746,525,1085,508,182,777,1044,1194,697,174,116,524,287,683,690,138,134,797,527,526,240,779,52,570,45,120,44,782,780,783,122,124,123,547,445,416,69,783,780,784,785,55,888,1008,469,1170,555,50,209,203,863,603,531,1087,71,72,724,125,59,60,467,471,466,788,5,27,274,275,793,127,129,128,133,791,792,85,124,832,793,619,621,303,302,897,44,120,140,144,146,145,358,357,936,293,296,295,141,143,142,799,798,149,803,800,804,136,1022,1023,808,805,809,153,804,800,90,735,810,154,809,805,106,757,810,147,149,798,414,413,412,502,818,819,816,91,817,1037,1038,103,87,821,820,500,819,818,825,822,826,829,827,830,160,826,822,832,165,831,163,830,827,89,836,833,840,838,841,545,386,389,166,837,833,103,505,100,171,841,842,170,841,838,704,1213,844,1057,1054,172,97,852,845,179,174,188,100,703,104,581,1102,1043,774,187,186,479,1020,881,463,606,1165,86,87,105,674,690,679,853,851,743,97,743,851,193,191,857,142,143,189,204,206,871,207,144,208,282,390,383,202,860,858,414,1229,1228,431,866,865,200,861,858,1230,1229,414,203,864,862,534,399,59,455,69,720,601,306,900,873,860,202,46,916,960,1105,1102,581,308,45,43,132,128,129,322,591,1125,293,292,896,686,687,689,45,308,329,496,1182,896,122,123,299,350,222,876,637,630,651,304,301,897,1018,1015,477,303,307,43,308,218,217,587,340,923,310,902,901,309,905,901,914,911,915,313,910,906,349,347,575,408,395,396,317,915,911,916,917,320,325,328,327,322,313,907,396,539,544,339,246,886,298,920,921,923,922,339,1132,1133,596,289,622,565,303,219,220,192,927,924,345,209,872,466,232,233,191,855,924,346,928,872,380,71,73,932,930,349,85,83,620,931,876,223,363,369,944,75,361,362,354,353,934,254,259,568,79,472,379,193,348,930,332,1132,899,435,447,1162,922,923,340,368,941,938,944,202,351,366,942,938,1127,1123,590,350,931,861,205,871,945,367,950,948,368,947,945,351,202,861,903,901,904,532,533,536,194,940,948,226,372,371,386,327,388,932,854,191,248,533,532,205,947,951,960,959,404,563,498,295,787,786,421,59,399,398,388,391,392,873,210,348,312,1108,1152,957,954,958,323,365,962,602,1150,974,400,958,954,962,397,398,405,406,385,367,940,938,392,383,390,1229,543,427,410,407,549,199,407,410,435,197,974,968,967,418,328,325,527,1096,540,393,418,964,1230,459,710,889,426,543,1229,57,964,965,433,554,549,394,51,709,424,52,867,56,712,965,421,420,967,1235,994,980,566,571,333,421,968,970,990,211,70,425,971,867,430,972,866,13,1008,888,438,65,1003,436,973,974,1137,1138,436,67,310,903,447,435,973,156,492,491,439,438,450,439,980,440,442,981,982,62,441,714,446,982,985,453,1233,1232,211,990,1234,583,1103,917,254,629,638,427,543,548,1235,452,869,989,1234,979,428,997,995,63,67,718,1163,976,464,462,1001,718,65,66,1000,1161,1162,447,294,896,1182,67,63,61,441,463,1002,469,468,1004,530,242,882,1004,468,126,484,372,466,1008,1007,468,1183,1218,1070,133,294,1100,13,12,1007,485,375,382,1022,0,727,558,557,561,1013,1015,476,135,1014,1012,1025,1019,482,478,477,1017,383,392,199,138,486,485,481,234,879,880,1016,479,235,878,1018,17,7,881,18,17,1020,476,1025,796,483,482,236,485,483,378,1133,1132,332,135,795,1023,376,377,1160,137,73,136,79,80,573,564,565,120,78,77,382,887,252,469,1038,1037,114,960,916,319,356,245,242,498,497,495,522,518,519,1027,501,502,1219,1221,1030,151,162,1027,167,1032,1029,100,105,820,734,90,758,503,1033,1029,728,84,836,89,1035,1036,283,389,390,505,103,178,806,110,1076,175,845,846,1041,1039,1042,696,1215,1212,107,761,1075,520,495,497,153,1042,1039,849,742,97,507,83,760,512,699,1045,509,183,739,1045,698,513,506,107,768,156,817,1201,702,514,1046,515,840,1052,511,1051,1048,186,1053,1052,117,118,524,819,1066,511,119,179,188,703,1057,1037,150,148,813,600,1173,936,701,1051,1065,499,1063,1065,514,702,1064,497,487,500,1068,1067,835,504,1068,1069,167,835,1067,1072,1071,753,165,1070,1069,520,101,496,169,1079,1077,488,489,561,185,1041,1080,517,180,1085,326,541,535,328,528,532,1081,777,184,388,327,328,1164,534,125,1087,883,244,373,374,362,244,884,934,351,223,885,204,354,933,75,578,577,891,961,398,350,200,864,348,193,949,409,391,536,372,226,232,559,489,490,1090,1089,539,1092,1089,445,1090,444,445,555,442,1095,979,450,438,428,427,553,1097,997,428,634,637,660,408,432,549,550,567,208,652,651,542,388,529,536,74,362,573,416,419,418,460,998,877,1092,547,546,384,319,320,410,411,385,1170,463,441,1104,959,405,272,271,269,1082,522,510,417,414,415,442,555,1170,710,533,248,442,446,1096,336,335,338,299,127,128,559,562,561,634,658,654,497,498,490,1088,886,243,676,208,567,385,384,383,365,309,902,240,526,568,682,668,665,1170,1169,606,1093,778,570,709,50,555,145,545,550,1121,1120,1118,1126,1125,331,561,557,523,53,715,1138,602,197,976,584,404,959,1123,321,314,580,507,1043,488,487,490,157,491,789,281,582,491,584,1137,1139,1138,1137,584,406,405,959,404,1139,1136,491,582,1103,1109,1106,926,594,1131,1126,403,958,1110,342,926,1106,1117,342,1114,315,1112,1110,363,943,885,589,588,1118,927,192,1122,367,946,1120,1100,294,579,330,331,921,592,1140,918,373,590,192,1155,317,1130,1099,279,297,1139,1137,58,1135,318,914,49,1136,1134,58,974,1150,454,453,988,291,290,289,613,360,936,600,1143,1141,1146,1144,957,600,357,1142,402,957,1144,909,316,913,900,300,301,318,1146,1147,301,304,1149,1150,1145,597,598,597,1136,343,926,924,955,401,999,311,904,1152,251,534,1164,594,330,920,706,48,915,918,907,314,277,127,299,565,335,336,1130,594,1156,329,288,289,1185,1017,477,214,890,898,467,465,1005,50,459,998,480,1017,1185,1001,462,984,607,443,983,1165,125,60,1164,460,231,381,341,1151,998,460,606,1151,1088,531,786,969,420,1162,451,437,443,607,969,445,444,419,571,331,1125,346,201,873,573,608,575,195,196,570,779,996,52,1172,1171,1114,266,123,124,356,530,203,946,945,871,600,599,1174,589,1119,933,617,618,129,272,614,1176,496,292,295,336,334,140,610,609,338,313,322,1126,472,471,467,586,1105,1158,380,379,72,609,611,1178,604,1158,1105,278,1098,1177,1179,583,47,1179,1154,604,623,612,610,900,874,214,618,617,270,625,280,285,593,1141,1143,363,225,224,560,490,498,1100,1101,122,266,620,507,274,132,618,274,1181,792,280,283,282,165,832,1101,335,565,622,527,239,241,484,471,472,344,613,578,344,624,360,210,202,944,474,1185,1184,621,619,1187,649,647,258,542,569,535,628,1186,1187,685,684,687,638,637,634,658,657,653,664,663,662,700,1200,1046,326,545,145,636,655,662,83,85,729,639,640,642,643,666,667,256,641,644,655,654,653,646,667,669,731,730,87,650,669,671,662,655,656,141,670,671,632,633,636,433,434,1091,660,659,657,679,678,661,268,275,274,668,667,666,687,684,680,992,82,449,668,141,669,812,1077,809,626,670,141,683,287,284,691,296,293,144,207,652,635,262,261,256,263,639,521,157,790,189,143,682,683,558,562,631,634,633,693,692,691,675,672,677,563,692,685,620,83,507,522,523,494,500,487,488,586,265,266,501,1027,1191,148,1049,1188,1085,180,1222,503,1193,1191,91,803,1195,1194,696,694,699,512,1046,699,1196,1195,799,151,150,159,826,1197,843,1195,803,700,1203,1202,1050,1048,1051,700,1202,1201,1210,703,100,823,161,821,166,1198,1197,87,730,1204,168,1079,1208,1190,694,1189,704,170,848,176,177,118,694,1212,1211,513,696,1194,1213,1215,696,176,1216,1214,93,173,174,666,643,642,176,172,1055,808,739,182,748,94,747,134,136,795,1053,186,187,253,638,631,283,567,550,668,682,143,642,640,662,654,655,636,305,302,43,666,663,664,448,1225,1232,677,659,652,628,627,626,526,535,569,189,691,628,693,682,680,296,691,692,622,289,290,787,985,987,559,686,688,269,268,273,789,1103,583,333,332,140,378,483,237,595,304,899,308,307,220,593,1128,1125,599,592,1127,130,1180,1062,986,423,970,523,557,493,768,108,131,547,415,412,1222,180,188,751,101,520,55,785,456,572,576,575,1031,504,1070,95,525,747,914,48,708,710,709,51,2,0,723,250,399,534,1166,987,62,978,1003,464,52,424,570,1138,715,448,1232,1233,447,1000,461,464,963,995,996,451,1162,1161,721,70,211,449,1225,1224,644,643,646,449,82,991,919,875,216,126,2,724,427,428,963,725,723,0,1007,12,5,165,579,1182,460,1164,1165,459,50,709,1010,81,726,785,455,868,1035,83,728,1068,84,729,729,84,728,1207,169,733,89,733,732,737,747,94,738,95,737,743,97,742,617,614,272,1084,99,746,525,746,745,174,524,92,501,750,818,754,770,86,1066,1065,1051,752,753,525,504,1031,1029,771,111,731,760,83,756,757,106,756,1074,108,763,109,763,762,1076,110,767,107,767,766,168,1078,1077,771,769,738,774,772,775,773,94,748,777,776,773,183,738,736,1072,1038,115,116,179,119,689,678,679,778,1093,121,360,359,935,1091,546,121,506,1062,1180,785,784,69,781,68,720,551,552,996,69,784,1231,452,456,868,483,485,486,814,150,151,128,791,1100,870,205,603,136,73,725,122,1101,832,797,134,794,794,795,135,139,796,797,459,230,877,157,521,802,687,681,678,512,697,1047,155,511,815,1042,153,801,521,801,800,811,154,806,110,806,805,1220,1076,106,154,811,810,155,814,1026,828,164,1209,816,802,91,108,1074,790,152,820,821,162,824,822,829,160,823,161,823,822,1207,163,828,164,828,827,1198,166,834,59,397,310,835,167,834,848,170,839,515,839,838,843,842,844,187,775,1058,96,1059,1058,514,1082,1203,849,847,839,116,174,179,185,184,774,1040,1039,850,849,515,96,164,111,168,188,852,851,608,573,362,854,855,191,949,193,856,857,194,856,364,574,369,862,864,200,354,1167,1087,201,859,858,444,970,968,859,201,863,1228,963,552,781,994,869,431,1227,995,426,538,548,298,297,267,370,949,948,871,205,870,201,872,863,372,484,572,371,364,224,281,492,285,586,605,298,920,298,605,294,133,895,377,376,375,301,300,898,53,1226,1224,1018,878,234,1115,1113,905,140,332,305,909,906,910,475,477,1015,314,907,906,1130,317,912,316,912,911,1123,1122,192,403,1112,1147,246,339,922,322,918,1140,376,359,382,379,472,470,595,596,1143,278,279,1099,331,571,1099,407,199,409,857,191,925,926,342,925,933,934,356,347,349,930,396,393,540,1016,1017,480,572,484,79,1149,304,595,1167,354,204,1117,366,939,940,194,939,946,367,941,386,387,390,461,401,956,1086,882,222,381,952,951,697,695,1050,358,601,1148,1123,1127,592,369,574,575,983,984,462,944,369,347,1108,400,955,401,955,954,422,443,786,676,677,207,1133,1128,593,437,464,976,420,966,965,57,426,1230,784,56,966,967,965,964,542,541,145,1235,450,979,52,1227,865,323,215,875,971,1104,195,961,891,215,679,656,653,982,981,441,385,406,319,976,197,435,437,451,979,625,567,283,987,1166,984,327,386,545,1096,446,986,992,716,64,1225,449,988,1231,966,420,452,1235,1234,1227,52,996,990,993,456,440,980,994,430,431,997,678,681,664,713,63,1001,60,61,714,315,908,906,392,391,409,1111,343,927,554,433,570,1006,470,467,337,1177,1098,190,854,932,111,164,730,788,126,468,33,1009,726,1024,1184,1014,1090,1217,970,486,138,796,1015,1018,481,63,713,714,455,719,457,14,18,1021,1019,879,236,677,672,657,76,137,344,537,51,394,78,624,344,1013,139,797,475,1013,1012,229,377,378,571,566,1098,1043,760,107,698,844,1213,1140,1141,593,158,818,750,636,640,639,799,824,162,164,829,1204,1193,503,1030,102,1030,1029,89,734,1034,840,171,804,824,799,152,119,180,517,92,524,118,181,178,753,518,499,488,1056,1054,1057,1050,701,702,705,516,1212,1049,148,815,516,1055,1054,1055,172,1054,510,494,156,1207,1208,1079,1210,1028,149,749,1083,1060,509,1078,771,1064,1063,499,504,1032,1067,729,85,831,763,109,1042,850,1039,1041,1219,101,751,807,1080,764,96,515,1053,807,508,1081,499,1066,819,184,773,772,701,1063,1064,98,744,1083,168,111,771,1160,892,213,465,233,887,66,717,903,535,526,527,630,637,638,66,65,718,568,569,630,969,607,783,320,582,281,673,653,657,394,1094,1095,956,402,602,425,584,1104,675,674,673,674,675,286,1217,1090,540,532,528,241,216,894,922,1183,1182,496,156,1202,1203,582,320,917,615,1177,1176,360,624,382,243,883,1087,279,276,267,196,195,405,436,448,977,439,462,65,1114,342,1107,312,1107,1106,908,315,1111,1109,343,1111,312,905,1113,939,194,857,342,1117,1116,1120,946,206,1121,370,950,314,908,1124,267,123,266,578,1174,1127,578,613,1173,316,910,1129,953,366,1117,377,229,892,475,1014,1184,365,323,919,1135,1134,1136,587,1115,937,402,1145,1150,782,983,439,355,203,209,1135,597,1145,1135,1144,1146,914,318,913,962,902,310,359,376,1159,306,213,874,952,1151,603,1115,309,365,537,395,408,1154,1153,1155,1158,1157,1156,604,1155,1157,473,76,74,781,780,782,1159,1160,306,1226,64,716,538,426,57,396,395,394,928,1121,588,873,201,860,51,537,536,370,346,1168,608,374,352,348,210,929,1024,81,1010,481,1019,1025,588,589,209,337,338,1176,1175,1176,338,272,1175,1178,612,611,609,277,278,615,571,1128,1133,615,614,617,706,1153,1154,1225,448,715,581,1180,1179,412,413,552,130,583,1179,628,293,895,400,1108,1106,1121,928,346,0,1022,725,1159,601,358,649,257,264,693,684,685,647,649,650,542,651,630,675,676,625,645,646,650,652,659,660,664,681,680,1089,1092,544,689,690,683,93,1214,848,820,152,149,814,815,148,895,133,621,695,1190,1188,147,813,1188,825,159,1192,1219,102,1031,843,698,1045,705,704,1214,1192,159,1198,803,91,802,695,1049,1048,1131,594,1130,167,1033,1205,1199,163,1207,89,837,1206,1056,703,1210,84,835,833,516,1056,1211,109,764,1080,1210,147,1189,704,705,1215,1194,1190,695,705,1216,1055,118,117,113,1027,162,825,178,103,1038,642,643,644,560,685,686,78,136,134,586,580,1102,235,478,1016,853,98,1222,1078,509,809,98,1084,1223,1181,621,133,989,1161,722,631,632,261,1076,1075,761,1196,1201,817,1200,1201,1196,711,55,993,284,285,492,953,1171,1172,1011,1009,33,340,937,919,329,217,221,374,373,190,1193,1221,751,986,985,787,846,847,849,494,493,492,790,789,130,381,1172,923,712,711,54,530,1086,864,1199,1206,837,848,847,846,49,708,707,128,132,792,592,599,1141,287,286,285,817,156,157,956,954,957,934,884,245,1011,474,1010,1226,865,866,909,1147,1112,1060,1083,744,399,250,249,1060,1058,775,953,951,942,430,1097,429,434,544,1092,277,616,129,904,901,905,401,461,1000,288,221,212,942,951,947,48,706,707,1219,1218,1183,807,805,808,722,1161,1233,45,44,43,219,303,898,987,985,982,47,46,707,770,769,731,844,842,841,635,639,263,80,379,380,1084,1083,749,1024,1023,727,336,337,566,73,137,76,521,1074,1073,1192,1205,1033,1035,1034,758,830,1197,826,1040,1052,804,480,1021,1020,768,766,765,1088,1151,341,983,443,422,1155,1153,915,773,776,740,302,305,899,1131,1129,910,474,1011,1021,587,1114,1113,1097,458,992,1199,1197,830,47,917,916,725,73,71,1109,1110,958,812,810,735,548,538,454,538,54,721,553,548,991,458,553,82,54,711,70,1237,2420,2421,1242,1239,2423,2420,1237,1241,1243,2425,2426,2428,1246,1245,1245,1246,1242,1244,1245,1243,1248,1244,1250,2430,1247,1238,2431,2424,1241,1247,1248,1249,1244,1248,2433,2432,2427,1245,1247,2430,2433,1242,2422,2425,1238,1247,1241,1237,1236,1238,1246,2428,2434,2431,1249,1250,1236,2421,2429,1246,1240,1239,1273,1270,1272,1270,1273,1252,7,42,1280,1275,1278,1257,1253,1251,1271,1282,1280,1263,1281,1259,1256,1281,1276,1257,1264,1280,1282,28,9,1260,1284,1279,1261,1252,1258,1277,1283,1260,1259,1251,1255,1287,1266,1268,1283,1270,1251,1272,1285,1261,1265,1275,1277,1258,8,28,1283,1284,1286,1262,1279,1284,1287,1280,42,6,1274,1253,1277,1269,1285,1282,1284,1285,1269,1262,1254,1272,1274,1275,1276,1270,1271,1251,1602,1603,1441,1900,1899,1293,1313,1649,2060,1371,1253,1274,1304,1305,1306,1904,1903,1300,1971,1743,1366,1685,1476,1750,1743,1604,1738,2058,1309,1621,1910,1909,1312,1912,1911,1649,1913,1646,1645,1459,1368,1491,2170,1503,1311,2320,1550,1549,1322,1383,1379,1321,1319,1320,1471,1468,1469,1741,1626,1736,1662,1317,1916,1918,1255,1251,2047,1437,1435,1553,1565,1782,1918,1919,1326,1764,1563,1556,2397,2057,2059,1433,2044,2037,2208,1359,1358,1927,1924,1926,1709,2243,2242,1932,1928,1931,1924,1927,1414,1419,2037,2038,1936,1933,1935,1928,1932,1339,1333,1426,1697,1933,1936,1341,1937,1940,1357,2256,2232,1717,1364,1362,1359,1937,1941,1344,1451,2289,2290,1942,1943,1693,2235,2253,1714,1337,1338,1421,1358,1359,1362,1345,1350,1697,1946,1944,1426,1950,1947,1949,1944,1946,1717,1837,1836,2436,1953,1951,1952,1947,1950,1328,1957,1954,1956,1951,1953,1351,1954,1957,1353,1946,1962,1340,1958,1957,1355,1961,1930,1340,2242,1945,1717,1968,1932,1427,1964,1967,1357,2256,1717,1938,1969,1427,1700,1889,2365,2215,1419,1716,1361,1882,1875,1479,1989,1379,1383,240,1718,1719,1762,1297,1971,1290,1289,1365,1975,1972,1974,1367,1368,1369,1608,1637,1739,1972,1975,1314,1300,1977,1976,1661,2179,888,1295,1747,2341,2055,1448,1454,2258,1723,1795,1916,1317,1316,1370,1305,1304,1658,1663,1659,1980,1274,1256,1985,1467,1466,1372,1373,1374,1378,1984,1983,2024,1369,1330,1813,1811,1985,2068,1494,1495,1289,1385,1365,1389,1390,1391,2107,1549,1550,1487,1488,1485,1386,1387,1388,1394,1990,1991,1996,1992,1995,2194,2193,1381,2001,1997,2000,1992,1996,1398,2002,1927,1335,1997,2001,1399,2002,1949,1351,1990,1394,1392,1604,1605,1606,2011,2010,1694,2008,2009,1336,1348,2209,2208,2012,2013,1332,2010,2011,1692,2018,2014,2017,2022,2019,2021,2014,2018,1405,2024,2023,1410,2019,2022,1408,2025,2028,1334,2033,2030,2032,1581,1578,1737,2025,2029,1411,1348,1345,1697,2034,2033,1416,2030,2033,1415,2036,2384,1896,1417,2225,2228,2037,2044,1342,1424,1433,1419,1349,1895,1345,2214,2273,1773,1431,1432,1966,881,2191,1671,2336,1798,1655,1350,1332,1331,1871,1882,1866,1935,2043,2045,2043,1935,1342,2049,1436,1438,1387,1434,1388,2063,1451,1449,1452,1453,1389,1575,1582,1474,2050,2052,1447,2399,2400,1606,2057,2058,1623,2050,2053,1445,1606,2400,2401,2054,2056,1448,1304,1591,1726,1912,1314,1647,2071,1498,1793,1447,2052,2065,2131,2087,1291,1773,2273,2276,1288,1290,1500,1374,1373,1377,2296,1783,1514,2067,1484,1485,1881,1879,1878,1521,1500,1290,2067,2353,1688,1491,1368,1367,876,222,1542,1843,1822,1829,2068,1493,1496,1669,2186,2189,1288,1499,1495,217,218,1500,2094,1532,1779,2072,2073,1502,2072,2076,1501,2086,2082,2085,2077,2081,1505,1767,1539,1541,1588,1587,1600,2082,2086,1509,1512,2088,2087,1519,1520,1517,2078,1505,1514,1736,1731,1588,886,246,1531,2092,2091,1490,1531,2093,2094,1788,2304,2303,1757,1814,1481,220,219,1495,2095,2098,1437,2064,1454,1537,233,232,1658,2095,2047,1436,2064,2099,1538,1318,1316,1572,1541,2101,2103,1812,1328,1330,223,876,2102,2115,1561,1555,1554,1553,1320,2105,1545,1546,1760,259,2437,1571,1664,1324,2101,1540,1438,2070,2303,1524,2333,1639,1627,1532,2094,2093,2109,2112,1560,1543,1447,2115,2109,2113,1558,1782,2294,2298,2053,2102,1542,2116,2063,1450,2119,2121,1559,2116,2118,1560,2053,1447,1543,2075,2072,2074,1728,1725,1724,2119,2111,1439,1563,1564,226,1580,1519,1578,1436,2046,2103,1724,1725,248,2122,2118,1450,1596,2130,2131,1487,1690,1755,1613,1978,1979,1590,1591,1304,1584,1583,1580,1540,1455,2065,2323,2279,1504,2129,2125,2128,2133,1557,1515,2145,2321,1794,2125,2129,1592,1590,1589,2133,1577,1598,1597,2109,2111,1559,1582,1575,1584,1619,1735,2400,1741,1599,1602,1602,1599,1444,2145,1442,1627,1610,2138,2139,1719,1517,1520,1585,1732,2267,2401,2135,1610,889,1902,1651,2400,1735,1618,2136,2135,1302,1741,1746,1625,1901,1296,1586,2059,1297,1616,2136,1904,1301,2138,1612,1613,2151,2165,2406,1525,1763,1758,2141,2139,1613,1315,1456,2161,2059,2142,1617,2058,2143,1622,888,2179,1260,2174,1310,1630,2145,2144,1628,1628,2309,2308,2074,1502,1312,2144,1627,1639,1683,1684,1401,1642,1630,1631,1631,1632,2151,2153,2152,1634,1906,1633,1307,2156,2153,1638,2403,2404,1645,2405,2161,1456,2088,2274,1775,1830,1821,2437,1740,1735,1619,2061,1644,2406,2150,2405,2160,2166,2168,1620,1910,1312,1308,1656,2147,2334,1910,2172,1654,2171,1311,1310,1639,2333,2332,2353,2067,1486,1306,1308,1312,2173,1655,1633,2175,1660,1661,882,242,1722,1371,1660,2175,1658,1564,1676,1660,2178,2179,2241,2389,2354,2271,1486,1378,2178,1259,1260,1574,1567,1677,1919,1251,2193,1753,1749,1750,1668,2186,2184,2183,2185,1380,1674,2190,2196,2188,1669,1670,1444,1584,1575,1677,1678,1383,879,234,1673,1671,2187,880,2189,878,235,881,7,1264,2191,1264,1265,1988,2196,1668,236,1674,1675,1570,1675,1677,1524,2303,2304,2194,1987,1380,2331,1569,1568,1381,1318,1382,1765,1325,1324,1365,1757,1756,1574,1322,1323,1661,252,887,1359,2208,2209,1511,2087,2131,242,245,1548,1687,1689,1690,1711,1710,1714,1694,1693,2198,2201,2392,2390,2198,1407,1396,2200,2203,1412,2012,1350,1345,1950,1335,1926,2200,2204,1695,2028,1329,1920,2207,2206,1334,1582,1581,1475,1423,1348,1697,2247,1355,1998,1420,2038,2037,2213,2210,2212,2383,2386,1888,2246,1953,1352,1689,1687,1712,2210,2213,1398,1342,1934,2041,1952,1328,1699,2216,1891,1704,1931,1428,1701,1705,1890,2216,1960,1352,1698,2372,2009,1401,2217,1706,1894,2223,2032,1707,2219,2222,1703,2223,2224,1431,1716,1363,1362,1703,2237,2011,1433,1424,1364,2208,2228,1895,2005,1393,1395,2107,2344,1792,2236,2222,1893,2236,2234,1691,2235,1894,1706,1692,1679,1689,2027,2238,2239,2240,2239,1696,2238,2027,1412,1945,2242,2243,2240,2241,1410,1688,1346,1712,2248,2250,1414,1753,1681,1680,2251,2212,1430,2256,1425,1709,1727,1733,1518,1724,1720,1520,1429,1969,2252,1520,1519,1580,1370,1726,2335,244,883,2258,1554,1566,1565,2105,884,244,885,223,1543,2104,1546,1449,1769,1770,1320,1590,2132,891,2056,1445,1542,2120,1438,1540,1728,1583,1601,232,226,1564,1682,1681,1751,1731,2260,2261,1637,2260,2263,1637,1636,2261,2266,1634,1747,1630,1642,2150,1745,1619,1620,1620,2168,2268,1852,1829,1826,1741,1624,1600,1453,1759,1742,1734,1843,1844,1728,1721,1580,1765,1554,1319,1610,1611,1608,877,2169,1652,1738,1739,2263,1512,1511,1576,1577,1603,1602,1633,1655,2341,1597,2130,2275,1461,1463,1464,1702,1714,2253,1607,1606,1609,2341,1747,1634,248,1725,1902,2267,1638,1634,1530,1527,1528,1373,1372,1491,1753,1754,1751,1846,1850,1826,1682,1690,1689,243,886,2259,1759,1453,1868,1575,1576,1577,2073,1501,1557,1760,1718,240,1857,1860,1874,1798,2340,2341,1762,1970,2264,1747,1295,1901,1742,1737,1390,2289,2291,2292,1523,2296,2297,1715,1749,1753,2309,1907,1298,2147,1442,1794,2130,1596,1776,1506,1513,2294,2214,1699,1772,1682,1679,1680,1981,1683,1402,1683,1774,1473,2310,2308,1776,1776,2308,2309,2130,1597,1598,2307,2310,1596,2274,1774,1683,2097,2277,2280,2297,2302,1786,2281,2129,1595,2277,2097,1534,2285,1534,2288,2281,2283,1507,885,2114,1555,2289,1780,1781,2293,1437,2098,2291,2117,1559,1771,1486,2271,2092,1523,1522,2089,2311,1784,1437,1782,1565,2301,1509,2326,1489,1471,2270,1303,2308,2310,2085,1510,2306,2305,2307,1294,2321,2145,1303,2159,1645,1646,1481,1482,1483,2107,1552,1805,2312,2314,1792,2128,2315,2317,2313,1549,1792,2315,2128,1594,2084,1508,2080,1493,1492,2071,2318,2317,1510,2320,1496,1493,1789,2316,2321,2307,1789,1790,2095,2097,1535,2170,1593,2126,2323,2075,1503,2335,1726,251,2091,1522,1786,2086,1293,1898,1506,2078,2089,1491,1372,1469,1528,1527,1757,2327,1786,2301,1481,1480,1521,1669,2188,2356,2069,890,214,2176,1657,1659,2169,1651,1295,2356,2188,1672,2155,1654,2172,2154,1635,1799,1305,1370,2336,231,1652,2335,2322,1533,1573,1798,1652,2169,1723,2259,2322,1612,2140,1978,1629,1643,2333,2140,1799,1635,1611,1636,1637,2296,1523,1763,2065,1446,1538,1767,1800,1765,1762,1441,1440,1971,1297,2167,2285,2342,2343,1369,1368,1458,1448,1722,1548,2063,2116,2117,2345,1791,1792,2104,2290,1781,1374,1810,1809,2347,1806,1464,1487,1484,1688,1385,1526,1528,1530,1801,1802,2297,1514,1505,1659,1663,1664,2329,2276,1778,1317,1571,1572,2349,1803,1801,2276,2329,1796,2348,2269,1470,1292,1775,2350,1796,2325,2350,1802,1804,1815,214,874,2071,1462,1809,1810,1477,1472,1817,2314,2312,1785,224,225,1555,1690,1682,1752,1367,2272,2271,1699,1812,1458,1810,1377,1466,1984,2352,1466,1474,1475,1472,2272,2024,1410,1814,1757,1527,241,239,1719,1664,1663,1676,1770,1805,1536,1552,1816,1536,2115,1447,1455,2355,2356,1666,2358,1811,1813,2440,1839,1841,1727,1761,1734,2358,2357,1820,1879,1876,1877,1826,1829,1830,1845,1849,1850,1854,1855,1856,2217,2371,1892,1390,1737,1518,1854,1847,1828,1921,1330,1328,1834,1832,1831,1859,1858,1835,1836,1833,2441,1845,1846,1847,1861,1859,1838,1332,1922,1923,1863,1861,1842,1848,1847,1854,1863,1862,1386,1828,1825,1824,2262,1626,1625,1849,1851,1852,1853,1870,1871,1466,1467,1460,1858,1859,1860,1872,1876,1879,1641,1327,2163,1861,1386,1860,2001,2248,2004,1386,1862,1818,1476,1479,1875,1485,1488,1883,1844,1452,1389,2442,2443,1827,1831,2444,2441,1982,1402,1713,1874,1388,1434,1754,1750,1875,1825,1826,1823,1883,1884,1885,1869,1864,1867,1877,1884,1755,1812,1699,1328,1686,1715,1714,1680,1679,1692,1458,1457,1778,2362,2198,1693,2359,2220,1393,2393,1425,2256,2362,2364,1695,2366,1995,1336,1886,1888,2365,2217,1704,1891,2366,2367,1891,1395,1396,1991,2368,2018,1404,1995,2366,2035,1892,2373,2374,2222,2219,2221,2372,2373,1892,1345,1895,2381,2013,1406,2015,2368,2369,1411,2375,1922,1332,2379,2250,1413,2360,1886,2361,2040,1415,1896,1363,1422,1421,2382,2383,1886,2365,1888,1705,1888,2386,2384,2385,2387,1421,1419,1418,1338,1834,1835,1858,2226,1417,1421,1427,1931,2000,1939,1339,1940,1987,1381,1379,1432,1431,2224,1823,1830,2438,1742,1759,1475,1388,1874,1860,1854,1832,1834,1828,1847,1846,1288,1494,1497,1856,1855,1858,2403,2396,1640,1844,1851,1869,1818,1819,1820,1761,1727,1718,1820,1883,1434,1872,1874,1885,1884,1883,1488,1482,1481,1814,2158,2156,1979,1880,1878,1751,1465,1460,1461,1775,2274,1981,1385,1524,1525,237,1675,1570,2070,1496,1787,220,1499,1500,2296,2299,1785,2298,1784,1791,2233,2351,1375,2141,1615,2157,1685,1749,1715,1376,1353,1960,1604,1607,1739,1433,1425,2393,1712,1346,1943,1648,1977,1300,1767,1768,1764,2241,1696,2202,1939,1717,1340,1900,1293,2085,1296,1901,1902,1915,1251,1253,1726,1591,250,1307,2158,2337,1656,2174,2149,1297,1762,1616,1640,1907,2309,1639,2404,2403,1656,1653,2171,2167,2166,2134,2332,2333,1643,1456,1315,1913,2395,2396,1641,1838,1835,1836,2162,1327,1641,216,875,2090,1916,1253,1371,2134,1620,1619,1917,1251,1915,1256,1259,2178,2353,1771,1410,2336,2335,1652,1901,1295,1651,1918,1326,2181,2060,1647,1977,1920,1328,2206,1921,1329,2239,1921,1920,1329,1925,1414,2378,1924,1925,1334,1929,1339,1939,1929,1340,1930,1934,1342,1935,1464,1806,1809,1938,1344,2255,1937,1938,1717,1419,1337,1716,2010,1942,1693,1331,1962,1946,2222,2236,2237,1944,1717,1945,2200,2202,1696,1923,1356,1963,1948,1328,1952,1948,1351,1949,1955,1353,2245,1954,1955,1354,1959,1355,2247,1958,1959,1352,2248,2249,1413,1930,1961,1963,1967,1964,1966,1940,1339,1965,1965,1968,1969,1928,1930,1428,1360,2209,2243,1364,1424,1361,1871,1870,1881,1970,1366,2264,2106,1551,1552,1366,1738,2262,2351,2233,1698,1314,1976,1977,1912,1313,1973,2167,1744,1743,2402,1976,1314,2060,1648,1644,1678,1677,1675,1396,1395,2006,2271,1983,1373,1795,1450,2062,1917,1318,1381,2024,2272,1367,1986,1379,1989,1986,1380,1987,1384,1989,1988,877,230,1651,1994,1713,1402,1870,1873,1879,2218,1889,1704,2007,1703,1400,1993,1398,2213,1992,1993,1713,1998,1399,2003,1997,1998,1355,1351,2247,2391,2002,2003,1399,2197,2006,1400,2380,1409,2020,2008,1336,1994,1982,2245,1353,2013,2012,1397,2014,2016,1407,2015,1405,2021,2014,2015,1406,2020,1408,2378,2019,2020,1409,2026,1411,2369,1502,1589,1304,2026,1412,2027,2031,1415,2040,2030,2031,1707,2036,2034,2035,2229,1967,1432,2229,2230,1341,2374,2253,1706,2031,2039,2041,1361,1424,1419,1966,1429,1430,2042,2210,2211,1341,1707,2041,1413,1356,1409,2043,2044,1433,1554,1765,1800,2046,1436,2047,2048,1438,2120,2049,2048,1439,1561,1766,1556,1445,2056,2054,2258,2338,1546,2050,2051,1446,2139,2141,1636,2055,1446,2051,1744,2134,2399,2061,2165,1973,2166,2398,1623,1740,1730,1618,1459,1489,1490,2119,2120,1562,2063,2062,1450,1446,2055,2064,1764,1676,1564,224,1556,1563,1477,1684,1473,1490,1797,1778,1797,1490,2091,2066,1378,1486,1567,1568,1569,2069,1492,1493,2395,2397,1298,234,878,2189,2076,2284,2286,1497,1524,1385,2081,2077,2080,2186,1669,1667,2077,2078,1506,2083,1509,2301,2082,2083,1508,1437,2293,2294,2318,2283,1595,2093,1531,246,2311,2089,1514,1574,1551,1568,1662,1664,1571,2314,1788,1787,2270,1471,1470,2270,1763,1523,1601,1444,1599,2096,1436,2049,2096,1534,2097,1548,2105,2104,2101,1541,1539,1732,1585,1588,1672,2188,2187,1324,1676,1764,1787,1496,2320,1449,1546,2338,2110,1558,2288,2110,1439,2111,2112,1559,2117,1582,1579,1578,2127,1593,1653,222,882,2257,2122,2123,1573,2221,1887,1889,2319,1793,1550,1784,2298,2294,1767,1766,1561,1654,2155,2154,1539,1561,2115,2126,1592,2279,2125,2126,1593,1978,1635,1614,1452,1869,1868,1785,2299,2304,2147,1656,1629,2136,2137,1612,2401,1618,1302,2137,1301,1976,2135,2136,2138,1390,1733,1734,2150,1642,2406,2057,2398,1297,875,215,1515,1440,2275,2142,215,891,2132,1845,1848,1871,1633,2152,2153,1511,1598,1577,1627,1442,2147,2150,1643,1629,1475,1759,1817,2155,2337,2158,1737,1578,1519,2157,1638,2267,1309,1908,2163,2159,1641,2396,1612,2137,2402,2405,2406,1644,2167,1297,2398,1648,2164,2161,2165,2151,1632,2168,1623,1622,1856,1873,1870,2172,1308,1905,1906,1306,1305,2077,2079,1507,1601,1583,1584,2098,1535,2282,1762,1625,1746,1659,1662,2177,2269,2348,1529,2103,2046,1435,1922,1409,1356,1660,1371,1980,1918,2180,1279,2185,2355,2195,2141,2388,2261,1988,1383,1678,1673,2189,2186,1906,1905,1308,1649,1911,1647,2192,1265,1261,236,879,2190,1849,1864,1869,1536,1382,1321,1586,1296,1729,1536,1816,1323,1989,1384,2184,2183,2184,1667,1570,1569,229,2269,1758,1763,1352,1952,2214,2384,2036,1890,1785,2312,2311,1942,2010,1403,1831,1832,1828,1407,2016,1991,2375,2021,1409,2201,1695,2364,2200,2201,1347,2205,1926,1334,1996,1416,2032,1397,1991,2016,1709,1425,1364,1363,1716,1337,1945,1423,1426,1680,1691,1710,2228,2225,2227,1894,1893,2221,2383,1708,1897,2007,1393,2220,2225,2226,1708,2226,2225,1417,1702,1401,1686,2250,2379,2378,1394,2199,2381,2231,2254,1941,1963,2249,1701,1691,2234,2235,2238,2203,1696,2023,1330,1921,2213,1354,1955,2212,2210,2042,1943,1346,2390,1956,2251,1999,2224,1707,1341,2252,1700,1999,2011,2237,1691,1964,1965,1429,2235,2234,1893,2254,1936,1343,1963,1356,1413,213,892,2331,887,233,1657,2074,1909,1311,1719,1718,1727,1830,1829,1822,1910,1310,1311,1822,1761,1760,1975,1799,2140,1473,1774,1512,1849,1845,1865,2266,2265,1586,1794,1594,2127,2275,1776,1617,1865,1866,1867,1478,1867,1866,1732,2261,2388,241,1720,1724,2093,894,216,1688,2353,2354,2374,2373,1401,2088,1512,1774,2347,2348,1807,1574,1816,1552,2258,883,243,1459,1468,1471,1597,1440,1441,2148,1640,1628,1310,1654,1631,2278,1534,2285,2277,2278,1504,2282,1507,2079,2282,1535,2280,2284,2076,1504,2049,1439,2110,2287,2288,1534,1451,2117,2291,2121,1562,2292,2295,2079,1506,1458,1368,1459,2298,2345,1770,2344,1805,1770,2300,2081,1508,2288,1558,2124,892,229,1569,2355,2185,1667,2090,1515,1557,2307,2305,2306,2108,2286,1779,2321,2316,1594,1631,2154,1974,1454,1448,1547,2316,1789,2306,2317,2315,2306,2084,1510,2085,1502,2073,2133,2330,1568,1551,874,213,1498,1795,2322,2123,1557,1501,2286,1600,1587,1729,2326,2324,2325,2327,2328,2329,2328,2326,1796,1319,1321,1665,1974,1972,1973,1498,2331,2330,1908,1309,2397,1302,1618,1730,1586,1587,1588,1780,2292,2099,2065,2052,1446,1728,1729,1296,2339,1538,1562,1544,1566,1800,2100,1455,1540,2181,1326,2195,2196,2190,1673,1454,1781,1780,2347,1530,1529,1530,2347,2346,2349,2346,1464,1801,1803,1804,1807,1470,1469,2304,2299,1763,1809,1806,1807,2325,2324,1898,1907,1640,2396,2350,2351,1773,1744,1605,1604,2350,1775,1375,2066,1485,1820,2277,2279,1592,1538,2099,2292,1251,1917,2193,1550,1793,2330,2435,2439,1841,1877,1876,1885,1842,1841,1839,1822,1843,1734,1817,1868,1867,1842,1838,1837,1852,1851,1844,1872,1873,1856,1736,2263,2260,1875,1882,1881,2040,2385,1338,1394,1397,2012,1393,2007,2006,1813,1378,2066,2359,2361,1887,2359,2005,1392,2363,1404,2017,2202,1347,2390,2216,1890,2035,2385,1896,1897,2369,1404,2363,1994,1336,1995,2219,2220,1887,2301,1786,2302,2376,2204,1412,2378,1408,2370,2377,2029,1334,2381,1895,2227,2025,2027,1329,2382,2227,1708,2251,1956,1354,2360,1392,2381,2386,1897,1896,1887,2361,2365,2226,2387,1897,1358,1362,1363,2017,1407,2198,2209,1348,1423,1836,1835,1834,1878,1877,1752,1323,1379,1381,2273,1772,1778,2187,1670,235,2045,2393,1343,2001,1701,2249,2394,2255,1343,1378,1813,2352,1914,2332,2160,2442,1824,1823,1953,2246,2247,2009,2372,2367,2367,2372,2371,2164,1300,1903,1684,1477,1476,2343,2342,2124,1279,2180,2182,2090,2108,1532,221,217,1521,1435,1565,1566,1943,2392,2364,1979,2156,2157,2041,2039,2038,1684,1685,1686,1375,1981,1982,2094,2343,1573,1299,1903,1904,2056,2257,1722,2029,2377,2370,2038,2039,2040,1899,1900,1294,1984,1377,1373,2312,1791,1784,1477,1478,1479,1402,1401,2009,2128,2125,2127,245,884,2105,2181,1666,2182,2058,2057,2397,2283,2318,2080,1936,2254,2231,249,250,1591,1967,2229,2231,2113,2122,2124,1621,2268,1622,2263,1736,1626,1374,1808,1469,2076,2072,2075,2171,1653,1593,212,221,1480,2118,2122,2113,1293,1899,1898,2354,2389,2390,2000,1997,1999,2404,2332,1914,1290,1288,1289,2069,1495,219,2153,2156,2158,1899,1291,1292,1923,1961,1962,2033,2034,2036,2444,1831,1827,1572,1571,1325,1941,2254,2255,1919,2194,2195,1758,1529,1528,1321,1382,1318,2244,2245,1713,2204,2376,2363,1950,2205,2206,2018,2368,2022,1996,2223,2211,2191,2192,1672,1957,1958,1960,1533,2322,2259,1614,1635,2154,2086,2324,2326,1932,1968,1965,2070,1497,1494,2081,2300,2302,2192,2182,1666,2284,2285,1779,2163,1650,2268,2022,2368,2370,2087,2088,1292,1316,1318,1917,2129,2281,2280,1927,2002,2004,1646,1730,1740,1913,1299,1730,2162,1740,1745,1327,1745,1650,1315,1903,1299,2446,2447,2408,2423,1239,2411,2410,2408,2447,2450,2451,2412,2414,2415,2453,2411,2415,2414,2412,2414,2413,2419,2413,2417,2409,2416,2455,2410,2449,2456,2418,2417,2416,2458,2417,2413,2414,2452,2457,2458,2455,2416,2451,2448,2411,2410,2416,2409,2408,2409,2407,2434,2453,2415,2419,2418,2456,2454,2446,2407,1239,1240,2415,3,25,26,24,1,23,17,34,7,30,10,29,31,24,2,20,16,36,30,5,35,19,10,35,18,36,17,37,13,28,39,14,38,24,31,1,35,12,37,25,41,0,35,37,19,36,18,39,32,11,29,21,37,8,41,15,38,4,41,33,16,6,34,29,31,27,20,36,22,40,22,38,41,25,15,5,30,27,554,196,410,869,868,68,788,27,126,56,55,712,778,121,779,557,558,493,121,546,551,972,429,866,68,457,720,722,453,721,276,299,267,1000,66,999,1142,357,1149,78,134,77,278,277,279,432,544,549,1006,724,470,727,0,726,854,190,855,577,590,361,574,364,572,53,867,1226,174,845,188,1057,113,1037,90,734,735,1061,1071,517,182,739,740,733,169,732,173,846,174,98,743,744,737,94,736,105,505,88,742,96,741,749,112,745,115,114,119,746,99,745,204,1119,206,518,522,1064,177,176,92,88,181,754,90,757,758,264,255,645,107,760,761,756,83,755,110,764,765,756,106,759,763,108,762,525,95,754,767,110,766,770,95,769,1061,525,1071,777,182,776,748,112,772,1223,746,1085,1081,508,777,512,1044,697,674,287,690,796,138,797,239,527,240,778,779,570,607,782,783,415,547,416,720,69,780,56,784,55,252,888,469,1169,1170,50,872,209,863,1167,603,1087,723,71,724,465,467,466,1181,274,793,831,85,832,1181,793,621,898,303,897,935,358,936,292,293,295,152,799,149,171,803,804,795,136,1023,509,808,809,801,153,800,757,90,810,806,154,805,811,106,810,813,147,798,415,414,412,155,502,819,104,1037,103,105,87,820,158,500,818,159,825,826,160,829,830,823,160,822,828,163,827,837,89,833,171,840,841,550,545,389,834,166,833,843,171,842,839,170,838,170,704,844,113,1057,172,175,97,845,103,100,104,506,581,1043,850,774,186,238,479,881,1002,463,1165,88,86,105,673,674,679,98,853,743,852,97,851,856,193,857,870,204,871,384,282,383,861,202,858,413,414,1228,1227,431,865,859,200,858,417,1230,414,863,203,862,125,534,59,719,455,720,1148,601,900,210,873,202,49,46,960,585,1105,581,307,308,43,618,132,129,1126,322,1125,895,293,896,688,686,689,564,45,329,292,496,896,556,122,299,931,350,876,660,637,651,899,304,897,478,1018,477,302,303,43,329,308,217,1172,587,923,903,310,901,902,309,901,48,914,915,907,313,906,608,349,575,432,408,396,912,317,911,319,916,320,326,325,327,918,322,907,432,396,544,1088,339,886,297,298,921,341,923,339,595,1132,596,564,289,565,307,303,220,855,192,924,928,345,872,465,466,233,925,191,924,201,346,872,473,380,73,352,932,349,124,85,620,351,931,223,943,363,944,74,75,362,933,354,934,629,254,568,80,79,379,932,193,930,305,332,899,975,435,1162,324,922,340,942,368,938,943,944,351,939,366,938,577,1127,590,200,350,861,947,205,945,940,367,948,941,368,945,931,351,861,311,903,904,529,532,536,856,194,948,227,226,371,387,386,388,193,932,191,247,248,532,952,205,951,49,960,404,296,563,295,423,787,421,397,59,398,387,388,392,1168,873,348,904,312,1152,403,957,958,961,323,962,197,602,974,955,400,954,961,962,398,411,405,385,941,367,938,387,392,390,1228,1229,427,554,410,549,198,199,410,973,435,974,419,968,418,528,328,527,1095,1096,393,417,418,1230,230,459,889,1230,426,1229,712,57,965,434,433,549,1094,394,709,971,424,867,966,56,965,968,421,967,450,1235,980,334,566,333,423,421,970,993,990,70,53,425,867,431,430,866,9,13,888,978,438,1003,58,436,974,58,1137,436,717,67,903,977,447,973,157,156,491,980,439,450,446,442,982,713,62,714,986,446,985,988,453,1232,989,211,1234,47,583,917,253,254,638,553,427,548,994,1235,869,451,989,979,963,428,995,1001,63,718,461,1163,464,65,462,718,1003,65,1000,1233,1161,447,579,294,1182,59,67,61,714,441,1002,1005,469,1004,1086,530,882,1006,1004,126,471,484,466,469,1008,468,165,1183,1070,791,133,1100,1008,13,1007,77,485,382,1023,1022,727,562,558,561,139,1013,476,794,135,1012,486,1025,482,1016,478,1017,198,383,199,77,138,485,1019,481,879,238,880,479,478,235,1018,1020,17,881,1021,18,1020,139,476,796,237,483,236,375,485,378,333,1133,332,1024,135,1023,1159,376,1160,78,137,136,576,79,573,45,564,120,624,78,382,1005,887,469,115,1038,114,406,960,319,530,356,242,295,498,495,523,522,519,1026,1027,502,102,1219,1030,1026,151,1027,1033,167,1029,1028,100,820,1034,734,758,1030,503,1029,1036,728,836,836,89,1036,282,283,390,181,505,178,1220,806,1076,109,1041,1042,694,696,1212,767,107,1075,158,520,497,1040,153,1039,175,849,97,1043,507,760,1044,512,1045,808,509,739,1044,1045,513,1062,506,768,1202,156,1201,1047,702,1046,1053,515,1052,815,511,1048,1040,186,1052,116,117,524,155,819,511,180,119,188,104,703,1037,798,150,813,357,600,936,1063,701,1065,1066,499,1065,1082,514,1064,158,497,500,84,1068,835,1070,504,1069,1032,167,1067,178,1072,753,831,165,1069,495,520,496,812,169,1077,519,488,561,1081,185,1080,1061,517,1085,325,326,535,529,328,532,185,1081,184,529,388,328,1165,1164,125,353,1087,244,361,373,362,353,244,934,943,351,885,1119,204,933,361,75,577,249,891,398,1086,350,864,1168,348,949,537,409,536,466,372,232,560,559,490,540,1090,539,547,1092,445,1089,1090,445,1094,555,1095,978,979,438,458,428,553,458,1097,428,658,634,660,407,408,549,144,550,208,146,652,542,391,388,536,80,74,573,417,416,418,231,460,877,1091,1092,546,282,384,320,198,410,385,981,1170,441,195,1104,405,270,272,269,1203,1082,510,416,417,415,981,442,1170,889,710,248,1095,442,1096,337,336,338,556,299,128,489,559,561,633,634,654,487,497,490,531,1088,243,625,676,567,198,385,383,962,365,902,259,240,568,680,682,665,463,1170,606,433,1093,570,1094,709,555,144,145,550,588,1121,1118,330,1126,331,519,561,523,425,53,1138,1163,602,976,1104,584,959,1122,1123,314,1102,580,1043,489,488,490,790,157,789,492,281,491,404,584,1139,425,1138,584,960,406,959,49,404,1136,789,491,1103,343,1109,926,330,594,1126,1112,403,1110,1107,342,1106,1171,1117,1114,1111,315,1110,225,363,885,1119,589,1118,1124,927,1122,950,367,1120,1101,1100,579,920,330,921,321,592,918,190,373,192,1157,1155,1130,921,1099,297,598,1139,58,1134,1135,914,708,49,1134,598,58,1150,991,454,988,288,291,289,1173,613,936,599,600,1141,403,1146,957,1143,600,1142,1145,402,1144,1147,909,913,1148,900,301,913,318,1147,1148,301,1149,598,1150,597,1139,598,1136,927,343,924,1152,955,999,999,311,1152,893,251,1164,1156,594,920,1153,706,915,321,918,314,276,277,299,120,565,336,1157,1130,1156,564,329,289,475,1185,477,300,214,898,1004,467,1005,1169,50,998,474,480,1185,1166,1001,984,782,607,983,1002,1165,60,893,1164,231,952,381,1151,1169,998,606,603,1151,531,421,786,420,975,1162,437,786,443,969,416,445,419,1128,571,1125,1168,346,873,576,573,575,424,195,570,587,1172,1114,620,266,124,355,356,203,206,946,871,1173,600,1174,355,589,933,616,617,129,1175,272,1176,495,496,295,120,336,140,335,610,338,1131,313,1126,470,472,467,605,586,1158,71,380,72,1175,609,1178,585,604,1105,615,278,1177,1154,1179,47,585,1179,604,622,623,610,300,900,214,273,618,270,286,625,285,596,593,1143,364,363,224,563,560,498,556,1100,122,580,266,507,273,274,618,132,274,792,281,280,282,579,165,1101,610,335,622,528,527,241,79,484,472,75,344,578,613,344,360,929,210,944,1010,474,1184,1186,621,1187,257,649,258,541,542,535,627,628,1187,686,685,687,631,638,634,654,658,653,661,664,662,514,700,1046,541,326,145,640,636,662,728,83,729,641,639,642,646,643,667,255,256,644,656,655,653,650,646,669,86,731,87,648,650,671,661,662,656,669,141,671,635,632,636,1093,433,1091,658,660,657,656,679,661,273,268,274,665,668,666,681,687,680,716,992,449,667,668,669,154,812,809,142,626,141,558,683,284,628,691,293,146,144,652,632,635,261,641,256,639,1074,521,790,693,189,682,688,683,562,632,631,633,189,693,691,676,675,677,560,563,685,510,522,494,499,500,488,580,586,266,1193,501,1191,813,148,1188,1223,1085,1222,1192,503,1191,1196,91,1195,1190,1194,694,1200,699,1046,1045,699,1195,798,799,150,1198,159,1197,171,843,803,701,1050,1051,1200,700,1201,1028,1210,100,1204,823,821,1199,166,1197,821,87,1204,1209,168,1208,1188,1190,1189,1214,704,848,172,176,118,1189,694,1211,1044,513,1194,513,1213,696,93,176,1214,92,93,174,663,666,642,1216,176,1055,508,808,182,745,748,747,794,134,795,1059,1053,187,260,253,631,389,283,550,141,668,143,663,642,662,633,654,636,44,305,43,665,666,664,977,448,1232,207,677,652,142,628,626,568,526,569,142,189,628,684,693,680,563,296,692,623,622,290,422,787,987,562,559,688,270,269,273,130,789,583,334,333,140,228,378,237,1132,595,899,218,308,220,591,593,1125,1174,599,1127,131,130,1062,1217,986,970,494,523,493,1062,768,131,546,547,412,853,1222,188,750,751,520,993,55,456,574,572,575,1218,1031,1070,737,95,747,1134,914,708,533,710,51,724,2,723,251,250,534,713,1166,62,437,978,464,436,1138,448,977,1232,447,1003,1000,464,552,963,996,989,451,1161,722,721,211,716,449,1224,645,644,646,988,449,991,324,919,216,1006,126,724,1228,427,963,788,1007,5,1183,165,1182,606,460,1165,710,459,709,1009,1010,726,456,785,868,1036,1035,728,1069,1068,729,1206,1207,733,734,89,732,736,738,737,741,743,742,270,617,272,1223,1084,746,747,525,745,502,501,818,88,754,86,511,1066,1051,1032,504,1029,769,771,731,759,760,756,755,757,756,1073,1074,763,764,109,762,1075,1076,767,768,107,766,1079,168,1077,183,771,738,187,774,775,772,773,748,184,777,773,739,183,736,517,1072,115,117,116,119,690,689,679,936,360,935,1093,1091,121,581,506,1180,455,785,69,780,781,720,779,551,996,783,69,1231,869,452,868,482,483,486,1026,814,151,556,128,1100,1167,870,603,1022,136,725,124,122,832,1012,797,794,998,459,877,816,157,802,689,687,678,1046,512,1047,814,155,815,1073,1042,801,802,521,800,1220,811,806,807,110,805,811,1220,106,812,154,810,502,155,1026,1208,828,1209,131,108,790,161,152,821,825,162,822,1204,829,823,824,161,822,1208,1207,828,829,164,827,1205,1198,834,67,59,310,833,835,834,847,848,839,840,515,838,698,843,844,1059,187,1058,1060,96,1058,700,514,1203,515,849,839,850,185,774,186,1040,850,742,849,96,1209,164,168,853,188,851,374,608,362,948,949,856,363,364,369,859,862,200,353,354,1087,860,201,858,419,444,968,862,859,863,413,1228,552,68,781,869,997,431,995,543,426,548,265,298,267,950,370,948,371,372,572,227,371,224,280,281,285,265,586,298,1156,920,605,896,294,895,378,377,375,897,301,898,715,53,1224,481,1018,234,309,1115,905,44,140,305,316,909,910,1013,475,1015,908,314,906,1129,1130,912,913,316,911,590,1123,192,1146,403,1147,894,246,922,591,322,1140,375,376,382,72,379,470,1142,595,1143,1098,278,1099,921,331,1099,408,407,409,1116,857,925,924,926,925,355,933,356,929,347,930,539,396,540,479,1016,480,576,572,79,1142,1149,595,870,1167,204,1116,1117,939,938,940,939,945,946,941,389,386,390,1163,461,956,350,1086,222,953,381,951,1047,697,1050,1149,358,1148,321,1123,592,347,369,575,439,983,462,929,944,347,1152,1108,955,956,401,954,787,422,786,208,676,207,596,1133,593,975,437,976,967,420,965,964,57,1230,1231,784,966,418,967,964,146,542,145,1234,1235,979,867,52,865,919,323,875,424,971,195,323,961,215,673,679,653,62,982,441,384,385,319,975,976,435,978,437,979,280,625,283,422,987,984,326,327,545,1217,1096,986,429,992,64,1232,1225,988,969,1231,420,990,452,1234,995,1227,996,452,990,456,781,440,994,1097,430,997,661,678,664,1166,713,1001,1002,60,714,909,315,906,199,392,409,1124,1111,927,196,554,570,1004,1006,467,566,337,1098,352,190,932,731,111,730,1007,788,468,4,33,726,135,1024,1014,444,1090,970,1025,486,796,476,1015,481,61,63,714,868,455,457,1011,14,1021,482,1019,236,659,677,657,75,76,344,395,537,394,137,78,344,1012,1013,797,1014,475,1012,228,229,378,1099,571,1098,506,1043,107,513,698,1213,591,1140,593,520,158,750,635,636,639,151,799,162,730,164,1204,1221,1193,1030,1031,102,1029,1035,89,1034,1052,840,804,161,824,152,115,119,517,177,92,118,752,181,753,519,518,488,703,1056,1057,1047,1050,702,1215,705,1212,1048,1049,815,1056,516,1054,169,1207,1079,147,1210,149,112,749,1060,183,509,771,518,1064,499,1068,504,1067,1069,729,831,1073,763,1042,185,850,1041,1221,1219,751,110,807,764,1059,96,1053,1080,807,1081,500,499,819,774,184,772,702,701,1064,1084,98,1083,1078,168,771,306,1160,213,1005,465,887,311,66,903,325,535,527,629,630,638,717,66,718,629,568,630,1231,969,783,282,320,281,672,673,657,393,394,1095,1163,956,602,971,425,1104,672,675,673,287,674,286,1096,1217,540,247,532,241,324,216,922,101,1183,496,510,156,1203,1103,582,917,614,615,1176,359,360,382,531,243,1087,297,279,267,411,196,405,973,436,977,438,439,65,1113,1114,1107,1108,312,1106,1124,908,1111,1110,1109,1111,1107,312,1113,1116,939,857,925,342,1116,1118,1120,206,1120,1121,950,1122,314,1124,265,267,266,577,578,1127,1174,578,1173,912,316,1129,1171,953,1117,1160,377,892,1185,475,1184,937,365,919,597,1135,1136,340,587,937,602,402,1150,440,782,439,589,355,209,1144,1135,1145,318,1135,1146,911,914,913,397,962,310,935,359,1159,900,306,874,205,952,603,937,1115,365,409,537,408,604,1154,1155,605,1158,1156,1158,604,1157,380,473,74,440,781,782,601,1159,306,1224,1226,716,54,538,57,393,396,394,345,928,588,533,51,536,949,370,1168,349,608,352,930,348,929,1184,1024,1010,476,481,1025,345,588,209,1177,337,1176,609,1175,338,271,272,1178,610,612,609,616,277,615,333,571,1133,616,615,617,47,706,1154,1224,1225,715,585,581,1179,551,412,552,1180,130,1179,1186,628,895,1109,400,1106,370,1121,346,935,1159,358,645,649,264,692,693,685,648,647,650,569,542,630,286,675,625,649,645,650,651,652,660,665,664,680,539,1089,544,688,689,683,173,93,848,1028,820,149,150,814,148,1186,895,621,1049,695,1188,1189,147,1188,1191,825,1192,1218,1219,1031,1195,843,1045,1216,705,1214,1205,1192,1198,800,803,802,1050,695,1048,1129,1131,1130,834,167,1205,1206,1199,1207,733,89,1206,1211,1056,1210,836,84,833,1212,516,1211,1041,109,1080,1211,1210,1189,1213,704,1215,697,1194,695,516,705,1055,172,118,113,1191,1027,825,1072,178,1038,641,642,644,559,560,686,1105,586,1102,880,235,1016,1077,1078,809,1222,98,1223,792,1181,133,211,989,722,260,631,261,106,1076,761,91,1196,817,699,1200,1196,70,711,993,493,284,492,381,953,1172,14,1011,33,324,340,919,288,329,221,352,374,190,501,1193,751,423,986,787,175,846,849,156,494,492,131,790,130,341,381,923,57,712,54,203,530,864,166,1199,837,173,848,846,46,49,707,791,128,792,1140,592,1141,284,287,285,816,817,157,402,956,957,356,934,245,1009,1011,1010,64,1226,866,315,909,1112,96,1060,744,398,399,249,112,1060,775,366,953,942,972,430,429,1091,434,1092,127,277,129,312,904,905,999,401,1000,291,288,212,368,942,947,101,1219,1183,508,807,808,453,722,1233,890,219,898,62,987,982,706,47,707,86,770,731,170,844,841,262,635,263,74,80,380,99,1084,749,81,1024,727,334,336,566,473,73,76,801,521,1073,503,1192,1033,83,1035,758,160,830,826,153,1040,804,479,480,1020,108,768,765,339,1088,341,984,983,422,317,1155,915,94,773,740,897,302,899,313,1131,910,480,474,1021,1115,587,1113,429,1097,992,163,1199,830,46,47,916,723,725,71,400,1109,958,169,812,735,991,548,454,454,538,721,82,553,991,992,458,82,721,54,70,1236,1237,2421,2422,1242,2423,2424,2420,1241,1250,1243,2426,2427,2428,1245,1243,1245,1242,1250,1244,1243,1249,1248,1250,2429,2430,1238,1249,2431,1241,1241,1247,1249,2432,1244,2433,1244,2432,1245,1248,1247,2433,1243,1242,2425,1237,1238,1241,1240,1246,2434,2426,2431,1250,1238,1236,2429,1242,1246,1239,1254,1273,1272,1271,1270,1252,1264,7,1280,1276,1275,1257,1277,1253,1271,1267,1282,1263,1276,1281,1256,1266,1281,1257,1265,1264,1282,1283,28,1260,1285,1284,1261,1271,1252,1277,1281,1283,1259,1272,1251,1287,1281,1266,1283,1282,1285,1265,1278,1275,1258,1268,8,1283,1287,1284,1262,1255,1279,1287,1263,1280,6,1275,1274,1277,1267,1269,1282,1286,1284,1269,1287,1262,1272,1256,1274,1276,1746,1602,1441,2061,1313,2060,1980,1371,1274,1301,1904,1300,1970,1971,1366,1749,1685,1750,1366,1743,1738,2143,2058,1621,1313,1912,1649,1914,1913,1645,1468,1459,1491,2171,2170,1311,2313,2320,1549,1323,1322,1379,1470,1471,1469,1624,1741,1736,2177,1662,1916,1919,1918,1251,2046,2047,1435,1769,1553,1782,1766,1764,1556,1298,2397,2059,1419,1433,2037,2228,2208,1358,1335,1927,1926,2232,1709,2242,1427,1932,1931,1925,1924,1414,1418,1419,2038,1343,1936,1935,1929,1928,1339,1350,1333,1697,1934,1933,1341,1941,1937,1357,1360,1364,1359,1938,1937,1344,1449,1451,2290,1710,2235,1714,1422,1337,1421,1333,1946,1426,1335,1950,1949,2435,1837,2436,1352,1953,1952,1948,1947,1328,1355,1957,1956,1948,1951,1351,1955,1954,1353,1717,1946,1340,1959,1958,1355,1962,1961,1340,2232,2242,1717,1969,1968,1427,1940,1964,1357,2394,2256,1938,2252,1969,1700,1704,1889,2215,1866,1882,1479,1988,1989,1383,239,240,1719,1970,1762,1971,1799,1975,1974,1607,1608,1739,1912,1972,1314,1301,1300,1976,252,1661,888,2340,1295,2341,2064,2055,1454,2338,2258,1795,1915,1916,1316,1657,1658,1659,2352,1985,1466,2023,2024,1330,2352,1813,1985,2069,2068,1495,2106,2107,1550,1484,1487,1485,1397,1394,1991,1416,1996,1995,1987,2194,1381,1701,2001,2000,1993,1992,1398,1949,2002,1335,1998,1997,1399,2003,2002,1351,2005,1990,1392,1607,1604,1606,1400,2011,1694,1349,1348,2208,1350,2012,1332,1403,2010,1692,1404,2018,2017,1405,2022,2021,2015,2014,1405,2020,2019,1408,2029,2025,1334,1416,2033,2032,1742,1581,1737,2026,2025,1411,2035,2034,1416,2031,2030,1415,1415,2036,1896,1358,1417,2228,1420,2037,1342,1348,1349,1345,1698,2214,1773,2042,1431,1966,238,881,1671,2173,2336,1655,1333,1350,1331,1865,1871,1866,1343,1935,2045,2044,2043,1342,2048,2049,1438,2062,2063,1449,1576,1575,1474,2053,2050,1447,1605,2399,1606,2398,2057,1623,2051,2050,1445,1609,1606,2401,2055,2054,1448,1370,1304,1726,1911,1912,1647,2319,2071,1793,1455,1447,2065,1294,2131,1291,1777,1773,2276,1499,1288,1500,1810,1374,1377,2297,2296,1514,2066,2067,1485,1880,1881,1878,1756,1521,1290,1484,2067,1688,1748,1491,1367,2102,876,1542,1852,1843,1829,2070,2068,1496,1670,1669,2189,1494,1288,1495,1521,217,1500,2343,2094,1779,2074,2072,1502,2073,2072,1501,1293,2086,2085,2078,2077,1505,1800,1767,1541,1624,1588,1600,2083,2082,1509,1511,1512,2087,1518,1519,1517,2089,2078,1514,1624,1736,1588,2259,886,1531,1489,2092,1490,1533,1531,2094,1787,1788,2303,1756,1757,1481,1499,220,1495,2047,2095,1437,2099,2064,1537,1657,233,1658,2096,2095,1436,1446,2064,1538,1665,1318,1572,1544,1541,2103,1369,1812,1330,1543,223,2102,2114,2115,1555,1319,1554,1320,2104,2105,1546,1821,1760,2437,1325,1571,1324,2103,2101,1438,1497,2070,1524,2146,2333,1627,1516,1532,2093,2113,2109,1560,2114,1543,2115,2110,2109,1558,1769,1782,2298,1445,2053,1542,2118,2116,1450,2111,2119,1559,2112,2116,1560,2102,2053,1543,1503,2075,2074,1721,1728,1724,2048,2119,1439,227,1563,226,1579,1580,1578,1438,1436,2103,247,1724,248,2123,2122,1450,1294,1596,2131,1488,1487,1755,1615,1613,1979,1589,1590,1304,1579,1584,1580,2339,1540,2065,2075,2323,1504,1595,2129,2128,2132,2133,1515,1442,2145,1794,2126,2125,1592,2132,1590,2133,1603,1577,1597,2112,2109,1559,1579,1582,1584,2399,1619,2400,1746,1741,1602,1443,1602,1444,2144,2145,1627,1611,1610,2139,1720,1719,1520,2266,1585,2267,1609,2401,1610,230,889,1651,2401,2400,1618,1904,2136,1302,1626,1741,1625,2265,1901,1586,2142,2059,1616,2137,2136,1301,2139,2138,1613,1642,2151,2406,1526,1525,1758,1615,2141,1613,2164,1315,2161,1298,2059,1617,1623,2058,1622,9,888,1260,2149,2174,1630,1303,2145,1628,1303,1628,2308,1909,2074,1312,2148,2144,1639,1402,1683,1401,2151,1642,1631,1638,2153,1634,1905,1906,1307,2157,2156,1638,2159,2403,1645,2160,2405,1456,1292,2088,1775,2438,1830,2437,1745,1740,1619,2165,2061,2406,1643,2150,2160,2134,2166,1620,2172,1910,1308,1653,1656,2334,1310,1910,1654,2174,2171,1310,2404,1639,2332,1771,2353,1486,1304,1306,1312,1906,2173,1633,2176,2175,1661,2257,882,1722,2177,1371,2175,1663,1658,1676,1661,1660,2179,1410,2241,2354,1983,2271,1378,2179,2178,1260,1322,1574,1677,2194,1919,2193,1754,1753,1750,1384,1668,2184,1986,2183,1380,1678,1674,2196,2187,2188,1670,1443,1444,1575,1322,1677,1383,2190,879,1673,238,1671,880,1670,2189,235,2191,881,1264,2192,2191,1265,1384,1988,1668,237,236,1675,1567,1570,1677,1525,1524,2304,2195,2194,1380,2330,2331,1568,1323,1381,1382,1768,1765,1324,1290,1365,1756,1816,1574,1323,2176,1661,887,1360,1359,2209,1598,1511,2131,1722,242,1548,1487,1687,1690,1715,1711,1714,2197,1694,2198,1347,2201,2390,2197,2198,1396,2204,2200,1412,2199,2012,1345,2205,1950,1926,2201,2200,1695,2207,2028,1920,2028,2207,1334,1474,1582,1475,1426,1423,1697,2391,2247,1998,1354,2213,2212,1886,2383,1888,1959,2246,1352,1403,1689,1712,2211,2210,1398,1420,1342,2041,2214,1952,1699,2215,2216,1704,2000,1931,1701,2215,1705,2216,2233,1960,1698,2373,2372,1401,2218,2217,1894,2224,2223,1707,2007,2219,1703,2211,2223,1431,1361,1716,1362,1400,1703,2011,1425,1433,1364,1349,2208,1895,1990,2005,1395,1549,2107,1792,2234,2236,1893,2237,2236,1691,2253,2235,1706,1403,1692,1689,1329,2027,2239,2241,2240,1696,2203,2238,1412,1423,1945,2243,2023,2240,1410,1687,1688,1712,2004,2248,1414,1711,1753,1680,2252,2251,1430,2232,2256,1709,1517,1727,1518,1721,1724,1520,1430,1429,2252,1721,1520,1580,2336,1370,2335,1545,244,2258,1553,1554,1565,1545,2105,244,2114,885,1543,2290,2104,1449,1553,1769,1320,249,1590,891,2257,2056,1542,2339,2120,1540,1729,1728,1601,1658,232,1564,1752,1682,1751,1732,1731,2261,1739,1637,2263,2260,1637,2261,2265,2266,1747,2149,1630,2150,1650,1745,1620,1650,1620,2268,1850,1852,1826,1599,1741,1600,1389,1453,1742,1391,1734,1844,1583,1728,1580,1325,1765,1319,1609,1610,1608,231,877,1652,2262,1738,2263,1474,1512,1576,1443,1577,1602,2152,1633,2341,1440,1597,2275,1462,1461,1464,2374,1702,2253,1608,1607,1609,2152,2341,1634,889,248,1902,2266,2267,1634,1529,1530,1528,1748,1373,1491,1681,1753,1751,1825,1846,1826,1679,1682,1689,1723,243,2259,1817,1759,1868,1443,1575,1577,2133,2073,1557,259,1760,240,1872,1857,1874,1655,1798,2341,1625,1762,2264,2265,1747,1901,1389,1742,1390,1780,2289,2292,1522,1523,2297,1711,1715,1753,1617,2309,1298,2334,2147,1794,2275,2130,1776,2293,1506,2294,2273,2214,1772,1681,1682,1680,1982,1981,1402,1684,1683,1473,1596,2310,1776,1617,1776,2309,2131,2130,1598,1294,2307,1596,1981,2274,1683,1535,2097,2280,1522,2297,1786,2283,2281,1595,2278,2277,1534,2342,2285,2288,2282,2281,1507,225,885,1555,2290,2289,1781,2295,2293,2098,2121,2291,1559,2272,1771,2271,2091,2092,1522,1513,2089,1784,1435,1437,1565,2328,2301,2326,2092,1489,2270,1790,1303,2310,2305,2085,2306,1900,2305,1294,1790,2321,1303,2162,2159,1646,1480,1481,1483,2344,2107,1805,1791,2312,1792,1595,2128,2317,2314,2313,1792,2316,2315,1594,2318,2084,2080,2319,1493,2071,2084,2318,1510,2319,2320,1493,1790,1789,2321,2310,2307,1790,2098,2095,1535,2323,2170,2126,2170,2323,1503,893,2335,251,2327,2091,1786,2324,2086,1898,1513,1506,2089,1468,1491,1469,1365,1528,1757,2328,2327,2301,1756,1481,1521,1667,1669,2356,1492,2069,214,2175,2176,1659,2340,2169,1295,1666,2356,1672,2337,2155,2172,1974,2154,1799,2173,1305,2336,893,231,2335,2123,2322,1573,2340,1798,2169,1795,1723,2322,1613,1612,1978,2146,1629,2333,1978,2140,1635,1608,1611,1637,2299,2296,1763,2339,2065,1538,1768,1767,1765,1616,1762,1440,1779,2285,2343,1812,1369,1458,1547,1448,1548,1451,2063,2117,2344,2345,1792,1547,2104,1781,1808,1374,1809,2346,2347,1464,1687,1487,1688,1365,1385,1528,1527,1530,1802,2302,2297,1505,1662,1659,1664,1797,2329,1778,1316,1317,1572,2346,2349,1801,1777,2276,1796,1807,2348,1470,2325,1292,2350,1777,1796,2350,1814,1802,1815,1492,214,2071,1465,1462,1810,1478,1477,1817,1788,2314,1785,1556,224,1555,1755,1690,1752,1748,1367,2271,1772,1699,1458,1465,1810,1466,1377,1984,1466,1473,1474,1472,1771,2272,1410,1802,1814,1527,1720,241,1719,1324,1664,1676,1320,1770,1536,1805,1552,1536,2100,2115,1455,2181,2355,1666,2357,2358,1813,2439,2440,1841,1733,1727,1734,1819,2358,1820,1878,1879,1877,1823,1826,1830,1846,1845,1850,1853,1854,1856,1706,2217,1892,1733,1390,1518,1832,1854,1828,1920,1921,1328,1833,1834,1831,1838,1859,1835,2436,1836,2441,1848,1845,1847,1842,1861,1838,1331,1332,1923,1840,1863,1842,1853,1848,1854,1861,1863,1386,1827,1828,1824,2264,2262,1625,1850,1849,1852,1848,1853,1871,1465,1466,1460,1857,1858,1860,1873,1872,1879,1908,1641,2163,1859,1861,1860,1399,2001,2004,1387,1386,1818,1750,1476,1875,1820,1485,1883,1391,1844,1389,1824,2442,1827,1833,1831,2441,2245,1982,1713,1885,1874,1434,1880,1754,1875,1824,1825,1823,1434,1883,1885,1868,1869,1867,1752,1877,1755,1702,1686,1714,1691,1680,1692,1772,1458,1778,2364,2362,1693,2005,2359,1393,2394,2393,2256,2363,2362,1695,2367,2366,1336,2361,1886,2365,2371,2217,1891,2216,2366,1891,1990,1395,1991,2369,2368,1404,1416,1995,2035,1893,2222,2221,2371,2372,1892,2199,1345,2381,2375,2013,2015,2370,2368,1411,2013,2375,1332,2380,2379,1413,2359,2360,2361,2385,2040,1896,1417,1363,1421,2360,2382,1886,2215,2365,1705,1705,1888,2384,1338,2385,1421,1337,1419,1338,1855,1834,1858,2387,2226,1421,1700,1427,2000,1937,1939,1940,1986,1987,1379,2230,1432,2224,2445,1823,2438,1581,1742,1475,1386,1388,1860,1855,1854,1834,1825,1828,1846,1289,1288,1497,1857,1856,1858,2148,2403,1640,1452,1844,1869,1387,1818,1820,1760,1761,1718,1387,1820,1434,1876,1872,1885,1755,1884,1488,1815,1482,1814,1614,2158,1979,1754,1880,1751,1462,1465,1461,1375,1775,1981,1526,1385,1525,228,237,1570,2303,2070,1787,218,220,1500,1783,2296,1785,2345,2298,1791,1376,2233,1375,2388,2141,2157,1686,1685,1715,2233,1376,1960,1738,1604,1739,2045,1433,2393,1942,1712,1943,2164,1648,1300,1766,1767,1764,2389,2241,2202,1929,1939,1340,2305,1900,2085,1725,1296,1902,1916,1915,1253,251,1726,250,1905,1307,2337,1629,1656,2149,1628,1640,2309,2148,1639,2403,2174,1656,2171,1744,2167,2134,2160,2332,1643,1914,1456,1913,1908,2395,1641,1837,1838,1836,2159,2162,1641,1516,216,2090,2177,1916,1371,2399,2134,1619,1980,1256,2178,2354,2353,1410,1798,2336,1652,1902,1901,1651,2180,1918,2181,1648,2060,1977,2207,1920,2206,2240,1921,2239,2377,1925,2378,1926,1924,1334,1928,1929,1930,1933,1934,1935,1462,1464,1809,2394,1938,2255,1939,1937,1717,1694,2010,1693,1333,1331,1946,1703,2222,2237,2203,2200,1696,1961,1923,1963,1951,1948,1952,1947,1948,1949,2244,1955,2245,1956,1954,1354,2246,1959,2247,1960,1958,1352,2250,2248,1413,1428,1930,1963,1432,1967,1966,1964,1940,1965,1429,1965,1969,1931,1928,1428,1709,1360,2243,1362,1364,1361,1882,1871,1881,2107,2106,1552,2264,1366,2262,1773,2351,1698,1647,1314,1977,1972,1912,1973,1971,2167,1743,1975,2402,1314,2061,2060,1644,1674,1678,1675,2197,1396,2006,1748,2271,1373,2338,1795,2062,2193,1917,1381,1369,2024,1367,2183,1986,1989,2169,877,1651,2008,1994,1402,1881,1870,1879,2217,2218,1704,2006,2007,1400,2244,1993,2213,1994,1992,1713,2391,1998,2003,1999,1997,1355,2003,1351,2391,2004,2002,1399,1694,2197,1400,2379,2380,2020,1376,1982,1353,1406,2013,1397,2017,2014,1407,2375,2015,2021,2016,2014,1406,2379,2020,2378,2021,2019,1409,2376,2026,2369,1312,1502,1304,2025,2026,2027,2039,2031,2040,2032,2030,1707,1890,2036,2035,2230,2229,1432,2231,2229,1341,1892,2374,1706,1707,2031,2041,2042,1966,1430,1431,2042,2211,1934,1341,2041,2380,1413,1409,2045,2043,1433,1566,1554,1800,2119,2048,2120,1555,1561,1556,2051,1445,2054,1545,2258,1546,2052,2050,1446,1611,2139,1636,2054,2055,2051,1605,1744,2399,1313,2061,1973,2168,2166,1623,1735,1740,1618,1457,1459,1490,2121,2119,1562,1563,1764,1564,227,224,1563,1472,1477,1473,1457,1490,1778,2327,1797,2091,2067,2066,1486,1570,1567,1569,2068,2069,1493,1907,2395,1298,1673,234,2189,1501,2076,2286,1289,1497,1385,1508,2081,2080,2184,2186,1667,2079,2077,1506,2300,2083,2301,2084,2082,1508,1782,1437,2294,2317,2318,1595,894,2093,246,1783,2311,1514,1567,1574,1568,1317,1662,1571,2313,2314,1787,2269,2270,1470,2092,2270,1523,1600,1601,1599,2287,2096,2049,2095,2096,2097,1547,1548,2104,2100,2101,1539,1731,1732,1588,1671,1672,2187,1768,1324,1764,2313,1787,2320,2062,1449,2338,2287,2110,2288,2109,2110,2111,2116,2112,2117,1581,1582,1578,2334,2127,1653,1542,222,2257,2124,2122,1573,2218,2221,1889,2320,2319,1550,1513,1784,2294,1539,1767,1561,1631,1654,2154,2100,1539,2115,2323,2126,2279,2127,2125,1593,1979,1978,1614,1453,1452,1868,1788,1785,2304,2146,2147,1629,2138,2136,1612,2135,2401,1302,2402,2137,1976,1610,2135,2138,1391,1390,1734,2405,2150,2406,2059,2057,1297,2090,875,1515,1616,1440,2142,1515,215,2132,1865,1845,1871,1307,1633,2153,1576,1511,1577,2146,1627,2147,2149,2150,1629,1472,1475,1817,1614,2155,2158,1518,1737,1519,2388,2157,2267,1621,1309,2163,2403,2159,2396,2140,1612,2402,2161,2405,1644,2166,2167,2398,1644,1648,2161,1973,2165,1632,2268,2168,1622,1853,1856,1870,2337,2172,1905,2173,1906,1305,2080,2077,1507,1444,1601,1584,2295,2098,2282,1441,1762,1746,2175,1659,2177,1758,2269,1529,1544,2103,1435,1923,1922,1356,2178,1660,1980,1255,1918,1279,1380,2185,2195,1636,2141,2261,2196,1988,1678,1668,1673,2186,1306,1906,1308,2060,1649,1647,2182,2192,1261,1674,236,2190,1851,1849,1869,1320,1536,1321,1587,1586,1729,1382,1536,1323,2183,1989,2184,2185,2183,1667,228,1570,229,2270,2269,1763,1698,1352,2214,1705,2384,1890,1783,1785,2311,1712,1942,1403,1827,1831,1828,1396,1407,1991,1922,2375,1409,2392,2201,2364,2202,2200,1347,2206,2205,1334,2223,1996,2032,1406,1397,2016,1360,1709,1364,1422,1363,1337,1944,1945,1426,1711,1680,1710,1895,2228,2227,2218,1894,2221,2386,2383,1897,2219,2007,2220,2227,2225,1708,1414,2250,2378,1392,1394,2381,1357,2231,1941,1428,1963,1701,1710,1691,2235,2239,2238,1696,2240,2023,1921,2244,2213,1955,1430,2212,2042,2392,1943,2390,1355,1956,1999,2230,2224,1341,2251,2252,1999,1692,2011,1691,1966,1964,1429,1894,2235,1893,2255,2254,1343,2249,1963,1413,1498,213,2331,2176,887,1657,1503,2074,1311,1517,1719,1727,1821,1830,1822,1909,1910,1311,1821,1822,1760,2402,1975,2140,1474,1473,1512,1864,1849,1865,1585,2266,1586,2334,1794,2127,2142,2275,1617,1864,1865,1867,1479,1478,1866,2267,1732,2388,247,241,1724,1516,2093,216,1346,1688,2354,1702,2374,1401,2274,2088,1774,1806,2347,1807,1551,1574,1552,1723,2258,243,1489,1459,1471,1603,1597,1441,2144,2148,1628,1630,1310,1631,2284,2278,2285,2279,2277,1504,2295,2282,2079,2281,2282,2280,2278,2284,1504,2287,2049,2110,2096,2287,1534,2289,1451,2291,2291,2121,2292,2293,2295,1506,1457,1458,1459,1769,2298,1770,2345,2344,1770,2083,2300,1508,2342,2288,2124,2331,892,1569,2356,2355,1667,2108,2090,1557,1789,2307,2306,1532,2108,1779,1794,2321,1594,1632,1631,1974,1781,1454,1547,2315,2316,2306,1510,2317,2306,2082,2084,2085,1589,1502,2133,2106,2330,1551,2071,874,1498,1450,1795,2123,2108,1557,2286,1601,1600,1729,1796,2326,2325,1797,2327,2329,2329,2328,1796,1572,1319,1665,1632,1974,1973,1793,1498,2330,2395,1908,2397,1299,1302,1730,1585,1586,1588,1537,1780,2099,1725,1728,1296,2120,2339,1562,1541,1544,1800,2101,2100,1540,2355,2181,2195,1668,2196,1673,1537,1454,1780,2348,2347,1529,1801,1530,2346,1463,2349,1464,1802,1801,1804,1808,1807,1469,1525,2304,1763,1808,1809,1807,1292,2325,1898,2395,1907,2396,1777,2350,1773,1743,1744,1604,2351,2350,1375,2357,2066,1820,2280,2277,1592,1562,1538,2292,2106,1550,2330,1837,2435,1841,1884,1877,1885,1840,1842,1839,1761,1822,1734,1478,1817,1867,1841,1842,1837,1843,1852,1844,1857,1872,1856,1731,1736,2260,1880,1875,1881,1418,2040,1338,2199,1394,2012,1395,1393,2006,2357,1813,2066,2220,2359,1887,2360,2359,1392,2362,2363,2017,2389,2202,2390,2366,2216,2035,2387,2385,1897,2376,2369,2363,1992,1994,1995,2221,2219,1887,2300,2301,2302,2026,2376,1412,2377,2378,2370,1925,2377,1334,2382,2381,2227,2028,2025,1329,2383,2382,1708,2212,2251,1354,2382,2360,2381,2384,2386,1896,1889,1887,2365,1708,2226,1897,1417,1358,1363,2362,2017,2198,2243,2209,1423,1833,1836,1834,1751,1878,1752,2276,2273,1778,880,2187,235,2248,2001,2249,2393,2394,1343,1984,1378,2352,1456,1914,2160,2445,2442,1823,1351,1953,2247,1336,2009,2367,1891,2367,2371,1315,2164,1903,1685,1684,1476,1573,2343,2124,1261,1279,2182,1516,2090,1532,1480,221,1521,1544,1435,1566,1693,1943,2364,1615,1979,2157,1420,2041,2038,1401,1684,1686,1376,1375,1982,1533,2094,1573,1302,1299,1904,1448,2056,1722,1411,2029,2370,1418,2038,2040,1291,1899,1294,1983,1984,1373,2311,2312,1784,1476,1477,1479,2008,1402,2009,1594,2128,2127,1548,245,2105,2180,2181,2182,1309,2058,2397,1507,2283,2080,1341,1936,2231,1590,249,1591,1357,1967,2231,1558,2113,2124,2143,1621,1622,2262,2263,1626,1372,1374,1469,1504,2076,2075,2170,2171,1593,1483,212,1480,1560,2118,2113,1346,2354,2390,1700,2000,1999,1645,2404,1914,890,2069,219,1307,2153,2158,1898,1899,1292,1331,1923,1962,1415,2033,2036,2443,2444,1827,1319,1572,1325,1344,1941,2255,1326,1919,2195,1526,1758,1528,1665,1321,1318,1993,2244,1713,1695,2204,2363,1328,1950,2206,1405,2018,2022,1398,1996,2211,1671,2191,1672,1353,1957,1960,1531,1533,2259,2155,1614,2154,1509,2086,2326,1339,1932,1965,2068,2070,1494,1505,2081,2302,1672,2192,1666,2286,2284,1779,1621,2163,2268,1408,2022,2370,1291,2087,1292,1915,1316,1917,1592,2129,2280,1414,1927,2004,2162,1646,1740,1646,1913,1730,1327,2162,1745,2163,1327,1650,1913,1315,1299,2407,2446,2408,2448,2423,2411,2449,2410,2447,2419,2450,2412,2452,2414,2453,2412,2411,2414,2419,2412,2413,2418,2419,2417,2454,2409,2455,2418,2410,2456,2410,2418,2416,2457,2458,2413,2413,2414,2457,2417,2458,2416,2412,2451,2411,2408,2410,2409,1240,2434,2415,2450,2419,2456,2409,2454,2407,2411,1239,2415 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_model_normal.txt b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_model_normal.txt deleted file mode 100644 index 74bbdf56..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_model_normal.txt +++ /dev/null @@ -1 +0,0 @@ -0.163039,-0.450888,0.877564,-0.151399,-0.986489,-0.0625859,0.223437,-0.871972,0.435593,-0.564436,0.711284,-0.418911,0.0914071,0.980032,0.176586,0.176288,-0.852474,0.492149,-0.00291334,0.995594,-0.0937269,0.00371087,0.916324,0.400421,-0.00251934,-0.948641,-0.316343,0.0084566,-0.918347,0.395687,-0.204194,-0.971663,-0.119063,-0.0436441,-0.996763,-0.0675119,0.11408,-0.885184,0.451038,0.116712,-0.880179,0.460068,0.307276,0.897657,0.315901,-0.244182,0.879407,-0.408679,-0.00795533,0.990208,-0.139376,0.0718151,0.886238,0.457629,0.245032,0.889093,0.386616,-0.153158,-0.970831,-0.184472,0.0368909,0.986282,-0.160893,-0.0763489,-0.961258,-0.264867,0.0134013,0.979665,-0.200191,-0.811684,-0.579287,-0.0748011,-0.0665929,-0.996483,0.050857,-0.411274,0.867272,-0.280523,-0.935259,0.198241,-0.293242,0.297451,-0.81555,0.496388,0.00258702,-0.999883,0.0150927,-0.0192438,-0.997785,0.0636701,-0.0214305,-0.987467,0.156365,0.122804,-0.98005,0.156275,-0.13804,-0.986401,-0.0892124,0.224688,0.930088,0.290604,-0.00352882,0.996617,0.0821085,-0.0735618,-0.991865,0.103883,0.0878662,0.996132,-0.000822586,-0.00928355,-0.999115,-0.0410206,-0.0109578,0.993164,-0.116209,0.154772,0.987416,0.0324938,-0.101786,0.953653,-0.283171,-0.131613,0.968873,-0.209673,-0.000466211,0.994321,0.106421,0.332869,-0.879417,0.340329,0.506858,-0.818769,0.269653,0.29738,-0.95043,0.0908192,0.9081,0.103097,0.405863,0.967767,-0.0677598,0.242561,0.871552,-0.104535,0.479031,0.78471,0.194259,0.588636,0.165307,-0.421876,0.891456,0.145616,-0.221051,0.96433,0.356269,-0.518296,0.777459,0.618082,0.237642,0.749334,0.121026,-0.89193,0.435676,0.530675,-0.741516,0.410534,0.603476,-0.755622,0.25466,0.230033,-0.941384,0.24674,0.437849,0.235218,0.867733,0.606818,0.216889,0.764677,0.513038,-0.0773183,0.854877,0.511554,0.076658,0.855825,0.101044,-0.19809,0.974962,0.353999,0.125693,0.926761,-0.440746,0.782133,0.440466,0.0711902,0.210154,0.975073,0.259478,0.28124,0.923891,0.485741,0.308656,0.817794,0.749827,0.360815,0.554592,0.77327,-0.515721,0.368897,-0.0575999,0.437984,0.897135,0.255793,-0.756233,0.602231,0.335679,-0.654979,0.676995,0.120814,-0.661635,0.740029,0.427542,-0.320644,0.845219,0.40429,-0.287391,0.868306,0.197079,-0.537753,0.819745,0.63199,-0.0753776,0.771302,0.464955,0.0482643,0.884018,0.480972,0.150329,0.863752,0.553789,-0.115835,0.824561,0.526003,0.428051,0.73491,0.348672,0.347456,0.870461,0.858908,-0.349663,0.374182,0.0875699,-0.885703,0.455919,0.874115,-0.479317,0.0786023,0.771202,0.259271,0.581401,0.885764,0.177572,0.428825,0.792598,0.070499,0.605655,0.664313,-0.460686,0.588605,0.821701,-0.0911982,0.562575,-0.329469,0.422106,0.844557,0.944499,-0.284429,0.164384,0.857268,-0.514372,-0.0226592,0.920667,-0.332959,-0.203744,0.894522,0.105417,0.434416,0.970677,-0.202853,-0.128983,0.984206,-0.0983178,-0.147215,0.946982,-0.310779,0.081501,0.902064,-0.430922,-0.0242147,0.977957,-0.0716538,0.196129,0.0952606,-0.615369,-0.782462,-0.59918,-0.51829,-0.610212,0.991237,-0.0412919,0.125474,0.997788,0.0210002,0.063076,0.882417,0.058796,0.46678,0.887841,-0.243374,0.390522,0.97193,-0.22341,0.0737611,0.94948,-0.176131,0.259741,0.917703,-0.250312,0.308488,0.926725,-0.250433,0.280115,0.800671,0.453878,0.391051,0.938883,-0.21284,-0.270551,0.968177,-0.0960003,0.231121,0.980911,0.0704964,0.181227,0.936886,0.0153409,0.349298,0.963565,-0.176197,0.201239,0.958998,-0.126624,0.253552,0.952478,-0.217241,0.213524,0.958002,-0.026601,0.285526,0.470817,-0.875012,0.112633,0.466422,-0.481816,0.741825,0.922503,-0.376763,-0.0838978,0.935922,-0.327287,-0.130126,0.922308,-0.38144,-0.062059,0.48405,-0.0589616,0.873052,0.354263,-0.612329,0.706789,0.937656,-0.343314,-0.0541841,0.969957,-0.238019,0.0502962,0.948687,-0.31099,0.0572588,0.992966,-0.117995,0.00980987,0.988996,-0.134311,0.0620305,0.982364,-0.102435,0.156421,0.989575,-0.11814,-0.0823715,0.581508,0.188544,0.791391,0.655495,0.0862597,0.750257,0.220322,-0.167505,0.960937,0.164773,-0.334953,0.927715,0.649444,-0.0440944,0.75913,0.639047,0.0879079,0.764128,0.646317,-0.705765,0.290122,0.779568,-0.138723,-0.610761,0.894378,-0.098138,-0.436413,0.848747,-0.22787,-0.477184,0.81152,0.445456,0.378159,0.68297,0.45708,0.569763,0.70952,0.58262,0.396403,0.986257,-0.0683172,-0.150435,0.787614,-0.0487873,-0.614234,0.981968,-0.189032,0.00216146,0.823371,-0.304173,-0.479102,0.751247,-0.43278,-0.498326,0.971518,-0.236965,0.000103705,0.794162,-0.104534,0.598648,0.875728,-0.157588,0.456362,0.173392,-0.315081,-0.933091,0.00716919,0.792979,0.609207,0.789381,0.270627,0.551035,0.0617804,-0.430138,-0.900647,0.745871,-0.636869,-0.195129,0.944787,-0.319159,0.0742585,0.964566,-0.262435,-0.0272068,0.802787,-0.456325,-0.383797,0.860604,-0.283091,0.423344,0.916992,0.117627,0.381168,0.696715,-0.672276,-0.250266,0.687234,-0.692161,0.220507,-0.172802,-0.984126,-0.0404504,0.880569,0.217583,0.421018,0.838008,-0.0948024,0.537359,0.93832,-0.0872404,0.334581,0.306878,0.176522,0.935236,0.870054,-0.303808,0.388208,0.883975,-0.428444,-0.187147,0.956332,-0.290692,0.0304429,0.944064,-0.173719,-0.280294,0.859528,-0.452122,0.238321,0.971394,-0.147929,0.185769,0.82411,-0.0865177,0.559783,0.976643,-0.0851547,0.197273,0.919788,-0.260759,0.293249,0.751169,-0.0480405,0.65836,0.81469,-0.169795,-0.554481,0.838289,0.503028,-0.21032,0.859232,-0.268589,-0.435407,0.960394,-0.277603,0.0240835,0.983511,-0.176183,0.0408179,0.949901,-0.172269,-0.260792,0.974829,-0.144857,0.169484,0.89026,-0.202849,-0.407785,0.153246,0.22804,0.961516,0.0761203,0.0525536,0.995713,0.141355,0.00934902,0.989915,0.415934,0.148283,0.897224,0.827104,-0.0611948,0.558708,0.569722,0.0111874,0.821762,0.646108,-0.166072,0.74496,0.147709,0.0131267,0.988944,0.733042,-0.0181754,0.679941,0.607359,0.0485619,0.792942,0.350644,-0.205158,0.913761,0.285689,-0.473354,0.833257,0.427773,0.0162354,0.903741,0.037411,-0.868214,0.494777,0.899078,0.134978,0.416462,0.866088,0.446195,0.225392,0.989736,0.102306,0.0997825,0.836607,0.50958,0.201041,0.893556,0.344518,0.287862,0.476225,-0.680149,0.557322,0.523663,-0.00559217,0.851907,0.100747,0.974019,0.202825,0.0526589,-0.482806,0.874143,0.0224005,-0.00951095,0.999704,0.025762,-0.42179,0.906328,0.0724117,0.569457,0.818825,0.0694406,0.566064,0.821432,0.0157344,-0.995042,0.0982058,0.0145712,-0.994445,0.104243,0.0232933,-0.774148,0.632576,0.0205974,-0.939381,0.342255,0.040822,-0.839133,0.542392,0.0623512,-0.83949,0.539785,0.0392341,-0.352254,0.935082,-0.00295856,0.278519,0.960426,0.00987414,0.15216,0.988307,-0.0105242,0.416434,0.909105,-0.0132332,0.35472,0.934879,0.0151172,-0.628895,0.777343,0.0183896,-0.33431,0.942284,0.00316449,-0.137064,0.990557,0.0372335,-0.1923,0.98063,0.00258491,0.215057,0.976598,0.0124327,-0.174485,0.984581,0.0252108,-0.124637,0.991882,0.0181275,0.183207,0.982907,0.0287424,-0.52356,0.851504,0.0204929,-0.73127,0.68178,0.0114297,0.420086,0.907412,0.00412995,0.444248,0.895895,0.000339244,0.655157,0.755493,0.00168022,0.31127,0.95032,0.0476726,-0.905699,0.421233,0.0528385,0.287454,0.956336,0.0493752,-0.152412,0.987083,0.046917,-0.604672,0.795092,0.0611786,0.545443,0.835912,-0.00353031,0.219763,0.975547,-0.00607831,0.0968214,0.995283,0.0656857,0.459414,0.88579,0.0608907,0.230834,0.971086,0.0516695,-0.0165641,0.998527,0.0150384,-0.598241,0.801175,0.0476192,0.998837,-0.00761523,0.0804687,0.964149,0.252868,0.0644721,-0.244186,-0.967583,0.114339,0.0692009,-0.991029,-0.0349462,-0.200976,-0.978973,-0.0480185,-0.139912,-0.988999,-0.00339846,0.850903,0.525312,0.0400199,0.96697,-0.251728,0.0930723,0.789259,-0.606966,0.1171,0.533947,-0.83737,0.117082,0.343268,-0.931911,-0.0113834,-0.279008,-0.960221,0.975548,-0.211599,0.0594396,0.974492,-0.216651,-0.0585441,0.958453,-0.283422,-0.0322589,0.945722,0.0190396,0.324419,0.843142,-0.0556969,0.534798,0.870654,-0.151934,0.467844,0.754202,-0.108058,0.647691,0.804425,-0.300877,0.512225,0.927392,-0.0357765,0.372375,0.989612,0.0223989,0.142009,0.990363,0.0727842,0.11783,0.927767,-0.35436,-0.116952,0.900766,-0.421346,-0.105298,0.844784,-0.535099,-0.00314852,0.909238,-0.415517,0.0251553,0.974015,0.0653496,0.21685,0.988607,0.0281379,0.147867,0.910783,0.101274,0.400273,0.905055,0.113691,0.409816,0.991449,0.0185094,-0.129175,0.998886,0.0399691,-0.0250751,0.976641,0.199435,-0.0799834,0.974022,0.137011,-0.180302,0.19589,-0.700323,0.686422,0.396668,-0.731929,0.554017,0.519852,-0.413075,0.747745,0.315405,-0.462198,0.82879,0.912978,-0.262713,-0.312175,0.918898,-0.197689,-0.341387,0.957371,-0.260391,-0.125049,0.883519,-0.323836,-0.338415,0.876897,-0.29537,-0.379222,0.944491,-0.300214,0.133449,0.959713,-0.215016,0.180886,0.937434,-0.326814,-0.12004,0.23184,-0.397212,0.88796,0.445642,-0.290106,0.846901,0.444673,-0.66153,0.603858,0.187155,-0.794102,0.578252,0.590691,-0.230985,0.77313,0.602976,-0.625173,0.495559,0.22505,-0.0406237,0.9735,0.130599,-0.934073,0.332343,0.123683,-0.986379,0.108443,0.656753,0.307674,0.688485,0.624104,0.380772,0.682281,0.363402,0.321828,0.87428,0.380054,0.223193,0.897632,0.752777,-0.210612,0.623674,0.481604,-0.148518,0.863713,0.365742,0.0565465,0.928997,0.709304,-0.185881,0.679953,0.880813,-0.206667,0.425978,0.580798,0.0226054,0.813734,0.858346,0.199033,0.472894,0.940338,0.12231,0.317499,0.575032,-0.189527,0.795876,0.770333,-0.226244,0.596155,0.485858,0.506505,0.712317,0.527226,0.517382,0.674054,0.363297,0.403616,0.839708,0.53343,0.398178,0.746261,0.505063,0.29417,0.811403,0.301901,0.317558,0.898895,0.133643,-0.971031,0.198088,0.898679,-0.226957,0.375322,0.884205,-0.307676,0.351451,0.702264,-0.50627,0.500516,0.769398,-0.524589,0.364464,0.721483,-0.659832,0.209963,0.622847,-0.767419,0.152082,0.608169,-0.789972,0.0779473,0.692705,-0.721005,0.0176482,0.697256,-0.70536,0.127676,0.558136,0.487925,0.671129,0.750616,0.414777,0.51433,0.750223,0.484338,0.450091,0.343924,0.0260713,0.938635,0.0808926,0.0959326,0.992095,0.33097,-0.292753,0.897081,0.772983,-0.601123,0.202853,0.725168,-0.568404,0.388649,0.471317,0.406347,0.782778,0.56018,0.0485467,0.826947,0.392359,0.436592,0.809593,0.503524,-0.456327,0.733641,0.336152,0.0406341,0.940931,0.33519,0.386295,0.859316,0.516585,-0.14506,0.843859,0.734247,0.00666918,0.67885,0.458699,-0.656208,0.599155,0.402473,-0.728192,0.554754,0.5189,-0.214945,0.82737,0.498185,-0.117374,0.85909,0.485488,-0.248052,0.838314,0.479854,-0.178795,0.858937,0.449097,-0.0440352,0.892397,0.475,0.0682319,0.877337,0.184005,0.264533,0.94666,0.164102,0.340897,0.925667,0.690209,0.383496,0.61363,0.928354,0.173658,0.328635,0.996784,0.054722,0.0585381,0.957316,0.280859,0.0683025,0.400181,0.35879,0.843282,0.937767,-0.291399,0.188893,0.0139581,0.353049,0.935501,0.10924,0.332621,0.936712,0.339487,0.146644,0.929109,0.388029,0.290124,0.874792,0.360873,-0.47959,0.799852,0.373105,-0.282558,0.883716,0.165595,-0.281684,0.94511,0.137912,-0.601651,0.786763,0.520795,-0.250562,0.816083,0.406815,-0.534648,0.740711,0.809511,0.502831,0.303072,0.565902,-0.250462,0.785509,0.802482,0.098671,0.588461,0.866669,0.11511,0.485422,0.770893,0.00291245,0.636958,0.649951,0.270428,0.710234,0.638821,0.307228,0.70535,0.459404,0.324804,0.82671,0.787081,0.196529,0.584705,0.801143,0.19583,0.565526,0.423027,0.247703,0.871603,0.607824,0.234647,0.758611,-0.0776409,-0.207365,0.975178,0.102729,-0.349014,0.93147,0.134719,-0.222723,0.965528,0.0305368,-0.0314036,0.99904,0.642706,0.386864,0.66126,0.502338,0.433179,0.74834,0.423808,0.283849,0.860126,0.167948,0.223734,0.960071,0.125552,0.190294,0.973666,0.16657,0.126617,0.977866,0.241551,0.174688,0.954535,0.639722,0.344402,0.687127,0.652569,0.139493,0.744779,0.751759,0.237621,0.615139,0.494312,-0.0264591,0.868882,0.265974,-0.0708128,0.961376,0.385263,0.0436224,0.921775,0.678622,-0.108115,0.726487,0.701346,-0.079382,0.708387,0.355431,-0.415797,0.837127,0.360174,-0.436108,0.824673,0.183624,-0.392181,0.901375,0.151018,-0.326203,0.933159,-0.0523389,-0.262397,0.96354,-0.0170633,-0.354202,0.935013,-0.153181,-0.308864,0.93869,-0.174914,-0.252035,0.951779,-0.118813,-0.336108,0.934299,-0.140927,-0.291476,0.94614,0.00148451,-0.163367,0.986564,-0.141503,-0.283286,0.948539,0.50718,-0.190929,0.840425,0.612692,0.317769,0.723623,0.00877415,-0.96434,0.264523,-0.126746,-0.970143,0.206779,-0.415783,-0.909074,0.0266081,0.0241373,0.466259,0.884319,-0.687938,-0.688981,0.228137,-0.738191,-0.64194,0.207333,0.237084,0.0888218,0.96742,0.61666,-0.216784,0.756793,0.472071,-0.0753511,0.878334,0.120483,0.0331499,0.992162,0.45602,0.152335,0.876835,-0.140789,0.161634,0.976756,-0.0256843,0.307481,0.951208,0.238767,0.266059,0.933918,0.472768,0.310194,0.824785,0.158864,-0.270137,0.949625,-0.0393751,-0.299699,0.953221,0.0689479,-0.22894,0.970996,-0.190832,-0.230364,0.954209,-0.0745347,-0.165724,0.983352,-0.158048,-0.243291,0.95699,0.13855,0.274938,0.951427,0.449498,0.250842,0.857339,-0.0586933,0.974343,0.217279,-0.0140249,0.538413,0.842564,-0.164695,0.390422,0.905785,0.147647,0.905174,0.398574,0.100452,0.981251,0.164484,0.0621952,0.531969,0.844477,0.535522,-0.540622,0.648802,0.29852,0.325369,0.89723,0.626288,-0.118172,0.770583,0.230366,-0.754068,0.615072,0.0834453,-0.245896,0.965698,0.220172,-0.245614,0.944033,0.0432049,0.0917027,0.994849,0.071568,0.143801,0.987015,0.286141,-0.313954,0.905293,-0.0439578,0.0958647,0.994423,0.227991,-0.261,0.938029,0.205522,0.0189004,0.97847,0.312923,-0.271529,0.910138,0.276685,-0.569647,0.773917,0.204887,-0.546211,0.812204,0.367525,-0.458766,0.808987,0.340573,-0.00084375,0.940218,0.464398,-0.0290576,0.88515,0.237708,-0.606658,0.758592,0.527654,0.496594,0.689185,0.606265,0.241379,0.757746,0.529528,-0.000114467,0.848292,0.448785,0.220389,0.866037,0.214091,0.212263,0.953472,0.124075,0.425001,0.896649,0.38005,0.456911,0.804235,0.269316,-0.128884,0.954389,0.287317,-0.416543,0.86252,0.220225,-0.6193,0.753637,0.344601,0.225532,0.911255,0.463416,-0.429395,0.775155,0.500975,-0.277238,0.819856,0.661808,-0.250728,-0.706503,0.773344,0.0623236,-0.630916,0.934846,-0.0763809,-0.346739,0.893903,-0.229337,-0.385153,0.998138,-0.0607232,-0.00577748,0.995214,-0.0639241,-0.0739054,0.999031,0.00417947,-0.043802,0.822518,0.549045,0.14837,0.700657,-0.452735,-0.551462,0.767114,-0.445253,-0.461829,0.592628,-0.428017,-0.682344,0.862872,-0.351552,-0.363129,-0.367004,0.255176,-0.894535,0.172493,-0.226525,-0.95861,-0.0428109,-0.49698,-0.866706,0.0973072,-0.442626,-0.891411,-0.0736207,-0.753616,-0.653179,-0.580826,-0.784365,-0.217745,0.885373,-0.0913774,0.455812,0.983973,-0.177678,-0.0150581,0.982467,-0.184419,-0.0273357,0.973281,-0.221312,-0.0611916,0.960502,0.269285,0.0701556,-0.49725,0.832115,0.245616,-0.0742183,0.0344609,-0.996646,-0.087002,0.939684,0.330794,0.561779,0.710074,0.424498,-0.843445,0.533191,-0.0656377,0.982962,-0.160715,0.0891926,0.802073,-0.335885,0.493822,0.846781,-0.173949,0.502697,-0.0673024,0.671347,-0.738081,0.709552,0.58668,-0.390311,0.159596,-0.513605,-0.843054,0.708447,0.0571246,0.703448,-0.401521,0.900471,-0.167131,0.872561,0.48149,-0.082494,0.924275,-0.333217,0.186233,0.827227,-0.106285,0.551724,0.212306,0.661732,0.719053,0.165439,0.446978,0.879113,0.147826,0.319676,0.935924,0.283482,0.307543,0.908325,0.334948,-0.90768,0.252839,0.58831,0.291172,0.754394,0.104128,0.255983,0.961057,0.0783623,0.0483667,0.995751,0.360279,0.0349176,0.932191,0.381711,0.598248,0.704554,0.246736,0.162349,0.955387,0.207282,-0.188799,0.95989,0.00305476,-0.885561,0.464513,-0.095585,0.0468988,0.994316,-0.193849,-0.0706448,0.978484,0.54258,0.549462,0.635372,0.553551,0.701718,0.448524,-0.0446699,-0.964728,0.259432,0.209591,0.0719566,0.975138,0.671532,0.287695,0.682844,0.393456,-0.355409,0.847866,0.186299,-0.254006,0.949091,-0.0111806,-0.921553,0.388091,0.513924,0.00508508,0.857821,0.822894,0.258113,0.506184,0.429994,-0.539091,0.724214,0.428014,-0.534582,0.728716,0.00456831,-0.884206,0.467075,0.66249,-0.183729,0.726189,0.112458,-0.414692,0.902986,0.95472,-0.293737,-0.0472022,0.99679,0.0727025,-0.0335114,0.990246,0.0609868,-0.125272,0.926144,-0.0723891,-0.370158,0.872802,-0.245279,-0.421967,0.980322,0.0604296,-0.187926,0.95406,0.0432843,-0.296471,0.858581,-0.339096,-0.384516,0.31329,-0.93402,0.171628,0.480575,-0.855302,0.193664,0.783841,-0.605231,0.138883,0.919682,0.23018,0.318124,0.188705,0.844521,0.501173,0.373998,0.770225,0.516603,0.542248,-0.394855,0.741658,0.842352,-0.446874,0.301242,0.327516,0.335555,0.883253,0.512645,0.206415,0.83342,0.351028,0.36065,0.864124,0.442816,0.376773,0.813607,0.431204,0.314105,0.845814,0.495983,-0.132338,0.858188,0.434202,-0.246199,0.866519,0.906859,-0.396363,-0.143187,0.983299,-0.181067,-0.0183766,0.987526,-0.156013,0.0212415,0.991404,-0.0111468,0.130359,0.98649,-0.122684,0.108562,0.575249,0.393555,0.717079,0.979582,-0.153662,0.129643,0.981341,-0.160399,0.10603,0.779622,0.310276,0.543984,0.94795,-0.304734,0.0923491,0.848696,-0.319103,0.421768,0.42372,-0.0235961,0.905486,0.781239,-0.262324,0.566437,0.62023,-0.204736,0.75723,0.751257,-0.333864,0.56934,0.89443,-0.208818,0.395462,0.633408,-0.29057,0.717191,0.688547,-0.375294,0.62053,0.451655,0.234878,0.860721,0.457248,0.268237,0.847923,0.620907,-0.243258,0.745185,0.545918,-0.303089,0.781096,0.40171,-0.0446993,0.914675,0.14523,0.0684602,0.987027,0.766708,0.379748,0.517639,0.959889,-0.17938,0.215488,0.958376,-0.159047,0.237107,0.277035,-0.332029,0.90167,0.359755,-0.319632,0.876591,0.446854,0.364617,0.816931,0.781468,-0.338919,0.523872,0.757069,-0.495829,0.425442,0.712931,-0.166289,0.681232,0.741987,-0.217333,0.63421,0.384349,-0.230911,0.893843,0.786521,-0.595448,0.163788,0.79334,-0.608779,-0.000681678,0.887055,-0.460613,-0.0311414,0.889147,-0.411243,0.200742,0.949661,-0.152327,0.273753,0.958359,0.141081,-0.248283,0.963141,-0.268659,-0.0135086,0.975378,0.0456175,-0.215769,0.629149,-0.59791,0.496664,0.680097,-0.324781,0.657256,0.484011,-0.0871698,0.870709,0.97456,0.185228,0.126186,0.891732,0.0139799,-0.452349,0.903685,0.0571861,-0.424362,0.923165,-0.0426604,-0.382031,0.192381,0.947593,0.255063,0.367711,0.889504,0.271239,0.148822,0.948669,-0.279067,0.223217,0.739647,-0.634898,0.387254,0.74369,-0.544941,0.404902,0.890975,-0.205468,0.183691,0.524753,-0.831199,0.415038,0.471651,-0.778003,0.383457,0.920864,0.0705041,0.175048,0.983231,0.0511451,0.237275,0.278476,-0.930672,0.406982,0.263717,-0.874539,0.219049,0.0648217,-0.973558,0.394126,0.0501765,-0.917686,0.362041,-0.166854,-0.917108,0.1817,-0.161833,-0.969946,0.0745132,-0.282606,-0.956338,0.266642,-0.261434,-0.927661,0.101131,-0.142471,-0.984619,0.317068,-0.155248,-0.93561,0.029422,-0.190162,-0.981312,0.274354,-0.187754,-0.943121,0.542042,0.81047,0.222102,0.719481,0.659631,0.217334,0.731237,0.515095,-0.44718,0.580151,0.630777,-0.515311,0.597626,0.425348,-0.679648,0.693659,0.340708,-0.63463,0.752308,0.640647,-0.153636,0.614429,0.754036,-0.232178,0.723024,0.68996,0.0345271,0.577646,0.815713,0.0306079,0.693939,0.189489,-0.694653,0.560394,0.222739,-0.797713,0.548735,0.0289735,-0.835494,0.686302,-0.0138425,-0.727185,0.728088,-0.144566,-0.670066,0.540746,-0.128677,-0.831286,0.464851,-0.234422,-0.853792,0.695009,-0.230915,-0.680911,0.530518,-0.219501,-0.818761,0.730531,-0.0610015,-0.680149,0.560153,-0.122481,-0.819285,0.868525,0.475912,-0.138461,0.866125,0.407587,-0.28931,0.934676,0.263592,-0.238538,0.937147,0.33611,-0.0937298,0.932247,0.348809,0.0961684,0.843854,0.536227,0.0192646,0.793568,0.0839815,-0.602658,0.83023,0.269589,-0.487893,0.796364,-0.163996,-0.58216,0.776041,-0.0738194,-0.626348,0.833026,-0.215092,-0.509709,0.956321,0.12006,-0.266526,0.795701,-0.202673,-0.570774,0.824719,-0.23908,-0.512522,0.864826,-0.0838693,-0.495016,0.820881,-0.100587,-0.562171,0.915957,0.04591,-0.398642,0.883529,0.0760049,-0.462168,0.923412,0.18869,-0.334224,0.89218,-0.228056,-0.389879,0.855492,-0.316243,-0.410029,0.846994,-0.253386,-0.46733,0.967581,0.216758,-0.129627,0.684326,0.500204,-0.530559,0.93721,0.347804,0.0258803,0.521513,0.833092,-0.18434,0.0906514,0.653849,0.751175,-0.574159,0.621358,0.533157,-0.821223,0.518843,0.237474,-0.576721,0.479637,-0.661318,-0.646517,0.66285,-0.377684,0.851098,-0.0102233,0.524908,0.966233,-0.189119,0.175009,0.888666,-0.393693,0.235113,0.937249,-0.128097,0.324277,0.910971,0.0120952,0.412293,0.826822,0.0380645,0.561174,0.133506,-0.405285,0.904389,0.0522012,-0.137504,0.989125,0.176195,-0.803739,0.568294,0.547151,-0.834016,0.0710107,0.229014,-0.0610791,0.971505,0.311576,-0.144297,0.939201,0.566309,0.273276,0.77757,-0.0921178,0.901021,0.423881,0.34071,0.325486,0.882029,0.213674,0.266526,0.939845,0.724983,-0.3433,0.597114,0.891878,-0.167552,0.420096,0.0157868,0.688142,0.725404,0.120914,0.965299,0.23147,0.220494,-0.826841,0.517413,0.30961,-0.715012,0.626817,0.0525303,-0.724411,0.687364,0.456971,0.569545,0.683225,0.515284,-0.0189086,0.856811,0.243108,-0.716259,0.654119,0.553199,-0.770418,0.316902,0.861818,0.279497,0.423263,0.746205,0.466422,0.475004,0.847684,-0.0709374,0.525738,0.85997,-0.126202,0.494494,0.81906,-0.0868214,0.567101,0.834152,-0.0753238,0.546367,0.935354,0.0783296,-0.344931,0.987246,-0.080823,0.137164,0.896738,0.42869,0.109935,0.874655,0.102577,-0.473768,0.750754,-0.189048,-0.632953,0.983137,-0.154833,-0.097302,0.986406,-0.133076,-0.0964031,0.993393,-0.113612,-0.0162335,0.962803,-0.256139,-0.0860442,0.986976,-0.156286,0.0381109,0.890444,-0.39528,0.225531,0.962859,-0.186956,0.194809,0.948845,-0.258361,-0.181501,0.919183,-0.367705,-0.141052,-0.19457,-0.419681,-0.886572,-0.275081,-0.472884,-0.837085,0.729981,-0.0227314,0.683089,0.698484,-0.096813,0.709047,0.79331,0.0671194,0.605107,0.848027,-0.196504,0.492175,0.929135,-0.224052,0.294125,0.829801,-0.201862,0.520271,0.775396,-0.150015,0.613398,0.961689,-0.221385,0.161686,0.982107,-0.183219,0.043557,0.953072,-0.245085,0.177726,0.923689,-0.242469,0.296661,0.896332,-0.187804,0.401646,0.925138,-0.263483,0.273307,0.938015,-0.256158,0.233474,0.950927,-0.257857,0.17102,0.944734,-0.257245,0.203232,0.972714,-0.211438,0.0955072,0.773005,0.493563,0.398571,0.787237,0.26912,0.554826,0.810343,0.556365,0.183855,0.871306,-0.254682,-0.419479,0.767491,-0.296318,-0.568467,0.930111,-0.230925,-0.285599,0.891526,-0.20526,-0.403794,0.612711,-0.196435,-0.765506,0.814435,-0.240049,-0.528273,0.496472,-0.511655,0.701231,0.427892,-0.578481,0.694455,0.710973,-0.280553,0.644831,0.629438,0.24319,0.738016,0.579228,-0.114915,0.807025,0.457083,-0.469636,0.755326,0.710438,-0.655168,0.256969,0.546565,-0.609092,0.574695,-0.0679659,-0.263495,0.962263,-0.0867059,-0.255743,0.962849,0.333372,-0.656164,0.676987,0.994975,-0.0995235,0.0109496,0.975854,-0.0622532,0.209363,0.985834,-0.166347,0.0214578,0.997273,-0.0578346,0.0458347,0.992187,0.108844,-0.0609758,0.659529,0.113394,0.743077,0.540299,0.0459175,0.840219,0.623498,0.0390505,0.780849,0.681342,0.112887,0.723208,0.922232,-0.253323,-0.292088,0.91602,-0.341478,-0.210478,0.467777,0.102939,0.877832,0.715022,-0.0382101,0.698057,0.318641,0.280112,0.905541,-0.0579884,0.284614,0.956887,0.633703,0.0035165,0.773569,0.93602,-0.139106,0.32329,0.899058,-0.210543,0.383882,0.938522,-0.231045,0.256504,0.997427,-0.0584922,0.0414586,0.918634,-0.0422362,0.392846,0.833876,-0.174421,0.523669,0.862336,-0.203019,0.463853,0.841312,-0.139198,0.52232,0.907083,-0.0920105,-0.410772,0.603074,-0.33464,-0.724098,0.512209,-0.0187318,-0.858657,0.178565,0.507842,0.84274,-0.418192,0.537775,0.732062,-0.108836,-0.383187,-0.917236,-0.280465,-0.185506,-0.941768,0.972299,-0.103934,0.209364,0.982275,-0.123215,0.141262,0.916255,-0.381815,-0.12122,0.965863,-0.256722,0.0346712,0.930411,-0.33434,-0.150172,0.699169,-0.589611,-0.404379,0.89624,-0.442799,-0.0261448,0.918719,-0.212377,0.332942,0.874484,-0.145168,0.462823,0.960609,-0.194266,0.198723,0.916752,-0.334554,0.218263,0.730245,-0.682686,-0.0261205,0.845099,-0.530961,-0.0623465,0.292339,-0.861007,0.416179,0.307647,-0.942492,0.130622,-0.213272,-0.938643,0.271044,0.233774,-0.764565,0.600659,0.707368,-0.585636,0.395803,0.922563,-0.102754,0.371914,0.978352,-0.206943,0.00117794,0.85494,-0.0660427,0.514506,0.719808,0.0787201,0.689695,0.257762,0.328238,0.908745,-0.201047,0.451525,0.869313,0.559121,0.369771,0.74206,0.972643,-0.195347,-0.12572,0.900131,-0.297458,-0.318249,0.915773,-0.278626,-0.289357,0.873231,-0.441836,-0.205543,0.966354,-0.175712,-0.187842,0.966019,-0.237289,0.102474,0.996354,-0.0750538,0.040565,0.992007,-0.124489,-0.0205816,0.980567,-0.121602,0.153952,0.0824996,0.137515,0.987058,-0.032732,0.0434211,0.99852,0.738179,-0.0340866,0.673744,0.416404,-0.0594637,0.907233,0.288695,-0.0530227,0.955952,0.13375,-0.260605,0.956136,0.342603,-0.233136,0.910094,0.44494,-0.0334913,0.894934,-0.0172867,-0.502561,0.864369,0.0564783,-0.562067,0.825161,0.2645,-0.74133,0.616822,-0.0381995,-0.31345,0.948836,-0.888884,0.197572,0.413341,0.574696,0.00509569,0.818351,0.4058,0.281187,0.869632,0.311063,0.758183,0.57306,0.859137,0.361911,0.361807,0.946366,0.302449,0.113649,0.406743,-0.702235,0.584317,0.490273,-0.326041,0.808288,0.0244841,-0.183381,0.982737,0.0737934,0.572345,0.816685,0.0538569,-0.667998,0.742211,0.0168952,-0.224028,0.974436,0.0221339,0.0292663,0.999327,0.0282019,-0.292464,0.95586,0.0131834,0.31503,0.94899,0.00910278,0.631512,0.775313,0.0550029,-0.94982,0.307924,0.0512356,0.106243,0.993019,0.0466612,-0.337703,0.940095,0.0207655,0.057587,0.998124,0.0564565,0.452975,0.889734,0.0149053,-0.438177,0.898765,0.013599,-0.714651,0.69935,-0.00349232,-0.0796945,0.996813,0.0253171,-0.625053,0.780172,0.0685973,0.546873,0.8344,0.0198115,-0.0234028,0.99953,0.0467388,-0.14384,0.988497,0.0649895,0.593208,0.802422,0.954644,-0.12685,-0.269378,0.934266,-0.249945,-0.254313,0.446551,-0.483553,0.75284,0.198243,-0.578934,0.790908,0.6328,-0.395397,0.665752,0.254859,-0.193867,0.947345,0.577787,0.363347,0.73085,0.657533,0.382991,0.648821,0.465258,0.362201,0.807679,0.441431,0.327992,0.835201,0.577861,0.255863,0.774991,0.596042,-0.116039,0.794524,0.654184,-0.203517,0.728439,0.389597,-0.0300822,0.920494,0.535696,-0.0692044,0.84157,0.726137,-0.1879,0.661376,0.802861,-0.150148,0.576948,0.818227,-0.215879,0.532823,0.650445,-0.0853447,0.754744,0.76643,-0.050203,0.640363,0.887617,-0.16384,0.430456,0.920106,0.116872,0.373826,0.970388,-0.019495,0.240762,0.661981,-0.20701,0.720366,0.540148,0.483689,0.688683,0.930267,-0.202223,0.306119,0.919854,-0.289029,0.265201,0.518817,0.52574,0.674111,0.781222,0.441916,0.440911,-0.00282289,-0.0119853,0.999924,0.110674,-0.0807318,0.990572,0.101636,0.0492115,0.993604,0.0931187,0.0114485,0.995589,0.846326,-0.52194,0.106353,0.50246,0.313218,0.805871,0.383537,0.402157,0.831366,0.377208,-0.30542,0.874318,0.282183,0.295524,0.912709,0.717501,-0.227224,0.658454,0.472576,-0.329997,0.817174,0.487946,-0.185285,0.852982,0.471273,-0.22251,0.853458,0.751543,0.355343,0.5558,0.976174,0.167419,0.13804,0.848114,0.0104843,0.52971,0.971364,0.0253553,0.23624,0.983875,0.173113,0.0449672,0.932971,0.339889,0.118491,0.260287,0.203378,0.943869,0.463188,0.261463,0.846814,0.957459,0.275043,0.0873187,0.991065,0.130664,0.0267699,0.928459,0.343018,0.14249,0.960294,-0.0777956,0.267925,0.836157,-0.162323,0.523921,0.993588,-0.08387,0.0758197,0.875073,0.453635,0.168708,0.816502,0.487912,0.308652,0.873651,0.367864,0.318449,0.136039,0.206187,0.96901,0.180038,0.243378,0.953076,0.0968735,0.114103,0.988735,0.173501,0.163303,0.9712,0.152923,0.214533,0.964671,0.640459,0.372069,0.671846,0.785178,0.262824,0.560731,0.445884,0.497826,0.74388,0.651243,0.41767,0.633589,0.151852,-0.827595,0.540395,-0.0184395,-0.578385,0.815555,0.15397,-0.663318,0.732327,0.275077,-0.646551,0.71155,-0.176151,-0.300969,0.937224,-0.187716,-0.278721,0.941848,0.0806597,-0.391903,0.916464,-0.1925,-0.25176,0.948452,0.618782,0.256619,0.742465,-0.85484,0.091346,0.510789,0.291845,0.0701582,0.953889,0.294364,0.08551,0.95186,-0.0331337,0.0558243,0.997891,0.011287,0.0111355,0.999874,0.310059,0.206668,0.927983,-0.115087,0.239326,0.964095,-0.168713,0.447572,0.878189,0.143605,0.55056,0.822351,0.0509968,-0.308834,0.949748,-0.0478496,-0.251857,0.966581,0.205616,-0.0640695,0.976533,0.0419364,-0.00544913,0.999106,-0.112881,-0.238981,0.964441,-0.193522,-0.226556,0.954579,0.00409168,-0.179062,0.983829,0.0257089,0.981525,0.189599,-0.0508094,0.781489,0.621847,0.123758,0.961148,0.246735,0.174695,0.528886,0.830519,0.120783,0.748289,0.652284,0.100699,0.1192,0.987751,0.228071,0.616483,0.753613,-0.135612,-0.903383,0.406826,0.368364,-0.643388,0.671089,-0.611089,-0.791505,-0.00951552,0.166246,-0.327887,0.929974,0.223644,0.268916,0.936839,0.0715229,0.172386,0.982429,0.145624,0.127942,0.981032,0.356416,-0.228622,0.905925,-0.0422574,0.186583,0.98153,0.300295,-0.447976,0.842105,0.232899,-0.399026,0.886869,0.385716,-0.466887,0.795764,0.228688,-0.702528,0.673911,0.186919,-0.667736,0.720548,0.436524,0.69102,0.57614,0.534538,0.490126,0.68851,0.455499,0.68785,0.56514,0.67339,0.145088,0.72491,0.632383,0.116437,0.765855,0.644436,0.221501,0.731874,0.47927,0.0719199,0.874716,0.172153,0.322395,0.930819,0.395134,0.341688,0.852712,0.200857,0.0431377,0.97867,0.231833,-0.283952,0.930389,0.170947,0.632124,0.755775,0.387976,0.667014,0.636056,0.254185,-0.364317,0.895915,0.51918,-0.0834488,0.850581,0.597761,0.256396,0.759568,0.467065,-0.142067,0.872736,0.472908,-0.471479,-0.744356,0.436201,-0.546426,-0.714946,0.984415,-0.11823,0.130185,-0.477972,-0.749323,-0.458321,-0.407544,-0.589699,-0.697254,-0.590348,-0.596699,-0.543544,-0.563547,-0.813637,-0.14286,-0.0616018,-0.922021,-0.382207,0.669708,-0.280785,0.687496,0.484768,-0.508513,0.711628,0.282396,-0.678962,0.67769,0.992889,0.0454962,0.11001,0.975072,0.0289068,0.219999,0.92143,-0.230567,0.312739,0.927013,-0.166626,0.335982,0.924044,-0.266394,0.274184,0.876992,-0.191438,0.440723,0.984679,-0.171464,-0.0317269,0.409836,0.837728,0.360898,-0.270112,0.685283,0.676333,-0.634757,0.757084,0.154618,-0.107364,0.95881,-0.262977,0.394787,0.327602,-0.858383,0.727371,0.226915,-0.647643,0.0860362,0.679356,-0.728747,-0.25932,0.339028,-0.90433,0.936606,-0.124719,0.327435,0.987536,-0.156727,0.0144928,0.6717,-0.325923,0.665277,0.675643,-0.528798,0.513692,0.651603,-0.23392,0.721592,0.819292,-0.136501,0.556892,0.918395,-0.200616,-0.341033,0.961141,-0.178105,-0.21092,0.926098,-0.290391,-0.240865,0.781952,-0.212798,0.585891,0.989503,-0.144511,0.00067269,-0.772072,0.314626,-0.552191,-0.77655,0.467521,-0.422367,-0.638837,0.267891,-0.721195,-0.553174,0.0950176,-0.827629,-0.588243,-0.805278,0.07414,-0.161584,-0.977174,0.13792,0.325527,-0.94375,-0.0580386,-0.178361,-0.867142,-0.46503,0.710703,-0.122745,0.692702,0.813668,-0.0763451,0.576295,0.801249,-0.0906926,0.591417,0.888824,-0.105578,0.445921,0.944518,-0.261913,0.198209,0.91503,-0.26085,0.307697,0.86225,-0.0658669,0.502181,0.932604,0.197263,0.302218,0.834921,-0.0964941,0.541844,0.927407,-0.271343,0.257466,0.962851,-0.270014,0.00326538,-0.873464,0.472687,-0.116737,0.917538,-0.388049,-0.0868419,0.870304,-0.492403,0.010478,0.840442,-0.389871,0.376374,0.48052,-0.76647,0.426173,0.542378,0.129917,0.830029,0.552161,0.412298,0.724658,-0.0490848,-0.00199537,0.998793,-0.219953,-0.0924212,0.971123,0.468741,-0.26592,0.842359,0.231396,-0.106051,0.967062,0.551654,-0.384221,0.740306,0.105931,-0.410501,0.905686,-0.0148358,-0.293936,0.95571,-0.178581,-0.185121,0.966354,0.0567947,-0.863084,0.501857,0.815251,-0.575151,0.0675859,0.880688,-0.442185,0.169885,0.958068,-0.285743,-0.0213582,0.896394,-0.433517,-0.0924184,0.987845,-0.154795,0.0141493,0.992289,-0.0916495,0.0834388,0.58943,0.362218,0.72206,0.980384,-0.149787,0.128106,0.20605,0.154411,0.966282,0.38084,0.152698,0.911945,0.248914,0.236653,0.939168,0.138213,0.183702,0.973217,0.189037,0.183986,0.96458,0.201856,0.107232,0.973527,0.320087,0.120922,0.939639,0.592368,0.195352,0.781625,0.668867,0.219914,0.710109,0.712238,0.254178,0.654302,0.504567,-0.0779302,0.859848,0.768205,0.115761,0.629651,0.993265,-0.0583395,0.100103,0.929513,-0.0435013,0.366215,0.99969,-0.0154148,0.0195356,0.966769,-0.2532,0.0353151,0.241421,-0.0808603,0.967046,0.425111,-0.139234,0.894368,0.255652,-0.0215085,0.96653,0.836687,-0.290514,0.464281,0.847656,-0.226615,0.479713,0.537443,-0.155707,0.828801,0.811469,-0.392155,0.433281,0.810876,-0.220783,0.541973,0.889655,-0.222526,0.398744,0.831839,-0.22585,0.506987,0.687355,-0.403284,0.604074,0.749711,-0.433377,0.500118,0.715464,0.0725363,0.694874,0.533029,0.108354,0.83913,0.621246,0.235764,0.747307,0.534933,0.311349,0.785435,0.582663,0.282747,0.761943,0.534824,0.327428,0.778944,0.718964,-0.246165,0.649995,0.68179,-0.293595,0.670048,0.567463,-0.287702,0.771501,0.641181,-0.34048,0.687721,0.280116,0.14049,0.94963,0.303892,0.171673,0.937111,0.346433,0.0891311,0.933831,0.426892,0.0360514,0.903584,0.461611,-0.115151,0.879577,0.565983,-0.167015,0.807322,0.298063,0.182554,0.936927,0.754662,0.454093,0.473587,0.288348,0.286499,0.91366,0.933543,-0.187056,0.305791,0.959136,-0.168838,0.227049,0.929898,-0.205203,0.305256,0.932763,-0.185764,0.30894,0.935165,-0.198098,0.293638,0.958881,-0.16779,0.228898,0.397413,-0.113473,0.910597,0.19235,-0.040464,0.980492,0.0239172,0.662383,0.748783,-0.0361726,0.241734,0.969668,0.0380366,0.0420581,0.998391,0.264753,-0.150794,0.952453,0.385355,-0.221899,0.895691,0.105156,-0.056249,0.992864,0.773943,0.257335,0.578612,0.761633,-0.308382,0.569926,0.208235,-0.405667,0.889985,0.171874,-0.386309,0.906214,0.819555,0.321694,0.474175,0.810764,0.401717,0.425776,0.450562,-0.27508,0.849309,0.534837,-0.23246,0.81235,0.787453,-0.436775,0.434908,0.734239,-0.668515,0.11824,0.74432,-0.667744,-0.0103078,0.747741,-0.124621,0.652191,0.979707,-0.157568,0.123878,0.990418,-0.138034,0.00436813,0.998079,0.0296352,-0.0543988,0.87353,-0.409893,-0.262552,0.325683,-0.72322,-0.609002,0.587633,0.372504,0.718282,0.550832,0.382572,0.74177,0.953088,0.0100951,-0.302525,0.945929,0.0888871,-0.311956,0.885745,0.156501,-0.436994,0.987996,0.0600329,-0.142336,0.867609,0.356739,-0.346398,0.266025,-0.664698,-0.698145,0.382707,-0.804277,-0.454615,-0.122612,-0.592099,-0.796483,0.809721,0.579499,-0.0923688,-0.458988,0.466291,0.756243,-0.632853,0.477386,0.60959,0.871904,-0.477868,0.10689,0.655285,-0.752426,-0.0667564,0.868748,-0.365317,0.334397,-0.730598,0.551289,0.402874,-0.689967,0.515623,0.508014,-0.796267,0.512437,0.321509,-0.886485,0.453978,0.0897098,0.973978,-0.0618403,0.218044,0.316153,-0.930874,-0.183089,0.87525,-0.264167,0.405159,0.848025,-0.177319,0.499412,0.836152,-0.0903729,0.541001,0.873067,0.035249,0.486325,0.966278,-0.0607695,0.250227,0.9816,-0.0738413,0.176096,0.995167,0.000951196,0.098194,0.83561,0.396453,0.380239,0.795726,-0.605648,0.0032284,0.992972,0.0652075,0.0987679,0.757443,-0.598053,0.261941,-0.238396,-0.165299,0.956997,-0.27871,-0.713918,-0.642372,-0.376251,-0.564829,-0.734441,0.881041,-0.235348,0.410338,-0.355089,-0.515808,-0.77965,0.919542,-0.327167,0.217724,0.844198,-0.507803,0.171653,0.359797,0.605216,0.710113,0.288949,0.659433,0.694015,0.277623,0.475829,0.834573,-0.0825018,-0.752627,0.653258,0.247888,-0.647139,0.720945,0.0725121,-0.734553,0.674666,-0.0034692,-0.613618,0.789595,0.27498,-0.587084,0.761393,0.198509,0.662648,0.722143,0.120259,0.788616,0.603011,-0.0548797,0.835102,0.547351,-0.0338957,0.709674,0.703714,-0.651139,-0.752022,0.102375,-0.582913,0.785133,0.209233,0.141662,-0.843512,0.518092,0.00706625,0.557372,0.830233,0.006642,-0.829646,0.55825,-0.00960943,0.998433,0.0551242,0.0584223,0.943106,0.32732,0.270599,0.807802,0.523672,-0.00315717,-0.923689,0.383129,-0.102462,-0.972019,0.211375,-0.00431836,-0.861153,0.508328,0.198801,-0.858868,0.472042,0.271599,-0.683022,0.678023,0.372771,0.714571,0.591971,0.274423,0.878633,0.390764,-0.14164,-0.54219,0.828232,0.174011,-0.983511,-0.0492567,-0.200552,-0.870377,0.449692,0.525329,0.733994,-0.430445,-0.0660335,0.994241,0.084404,-0.167321,-0.844479,0.508783,0.208571,-0.973524,-0.0935334,0.0491274,-0.998204,-0.0342911,-0.102235,-0.882758,0.45857,-0.101191,-0.883104,0.458135,-0.296359,0.915465,0.272206,0.223725,0.878217,-0.422708,-0.00106384,0.989586,-0.14394,-0.0645229,0.889336,0.45268,-0.237972,0.901035,0.362637,0.158126,-0.97203,-0.173649,-0.0483729,0.983682,-0.173293,0.0766897,-0.961901,-0.262423,-0.0261852,0.976101,-0.215734,0.820713,-0.56593,-0.0784495,0.0874828,-0.993628,0.0710711,0.371279,0.878805,-0.299756,0.912037,0.262356,-0.315212,-0.2844,-0.8086,0.515056,0.0237799,-0.995135,0.0956092,0.0259255,-0.982543,0.18422,-0.10585,-0.978032,0.17958,0.140255,-0.988571,-0.0552729,-0.200426,0.953026,0.22709,0.000748125,0.996809,0.0798237,0.0801189,-0.989189,0.122824,-0.0943583,0.995434,-0.0143987,0.0133211,-0.999199,-0.0377387,0.00488709,0.989386,-0.145229,-0.158058,0.987415,0.0054094,0.085598,0.950242,-0.299521,0.125231,0.960586,-0.248175,-0.282573,-0.888206,0.362273,-0.479479,-0.829834,0.285439,-0.259735,-0.961532,0.0894069,-0.908664,0.110909,0.402528,-0.968968,-0.0634772,0.238897,-0.879448,-0.0862822,0.46811,-0.790732,0.208229,0.575658,-0.178492,-0.400383,0.898796,-0.13708,-0.211998,0.967608,-0.388787,-0.532833,0.75162,-0.636014,0.195328,0.746548,-0.120285,-0.892677,0.434349,-0.532355,-0.750023,0.392508,-0.596542,-0.762855,0.249379,-0.224168,-0.942529,0.247765,-0.470339,0.218638,0.854973,-0.603428,0.215379,0.76778,-0.5565,-0.0611105,0.828597,-0.581878,0.0857315,0.808745,-0.187738,-0.207203,0.960115,-0.442959,0.143536,0.884977,0.424899,0.798371,0.426691,-0.110708,0.220964,0.968978,-0.301776,0.299232,0.905202,-0.539603,0.319486,0.778946,-0.800986,0.313329,0.510144,-0.776275,-0.536403,0.331162,0.0292806,0.432142,0.90133,-0.262601,-0.743473,0.615052,-0.3278,-0.641966,0.693129,-0.137809,-0.665912,0.733191,-0.442792,-0.289211,0.8487,-0.417629,-0.27482,0.86606,-0.217917,-0.532677,0.817782,-0.637932,-0.094468,0.764276,-0.481404,0.054278,0.874817,-0.480567,0.153546,0.863411,-0.55428,-0.0987476,0.826452,-0.51896,0.479488,0.707653,-0.350985,0.324371,0.878403,-0.858164,-0.356276,0.369623,-0.0893995,-0.884611,0.457681,-0.870765,-0.486744,0.0696266,-0.78198,0.256584,0.568042,-0.896147,0.174949,0.407815,-0.805463,0.0597426,0.589627,-0.676709,-0.460122,0.574763,-0.832882,-0.0892989,0.546199,0.340197,0.412789,0.844909,-0.944987,-0.28751,0.156005,-0.854003,-0.519091,-0.0349753,-0.909442,-0.342579,-0.2357,-0.901617,0.100481,0.420702,-0.966686,-0.194679,-0.16619,-0.979237,-0.0951501,-0.179002,-0.947676,-0.310924,0.072362,-0.898877,-0.436781,-0.0352379,-0.982305,-0.0867011,0.166011,-0.0600721,-0.613238,-0.787611,0.635415,-0.497338,-0.59068,-0.993426,-0.0555815,0.100082,-0.999279,0.0054025,0.037591,-0.893922,0.0494314,0.445489,-0.894659,-0.241155,0.376071,-0.97056,-0.233992,0.0571028,-0.955611,-0.185414,0.228976,-0.924107,-0.256452,0.283298,-0.934745,-0.248433,0.254031,-0.809865,0.453553,0.372034,-0.930517,-0.215925,-0.295829,-0.971104,-0.103473,0.215058,-0.984444,0.0655165,0.163025,-0.944046,0.0102526,0.329654,-0.96471,-0.180255,0.191945,-0.961298,-0.130948,0.242401,-0.95409,-0.22212,0.200935,-0.9612,-0.0262485,0.2746,-0.445719,-0.888282,0.110861,-0.465609,-0.489226,0.737473,-0.917289,-0.386593,-0.0955367,-0.930326,-0.339542,-0.138581,-0.9174,-0.391564,-0.071091,-0.460404,-0.0477687,0.886423,-0.339876,-0.611356,0.714652,-0.929979,-0.361429,-0.06714,-0.967235,-0.250978,0.0382892,-0.943463,-0.328351,0.0454284,-0.990859,-0.134854,-0.00357849,-0.988011,-0.147858,0.0444018,-0.982708,-0.114901,0.145202,-0.987,-0.130884,-0.0932763,-0.601528,0.178704,0.778607,-0.673661,0.0446606,0.73769,-0.238304,-0.179131,0.954528,-0.174273,-0.335752,0.925689,-0.651695,-0.0547986,0.756499,-0.641113,0.0879259,0.762393,-0.634596,-0.708886,0.307847,-0.768948,-0.140771,-0.62362,-0.888694,-0.100923,-0.447255,-0.841288,-0.226784,-0.490717,-0.815922,0.454589,0.357239,-0.690449,0.467213,0.552261,-0.710851,0.593705,0.3771,-0.98092,-0.0763382,-0.178799,-0.779502,-0.0547517,-0.624002,-0.979961,-0.198016,-0.0216064,-0.816509,-0.307798,-0.488439,-0.746458,-0.432256,-0.505921,-0.97115,-0.237717,-0.0189001,-0.806145,-0.108589,0.581669,-0.889001,-0.150071,0.432615,-0.156709,-0.317831,-0.935107,-0.0175326,0.795329,0.605925,-0.813604,0.255184,0.522427,-0.0390182,-0.432254,-0.900907,-0.741639,-0.637004,-0.21023,-0.945666,-0.32084,0.0526926,-0.963822,-0.262206,-0.0479048,-0.798642,-0.45439,-0.39459,-0.870226,-0.28441,0.402266,-0.926433,0.115906,0.358172,-0.680616,-0.68348,-0.26385,-0.690535,-0.694248,0.202932,0.184462,-0.982103,-0.0380333,-0.890944,0.22123,0.39658,-0.852238,-0.0912492,0.515135,-0.947933,-0.0992058,0.302624,-0.29378,0.179525,0.938863,-0.883672,-0.296401,0.362312,-0.87203,-0.439644,-0.215121,-0.954825,-0.296794,0.0149492,-0.93113,-0.174046,-0.320475,-0.871043,-0.437455,0.223421,-0.973887,-0.146569,0.173384,-0.834884,-0.0979678,0.541637,-0.978514,-0.0869051,0.186971,-0.922031,-0.263136,0.283934,-0.760953,-0.0585607,0.646158,-0.78504,-0.179319,-0.592923,-0.83103,0.497487,-0.248788,-0.838522,-0.269022,-0.473822,-0.959439,-0.281806,-0.00788978,-0.984423,-0.175814,6.58419e-05,-0.939515,-0.168996,-0.297912,-0.97665,-0.144782,0.15872,-0.884175,-0.203897,-0.420311,-0.14626,0.213708,0.965887,-0.0833281,0.0403623,0.995704,-0.146324,0.00998168,0.989186,-0.473943,0.0931637,0.875614,-0.84901,-0.0549241,0.525515,-0.594771,-0.056526,0.801905,-0.665166,-0.203659,0.718385,-0.164903,0.0176348,0.986152,-0.756,-0.00859161,0.654515,-0.620258,0.0627802,0.781881,-0.419059,-0.144268,0.896424,-0.286453,-0.405327,0.868133,-0.435851,0.0493194,0.898667,-0.043504,-0.887583,0.458588,-0.884106,0.10867,0.454476,-0.851068,0.473005,0.227924,-0.986567,0.114779,0.116238,-0.836951,0.516768,0.180178,-0.898302,0.351333,0.263853,-0.372885,-0.719111,0.586376,-0.528707,0.00170279,0.848803,-0.115552,0.971028,0.20917,-0.973968,-0.220833,0.0511667,-0.970558,-0.23122,-0.067481,-0.955769,-0.291708,-0.0375729,-0.949775,0.00963153,0.312786,-0.850251,-0.0633939,0.522545,-0.87606,-0.159988,0.454887,-0.759766,-0.116491,0.639677,-0.806617,-0.310825,0.502748,-0.932157,-0.0446444,0.359291,-0.991027,0.0102793,0.133264,-0.991943,0.0607472,0.111166,-0.922102,-0.367134,-0.122234,-0.889737,-0.441564,-0.115714,-0.836566,-0.547808,-0.00799088,-0.907102,-0.420222,0.0240512,-0.978665,0.0644594,0.195089,-0.990276,0.0260147,0.136664,-0.917204,0.0894058,0.388256,-0.91286,0.104394,0.394701,-0.987066,0.0225359,-0.15872,-0.997408,0.047283,-0.0542322,-0.973809,0.201086,-0.10611,-0.969308,0.137485,-0.203816,-0.109183,-0.709422,0.696276,-0.339906,-0.749953,0.56748,-0.467166,-0.435941,0.769228,-0.230556,-0.479763,0.846565,-0.905064,-0.26899,-0.329397,-0.912514,-0.204666,-0.354162,-0.952781,-0.269995,-0.138963,-0.876066,-0.326305,-0.355012,-0.869735,-0.298959,-0.392662,-0.94404,-0.302958,0.130406,-0.959857,-0.221607,0.171943,-0.930737,-0.341537,-0.130698,-0.179472,-0.403873,0.897038,-0.404258,-0.298744,0.864481,-0.397632,-0.656617,0.640892,-0.129985,-0.792898,0.595329,-0.563216,-0.229428,0.79382,-0.576446,-0.61735,0.535341,-0.180731,-0.0463982,0.982438,-0.0770098,-0.936245,0.342803,-0.0876257,-0.989915,0.111309,-0.670266,0.311603,0.673533,-0.644808,0.380031,0.663174,-0.397213,0.332142,0.855513,-0.414921,0.228647,0.88066,-0.757586,-0.213216,0.61693,-0.496071,-0.140255,0.856879,-0.38368,0.0724503,0.92062,-0.717226,-0.179745,0.673259,-0.886374,-0.205284,0.41497,-0.594664,0.0346693,0.803227,-0.863981,0.172147,0.473183,-0.941972,0.107893,0.317879,-0.582221,-0.190674,0.790356,-0.77194,-0.231492,0.592048,-0.391696,0.532732,0.750181,-0.441397,0.537478,0.718531,-0.359843,0.407938,0.839107,-0.538959,0.40407,0.739088,-0.511379,0.281559,0.811921,-0.296917,0.306908,0.904239,-0.0884169,-0.975699,0.200485,-0.900553,-0.232478,0.367368,-0.884153,-0.308813,0.350582,-0.687506,-0.496172,0.530235,-0.760813,-0.52319,0.383975,-0.711582,-0.665886,0.224157,-0.599701,-0.785371,0.153462,-0.589364,-0.80391,0.0798669,-0.676795,-0.736045,0.0136633,-0.681024,-0.721607,0.124456,-0.494001,0.496086,0.714046,-0.727357,0.423875,0.539705,-0.746477,0.468799,0.472229,-0.361219,0.0257772,0.932124,-0.105268,0.11415,0.987871,-0.339653,-0.296316,0.892655,-0.69829,-0.664063,0.26723,-0.683279,-0.62641,0.375154,-0.487575,0.391182,0.780543,-0.600447,-0.028114,0.79917,-0.407922,0.427432,0.806785,-0.481549,-0.489776,0.726795,-0.299291,-0.0205941,0.95394,-0.337225,0.378081,0.862168,-0.466478,-0.165144,0.86898,-0.716219,-0.0525752,0.695892,-0.391559,-0.718079,0.575364,-0.370698,-0.754321,0.541833,-0.506287,-0.219644,0.833924,-0.481534,-0.130618,0.866639,-0.474617,-0.284999,0.832775,-0.485672,-0.19009,0.853223,-0.451553,-0.0322872,0.89166,-0.482136,0.0809546,0.872348,-0.150024,0.244799,0.957897,-0.13102,0.323073,0.937261,-0.673406,0.396068,0.624223,-0.923526,0.19219,0.331907,-0.996987,0.0741107,0.0228855,-0.947679,0.313549,0.0599301,-0.377282,0.345903,0.859074,-0.936355,-0.335992,0.101728,-0.0104086,0.349153,0.937008,-0.0905484,0.349782,0.932445,-0.336246,0.145176,0.930518,-0.390538,0.289445,0.8739,-0.314583,-0.526435,0.789876,-0.339752,-0.320174,0.88434,-0.117361,-0.293841,0.948622,-0.0868172,-0.620776,0.779166,-0.515297,-0.240282,0.822638,-0.41584,-0.511138,0.752207,-0.81562,0.48877,0.309625,-0.565505,-0.293138,0.770891,-0.817522,0.107181,0.565836,-0.876918,0.0952898,0.471099,-0.791029,-0.0214435,0.611403,-0.660864,0.249016,0.70799,-0.650392,0.29207,0.701203,-0.46863,0.306824,0.828399,-0.796525,0.180592,0.577005,-0.80892,0.186422,0.557579,-0.431981,0.247331,0.867306,-0.620147,0.242864,0.745945,0.0388797,-0.249023,0.967717,-0.119564,-0.374635,0.919431,-0.152398,-0.261551,0.953082,-0.0452747,-0.0683612,0.996633,-0.627428,0.388161,0.67503,-0.422772,0.447439,0.788075,-0.333358,0.29056,0.89691,-0.193232,0.227198,0.954485,-0.143712,0.189079,0.971389,-0.195652,0.127124,0.972399,-0.26022,0.17877,0.948855,-0.655388,0.341809,0.673523,-0.678655,0.083025,0.729749,-0.761803,0.19942,0.61635,-0.495016,-0.0380501,0.86805,-0.268234,-0.100485,0.958099,-0.394482,0.046915,0.917705,-0.692948,-0.112975,0.712081,-0.728876,-0.11171,0.67547,-0.360477,-0.403897,0.840788,-0.368468,-0.415576,0.831582,-0.183106,-0.384057,0.904971,-0.150622,-0.326471,0.933129,0.0492303,-0.265507,0.962851,0.015314,-0.365179,0.930811,0.141605,-0.315691,0.938236,0.170706,-0.245584,0.954226,0.122626,-0.307161,0.943724,0.152615,-0.263864,0.95241,0.0215626,-0.142145,0.989611,0.14283,-0.267675,0.952864,-0.529605,-0.246126,0.811751,-0.643123,0.274039,0.715049,-0.00615337,-0.964328,0.26464,0.129796,-0.970238,0.204427,0.41583,-0.909136,0.0236063,-0.0404894,0.468443,0.882565,0.689897,-0.688738,0.222893,0.741567,-0.637841,0.207934,-0.233798,0.0737117,0.969487,-0.618356,-0.223931,0.753319,-0.469969,-0.0741722,0.879561,-0.131882,0.0392819,0.990487,-0.474175,0.13261,0.870386,0.118101,0.180227,0.976509,-0.0286448,0.307949,0.950971,-0.251716,0.214333,0.943769,-0.527566,0.248904,0.812232,-0.245408,-0.274809,0.929653,-0.0198932,-0.326858,0.944864,0.00496969,-0.18992,0.981787,0.192126,-0.210122,0.958612,0.0757977,-0.149924,0.985788,0.105798,-0.266182,0.958099,-0.145324,0.287097,0.946814,-0.455238,0.237224,0.858186,0.049048,0.974039,0.221002,-0.0585226,0.52323,0.85018,0.139977,0.399622,0.90593,-0.188058,0.892716,0.409503,-0.109598,0.979848,0.166989,-0.0697483,0.52774,0.846538,-0.547635,-0.578401,0.604606,-0.35058,0.295517,0.888687,-0.659068,-0.174016,0.731675,-0.214966,-0.771283,0.599093,-0.0817741,-0.221294,0.971773,-0.187097,-0.220474,0.957281,-0.0601943,0.0995568,0.993209,-0.0874489,0.151006,0.984657,-0.342162,-0.297087,0.89144,0.0224891,0.115007,0.99311,-0.21021,-0.255303,0.943733,-0.187941,0.0385758,0.981422,-0.308466,-0.268945,0.912424,-0.268887,-0.569191,0.776995,-0.186116,-0.552452,0.812501,-0.357167,-0.454016,0.816273,-0.333374,0.000226833,0.942795,-0.459363,-0.0292857,0.887766,-0.25887,-0.588027,0.766297,-0.521504,0.52652,0.671424,-0.609852,0.240079,0.755276,-0.513584,0.00419817,0.858029,-0.425932,0.235175,0.873656,-0.176539,0.227912,0.957544,-0.0998217,0.426887,0.898778,-0.361688,0.47537,0.802001,-0.220988,-0.121447,0.967686,-0.234791,-0.432038,0.870756,-0.163587,-0.646434,0.745226,-0.329556,0.234155,0.914639,-0.428416,-0.466114,0.774078,-0.473739,-0.294213,0.830066,-0.647931,-0.253127,-0.718409,-0.758434,0.0587244,-0.649098,-0.92819,-0.0778043,-0.363881,-0.887388,-0.229208,-0.400007,-0.997066,-0.0717071,-0.026782,-0.992033,-0.0609999,-0.110224,-0.996985,0.00221765,-0.0775678,-0.826326,0.551753,0.112934,-0.687843,-0.454543,-0.565917,-0.75166,-0.451385,-0.480894,-0.578566,-0.429279,-0.693528,-0.856774,-0.350881,-0.377915,0.377814,0.253448,-0.890517,-0.151648,-0.230104,-0.961278,0.0682714,-0.495261,-0.866058,-0.0774811,-0.443679,-0.89283,0.0948229,-0.750831,-0.653652,0.609003,-0.765995,-0.205833,-0.895834,-0.105986,0.431566,-0.980133,-0.196199,-0.0290858,-0.978298,-0.203661,-0.0381387,-0.967693,-0.230552,-0.102064,-0.962527,0.269874,0.0266279,0.483359,0.836092,0.25945,0.0884518,0.0323048,-0.995556,0.0759094,0.940971,0.329865,-0.574935,0.707209,0.411468,0.843064,0.535996,-0.0441761,-0.986206,-0.161657,0.0355784,-0.835704,-0.314254,0.450382,-0.852585,-0.181607,0.490018,0.0786763,0.667121,-0.740783,-0.696559,0.585443,-0.414804,-0.133467,-0.514657,-0.846945,-0.726101,0.0487659,0.685857,0.404733,0.899782,-0.163043,-0.869228,0.481947,-0.110318,-0.923435,-0.340308,0.177366,-0.833236,-0.116501,0.540504,-0.212881,0.667705,0.713339,-0.158289,0.44952,0.879134,-0.138366,0.312418,0.939814,-0.282442,0.291258,0.914,-0.32597,-0.912106,0.248608,-0.544218,0.284483,0.789238,-0.102842,0.246417,0.963692,-0.0800271,0.051612,0.995456,-0.279044,0.0382343,0.959517,-0.381018,0.609498,0.695225,-0.245132,0.163955,0.955526,-0.212651,-0.194569,0.957561,-0.000775721,-0.886652,0.462437,0.0915505,0.039842,0.995003,0.167467,-0.0923973,0.981538,-0.546053,0.562291,0.621011,-0.554782,0.710801,0.43241,0.0471543,-0.965033,0.257853,-0.205462,0.0732276,0.975922,-0.68353,0.28198,0.673256,-0.391295,-0.356818,0.848274,-0.185438,-0.247245,0.951043,0.0149532,-0.923818,0.382541,-0.510513,-0.00192821,0.859868,-0.833373,0.258012,0.488793,-0.439706,-0.534699,0.721634,-0.442512,-0.520694,0.73011,0.00424885,-0.889602,0.456717,-0.669917,-0.192213,0.717123,-0.142721,-0.423629,0.894522,-0.950491,-0.304857,-0.0602356,-0.995736,0.0702437,-0.0597986,-0.987118,0.0609786,-0.147918,-0.918564,-0.0727297,-0.388524,-0.864877,-0.244593,-0.438362,-0.976131,0.0584944,-0.209159,-0.947583,0.043513,-0.316534,-0.851372,-0.339685,-0.399725,-0.277441,-0.94503,0.173048,-0.450525,-0.870879,0.196463,-0.774879,-0.614647,0.147552,-0.927692,0.231592,0.292835,-0.194971,0.84635,0.495659,-0.376901,0.776222,0.505395,-0.555849,-0.418579,0.718208,-0.837927,-0.448593,0.310875,-0.30439,0.332231,0.892732,-0.51554,0.207725,0.831306,-0.327318,0.347443,0.878719,-0.450836,0.367373,0.813501,-0.433387,0.308716,0.846682,-0.501952,-0.126079,0.855657,-0.439571,-0.245652,0.863963,-0.899302,-0.407452,-0.158863,-0.979137,-0.200883,-0.0305951,-0.984408,-0.17568,0.0087834,-0.991147,-0.0177326,0.13158,-0.986018,-0.13264,0.100869,-0.605979,0.36755,0.705476,-0.977899,-0.173734,0.116323,-0.979545,-0.177338,0.0950886,-0.787033,0.297599,0.540382,-0.929148,-0.347426,0.126408,-0.791605,-0.388216,0.471857,-0.421141,-0.0266248,0.906604,-0.779225,-0.265162,0.567889,-0.621544,-0.206306,0.755726,-0.745973,-0.332063,0.577286,-0.896988,-0.220022,0.383409,-0.611308,-0.287197,0.737441,-0.673854,-0.373803,0.637332,-0.478189,0.250214,0.84186,-0.48878,0.273323,0.828486,-0.617014,-0.242847,0.748545,-0.535453,-0.298673,0.78999,-0.367385,-0.0554289,0.928416,-0.169409,0.0716586,0.982937,-0.760389,0.370656,0.533313,-0.960238,-0.193581,0.201169,-0.959232,-0.173561,0.223049,-0.296458,-0.302172,0.905983,-0.284194,-0.297924,0.911304,-0.455246,0.365478,0.811897,-0.772733,-0.355217,0.526027,-0.737422,-0.517567,0.433974,-0.707007,-0.17974,0.683985,-0.727257,-0.235728,0.644616,-0.383113,-0.228694,0.894943,-0.778289,-0.608909,0.153284,-0.779322,-0.626505,-0.0122279,-0.875026,-0.482182,-0.0427812,-0.885519,-0.424512,0.188802,-0.951388,-0.162976,0.261341,-0.960158,0.12739,-0.248735,-0.959179,-0.28199,-0.0213664,-0.975104,0.0319945,-0.219427,-0.595689,-0.62053,0.509997,-0.651342,-0.347008,0.674788,-0.499967,-0.0928612,0.861052,-0.97716,0.188428,0.0982459,-0.886309,0.00703197,-0.463041,-0.902751,0.0467234,-0.427618,-0.919702,-0.0508582,-0.38931,-0.200447,0.94718,0.250341,-0.371674,0.890606,0.262066,-0.143837,0.948813,-0.281183,-0.209529,0.740061,-0.639067,-0.37556,0.744308,-0.552232,-0.40021,0.891612,-0.2118,-0.166064,0.524904,-0.834804,-0.398767,0.471861,-0.786341,-0.384537,0.920851,0.0645292,-0.179056,0.982636,0.0486331,-0.218094,0.27878,-0.935263,-0.389164,0.26427,-0.882447,-0.19917,0.0653085,-0.977786,-0.375761,0.0510363,-0.92531,-0.344141,-0.165873,-0.92415,-0.161958,-0.161391,-0.973511,-0.0550363,-0.282542,-0.957675,-0.248338,-0.26095,-0.932863,-0.0810752,-0.14281,-0.986424,-0.298324,-0.15715,-0.941439,-0.00955127,-0.190104,-0.981718,-0.255562,-0.188604,-0.948218,-0.541482,0.813999,0.210247,-0.717043,0.667359,0.201199,-0.721119,0.515726,-0.462617,-0.568623,0.631622,-0.526992,-0.582998,0.425638,-0.692059,-0.680245,0.340859,-0.648908,-0.746828,0.643228,-0.168836,-0.607796,0.755861,-0.243431,-0.719066,0.694632,0.0207431,-0.574339,0.818352,0.0208442,-0.679758,0.189996,-0.7084,-0.544091,0.223421,-0.808733,-0.532301,0.0300326,-0.846022,-0.672545,-0.012952,-0.739943,-0.716299,-0.143129,-0.682957,-0.525081,-0.127479,-0.841451,-0.449083,-0.233387,-0.86247,-0.683237,-0.229426,-0.693218,-0.514929,-0.219962,-0.828532,-0.718488,-0.065786,-0.692421,-0.543702,-0.126026,-0.829762,-0.865216,0.475914,-0.157818,-0.859874,0.407241,-0.30785,-0.929785,0.261815,-0.258753,-0.93479,0.335505,-0.11664,-0.933279,0.352047,0.0710856,-0.84194,0.539572,0.00040863,-0.781895,0.0839922,-0.617726,-0.820046,0.269297,-0.504978,-0.786239,-0.162459,-0.596184,-0.764724,-0.0735176,-0.64015,-0.824184,-0.213902,-0.524373,-0.950405,0.120945,-0.286535,-0.784831,-0.200914,-0.586237,-0.814617,-0.237747,-0.529032,-0.854152,-0.0833034,-0.513307,-0.810121,-0.100213,-0.577634,-0.906898,0.0461241,-0.418818,-0.874223,0.0754682,-0.479623,-0.916674,0.187961,-0.352676,-0.88549,-0.231373,-0.402956,-0.847886,-0.316928,-0.425026,-0.838574,-0.252444,-0.482769,-0.962438,0.220034,-0.159055,-0.679318,0.494685,-0.542047,-0.936709,0.350103,0.00185754,-0.526942,0.826281,-0.198979,-0.0964554,0.654369,0.749998,0.573813,0.61565,0.540106,0.813843,0.518769,0.261799,0.581309,0.481989,-0.655566,0.649326,0.665819,-0.367506,-0.871615,-0.0232155,0.489641,-0.969381,-0.19034,0.155149,-0.90484,-0.369365,0.21174,-0.941264,-0.1162,0.317049,-0.914069,0.0281332,0.404582,-0.835032,0.0577808,0.547159,-0.134992,-0.392862,0.909635,-0.0574076,-0.121553,0.990923,-0.182721,-0.80593,0.563107,-0.537022,-0.840849,0.0676798,-0.320933,-0.0542565,0.945547,-0.405555,-0.136826,0.903772,-0.574426,0.243764,0.781418,0.078561,0.900389,0.427934,-0.394623,0.342638,0.852568,-0.279261,0.289739,0.915459,-0.738975,-0.397568,0.543927,-0.909651,-0.212149,0.357109,-0.0325165,0.684774,0.72803,-0.131868,0.962746,0.236073,-0.211073,-0.825914,0.522795,-0.290355,-0.713052,0.638162,-0.0638685,-0.734013,0.676125,-0.431903,0.652077,0.623101,-0.52834,-0.0435448,0.847915,-0.242754,-0.711613,0.659301,-0.551198,-0.773053,0.313959,-0.871877,0.277114,0.403781,-0.755055,0.466671,0.460553,-0.860683,-0.0699599,0.504312,-0.873181,-0.125911,0.470852,-0.831783,-0.084445,0.54864,-0.847093,-0.0730326,0.526402,-0.921072,0.0667588,-0.383627,-0.989563,-0.090542,0.1121,-0.900664,0.426382,0.0836805,-0.851403,0.0899068,-0.516749,-0.720175,-0.196047,-0.665518,-0.981264,-0.149754,-0.121226,-0.983278,-0.127953,-0.129586,-0.993431,-0.108687,-0.0358188,-0.961772,-0.252843,-0.10519,-0.986083,-0.16488,0.0213242,-0.889312,-0.403799,0.21464,-0.963856,-0.19804,0.178216,-0.941478,-0.265519,-0.207653,-0.915248,-0.371308,-0.156367,0.222224,-0.418726,-0.880503,0.30619,-0.467032,-0.829535,-0.737815,-0.0310953,0.674286,-0.704761,-0.104858,0.701653,-0.801213,0.0603211,0.595331,-0.854647,-0.19501,0.481195,-0.931725,-0.22807,0.282617,-0.839166,-0.197555,0.506728,-0.786153,-0.146378,0.600448,-0.961931,-0.229198,0.148855,-0.979501,-0.198764,0.0327086,-0.954708,-0.249703,0.161804,-0.932358,-0.246665,0.264319,-0.907043,-0.196692,0.372271,-0.932082,-0.264889,0.247095,-0.94471,-0.257699,0.202767,-0.954205,-0.261296,0.145658,-0.948825,-0.259449,0.180046,-0.972426,-0.221032,0.0743822,-0.778598,0.496226,0.384115,-0.793468,0.270376,0.545257,-0.814432,0.558101,0.158818,-0.853693,-0.256239,-0.453375,-0.742029,-0.29747,-0.600753,-0.917224,-0.231697,-0.324063,-0.875874,-0.203884,-0.437351,-0.578277,-0.197369,-0.791606,-0.788369,-0.243262,-0.565065,-0.507247,-0.51793,0.688802,-0.437253,-0.588123,0.680384,-0.738587,-0.304814,0.601314,-0.695076,0.205633,0.6889,-0.553334,-0.14988,0.819364,-0.466326,-0.460473,0.755317,-0.702238,-0.670016,0.240708,-0.559055,-0.629836,0.539226,0.104453,-0.221757,0.969491,0.0838151,-0.241866,0.966683,-0.323473,-0.650724,0.686967,-0.99262,-0.121127,-0.00573442,-0.97966,-0.0782368,0.184785,-0.983924,-0.178316,0.00983127,-0.996835,-0.0710995,0.0355714,-0.993338,0.0956426,-0.0642769,-0.677772,0.0847306,0.730374,-0.565951,0.00586615,0.824418,-0.622972,0.0398477,0.781228,-0.692089,0.103524,0.71435,-0.915227,-0.259437,-0.308306,-0.912864,-0.341615,-0.223559,-0.469582,0.102791,0.876885,-0.728515,-0.0425952,0.683704,-0.331369,0.277087,0.901897,0.0783532,0.28196,0.956222,-0.64085,0.00327865,0.767659,-0.946276,-0.134253,0.294173,-0.909198,-0.203206,0.363409,-0.944617,-0.233022,0.231081,-0.997904,-0.0646709,-0.00247873,-0.932287,-0.0345481,0.360065,-0.845435,-0.169893,0.506335,-0.872492,-0.197513,0.44693,-0.856403,-0.132438,0.499033,-0.898925,-0.098798,-0.426817,-0.593205,-0.33811,-0.730609,-0.500968,-0.0235932,-0.865144,-0.200559,0.504218,0.839965,0.413294,0.529367,0.740918,0.132415,-0.384288,-0.913668,0.296564,-0.187307,-0.936464,-0.97645,-0.11148,0.184709,-0.985225,-0.124697,0.117398,-0.913903,-0.381469,-0.13879,-0.966166,-0.257618,0.0125308,-0.92843,-0.332274,-0.16617,-0.692971,-0.589182,-0.415519,-0.895103,-0.443554,-0.0452849,-0.926075,-0.214245,0.31062,-0.885492,-0.145965,0.441133,-0.964587,-0.196403,0.176062,-0.921096,-0.33621,0.19633,-0.724108,-0.688793,-0.035101,-0.837907,-0.540974,-0.072515,-0.295875,-0.862578,0.410386,-0.305985,-0.944048,0.123072,0.219183,-0.935862,0.275901,-0.240029,-0.763477,0.599575,-0.71553,-0.587934,0.377293,-0.934518,-0.110041,0.338478,-0.972409,-0.221442,-0.0733767,-0.868662,-0.0677171,0.490754,-0.7214,0.0817288,0.687679,-0.243299,0.332638,0.91113,0.216989,0.449303,0.866627,-0.564115,0.371528,0.737388,-0.968193,-0.198073,-0.152868,-0.882202,-0.304095,-0.359507,-0.88608,-0.289239,-0.362221,-0.854869,-0.455155,-0.249063,-0.954099,-0.174751,-0.243221,-0.967967,-0.240856,0.070909,-0.997275,-0.0703896,0.0221023,-0.99131,-0.12421,-0.0433234,-0.982402,-0.117997,0.144785,-0.0759089,0.119286,0.989954,0.0329311,0.0369987,0.998773,-0.786895,-0.0644923,0.613707,-0.446097,-0.0646434,0.892647,-0.336164,0.00470848,0.941792,-0.201171,-0.173877,0.964001,-0.368273,-0.164364,0.915074,-0.46659,-0.0510563,0.882999,-0.0634721,-0.47773,0.876211,-0.0395998,-0.537694,0.84221,-0.34674,-0.727365,0.592209,0.0193468,-0.328289,0.944379,0.887948,0.228719,0.399043,-0.598959,-0.0421072,0.799672,-0.464221,0.237591,0.853258,-0.380676,0.733413,0.563197,-0.848786,0.366471,0.381131,-0.936249,0.328642,0.124224,-0.305561,-0.71835,0.624984,-0.480316,-0.313928,0.818991,-0.950262,-0.138675,-0.278875,-0.92766,-0.258859,-0.269146,-0.399638,-0.483962,0.778505,-0.144108,-0.581924,0.800373,-0.603856,-0.38238,0.699388,-0.205972,-0.201181,0.957654,-0.601089,0.36737,0.70974,-0.669477,0.385678,0.634864,-0.500608,0.371194,0.782053,-0.472757,0.334263,0.815334,-0.602137,0.2594,0.755078,-0.607639,-0.107426,0.786915,-0.663047,-0.200788,0.721147,-0.408363,-0.0134812,0.91272,-0.54763,-0.0584268,0.834678,-0.732374,-0.186222,0.654942,-0.811146,-0.141297,0.567518,-0.824477,-0.213648,0.524015,-0.661265,-0.0747427,0.74642,-0.778059,-0.0338269,0.62728,-0.894383,-0.15457,0.419747,-0.919656,0.114858,0.375554,-0.970419,-0.0212453,0.24049,-0.667091,-0.20993,0.714786,-0.456441,0.507617,0.730744,-0.932624,-0.209601,0.293734,-0.921443,-0.289135,0.259505,-0.435154,0.542369,0.718663,-0.776604,0.430462,0.459987,-0.0120712,-0.00122471,0.999926,-0.122983,-0.0793793,0.989229,-0.126619,0.0615743,0.990038,-0.11422,0.0296716,0.993012,-0.794834,-0.598366,0.100977,-0.518003,0.292733,0.803729,-0.415226,0.366291,0.832717,-0.325279,-0.406324,0.85387,-0.292618,0.268897,0.917643,-0.68128,-0.296979,0.669074,-0.418796,-0.355865,0.835446,-0.47766,-0.203824,0.854574,-0.464807,-0.223438,0.856756,-0.73625,0.363334,0.570898,-0.972881,0.194245,0.125582,-0.85556,0.0307906,0.516788,-0.977509,0.0384391,0.207362,-0.978099,0.205995,0.0298026,-0.925338,0.360441,0.117608,-0.216074,0.136627,0.96677,-0.445926,0.243071,0.861433,-0.946678,0.311811,0.0810845,-0.987069,0.159825,0.0122744,-0.916022,0.375455,0.141198,-0.974744,-0.0868761,0.205733,-0.875096,-0.247175,0.416066,-0.996545,-0.0819999,0.0131751,-0.867313,0.466908,0.172524,-0.8136,0.490343,0.312439,-0.871955,0.366554,0.32455,-0.155925,0.199484,0.967416,-0.203167,0.242736,0.948579,-0.116764,0.109353,0.987121,-0.196212,0.160577,0.967324,-0.174505,0.216945,0.96046,-0.659595,0.34342,0.668579,-0.789454,0.256516,0.55764,-0.344919,0.520272,0.781248,-0.629086,0.427665,0.649118,-0.162727,-0.825161,0.540952,0.0112795,-0.575077,0.818022,-0.158669,-0.656999,0.737005,-0.2818,-0.640872,0.714053,0.166074,-0.290184,0.94245,0.184721,-0.265465,0.946259,-0.0426401,-0.348061,0.936502,0.189089,-0.237023,0.952925,-0.645463,0.191734,0.739335,0.856628,0.112136,0.503601,-0.300186,0.0665324,0.951558,-0.314845,0.0769508,0.946019,0.0204493,0.0716106,0.997223,-0.0269047,0.0222822,0.99939,-0.31388,0.206602,0.926712,0.0783536,0.256559,0.963347,0.124921,0.453384,0.882518,-0.229773,0.51125,0.828147,-0.125278,-0.324395,0.937589,-0.0243701,-0.272269,0.961913,-0.131774,-0.0693233,0.988853,-0.0572225,0.00927787,0.998318,0.0681966,-0.24965,0.965932,0.163908,-0.233807,0.958368,-0.0552023,-0.181578,0.981826,-0.0345691,0.980798,0.191939,0.0286076,0.777818,0.627838,-0.147978,0.95512,0.256611,-0.178715,0.519989,0.835268,-0.131263,0.741564,0.657916,-0.139256,0.103992,0.984781,-0.319318,0.598689,0.734579,0.1192,-0.906352,0.40536,-0.397651,-0.634746,0.662549,0.610231,-0.79215,-0.0108172,-0.159487,-0.289408,0.943826,-0.251332,0.276563,0.927548,-0.099595,0.18835,0.977039,-0.220666,0.14963,0.963803,-0.423755,-0.208581,0.881434,0.00691546,0.20439,0.978865,-0.294798,-0.448396,0.843822,-0.219965,-0.401676,0.888973,-0.373935,-0.467335,0.801106,-0.217917,-0.700979,0.679074,-0.16991,-0.674374,0.718575,-0.415661,0.739016,0.530172,-0.525645,0.529383,0.665921,-0.439422,0.730564,0.522671,-0.685103,0.12689,0.71731,-0.635081,0.11432,0.763939,-0.655766,0.203662,0.726975,-0.456783,0.0801024,0.885965,-0.141035,0.331837,0.932735,-0.370805,0.359815,0.856176,-0.156969,0.0541162,0.98612,-0.178273,-0.283839,0.942154,-0.152187,0.643289,0.750346,-0.373862,0.699605,0.608917,-0.268516,-0.404462,0.874248,-0.53922,-0.119624,0.833626,-0.608672,0.255058,0.751309,-0.43692,-0.143328,0.888008,-0.461919,-0.472709,-0.750451,-0.424658,-0.54652,-0.72179,-0.986085,-0.13169,0.101459,0.508288,-0.735725,-0.447608,0.440134,-0.576987,-0.688017,0.627754,-0.574714,-0.525003,0.585547,-0.799614,-0.133241,0.0776378,-0.920596,-0.382721,-0.684864,-0.273325,0.675466,-0.495752,-0.501555,0.708994,-0.291189,-0.675047,0.67788,-0.995624,0.0326889,0.0875471,-0.980342,0.0181191,0.196472,-0.928416,-0.236253,0.286755,-0.937022,-0.16961,0.305324,-0.928899,-0.271623,0.25173,-0.886826,-0.198867,0.417123,-0.980185,-0.192883,-0.0450894,-0.425662,0.834824,0.349115,0.269117,0.683577,0.678453,0.631436,0.757002,0.168036,0.102507,0.958714,-0.265253,-0.385632,0.323867,-0.863943,-0.720751,0.221368,-0.656898,-0.08184,0.676604,-0.731785,0.269076,0.338695,-0.901601,-0.949709,-0.124696,0.287235,-0.987991,-0.151317,-0.0312465,-0.713511,-0.316202,0.625235,-0.716068,-0.503458,0.483504,-0.69601,-0.229651,0.680317,-0.837707,-0.141315,0.52752,-0.906181,-0.192973,-0.376294,-0.95303,-0.169014,-0.251332,-0.920166,-0.287027,-0.266288,-0.787174,-0.224025,0.574604,-0.986855,-0.161032,-0.0136123,0.775989,0.318908,-0.544186,0.780578,0.471979,-0.409799,0.64468,0.270356,-0.715049,0.561739,0.0955476,-0.821779,0.604011,-0.792521,0.0841535,0.172534,-0.974558,0.143067,-0.316165,-0.946698,-0.0616624,0.216268,-0.860203,-0.461821,-0.71675,-0.132215,0.684682,-0.822432,-0.0855035,0.562401,-0.815248,-0.0988724,0.570609,-0.901163,-0.116088,0.417646,-0.947715,-0.26424,0.178924,-0.922095,-0.257776,0.288603,-0.876629,-0.057719,0.477692,-0.941395,0.203425,0.269062,-0.848275,-0.0922147,0.521465,-0.932106,-0.274749,0.235991,-0.960945,-0.274984,-0.0311244,0.87252,0.479302,-0.0947528,-0.916105,-0.388113,-0.100597,-0.86827,-0.496087,0.00210888,-0.841237,-0.398536,0.365361,-0.44412,-0.788555,0.425368,-0.490892,0.115282,0.86356,-0.495474,0.413571,0.763848,0.0504199,0.010548,0.998672,0.210443,-0.0871755,0.973711,-0.465758,-0.270146,0.842669,-0.227841,-0.0997799,0.968572,-0.559059,-0.38714,0.733195,-0.125065,-0.425845,0.896111,-0.0300469,-0.330425,0.943354,0.135634,-0.211186,0.96799,-0.0470212,-0.874035,0.483583,-0.80819,-0.584946,0.0683156,-0.880382,-0.441892,0.172219,-0.954844,-0.295143,-0.0341103,-0.889746,-0.444154,-0.105257,-0.984576,-0.174939,0.00275301,-0.991448,-0.102487,0.0807874,-0.620116,0.312662,0.719513,-0.978855,-0.168924,0.115358,-0.238641,0.162971,0.957335,-0.412149,0.152924,0.898191,-0.280871,0.241741,0.928802,-0.16392,0.196967,0.96661,-0.210601,0.19655,0.957609,-0.224405,0.12666,0.96623,-0.337203,0.131753,0.932167,-0.615009,0.191902,0.764812,-0.680068,0.203638,0.704301,-0.721541,0.253535,0.644282,-0.511014,-0.0728617,0.856479,-0.765397,0.11415,0.633354,-0.989727,-0.0704426,0.12441,-0.905874,-0.0769014,0.416508,-0.999964,-0.00365681,-0.00770922,-0.96029,-0.278678,-0.013469,-0.259823,-0.0683907,0.963232,-0.432542,-0.13848,0.890916,-0.27708,-0.00300122,0.960842,-0.834251,-0.292816,0.467208,-0.849485,-0.233347,0.473206,-0.540873,-0.155999,0.826511,-0.804688,-0.394454,0.443716,-0.815723,-0.222969,0.533742,-0.893133,-0.23054,0.386219,-0.835178,-0.233171,0.498105,-0.667466,-0.394799,0.631366,-0.738848,-0.432588,0.516692,-0.728617,0.0946677,0.678347,-0.55252,0.12603,0.823917,-0.637267,0.254308,0.727474,-0.566529,0.287032,0.772436,-0.606571,0.24948,0.754871,-0.563255,0.323354,0.760385,-0.718255,-0.247042,0.650446,-0.675576,-0.291307,0.677301,-0.549116,-0.288037,0.784542,-0.627211,-0.338229,0.701575,-0.306307,0.147228,0.940479,-0.333753,0.181927,0.924939,-0.366447,0.0980459,0.925259,-0.4417,0.0458319,0.895991,-0.429782,-0.125112,0.894223,-0.546157,-0.174985,0.819203,-0.330778,0.182709,0.925853,-0.753825,0.437862,0.489923,-0.319676,0.292042,0.901398,-0.937555,-0.182126,0.296345,-0.961481,-0.169013,0.216769,-0.932819,-0.209809,0.292964,-0.935183,-0.199233,0.29281,-0.936888,-0.211778,0.278194,-0.959264,-0.1851,0.213425,-0.367162,-0.132483,0.920674,-0.148143,-0.0447405,0.987953,-0.0384375,0.665602,0.745316,0.022264,0.256343,0.96633,-0.0563709,0.0510406,0.997104,-0.199177,-0.137646,0.970248,-0.396466,-0.19119,0.897921,-0.175882,-0.0476945,0.983255,-0.7629,0.223971,0.606482,-0.763302,-0.430474,0.481728,-0.229811,-0.376799,0.897334,-0.221234,-0.383577,0.896618,-0.821961,0.304326,0.48142,-0.819156,0.378397,0.431045,-0.445716,-0.271388,0.853045,-0.534337,-0.231458,0.812965,-0.782773,-0.450244,0.42959,-0.722472,-0.682573,0.11013,-0.728998,-0.684266,-0.0185147,-0.748824,-0.135333,0.648805,-0.97912,-0.170011,0.111445,-0.987927,-0.154706,-0.00816436,-0.998059,0.0157548,-0.0602455,-0.862228,-0.420993,-0.281653,-0.289336,-0.727825,-0.621736,-0.591729,0.381836,0.709971,-0.5472,0.397783,0.736438,-0.951517,-0.00235362,-0.307587,-0.946099,0.0769118,-0.314611,-0.878012,0.151334,-0.454085,-0.982948,0.0579508,-0.174515,-0.860611,0.353857,-0.366243,-0.251705,-0.664515,-0.703608,-0.373436,-0.804355,-0.462124,0.148898,-0.587165,-0.795655,-0.810413,0.574902,-0.112774,0.47113,0.458321,0.753643,0.635523,0.467364,0.614558,-0.873517,-0.479096,0.0862252,-0.652766,-0.753144,-0.0816742,-0.876622,-0.366692,0.311564,0.726544,0.545955,0.417213,0.683582,0.508476,0.523611,0.788958,0.508379,0.345102,0.880605,0.458356,0.120189,-0.978841,-0.0646135,0.194153,-0.309594,-0.931602,-0.190446,-0.886151,-0.265451,0.379833,-0.860651,-0.177005,0.47744,-0.848669,-0.0880095,0.521551,-0.884639,0.0364705,0.464849,-0.975764,-0.0699609,0.207341,-0.98934,-0.0683942,0.128563,-0.997956,0.0154973,0.0619911,-0.844158,0.394527,0.362968,-0.802879,-0.596113,-0.00589893,-0.994295,0.0755066,0.0753365,-0.781458,-0.573047,0.246863,0.213976,-0.170756,0.961799,0.32259,-0.701065,-0.635959,0.41569,-0.550998,-0.723605,-0.889721,-0.229438,0.394659,0.387557,-0.505062,-0.771175,-0.920269,-0.329378,0.211223,-0.842655,-0.512847,0.164072,-0.371787,0.585083,0.720731,-0.294436,0.650575,0.700043,-0.290693,0.459735,0.839131,0.0463625,-0.75627,0.652614,-0.251,-0.640324,0.725937,-0.0685924,-0.732748,0.677034,0.00360485,-0.613769,0.789477,-0.28506,-0.580294,0.762889,-0.202537,0.665278,0.718598,-0.128958,0.790886,0.598222,0.0228218,0.830228,0.556956,-0.0321203,0.705876,0.707607,0.671854,-0.735359,0.0886522,0.554623,0.804893,0.211049,-0.108066,-0.857147,0.503608,-0.015343,0.998182,0.05828,-0.059515,0.942542,0.328744,-0.275452,0.802731,0.528913,0.0225155,-0.920868,0.389225,0.117848,-0.969066,0.216847,0.0175415,-0.860408,0.509304,-0.180814,-0.8557,0.484854,-0.24878,-0.692006,0.67767,-0.386101,0.704534,0.595448,-0.29066,0.870767,0.396587,-0.511644,0.637472,-0.576064,-0.894481,-0.0975751,-0.436328,-0.0666217,0.895506,-0.440035,-0.00630347,0.897231,-0.441517,-0.383427,0.662044,-0.643957,-0.0817506,0.887099,-0.454282,-0.161543,0.823832,-0.543328,-0.281595,-0.831453,-0.478948,-0.137081,-0.849268,-0.509855,-0.330255,-0.911886,-0.243713,-0.258171,-0.854136,-0.451441,-0.31585,0.718033,-0.620216,-0.391151,-0.767848,-0.507356,-0.384562,-0.786948,-0.482519,-0.00429981,-0.86245,-0.506123,0.030794,-0.279158,-0.959751,-0.0446576,-0.244095,-0.968722,-0.0880481,0.964032,0.250777,-0.0505886,0.998686,-0.00817924,0.0545956,-0.20098,-0.978073,0.0682641,-0.139374,-0.987884,-0.0938574,0.0694283,-0.993162,-0.0802934,0.789472,-0.608512,-0.0990607,0.534071,-0.839616,-0.0974897,0.34339,-0.934119,-0.0362849,0.966919,-0.252488,0.890159,-0.039539,-0.453931,0.477066,0.663814,-0.575986,0.0515278,0.896157,-0.440734,0.359906,0.671135,-0.648109,0.141393,0.825247,-0.546787,0.0634021,0.887345,-0.456727,0.284624,-0.832704,-0.474966,0.133327,-0.85172,-0.506752,0.357584,-0.898218,-0.255614,0.266708,-0.856721,-0.44147,0.293759,0.723834,-0.624316,0.397111,-0.769729,-0.49982,0.38966,-0.79567,-0.463761 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_model_uv.txt b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_model_uv.txt deleted file mode 100644 index 7f6b1660..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_model_uv.txt +++ /dev/null @@ -1 +0,0 @@ -0.575568,0.303026,0.572022,0.303693,0.564017,0.307537,0.571913,0.303529,0.567015,0.303443,0.545395,0.311553,0.5,0.309726,0.5,0.306192,0.5,0.311806,0.5,0.315631,0.54449,0.308822,0.563763,0.305687,0.526364,0.314073,0.510884,0.314945,0.546231,0.304256,0.567625,0.304271,0.510428,0.309528,0.510498,0.306355,0.526404,0.305311,0.525838,0.310746,0.525732,0.308505,0.510378,0.31152,0.546151,0.306481,0.573574,0.303481,0.5731,0.303696,0.573236,0.303398,0.572334,0.303556,0.555577,0.308795,0.5,0.313235,0.555492,0.307268,0.5447,0.309304,0.564502,0.306029,0.555088,0.306918,0.557379,0.303882,0.510484,0.308278,0.526197,0.311767,0.525946,0.307417,0.51061,0.312559,0.556985,0.304435,0.546188,0.305427,0.557414,0.305113,0.567372,0.303753,0.5,0.308296,0.539532,0.184998,0.567042,0.183943,0.550727,0.161998,0.703848,0.442424,0.727667,0.420643,0.690356,0.418734,0.679499,0.448833,0.5339,0.552685,0.548079,0.567766,0.644881,0.495304,0.643931,0.485181,0.583164,0.515679,0.576009,0.508828,0.573634,0.510992,0.582027,0.517446,0.634296,0.466225,0.530153,0.507709,0.53215,0.51866,0.539771,0.510862,0.552995,0.512363,0.551149,0.501805,0.640942,0.487985,0.563833,0.488501,0.561003,0.480645,0.54972,0.491655,0.571774,0.498935,0.570818,0.50344,0.581883,0.496026,0.574747,0.306103,0.56132,0.313018,0.578981,0.302816,0.574406,0.31304,0.586667,0.306079,0.58217,0.303876,0.548031,0.285954,0.570842,0.296111,0.539134,0.331362,0.55488,0.324945,0.566472,0.302255,0.626851,0.485083,0.849282,0.337518,0.869741,0.315236,0.865059,0.308731,0.88559,0.369296,0.893094,0.364055,0.894154,0.382488,0.869136,0.328643,0.85664,0.341736,0.853913,0.460561,0.883768,0.454297,0.883045,0.460052,0.864925,0.3875,0.870139,0.375403,0.860548,0.427558,0.863488,0.438961,0.869291,0.428048,0.873525,0.41534,0.911147,0.404754,0.916443,0.336421,0.902979,0.322173,0.906702,0.416245,0.910862,0.426432,0.901622,0.379447,0.847455,0.356873,0.839735,0.367458,0.838818,0.393896,0.844639,0.396029,0.844582,0.374672,0.876399,0.359614,0.864725,0.410869,0.903743,0.443624,0.901975,0.438868,0.89955,0.432783,0.880874,0.445985,0.895076,0.442767,0.896789,0.448329,0.891039,0.43646,0.598844,0.161133,0.634306,0.511681,0.861232,0.278446,0.83119,0.280784,0.854994,0.295007,0.523896,0.523298,0.542889,0.317427,0.839063,0.223635,0.875025,0.214127,0.842583,0.199095,0.809532,0.400043,0.828632,0.397506,0.888636,0.183249,0.915128,0.224739,0.565787,0.29798,0.566492,0.300729,0.575596,0.301454,0.581198,0.30066,0.546167,0.290237,0.545481,0.293961,0.607325,0.187192,0.981773,0.306927,0.974924,0.268835,0.974753,0.310572,0.703069,0.692235,0.660657,0.703727,0.68588,0.729015,0.917977,0.432723,0.922129,0.437449,0.916029,0.40215,0.921575,0.403943,0.914414,0.374875,0.906734,0.376033,0.848545,0.427683,0.854038,0.361185,0.927094,0.408888,0.860326,0.48013,0.841772,0.450063,0.928994,0.384348,0.894652,0.331477,0.889501,0.344392,0.898687,0.357983,0.906626,0.350434,0.879945,0.33945,0.882305,0.351677,0.890586,0.305575,0.882547,0.324982,0.885676,0.315119,0.87067,0.354085,0.867012,0.343668,0.870695,0.461479,0.858639,0.455104,0.905447,0.450083,0.871646,0.457919,0.872624,0.450176,0.864472,0.449124,0.89559,0.457447,0.894361,0.453986,0.901469,0.411962,0.876076,0.442679,0.887631,0.428152,0.900762,0.398944,0.85934,0.378717,0.863832,0.367602,0.858711,0.392629,0.853148,0.394308,0.85303,0.424231,0.858381,0.416673,0.870087,0.43775,0.969697,0.310488,0.572348,0.371856,0.569455,0.39042,0.588037,0.379458,0.559338,0.379913,0.562451,0.39564,0.663572,0.484904,0.657085,0.503485,0.601347,0.469511,0.65192,0.542454,0.621,0.564371,0.52357,0.373385,0.535269,0.373474,0.52647,0.367692,0.52985,0.382705,0.546725,0.402689,0.548923,0.408971,0.553154,0.399613,0.751586,0.711742,0.748164,0.675618,0.542994,0.382213,0.535841,0.366825,0.580755,0.491832,0.5,0.007852,0.5,0.243256,0.5,0.219704,0.5,0.476632,0.5,0.449872,0.5,0.123937,0.5,0.155082,0.5,0.19894,0.5,0.178657,0.5,0.081631,0.5,0.374806,0.5,0.367165,0.5,0.354435,0.5,0.361482,0.5,0.338709,0.5,0.348402,0.5,0.273832,0.5,0.26317,0.5,0.563846,0.5,0.544253,0.5,0.330958,0.5,0.325529,0.5,0.290901,0.5,0.296064,0.5,0.286384,0.5,0.281631,0.5,0.302417,0.5,0.715993,0.5,0.773706,0.5,0.667211,0.5,0.386804,0.5,0.424372,0.5,0.414081,0.5,0.401624,0.5,0.435722,0.5,0.624991,0.5,0.590625,0.5,0.5,0.5,0.51527,0.5,0.528701,0.5,0.320692,0.806256,0.946534,0.647078,0.91997,0.993863,0.522045,0.992192,0.61678,0.993834,0.37163,0.994738,0.311733,0.5,0.854945,0.916172,0.92964,0.976323,0.878027,0.993151,0.803353,0.993156,0.713782,0.993929,0.431019,0.782477,0.305923,0.816517,0.308511,0.791655,0.277255,0.868654,0.084495,0.829623,0.067846,0.818453,0.125041,0.781207,0.049096,0.771363,0.113852,0.858524,0.134121,0.89845,0.148164,0.908978,0.102881,0.799721,0.249725,0.805465,0.223209,0.762412,0.213881,0.753667,0.243531,0.788352,0.570541,0.783833,0.515187,0.720223,0.529826,0.726232,0.584619,0.89704,0.56376,0.853925,0.56889,0.856096,0.619848,0.90358,0.611247,0.523566,0.080691,0.555924,0.079774,0.562504,0.010503,0.527727,0.008638,0.926695,0.310139,0.93954,0.279921,0.904037,0.268447,0.939958,0.345988,0.95241,0.325832,0.746778,0.27592,0.741279,0.308403,0.835795,0.251207,0.517458,0.220505,0.538453,0.222737,0.53843,0.20062,0.517482,0.199111,0.565778,0.231382,0.566434,0.207674,0.516721,0.244062,0.518397,0.178742,0.519816,0.158689,0.546065,0.459203,0.54509,0.480106,0.560634,0.468303,0.5639,0.446677,0.658867,0.358155,0.621598,0.369604,0.616586,0.39991,0.654563,0.38926,0.694074,0.382379,0.649435,0.419077,0.708537,0.475226,0.733832,0.469161,0.626361,0.33813,0.660989,0.327773,0.511232,0.473817,0.51368,0.448443,0.573415,0.703939,0.607727,0.689954,0.596491,0.653677,0.56485,0.662952,0.522383,0.123033,0.699983,0.316622,0.700481,0.282728,0.604365,0.211239,0.645831,0.220535,0.657891,0.19158,0.660287,0.125261,0.660571,0.161132,0.71415,0.170442,0.712938,0.135342,0.515762,0.433078,0.530954,0.445062,0.533538,0.427128,0.56674,0.418463,0.586923,0.409177,0.585889,0.296081,0.548721,0.38088,0.547419,0.3748,0.535155,0.361076,0.54667,0.368889,0.547003,0.362832,0.513289,0.37391,0.51449,0.367306,0.559813,0.367448,0.515384,0.411415,0.533254,0.407335,0.532757,0.396107,0.515811,0.399096,0.588609,0.262316,0.562494,0.251245,0.556842,0.269965,0.579754,0.277731,0.582225,0.325608,0.567761,0.331882,0.514256,0.361433,0.513538,0.354465,0.52779,0.468346,0.559119,0.40913,0.557829,0.396876,0.556116,0.405129,0.524173,0.360914,0.555693,0.384487,0.512988,0.348222,0.512849,0.338852,0.576999,0.348164,0.56319,0.349673,0.531891,0.274941,0.535247,0.264934,0.515099,0.263108,0.513088,0.273695,0.557721,0.31887,0.573721,0.30876,0.549616,0.419541,0.551585,0.27941,0.658876,0.555881,0.692508,0.518212,0.678369,0.512433,0.633637,0.636786,0.624872,0.604981,0.590844,0.619786,0.677166,0.610767,0.668215,0.576152,0.591367,0.594257,0.622018,0.581967,0.564493,0.543746,0.557709,0.554916,0.575134,0.561341,0.579818,0.549104,0.528037,0.490646,0.512341,0.497631,0.512982,0.512901,0.583626,0.434859,0.579688,0.456012,0.608693,0.44724,0.612957,0.426109,0.665523,0.463963,0.675207,0.482447,0.690755,0.478647,0.620288,0.550047,0.596303,0.56022,0.593891,0.57509,0.645975,0.532037,0.666835,0.508025,0.619668,0.517232,0.620141,0.514232,0.605829,0.519891,0.604348,0.523472,0.589272,0.526304,0.591513,0.522835,0.578595,0.520851,0.575955,0.523385,0.569867,0.512986,0.567095,0.514188,0.560408,0.505968,0.563674,0.517423,0.654199,0.487977,0.649964,0.479528,0.594111,0.518643,0.620744,0.510557,0.633639,0.502586,0.640942,0.489524,0.641401,0.494006,0.642206,0.494665,0.598267,0.547123,0.636031,0.516496,0.619055,0.527873,0.599819,0.47577,0.630377,0.473162,0.578085,0.484349,0.570366,0.491759,0.567023,0.497171,0.569611,0.498173,0.544654,0.521335,0.552526,0.533433,0.564859,0.504263,0.573071,0.527296,0.586665,0.531107,0.558808,0.524292,0.599447,0.48074,0.627014,0.478697,0.625795,0.482278,0.572601,0.49423,0.579542,0.48844,0.574139,0.496263,0.599694,0.484372,0.600388,0.488637,0.573571,0.502678,0.575908,0.498239,0.573934,0.499653,0.633329,0.501103,0.518597,0.560881,0.513895,0.54219,0.57691,0.469929,0.561497,0.497233,0.536391,0.529995,0.576512,0.478303,0.512914,0.32603,0.513032,0.33175,0.52536,0.325258,0.525727,0.319659,0.512508,0.320466,0.541933,0.32314,0.524903,0.33027,0.540938,0.327161,0.579643,0.304157,0.545475,0.30161,0.545224,0.297588,0.527556,0.292067,0.526495,0.296711,0.510675,0.296724,0.510358,0.302758,0.526048,0.301936,0.511064,0.291403,0.511601,0.286653,0.511999,0.281808,0.523611,0.336788,0.529942,0.282282,0.528662,0.287377,0.939139,0.413228,0.938214,0.444922,0.947256,0.456059,0.949081,0.420154,0.823264,0.455839,0.845299,0.51318,0.889302,0.520979,0.881977,0.497651,0.930132,0.35685,0.919881,0.328904,0.935957,0.384173,0.946876,0.382527,0.932281,0.447901,0.933016,0.411657,0.914169,0.350193,0.921641,0.379275,0.898805,0.324071,0.890881,0.311933,0.906075,0.399329,0.828232,0.364346,0.833052,0.338053,0.854312,0.377098,0.858867,0.364602,0.878674,0.493126,0.926328,0.441135,0.889685,0.474075,0.886205,0.46821,0.893701,0.480821,0.857992,0.44441,0.907616,0.450968,0.895893,0.424599,0.919216,0.479595,0.928425,0.476746,0.923898,0.35999,0.843774,0.432914,0.900981,0.493109,0.907947,0.49578,0.884034,0.449307,0.88772,0.405297,0.5477,0.76566,0.538728,0.71338,0.533702,0.666947,0.561091,0.62585,0.514253,0.384781,0.515815,0.421655,0.53145,0.625771,0.531768,0.588104,0.51266,0.526857,0.588154,0.747064,0.563336,0.596902,0.569372,0.576108,0.594775,0.517232,0.583525,0.538739,0.569404,0.534196,0.624988,0.725585,0.655091,0.761595,0.607538,0.51576,0.600327,0.536165,0.645619,0.671463,0.619166,0.521273,0.602483,0.528404,0.608021,0.514393,0.619577,0.537553,0.686898,0.650786,0.63402,0.508192,0.633954,0.505748,0.620867,0.509074,0.640607,0.523133,0.544747,0.543222,0.871595,0.250857,0.9188,0.511398,0.933276,0.546466,0.961043,0.472137,0.962589,0.425655,0.938469,0.489206,0.951687,0.51449,0.960909,0.376044,0.55507,0.121739,0.604062,0.120717,0.709962,0.201479,0.733871,0.633488,0.569217,0.82519,0.617287,0.793366,0.647321,0.501001,0.693283,0.240795,0.522944,0.347534,0.552612,0.338342,0.523222,0.353923,0.535577,0.353774,0.537006,0.341226,0.599633,0.318223,0.60042,0.303272,0.894151,0.294837,0.809496,0.33464,0.807093,0.362916,0.779211,0.460451,0.772676,0.407647,0.657321,0.471992,0.773244,0.368233,0.77609,0.335894,0.550029,0.435926,0.552532,0.389312,0.545888,0.392572,0.596525,0.347894,0.659801,0.297468,0.627108,0.311096,0.650208,0.269253,0.697541,0.349704,0.597717,0.237475,0.627423,0.249218,0.644654,0.442722,0.639065,0.457729,0.62233,0.289068,0.609192,0.273211,0.537206,0.246138,0.60444,0.461223,0.53362,0.416101,0.733304,0.37638,0.736997,0.341478,0.526487,0.537057,0.567764,0.504035,0.549785,0.349877,0.721287,0.097418,0.66719,0.086792,0.730051,0.032654,0.676257,0.022228,0.594523,0.291039,0.765276,0.149766,0.766489,0.184339,0.807945,0.194162,0.81084,0.162242,0.850433,0.170164,0.95578,0.136084,0.840141,0.317441,0.936767,0.186472,0.607846,0.080814,0.615375,0.015154,0.573887,0.288688,0.794953,0.623227,0.992668,0.215065,0.982578,0.179591,0.96092,0.241916,0.664359,0.876014,0.68848,0.833791,0.90022,0.887177,0.959556,0.843463,0.947611,0.808495,0.887684,0.845726,0.984181,0.776894,0.977579,0.748335,0.803658,0.855725,0.805148,0.900501,0.990442,0.693883,0.989964,0.670846,0.990199,0.603109,0.990855,0.585234,0.99141,0.499578,0.991611,0.513691,0.991563,0.42716,0.990604,0.417484,0.992649,0.304146,0.992381,0.289605,0.991552,0.365499,0.991206,0.35035,0.713962,0.791745,0.737245,0.750668,0.932789,0.738694,0.939006,0.773754,0.972178,0.718452,0.969473,0.687709,0.879034,0.766393,0.880648,0.80628,0.812968,0.767617,0.806248,0.8118,0.976923,0.620361,0.983378,0.645983,0.991385,0.565116,0.984096,0.544215,0.988049,0.46509,0.992539,0.482141,0.990467,0.401793,0.984966,0.386231,0.988799,0.33026,0.994216,0.24672,0.993351,0.269933,0.875438,0.724106,0.927377,0.702467,0.920317,0.660878,0.869387,0.673848,0.808688,0.673275,0.817036,0.722206,0.974089,0.594351,0.965348,0.65681,0.979546,0.447446,0.977399,0.52252,0.978555,0.375651,0.944742,0.584145,0.972999,0.434475,0.968671,0.42897,0.969113,0.485171,0.973025,0.502168,0.961442,0.538921,0.973267,0.567178,0.955404,0.622863,0.963768,0.311494,0.968057,0.371405,0.972862,0.371088,0.909361,0.454388,0.91206,0.459898,0.897687,0.464767,0.900061,0.471146,0.873368,0.467175,0.875874,0.474933,0.879468,0.483919,0.91647,0.463617,0.90469,0.476359,0.914927,0.43107,0.88412,0.463751,0.896429,0.460231,0.709234,0.415558,0.698809,0.43134,0.68168,0.43343,0.540005,0.560589,0.523429,0.572323,0.579031,0.512667,0.577216,0.514754,0.551788,0.506771,0.542032,0.515617,0.637469,0.481204,0.635312,0.484561,0.555572,0.48537,0.557206,0.49048,0.57354,0.500818,0.571083,0.500728,0.589526,0.492853,0.588358,0.488274,0.575261,0.304732,0.563222,0.310284,0.577826,0.302894,0.566679,0.302884,0.572511,0.302646,0.859699,0.325327,0.867467,0.312277,0.888125,0.357692,0.881062,0.363836,0.86477,0.336802,0.869705,0.334582,0.862943,0.334694,0.86094,0.343031,0.8634,0.375156,0.866599,0.379934,0.866487,0.370277,0.860701,0.372877,0.86186,0.380684,0.863268,0.432359,0.861587,0.435244,0.864815,0.434013,0.864346,0.426818,0.872486,0.403358,0.878739,0.411393,0.874709,0.395332,0.865745,0.399891,0.869218,0.412501,0.919761,0.357634,0.915397,0.343169,0.895883,0.400739,0.896257,0.408895,0.88995,0.389785,0.850022,0.346654,0.847259,0.349601,0.851928,0.349038,0.853418,0.340391,0.844373,0.354789,0.842239,0.353595,0.843635,0.361317,0.842075,0.386921,0.84182,0.396874,0.84439,0.384706,0.841074,0.383338,0.840173,0.379409,0.841764,0.372222,0.837806,0.380451,0.873979,0.366679,0.877391,0.372205,0.870175,0.363083,0.861678,0.401458,0.861341,0.390491,0.858539,0.404901,0.86148,0.412381,0.860865,0.384706,0.858882,0.384519,0.640646,0.506435,0.639887,0.5027,0.569667,0.500774,0.570602,0.498585,0.568419,0.500714,0.569238,0.503848,0.571563,0.506958,0.574294,0.505398,0.56522,0.508868,0.561214,0.511496,0.543745,0.314455,0.814721,0.426902,0.833235,0.422316,0.896635,0.219192,0.904272,0.197568,0.933126,0.117328,0.566555,0.299735,0.572565,0.301564,0.545595,0.292074,0.556152,0.296323,0.918722,0.402449,0.910488,0.374669,0.849727,0.444813,0.846225,0.429833,0.847437,0.447061,0.85627,0.457319,0.851745,0.442852,0.852029,0.370477,0.849314,0.368108,0.849809,0.376473,0.855703,0.371062,0.856492,0.363079,0.856258,0.35084,0.851271,0.358765,0.860058,0.352694,0.919919,0.434969,0.924403,0.406319,0.924306,0.439599,0.848153,0.45633,0.857183,0.470402,0.925191,0.381974,0.929839,0.410564,0.903854,0.377373,0.895442,0.36129,0.897969,0.344222,0.894195,0.350317,0.90274,0.353481,0.90126,0.339443,0.892581,0.33768,0.883545,0.345009,0.879939,0.345681,0.88649,0.348911,0.884895,0.340511,0.877291,0.304135,0.873504,0.2972,0.87708,0.319217,0.883879,0.319297,0.878572,0.314199,0.869624,0.322091,0.876482,0.325441,0.862386,0.455212,0.863844,0.454738,0.857612,0.449323,0.864866,0.459095,0.867204,0.462085,0.865943,0.463318,0.872615,0.464649,0.867268,0.45009,0.867095,0.454112,0.865114,0.454164,0.871352,0.4597,0.861483,0.446928,0.852595,0.408795,0.866045,0.43539,0.865683,0.439661,0.869963,0.43268,0.570595,0.380327,0.576985,0.388127,0.561848,0.388727,0.565165,0.394782,0.52808,0.371152,0.528845,0.373184,0.530747,0.37017,0.524179,0.370455,0.52887,0.376001,0.532871,0.377818,0.524741,0.377124,0.643604,0.490856,0.643104,0.491367,0.646574,0.489179,0.574688,0.498885,0.572711,0.497572,0.547018,0.406284,0.55203,0.4039,0.540179,0.377931,0.536207,0.369609,0.5,0.231251,0.5,0.460471,0.5,0.370446,0.5,0.553419,0.5,0.293205,0.5,0.288622,0.5,0.299358,0.5,0.304569,0.5,0.380372,0.5,0.419241,0.5,0.408171,0.5,0.364443,0.5,0.429675,0.5,0.323112,0.5,0.318098,0.5,0.576177,0.5,0.208972,0.5,0.490006,0.5,0.254545,0.5,0.536081,0.5,0.442496,0.930232,0.253452,0.916543,0.287611,0.538639,0.211386,0.517532,0.209487,0.566457,0.219338,0.517231,0.232175,0.55379,0.46452,0.545032,0.470587,0.553093,0.47442,0.562029,0.458307,0.555502,0.452935,0.637355,0.379525,0.639908,0.363636,0.618875,0.385306,0.634854,0.394799,0.656934,0.373652,0.672456,0.40081,0.674621,0.38489,0.652024,0.404594,0.669448,0.416691,0.692195,0.399296,0.707617,0.456886,0.733232,0.444666,0.643269,0.333008,0.512101,0.458957,0.720541,0.311889,0.723461,0.277906,0.515058,0.440382,0.532741,0.435354,0.577362,0.399958,0.569695,0.402892,0.576295,0.413684,0.588128,0.395333,0.548163,0.378093,0.535316,0.364118,0.546602,0.3661,0.513887,0.370275,0.559214,0.373359,0.533253,0.402074,0.515562,0.405614,0.559994,0.261826,0.583949,0.268895,0.529029,0.455974,0.559233,0.40181,0.561606,0.40254,0.56008,0.395998,0.55711,0.401879,0.557189,0.406602,0.514561,0.36457,0.52514,0.36432,0.554694,0.402841,0.555547,0.3982,0.553717,0.406834,0.559532,0.389291,0.557082,0.381993,0.557507,0.390911,0.553929,0.410522,0.548925,0.414111,0.555235,0.414825,0.595234,0.441315,0.581701,0.44622,0.593158,0.450978,0.611007,0.437435,0.597314,0.430046,0.67263,0.472156,0.68751,0.464037,0.511353,0.487717,0.527461,0.480619,0.63383,0.503436,0.58104,0.518442,0.576059,0.515633,0.572382,0.511763,0.573533,0.517503,0.570839,0.519317,0.568057,0.508165,0.567782,0.522911,0.653705,0.483612,0.642428,0.492023,0.614895,0.473476,0.617366,0.467012,0.587156,0.479704,0.587463,0.473316,0.613379,0.478705,0.573058,0.488572,0.574983,0.491798,0.571024,0.4962,0.54808,0.527429,0.555276,0.518358,0.565666,0.500409,0.560738,0.501337,0.558453,0.514443,0.561445,0.520458,0.557018,0.508583,0.6131,0.482295,0.580162,0.490211,0.576415,0.494481,0.614123,0.486121,0.635838,0.486564,0.577923,0.497611,0.571754,0.496858,0.63918,0.49901,0.639445,0.501114,0.638763,0.498431,0.515712,0.550968,0.568827,0.462121,0.567425,0.475583,0.556975,0.498767,0.533785,0.523914,0.569305,0.483506,0.525461,0.322623,0.512871,0.323297,0.542374,0.320272,0.526165,0.316719,0.511739,0.317548,0.556985,0.30297,0.556504,0.301892,0.54581,0.303058,0.55642,0.297809,0.545301,0.295761,0.556262,0.299182,0.526945,0.294331,0.510511,0.299865,0.526069,0.299339,0.510865,0.293888,0.511287,0.288957,0.510332,0.304794,0.52613,0.30382,0.576128,0.302382,0.572776,0.302182,0.566372,0.301537,0.52809,0.289738,0.918111,0.376668,0.910069,0.349521,0.913642,0.402837,0.894021,0.316862,0.900993,0.322583,0.898182,0.317447,0.888371,0.313509,0.891908,0.318224,0.859804,0.334841,0.860788,0.331622,0.862621,0.327053,0.910458,0.430523,0.905215,0.422732,0.849195,0.408968,0.850667,0.426037,0.848803,0.394642,0.845974,0.411186,0.830383,0.350508,0.887837,0.471153,0.874378,0.470799,0.891566,0.476663,0.901437,0.473608,0.920087,0.452768,0.918183,0.450563,0.913676,0.462097,0.922051,0.45409,0.853115,0.440416,0.85457,0.435917,0.911443,0.442896,0.906788,0.450291,0.912569,0.442367,0.91288,0.436961,0.861269,0.418387,0.858995,0.423754,0.863103,0.418854,0.892456,0.416848,0.827152,0.379138,0.922661,0.462819,0.910738,0.479602,0.924593,0.453584,0.929013,0.442405,0.881796,0.311789,0.880446,0.309856,0.879533,0.307525,0.89279,0.310389,0.896792,0.412646,0.900786,0.416361,0.843208,0.413311,0.84027,0.414842,0.843612,0.366118,0.845638,0.365436,0.862758,0.355193,0.86455,0.358352,0.868948,0.349865,0.848736,0.384159,0.853494,0.384195,0.89689,0.487793,0.866662,0.419963,0.872748,0.421227,0.887704,0.418647,0.513384,0.378536,0.515493,0.416646,0.515897,0.426825,0.585154,0.534536,0.571339,0.530341,0.619021,0.524208,0.601414,0.531885,0.634646,0.514135,0.550605,0.549544,0.557998,0.538999,0.563573,0.529719,0.638271,0.497221,0.736746,0.207611,0.726581,0.241155,0.888937,0.256326,0.877967,0.284339,0.807887,0.348365,0.77506,0.433361,0.66234,0.477825,0.77434,0.351641,0.574593,0.4276,0.565778,0.43385,0.57273,0.440522,0.585431,0.42239,0.599056,0.417701,0.600668,0.40452,0.614656,0.413537,0.557643,0.440661,0.558252,0.429239,0.548036,0.447362,0.564747,0.403306,0.562004,0.412672,0.553267,0.394683,0.546509,0.397956,0.555497,0.392835,0.554325,0.387057,0.604818,0.374854,0.610238,0.343531,0.602493,0.390325,0.679053,0.289792,0.679994,0.322129,0.612548,0.316992,0.667872,0.256938,0.676434,0.369378,0.695836,0.366093,0.678022,0.353859,0.60146,0.224301,0.636989,0.235318,0.665613,0.43091,0.64697,0.431949,0.662318,0.443145,0.648152,0.467831,0.642384,0.475608,0.654313,0.458902,0.642659,0.3047,0.63538,0.279884,0.593327,0.250317,0.618039,0.261895,0.628351,0.434424,0.626171,0.444507,0.630414,0.422569,0.632472,0.409254,0.537878,0.234458,0.564405,0.239397,0.621368,0.458789,0.53366,0.420851,0.570758,0.452098,0.711514,0.397826,0.731121,0.395792,0.713579,0.379832,0.717259,0.345518,0.715418,0.362549,0.735154,0.358604,0.536779,0.256762,0.516337,0.2548,0.58788,0.486501,0.587615,0.484466,0.589563,0.464863,0.512957,0.534222,0.524572,0.529918,0.556775,0.503333,0.533225,0.411871,0.546956,0.371785,0.529568,0.544691,0.540032,0.536556,0.557029,0.420649,0.550333,0.426613,0.601137,0.282955,0.61055,0.296885,0.74638,0.105406,0.739227,0.142238,0.741037,0.176843,0.755683,0.040348,0.77243,0.386401,0.807405,0.379221,0.91953,0.164519,0.908618,0.310732,0.906592,0.319909,0.55593,0.300535,0.54506,0.299646,0.949896,0.212383,0.972481,0.158141,0.916409,0.447817,0.914836,0.445175,0.910624,0.457109,0.904013,0.336371,0.896616,0.326948,0.906811,0.334747,0.898725,0.468047,0.865311,0.46686,0.865187,0.471478,0.886869,0.333508,0.888563,0.326821,0.881091,0.331886,0.877745,0.479257,0.866788,0.477299,0.869905,0.482418,0.879761,0.488523,0.890891,0.354593,0.890161,0.321706,0.875509,0.332368,0.874435,0.340298,0.874897,0.346968,0.876259,0.351628,0.916424,0.431225,0.913617,0.443284,0.908371,0.452374,0.885028,0.465704,0.883317,0.462149,0.896928,0.462165,0.89588,0.458861,0.56582,0.52593,0.904432,0.320168,0.908851,0.327904,0.848264,0.36458,0.908892,0.332634,0.879559,0.427047,0.881425,0.420176,0.635347,0.483474,0.625673,0.480924,0.641205,0.487129,0.64279,0.494689,0.620554,0.511591,0.607058,0.516869,0.593411,0.519772,0.570345,0.507972,0.61287,0.480664,0.599351,0.48264,0.575753,0.493184,0.573557,0.495102,0.609454,0.937045,0.609076,0.936938,0.609074,0.937199,0.499623,0.8984,0.499772,0.983434,0.598843,0.926998,0.512338,0.898711,0.532927,0.901709,0.561953,0.970205,0.535247,0.981068,0.515362,0.984046,0.594593,0.951964,0.578569,0.961804,0.581227,0.917872,0.562707,0.910265,0.424432,0.303026,0.427978,0.303693,0.435983,0.307537,0.428087,0.303529,0.432985,0.303443,0.454605,0.311553,0.45551,0.308822,0.436237,0.305687,0.473636,0.314073,0.489116,0.314945,0.453769,0.304256,0.432375,0.304271,0.489572,0.309528,0.489502,0.306355,0.473596,0.305311,0.474162,0.310746,0.474268,0.308505,0.489622,0.31152,0.453849,0.306481,0.426426,0.303481,0.4269,0.303696,0.426764,0.303398,0.427666,0.303556,0.444423,0.308795,0.444508,0.307268,0.4553,0.309304,0.435498,0.306029,0.444912,0.306918,0.442621,0.303882,0.489516,0.308278,0.473803,0.311767,0.474054,0.307417,0.48939,0.312559,0.443015,0.304435,0.453812,0.305427,0.442586,0.305113,0.432628,0.303753,0.460468,0.184998,0.432958,0.183943,0.449273,0.161998,0.296152,0.442424,0.272333,0.420643,0.309644,0.418734,0.320501,0.448833,0.4661,0.552685,0.451921,0.567766,0.355119,0.495304,0.356069,0.485181,0.416836,0.515679,0.423991,0.508828,0.426366,0.510992,0.417973,0.517446,0.365704,0.466225,0.469847,0.507709,0.46785,0.51866,0.460229,0.510862,0.447005,0.512363,0.448851,0.501805,0.359058,0.487985,0.436167,0.488501,0.438997,0.480645,0.45028,0.491655,0.428226,0.498935,0.429182,0.50344,0.418117,0.496026,0.425253,0.306103,0.43868,0.313018,0.421019,0.302816,0.425594,0.31304,0.413333,0.306079,0.41783,0.303876,0.451969,0.285954,0.429158,0.296111,0.460866,0.331362,0.44512,0.324945,0.433528,0.302255,0.373149,0.485083,0.150718,0.337518,0.130259,0.315236,0.134941,0.308731,0.11441,0.369296,0.106906,0.364055,0.105846,0.382488,0.130864,0.328643,0.14336,0.341736,0.146087,0.460561,0.116232,0.454297,0.116955,0.460052,0.135075,0.3875,0.129861,0.375403,0.139452,0.427558,0.136512,0.438961,0.130709,0.428048,0.126475,0.41534,0.088853,0.404754,0.083557,0.336421,0.097021,0.322173,0.093298,0.416245,0.089138,0.426432,0.098378,0.379447,0.152545,0.356873,0.160265,0.367458,0.161182,0.393896,0.155361,0.396029,0.155418,0.374672,0.123601,0.359614,0.135275,0.410869,0.096257,0.443624,0.098025,0.438868,0.10045,0.432783,0.119126,0.445985,0.104924,0.442767,0.103211,0.448329,0.108961,0.43646,0.401156,0.161133,0.365694,0.511681,0.138768,0.278446,0.16881,0.280784,0.145006,0.295007,0.476104,0.523298,0.457111,0.317427,0.160937,0.223635,0.124975,0.214127,0.157417,0.199095,0.190468,0.400043,0.171368,0.397506,0.111364,0.183249,0.084872,0.224739,0.434213,0.29798,0.433508,0.300729,0.424404,0.301454,0.418802,0.30066,0.453833,0.290237,0.454519,0.293961,0.392675,0.187192,0.018227,0.306927,0.025076,0.268835,0.025247,0.310572,0.296931,0.692235,0.339343,0.703727,0.31412,0.729015,0.082023,0.432723,0.077871,0.437449,0.083971,0.40215,0.078425,0.403943,0.085586,0.374875,0.093266,0.376033,0.151455,0.427683,0.145962,0.361185,0.072906,0.408888,0.139674,0.48013,0.158228,0.450063,0.071006,0.384348,0.105348,0.331477,0.110499,0.344392,0.101313,0.357983,0.093374,0.350434,0.120055,0.33945,0.117695,0.351677,0.109414,0.305575,0.117453,0.324982,0.114324,0.315119,0.12933,0.354085,0.132988,0.343668,0.129305,0.461479,0.141361,0.455104,0.094553,0.450083,0.128354,0.457919,0.127376,0.450176,0.135528,0.449124,0.10441,0.457447,0.105639,0.453986,0.098531,0.411962,0.123924,0.442679,0.112369,0.428152,0.099238,0.398944,0.14066,0.378717,0.136168,0.367602,0.141289,0.392629,0.146852,0.394308,0.14697,0.424231,0.141619,0.416673,0.129913,0.43775,0.030303,0.310488,0.427652,0.371856,0.430545,0.39042,0.411963,0.379458,0.440662,0.379913,0.437549,0.39564,0.336428,0.484904,0.342915,0.503485,0.398653,0.469511,0.34808,0.542454,0.379,0.564371,0.47643,0.373385,0.464731,0.373474,0.47353,0.367692,0.47015,0.382705,0.453275,0.402689,0.451077,0.408971,0.446846,0.399613,0.248414,0.711742,0.251836,0.675618,0.457006,0.382213,0.464159,0.366825,0.419245,0.491832,0.217523,0.305923,0.183483,0.308511,0.208345,0.277255,0.131346,0.084495,0.170377,0.067846,0.181547,0.125041,0.218793,0.049096,0.228637,0.113852,0.141476,0.134121,0.10155,0.148164,0.091022,0.102881,0.200279,0.249725,0.194535,0.223209,0.237588,0.213881,0.246333,0.243531,0.211648,0.570541,0.216167,0.515187,0.279777,0.529826,0.273768,0.584619,0.10296,0.56376,0.146075,0.56889,0.143904,0.619848,0.09642,0.611247,0.476434,0.080691,0.444076,0.079774,0.437496,0.010503,0.472273,0.008638,0.073305,0.310139,0.06046,0.279921,0.095963,0.268447,0.060042,0.345988,0.04759,0.325832,0.253222,0.27592,0.258721,0.308403,0.164205,0.251207,0.482542,0.220505,0.461547,0.222737,0.46157,0.20062,0.482518,0.199111,0.434222,0.231382,0.433566,0.207674,0.483279,0.244062,0.481603,0.178742,0.480184,0.158689,0.453935,0.459203,0.45491,0.480106,0.439366,0.468303,0.4361,0.446677,0.341133,0.358155,0.378402,0.369604,0.383414,0.39991,0.345437,0.38926,0.305926,0.382379,0.350565,0.419077,0.291463,0.475226,0.266168,0.469161,0.373639,0.33813,0.339011,0.327773,0.488768,0.473817,0.48632,0.448443,0.426585,0.703939,0.392273,0.689954,0.403509,0.653677,0.43515,0.662952,0.477617,0.123033,0.300017,0.316622,0.299519,0.282728,0.395635,0.211239,0.354169,0.220535,0.342109,0.19158,0.339713,0.125261,0.339429,0.161132,0.28585,0.170442,0.287062,0.135342,0.484238,0.433078,0.469046,0.445062,0.466462,0.427128,0.43326,0.418463,0.413077,0.409177,0.414111,0.296081,0.451279,0.38088,0.452581,0.3748,0.464845,0.361076,0.45333,0.368889,0.452997,0.362832,0.486711,0.37391,0.48551,0.367306,0.440187,0.367448,0.484616,0.411415,0.466746,0.407335,0.467243,0.396107,0.484189,0.399096,0.411391,0.262316,0.437506,0.251245,0.443158,0.269965,0.420246,0.277731,0.417775,0.325608,0.432239,0.331882,0.485744,0.361433,0.486462,0.354465,0.47221,0.468346,0.440881,0.40913,0.442171,0.396876,0.443884,0.405129,0.475827,0.360914,0.444307,0.384487,0.487012,0.348222,0.487151,0.338852,0.423001,0.348164,0.43681,0.349673,0.468109,0.274941,0.464753,0.264934,0.484901,0.263108,0.486912,0.273695,0.442279,0.31887,0.426279,0.30876,0.450384,0.419541,0.448415,0.27941,0.341124,0.555881,0.307492,0.518212,0.321631,0.512433,0.366363,0.636786,0.375128,0.604981,0.409156,0.619786,0.322834,0.610767,0.331785,0.576152,0.408633,0.594257,0.377982,0.581967,0.435507,0.543746,0.442291,0.554916,0.424866,0.561341,0.420182,0.549104,0.471963,0.490646,0.487659,0.497631,0.487018,0.512901,0.416374,0.434859,0.420312,0.456012,0.391307,0.44724,0.387043,0.426109,0.334477,0.463963,0.324793,0.482447,0.309245,0.478647,0.379712,0.550047,0.403697,0.56022,0.406109,0.57509,0.354025,0.532037,0.333165,0.508025,0.380332,0.517232,0.379859,0.514232,0.394171,0.519891,0.395652,0.523472,0.410728,0.526304,0.408487,0.522835,0.421405,0.520851,0.424045,0.523385,0.430133,0.512986,0.432905,0.514188,0.439592,0.505968,0.436326,0.517423,0.345801,0.487977,0.350036,0.479528,0.405889,0.518643,0.379256,0.510557,0.366361,0.502586,0.359058,0.489524,0.358599,0.494006,0.357794,0.494665,0.401733,0.547123,0.363969,0.516496,0.380945,0.527873,0.400181,0.47577,0.369623,0.473162,0.421915,0.484349,0.429634,0.491759,0.432977,0.497171,0.430389,0.498173,0.455346,0.521335,0.447474,0.533433,0.435141,0.504263,0.426929,0.527296,0.413335,0.531107,0.441192,0.524292,0.400553,0.48074,0.372986,0.478697,0.374205,0.482278,0.427399,0.49423,0.420458,0.48844,0.425861,0.496263,0.400306,0.484372,0.399612,0.488637,0.426429,0.502678,0.424092,0.498239,0.426066,0.499653,0.366671,0.501103,0.481403,0.560881,0.486105,0.54219,0.42309,0.469929,0.438503,0.497233,0.463609,0.529995,0.423488,0.478303,0.487086,0.32603,0.486968,0.33175,0.47464,0.325258,0.474273,0.319659,0.487492,0.320466,0.458067,0.32314,0.475097,0.33027,0.459062,0.327161,0.420357,0.304157,0.454525,0.30161,0.454776,0.297588,0.472444,0.292067,0.473505,0.296711,0.489325,0.296724,0.489642,0.302758,0.473952,0.301936,0.488936,0.291403,0.488399,0.286653,0.488001,0.281808,0.476389,0.336788,0.470058,0.282282,0.471338,0.287377,0.060861,0.413228,0.061786,0.444922,0.052744,0.456059,0.050919,0.420154,0.176736,0.455839,0.154701,0.51318,0.110698,0.520979,0.118023,0.497651,0.069868,0.35685,0.080119,0.328904,0.064043,0.384173,0.053124,0.382527,0.067719,0.447901,0.066984,0.411657,0.085831,0.350193,0.078359,0.379275,0.101195,0.324071,0.109119,0.311933,0.093925,0.399329,0.171768,0.364346,0.166948,0.338053,0.145688,0.377098,0.141133,0.364602,0.121326,0.493126,0.073672,0.441135,0.110315,0.474075,0.113795,0.46821,0.106299,0.480821,0.142008,0.44441,0.092384,0.450968,0.104107,0.424599,0.080784,0.479595,0.071575,0.476746,0.076102,0.35999,0.156226,0.432914,0.099019,0.493109,0.092053,0.49578,0.115966,0.449307,0.11228,0.405297,0.4523,0.76566,0.461272,0.71338,0.466298,0.666947,0.438909,0.62585,0.485747,0.384781,0.484185,0.421655,0.46855,0.625771,0.468232,0.588104,0.48734,0.526857,0.411846,0.747064,0.436664,0.596902,0.430628,0.576108,0.405225,0.517232,0.416475,0.538739,0.430596,0.534196,0.375012,0.725585,0.344909,0.761595,0.392462,0.51576,0.399673,0.536165,0.354381,0.671463,0.380834,0.521273,0.397517,0.528404,0.391979,0.514393,0.380423,0.537553,0.313102,0.650786,0.36598,0.508192,0.366046,0.505748,0.379133,0.509074,0.359393,0.523133,0.455253,0.543222,0.128405,0.250857,0.0812,0.511398,0.066724,0.546466,0.038957,0.472137,0.037411,0.425655,0.061531,0.489206,0.048313,0.51449,0.039091,0.376044,0.44493,0.121739,0.395938,0.120717,0.290038,0.201479,0.266129,0.633488,0.430783,0.82519,0.382713,0.793366,0.352679,0.501001,0.306717,0.240795,0.477056,0.347534,0.447388,0.338342,0.476778,0.353923,0.464423,0.353774,0.462994,0.341226,0.400367,0.318223,0.39958,0.303272,0.105849,0.294837,0.190504,0.33464,0.192907,0.362916,0.220789,0.460451,0.227324,0.407647,0.342679,0.471992,0.226756,0.368233,0.22391,0.335894,0.449971,0.435926,0.447468,0.389312,0.454112,0.392572,0.403475,0.347894,0.340199,0.297468,0.372892,0.311096,0.349792,0.269253,0.302459,0.349704,0.402283,0.237475,0.372577,0.249218,0.355346,0.442722,0.360935,0.457729,0.37767,0.289068,0.390808,0.273211,0.462794,0.246138,0.39556,0.461223,0.46638,0.416101,0.266696,0.37638,0.263003,0.341478,0.473513,0.537057,0.432236,0.504035,0.450215,0.349877,0.278713,0.097418,0.33281,0.086792,0.269949,0.032654,0.323743,0.022228,0.405477,0.291039,0.234724,0.149766,0.233511,0.184339,0.192055,0.194162,0.18916,0.162242,0.149567,0.170164,0.04422,0.136084,0.159859,0.317441,0.063233,0.186472,0.392154,0.080814,0.384625,0.015154,0.426113,0.288688,0.205047,0.623227,0.007332,0.215065,0.017422,0.179591,0.03908,0.241916,0.335641,0.876014,0.31152,0.833791,0.09978,0.887177,0.040444,0.843463,0.052389,0.808495,0.112316,0.845726,0.015819,0.776894,0.022421,0.748335,0.196342,0.855725,0.194852,0.900501,0.009558,0.693883,0.010036,0.670846,0.009801,0.603109,0.009145,0.585234,0.00859,0.499578,0.008389,0.513691,0.008437,0.42716,0.009396,0.417484,0.007351,0.304146,0.007619,0.289605,0.008448,0.365499,0.008794,0.35035,0.286038,0.791745,0.262755,0.750668,0.067211,0.738694,0.060994,0.773754,0.027822,0.718452,0.030527,0.687709,0.120966,0.766393,0.119352,0.80628,0.187032,0.767617,0.193752,0.8118,0.023077,0.620361,0.016622,0.645983,0.008615,0.565116,0.015904,0.544215,0.011951,0.46509,0.007461,0.482141,0.009533,0.401793,0.015034,0.386231,0.011201,0.33026,0.005784,0.24672,0.006649,0.269933,0.124562,0.724106,0.072623,0.702467,0.079683,0.660878,0.130613,0.673848,0.191312,0.673275,0.182964,0.722206,0.025911,0.594351,0.034652,0.65681,0.020454,0.447446,0.022601,0.52252,0.021445,0.375651,0.055258,0.584145,0.027001,0.434475,0.031329,0.42897,0.030887,0.485171,0.026975,0.502168,0.038558,0.538921,0.026733,0.567178,0.044596,0.622863,0.036232,0.311494,0.031943,0.371405,0.027138,0.371088,0.090639,0.454388,0.08794,0.459898,0.102313,0.464767,0.099939,0.471146,0.126632,0.467175,0.124126,0.474933,0.120532,0.483919,0.08353,0.463617,0.09531,0.476359,0.085073,0.43107,0.11588,0.463751,0.103571,0.460231,0.290766,0.415558,0.301191,0.43134,0.31832,0.43343,0.459995,0.560589,0.476571,0.572323,0.420969,0.512667,0.422784,0.514754,0.448212,0.506771,0.457968,0.515617,0.362531,0.481204,0.364688,0.484561,0.444428,0.48537,0.442794,0.49048,0.42646,0.500818,0.428917,0.500728,0.410474,0.492853,0.411642,0.488274,0.424739,0.304732,0.436778,0.310284,0.422174,0.302894,0.433321,0.302884,0.427489,0.302646,0.140301,0.325327,0.132533,0.312277,0.111875,0.357692,0.118938,0.363836,0.13523,0.336802,0.130295,0.334582,0.137057,0.334694,0.13906,0.343031,0.1366,0.375156,0.133401,0.379934,0.133513,0.370277,0.139299,0.372877,0.13814,0.380684,0.136732,0.432359,0.138413,0.435244,0.135185,0.434013,0.135654,0.426818,0.127514,0.403358,0.121261,0.411393,0.125291,0.395332,0.134255,0.399891,0.130782,0.412501,0.080239,0.357634,0.084603,0.343169,0.104117,0.400739,0.103743,0.408895,0.11005,0.389785,0.149978,0.346654,0.152741,0.349601,0.148072,0.349038,0.146582,0.340391,0.155627,0.354789,0.157761,0.353595,0.156365,0.361317,0.157925,0.386921,0.15818,0.396874,0.15561,0.384706,0.158926,0.383338,0.159827,0.379409,0.158236,0.372222,0.162194,0.380451,0.126021,0.366679,0.122609,0.372205,0.129825,0.363083,0.138322,0.401458,0.138659,0.390491,0.141461,0.404901,0.13852,0.412381,0.139135,0.384706,0.141118,0.384519,0.359354,0.506435,0.360113,0.5027,0.430333,0.500774,0.429398,0.498585,0.431581,0.500714,0.430762,0.503848,0.428437,0.506958,0.425706,0.505398,0.43478,0.508868,0.438786,0.511496,0.456255,0.314455,0.185279,0.426902,0.166765,0.422316,0.103365,0.219192,0.095728,0.197568,0.066874,0.117328,0.433445,0.299735,0.427435,0.301564,0.454405,0.292074,0.443848,0.296323,0.081278,0.402449,0.089512,0.374669,0.150273,0.444813,0.153775,0.429833,0.152563,0.447061,0.14373,0.457319,0.148255,0.442852,0.147971,0.370477,0.150686,0.368108,0.150191,0.376473,0.144297,0.371062,0.143508,0.363079,0.143742,0.35084,0.148729,0.358765,0.139942,0.352694,0.080081,0.434969,0.075597,0.406319,0.075694,0.439599,0.151847,0.45633,0.142817,0.470402,0.074809,0.381974,0.070161,0.410564,0.096146,0.377373,0.104558,0.36129,0.102031,0.344222,0.105805,0.350317,0.09726,0.353481,0.09874,0.339443,0.107419,0.33768,0.116455,0.345009,0.120061,0.345681,0.11351,0.348911,0.115105,0.340511,0.122709,0.304135,0.126496,0.2972,0.12292,0.319217,0.116121,0.319297,0.121428,0.314199,0.130376,0.322091,0.123518,0.325441,0.137614,0.455212,0.136156,0.454738,0.142388,0.449323,0.135134,0.459095,0.132796,0.462085,0.134057,0.463318,0.127385,0.464649,0.132732,0.45009,0.132905,0.454112,0.134886,0.454164,0.128648,0.4597,0.138517,0.446928,0.147405,0.408795,0.133955,0.43539,0.134317,0.439661,0.130037,0.43268,0.429405,0.380327,0.423015,0.388127,0.438152,0.388727,0.434835,0.394782,0.47192,0.371152,0.471155,0.373184,0.469253,0.37017,0.475821,0.370455,0.47113,0.376001,0.467129,0.377818,0.475259,0.377124,0.356396,0.490856,0.356896,0.491367,0.353426,0.489179,0.425312,0.498885,0.427289,0.497572,0.452982,0.406284,0.44797,0.4039,0.459821,0.377931,0.463793,0.369609,0.069768,0.253452,0.083457,0.287611,0.461361,0.211386,0.482468,0.209487,0.433543,0.219338,0.482769,0.232175,0.44621,0.46452,0.454968,0.470587,0.446907,0.47442,0.437971,0.458307,0.444498,0.452935,0.362645,0.379525,0.360092,0.363636,0.381125,0.385306,0.365146,0.394799,0.343066,0.373652,0.327544,0.40081,0.325379,0.38489,0.347976,0.404594,0.330552,0.416691,0.307805,0.399296,0.292383,0.456886,0.266768,0.444666,0.356731,0.333008,0.487899,0.458957,0.279459,0.311889,0.276539,0.277906,0.484942,0.440382,0.467259,0.435354,0.422638,0.399958,0.430305,0.402892,0.423705,0.413684,0.411872,0.395333,0.451837,0.378093,0.464684,0.364118,0.453398,0.3661,0.486113,0.370275,0.440786,0.373359,0.466747,0.402074,0.484438,0.405614,0.440006,0.261826,0.416051,0.268895,0.470971,0.455974,0.440767,0.40181,0.438394,0.40254,0.43992,0.395998,0.44289,0.401879,0.442811,0.406602,0.485439,0.36457,0.47486,0.36432,0.445306,0.402841,0.444453,0.3982,0.446283,0.406834,0.440468,0.389291,0.442918,0.381993,0.442493,0.390911,0.446071,0.410522,0.451075,0.414111,0.444765,0.414825,0.404766,0.441315,0.418299,0.44622,0.406842,0.450978,0.388993,0.437435,0.402686,0.430046,0.32737,0.472156,0.31249,0.464037,0.488647,0.487717,0.472539,0.480619,0.36617,0.503436,0.41896,0.518442,0.423941,0.515633,0.427618,0.511763,0.426467,0.517503,0.429161,0.519317,0.431943,0.508165,0.432218,0.522911,0.346295,0.483612,0.357572,0.492023,0.385105,0.473476,0.382634,0.467012,0.412844,0.479704,0.412537,0.473316,0.386621,0.478705,0.426942,0.488572,0.425017,0.491798,0.428976,0.4962,0.45192,0.527429,0.444724,0.518358,0.434334,0.500409,0.439262,0.501337,0.441547,0.514443,0.438555,0.520458,0.442982,0.508583,0.3869,0.482295,0.419838,0.490211,0.423585,0.494481,0.385877,0.486121,0.364162,0.486564,0.422077,0.497611,0.428246,0.496858,0.36082,0.49901,0.360555,0.501114,0.361237,0.498431,0.484288,0.550968,0.431173,0.462121,0.432575,0.475583,0.443025,0.498767,0.466215,0.523914,0.430695,0.483506,0.474539,0.322623,0.487129,0.323297,0.457626,0.320272,0.473835,0.316719,0.488261,0.317548,0.443015,0.30297,0.443496,0.301892,0.45419,0.303058,0.44358,0.297809,0.454699,0.295761,0.443738,0.299182,0.473055,0.294331,0.489489,0.299865,0.473931,0.299339,0.489135,0.293888,0.488713,0.288957,0.489668,0.304794,0.47387,0.30382,0.423872,0.302382,0.427224,0.302182,0.433628,0.301537,0.47191,0.289738,0.081889,0.376668,0.089931,0.349521,0.086358,0.402837,0.105979,0.316862,0.099007,0.322583,0.101818,0.317447,0.111629,0.313509,0.108092,0.318224,0.140196,0.334841,0.139212,0.331622,0.137379,0.327053,0.089542,0.430523,0.094785,0.422732,0.150805,0.408968,0.149333,0.426037,0.151197,0.394642,0.154026,0.411186,0.169617,0.350508,0.112163,0.471153,0.125622,0.470799,0.108434,0.476663,0.098563,0.473608,0.079913,0.452768,0.081817,0.450563,0.086324,0.462097,0.077949,0.45409,0.146885,0.440416,0.14543,0.435917,0.088557,0.442896,0.093212,0.450291,0.087431,0.442367,0.08712,0.436961,0.138731,0.418387,0.141005,0.423754,0.136897,0.418854,0.107544,0.416848,0.172848,0.379138,0.077339,0.462819,0.089262,0.479602,0.075407,0.453584,0.070987,0.442405,0.118204,0.311789,0.119554,0.309856,0.120467,0.307525,0.10721,0.310389,0.103208,0.412646,0.099214,0.416361,0.156792,0.413311,0.15973,0.414842,0.156388,0.366118,0.154362,0.365436,0.137242,0.355193,0.13545,0.358352,0.131052,0.349865,0.151264,0.384159,0.146506,0.384195,0.10311,0.487793,0.133338,0.419963,0.127252,0.421227,0.112296,0.418647,0.486616,0.378536,0.484507,0.416646,0.484103,0.426825,0.414846,0.534536,0.428661,0.530341,0.380979,0.524208,0.398586,0.531885,0.365354,0.514135,0.449395,0.549544,0.442002,0.538999,0.436427,0.529719,0.361729,0.497221,0.263254,0.207611,0.273419,0.241155,0.111063,0.256326,0.122033,0.284339,0.192113,0.348365,0.22494,0.433361,0.33766,0.477825,0.22566,0.351641,0.425407,0.4276,0.434222,0.43385,0.42727,0.440522,0.414569,0.42239,0.400944,0.417701,0.399332,0.40452,0.385344,0.413537,0.442357,0.440661,0.441748,0.429239,0.451964,0.447362,0.435253,0.403306,0.437996,0.412672,0.446733,0.394683,0.453491,0.397956,0.444503,0.392835,0.445675,0.387057,0.395182,0.374854,0.389762,0.343531,0.397507,0.390325,0.320947,0.289792,0.320006,0.322129,0.387452,0.316992,0.332128,0.256938,0.323566,0.369378,0.304164,0.366093,0.321978,0.353859,0.39854,0.224301,0.363011,0.235318,0.334387,0.43091,0.35303,0.431949,0.337682,0.443145,0.351848,0.467831,0.357616,0.475608,0.345687,0.458902,0.357341,0.3047,0.36462,0.279884,0.406673,0.250317,0.381961,0.261895,0.371649,0.434424,0.373829,0.444507,0.369586,0.422569,0.367528,0.409254,0.462122,0.234458,0.435595,0.239397,0.378632,0.458789,0.46634,0.420851,0.429242,0.452098,0.288486,0.397826,0.268879,0.395792,0.286421,0.379832,0.282741,0.345518,0.284582,0.362549,0.264846,0.358604,0.463221,0.256762,0.483663,0.2548,0.41212,0.486501,0.412385,0.484466,0.410437,0.464863,0.487043,0.534222,0.475428,0.529918,0.443225,0.503333,0.466775,0.411871,0.453044,0.371785,0.470432,0.544691,0.459968,0.536556,0.442971,0.420649,0.449667,0.426613,0.398863,0.282955,0.38945,0.296885,0.25362,0.105406,0.260773,0.142238,0.258963,0.176843,0.244317,0.040348,0.22757,0.386401,0.192595,0.379221,0.08047,0.164519,0.091382,0.310732,0.093408,0.319909,0.44407,0.300535,0.45494,0.299646,0.050104,0.212383,0.027519,0.158141,0.083591,0.447817,0.085164,0.445175,0.089376,0.457109,0.095987,0.336371,0.103384,0.326948,0.093189,0.334747,0.101275,0.468047,0.134689,0.46686,0.134813,0.471478,0.113131,0.333508,0.111437,0.326821,0.118909,0.331886,0.122255,0.479257,0.133212,0.477299,0.130095,0.482418,0.120239,0.488523,0.109109,0.354593,0.109839,0.321706,0.124491,0.332368,0.125565,0.340298,0.125103,0.346968,0.123741,0.351628,0.083576,0.431225,0.086383,0.443284,0.091629,0.452374,0.114972,0.465704,0.116683,0.462149,0.103072,0.462165,0.10412,0.458861,0.43418,0.52593,0.095568,0.320168,0.091149,0.327904,0.151736,0.36458,0.091108,0.332634,0.120441,0.427047,0.118575,0.420176,0.364653,0.483474,0.374327,0.480924,0.358795,0.487129,0.35721,0.494689,0.379446,0.511591,0.392942,0.516869,0.406589,0.519772,0.429655,0.507972,0.38713,0.480664,0.400649,0.48264,0.424247,0.493184,0.426443,0.495102,0.389928,0.937429,0.390306,0.937321,0.390308,0.937582,0.400504,0.927344,0.486909,0.898755,0.466331,0.901826,0.437545,0.970423,0.464288,0.981192,0.484184,0.9841,0.404841,0.952296,0.420899,0.962079,0.418088,0.918157,0.436581,0.910486,0.615032,0.936799,0.615211,0.936959,0.512335,0.893523,0.499614,0.893131,0.599037,0.924056,0.532327,0.896568,0.562231,0.905819,0.535874,0.985659,0.514186,0.989932,0.614878,0.937167,0.598308,0.952474,0.581093,0.914049,0.56542,0.972779,0.582575,0.963158,0.499784,0.990182,0.006071,0.431019,0.006137,0.522045,0.352922,0.91997,0.193744,0.946534,0.006166,0.37163,0.005262,0.311733,0.007808,0.61678,0.023677,0.878027,0.006849,0.803353,0.006844,0.713782,0.083828,0.92964,0.38417,0.937363,0.384349,0.937203,0.486895,0.893568,0.400299,0.924403,0.437042,0.906037,0.466913,0.896682,0.463677,0.985785,0.48538,0.989983,0.384504,0.93757,0.401128,0.952819,0.418208,0.914333,0.434087,0.973008,0.416898,0.963448 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_model_vertex.txt b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_model_vertex.txt deleted file mode 100644 index e88865df..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_model_vertex.txt +++ /dev/null @@ -1 +0,0 @@ -21.4137,-38.5077,-24.0265,20.9555,-38.414,-24.7647,18.3299,-38.0893,-21.6079,21.2284,-38.8036,-24.884,18.7851,-38.5266,-22.675,13.1137,-37.9563,-18.3142,0.31165,-37.3683,-15.6232,0.341106,-37.4856,-13.9923,0.315241,-36.8766,-15.7272,0.34208,-37.1129,-13.6105,12.6637,-38.1007,-19.6627,18.1155,-38.5549,-23.1948,7.84383,-37.0673,-15.2969,3.42474,-36.9433,-13.9374,13.3171,-38.4112,-18.679,18.5421,-38.8047,-23.2719,3.00959,-37.3004,-15.8346,3.37666,-37.3708,-14.1392,7.9411,-37.5466,-15.4716,7.38708,-37.2062,-16.9076,7.33833,-37.5017,-16.9958,3.16038,-36.8763,-15.8811,12.8176,-38.3628,-19.7731,21.3338,-38.5248,-24.6121,21.1065,-38.4773,-24.4107,21.156,-38.5995,-24.4399,21.4063,-38.5618,-24.9577,15.9088,-38.2336,-20.267,0.328451,-37.3105,-14.623,15.9732,-38.5417,-21.0835,13.0162,-38.2572,-19.1266,18.612,-38.5725,-22.8867,15.5826,-38.4521,-21.4698,16.2439,-38.6027,-20.7993,3.19111,-37.1647,-14.8433,7.59956,-37.3633,-16.0875,7.59956,-37.3633,-16.0875,3.19111,-37.1647,-14.8433,15.9732,-38.5417,-21.0835,13.0162,-38.2572,-19.1266,15.8607,-38.7022,-21.5836,18.612,-38.5725,-22.8867,0.328451,-37.3105,-14.623,14.45,-80.0266,-34.0917,22.7125,-77.6096,-39.1905,16.9845,-80.9218,-43.4479,64.8393,8.06158,-51.0036,67.3913,1.1576,-60.1988,62.3475,0.202042,-46.2349,59.3761,10.7712,-42.5258,11.2483,41.6227,-22.9586,16.9001,45.8969,-21.8091,44.2853,27.617,-35.1869,43.9136,24.9275,-35.3614,22.7205,31.5089,-27.6029,19.4877,29.3812,-29.669,19.3748,29.0937,-28.3962,22.6575,31.3588,-26.8724,42.6086,17.5824,-32.0922,7.30872,25.9694,-25.3187,7.91288,30.1422,-26.2298,9.6337,27.4292,-27.394,14.1873,28.5243,-28.5185,12.4511,24.4998,-28.536,42.7192,26.2147,-34.9178,16.2893,21.1167,-28.3364,15.8093,17.8907,-27.5618,12.3042,20.9238,-27.323,17.8521,25.9361,-30.3315,17.8672,26.975,-29.6564,21.4259,25.4292,-31.7939,22.0568,-37.5796,-22.7631,18.3652,-36.3384,-19.2014,23.6223,-38.2329,-23.9645,23.5785,-35.4361,-21.8648,28.0702,-37.3672,-24.7174,25.5619,-37.9863,-24.1243,16.459,-45.0474,-19.2204,21.7094,-40.9627,-23.816,12.5046,-29.7899,-14.0662,17.7166,-32.2828,-17.063,19.1299,-38.8356,-22.544,38.5836,24.4422,-32.7544,67.9911,-18.515,-104.764,68.2092,-24.3974,-111.605,66.4851,-25.488,-110.277,74.5075,-9.8393,-119.409,77.1606,-11.7864,-121.508,76.3628,-4.91094,-123.447,71.3289,-22.5284,-110.359,69.742,-17.9234,-107.181,73.3172,14.6122,-106.235,78.8295,23.9908,-116.811,79.5206,26.0701,-115.563,70.6447,-3.70972,-112.296,70.2673,-7.9023,-114.25,75.2214,8.69395,-110.022,75.8571,13.3005,-110.049,75.6032,10.7447,-113.5,73.6808,6.94236,-116.134,80.9648,2.39109,-130.935,68.5936,-17.158,-127.605,68.6049,-22.3986,-123.721,81.6321,7.53493,-129.675,81.2958,10.931,-132.372,78.5017,-6.39824,-125.723,69.1505,-13.7439,-104.716,69.1687,-11.3175,-101.709,70.7787,-4.51868,-101.655,71.8596,-3.40618,-104.043,70.1839,-9.1389,-103.89,73.6541,-13.0919,-115.154,73.2368,4.04914,-112.302,80.7346,19.6947,-129.264,80.5205,17.9099,-128.252,80.5445,15.454,-126.961,77.3499,20.2187,-116.515,79.4642,20.1411,-124.33,80.2045,22.3496,-124.813,79.0737,17.2251,-122.443,29.2289,-76.2777,-52.4955,42.7495,30.9101,-31.5518,62.5394,-32.9292,-110.838,63.8051,-33.4579,-100.885,64.587,-29.0888,-107.415,6.1379,31.6624,-24.9261,12.8389,-35.8237,-16.0525,57.4409,-47.1925,-108.848,57.0663,-49.7048,-119.62,55.3374,-53.3035,-112.008,70.341,-4.07157,-90.0978,70.1752,-4.22789,-97.391,56.5736,-58.6473,-125.102,57.6308,-47.9613,-132.027,19.9911,-40.6626,-22.8944,19.6525,-39.5106,-22.7844,22.288,-39.116,-24.5557,24.9748,-39.1493,-24.8017,15.7894,-43.7248,-18.4565,15.2438,-42.3857,-18.1583,33.4812,-72.1332,-47.4229,40.6448,-34.586,-174.977,47.4573,-40.9522,-160.984,46.6855,-30.7917,-166.974,56.2545,86.3685,-64.202,47.9847,88.6692,-53.1179,49.7219,96.0837,-63.6674,82.3559,12.1394,-136.11,81.2919,12.8363,-138.497,81.0514,0.775043,-133.027,80.1262,0.621144,-135.827,77.8622,-8.82699,-131.366,78.7687,-7.9608,-127.892,74.4042,5.69226,-105.024,70.7559,-12.5294,-107.108,77.9243,1.78469,-137.969,71.2688,18.0794,-110.128,71.7068,9.77412,-103.082,72.9984,-4.56963,-134.884,73.5967,-23.4364,-121.664,75.8915,-18.9115,-119.186,77.2862,-14.2477,-123.874,75.6471,-16.9429,-127.399,74.3016,-20.0353,-114.899,75.7388,-15.8582,-116.365,65.9734,-25.3767,-119.071,72.3815,-24.9479,-115.845,69.0567,-26.3319,-117.333,73.4987,-14.6509,-112.408,72.0154,-17.9027,-110.635,78.0752,22.3969,-109.186,75.8671,15.8354,-106.121,81.3586,22.1487,-130.224,77.7144,21.9946,-110.318,76.821,19.9496,-112.113,76.5124,16.8888,-109.012,80.5654,26.2145,-123.482,80.2631,24.5997,-122.944,80.3254,6.32554,-127.25,76.8147,17.9761,-114.784,78.2174,13.2806,-121.408,78.8004,1.1637,-126.483,71.1097,-7.18141,-110.165,71.0249,-10.4875,-111.214,72.4311,-3.03018,-110.013,72.9151,-3.28684,-107.561,75.0217,5.70549,-106.988,74.5457,4.584,-109.662,76.132,14.7995,-112.846,50.021,-28.8364,-160.11,23.0886,-16.6595,-23.9323,21.2042,-10.4389,-24.6269,29.1357,-13.9324,-24.462,18.1805,-13.3752,-23.6253,18.4296,-8.70611,-23.7152,50.6779,23.2633,-40.3266,49.4891,28.6388,-38.5272,30.3302,17.3922,-28.0624,50.5864,39.1457,-36.9445,42.5455,45.0529,-29.7529,7.66468,-13.4273,-16.9422,12.0899,-15.0071,-18.2605,8.40484,-15.9744,-17.1257,10.6467,-11.767,-15.4206,17.1361,-7.39314,-16.422,16.65,-5.48401,-17.3021,17.912,-8.04518,-19.6733,59.1901,92.6511,-82.4614,63.3012,82.2327,-77.4757,15.6458,-13.5912,-18.1701,11.733,-16.8992,-19.053,21.4443,25.2396,-29.8102,1.76476,-109.165,-79.827,1.1643,-63.238,-18.9138,1.37435,-71.7467,-20.8624,0.334527,16.9623,-15.2078,0.399051,7.57357,-8.66838,1.6176,-83.0107,-53.6114,1.63642,-83.2718,-40.8771,1.55788,-77.8126,-25.6911,1.62976,-81.3161,-32.506,1.6338,-87.9009,-68.2703,0.353855,-14.7523,-12.6639,0.422156,-16.1618,-14.4458,0.276573,-21.7007,-13.7847,0.364851,-18.3931,-14.5425,0.251965,-28.156,-11.2747,0.234874,-24.8063,-12.9675,0.858343,-49.7017,-16.5757,0.995967,-54.5828,-19.0269,-0.094685,44.5315,-20.9366,-0.0128636,38.48,-22.1232,0.287345,-30.3395,-10.2901,0.27203,-32.9195,-10.3726,0.478603,-44.4573,-12.026,0.399935,-41.652,-12.1333,0.602519,-46.2572,-12.6191,0.727734,-47.4248,-13.7304,0.373419,-38.6871,-13.0388,-0.39763,87.6487,-30.6217,-0.396454,100.785,-39.0878,-0.335725,74.2906,-25.7734,0.33898,-13.239,-8.4318,0.434686,-1.57237,-2.99384,0.42668,-5.53663,-2.55365,0.374462,-9.75146,-4.09296,0.42562,2.72267,-5.08216,-0.239634,61.8829,-22.4976,-0.164176,52.247,-20.6936,0.258542,24.3148,-20.0476,0.178308,29.067,-22.2348,0.10781,33.4552,-22.8696,0.301392,-35.2108,-11.5336,0.247844,127.226,-112.963,-0.0914064,123.022,-77.1787,1.12258,14.6388,-205.376,1.16303,40.2284,-206.955,0.932757,-26.3407,-192.033,0.961074,-45.1384,-189.222,-0.313486,113.481,-53.4479,0.590385,124.663,-146.18,0.854744,112.461,-172.561,1.02853,91.9155,-190.05,1.12894,66.9137,-201.484,1.03017,-8.8945,-196.612,66.3429,-29.3888,-82.9306,66.5516,-27.1283,-93.5867,64.6791,-36.4187,-88.8484,56.7333,-86.3862,-125.061,52.8737,-90.0654,-117.653,50.7521,-73.1006,-112.557,46.4658,-94.0878,-110.19,44.1389,-74.7008,-104.246,54.8127,-71.7806,-120.676,57.1378,-68.9555,-129.166,58.6012,-82.1186,-133.335,61.9647,-42.9314,-94.6759,58.6686,-48.8948,-99.0306,57.1452,-53.6076,-86.6886,60.4992,-47.3018,-80.3224,71.8428,48.9339,-85.5944,72.0205,30.8716,-82.2038,63.7665,35.1247,-59.3551,64.4453,52.7487,-63.2933,71.4302,46.3236,-125.286,73.5674,48.204,-108.605,71.8048,64.8836,-111.762,69.405,61.3827,-131,7.01029,-88.0648,-69.2977,13.5127,-87.8075,-71.9589,14.4533,-107.291,-83.4009,7.82672,-108.561,-80.9366,62.1114,-24.1411,-133.745,57.6197,-33.5134,-140.503,60.7571,-35.4572,-126.895,63.6157,-14.5584,-138.166,58.5467,-21.278,-145.354,62.8864,-39.2553,-74.199,64.0932,-30.6065,-69.1872,60.4254,-40.5671,-105.34,7.67193,-71.4097,-21.4395,14.6852,-69.8192,-23.6471,14.8244,-76.3768,-27.8817,7.73933,-77.5962,-26.1876,23.0816,-66.0935,-28.5809,23.5446,-73.1008,-32.5521,7.01124,-62.9227,-19.6244,7.72137,-81.1136,-32.9629,7.86572,-82.8964,-41.5966,12.3588,10.1909,-21.6267,11.7112,17.066,-24.8852,16.3052,13.5704,-26.2243,17.7445,6.58028,-24.3727,52.6663,-19.5425,-38.3297,41.7053,-16.6538,-28.2697,39.92,-6.36717,-26.7777,52.6346,-9.72585,-35.3206,61.3788,-11.2519,-48.6068,51.347,0.304712,-32.932,63.925,18.4499,-53.4734,67.9019,16.2372,-62.4914,42.6301,-26.9221,-31.2054,52.0748,-28.8898,-41.1358,3.7093,15.784,-15.7309,4.78969,7.06204,-10.1696,25.3763,85.9183,-34.454,36.4693,83.1681,-39.336,34.3374,71.7631,-33.9322,23.4337,73.6287,-29.213,7.64222,-82.8257,-54.7024,59.3216,-30.379,-54.4215,58.1215,-40.1821,-57.678,33.9515,-67.3633,-40.9958,44.4389,-60.8758,-49.9937,44.4489,-65.9894,-59.2494,34.6367,-75.0691,-76.2829,40.6928,-70.3971,-67.2541,47.8276,-64.8202,-79.4505,41.2399,-70.2142,-86.4623,6.14854,1.75953,-6.98722,9.05034,5.59845,-14.4398,10.9578,-0.315982,-12.0696,19.2221,-2.08762,-23.6733,28.1064,-4.05571,-24.5826,27.3394,-40.8479,-26.1421,16.8997,-13.6778,-20.7059,15.9462,-15.2209,-21.4348,11.2281,-19.0068,-17.879,15.1795,-16.7036,-21.2849,14.9919,-18.7842,-20.1032,4.43248,-13.6579,-14.5817,4.74023,-15.9083,-15.3091,18.8379,-17.6755,-22.402,7.00989,-5.78479,-5.03566,13.2777,-6.40227,-10.8843,13.1947,-9.70305,-11.9688,6.95389,-9.40236,-6.84324,29.3368,-53.5637,-30.2568,21.2083,-57.8887,-26.0343,19.1317,-51.148,-23.3683,25.9874,-47.471,-26.8683,27.3224,-30.9132,-22.9912,22.2719,-28.9921,-20.2008,4.67574,-18.3687,-14.7419,4.46368,-21.5864,-13.5971,7.86282,13.3956,-18.3252,17.3639,-5.09752,-21.8186,17.9914,-8.56138,-21.8675,17.5614,-6.32323,-20.6627,7.7952,-18.7303,-15.8797,17.755,-12.1037,-22.4869,4.28811,-24.5658,-12.5847,4.36472,-27.6628,-11.2959,25.3373,-23.2682,-22.9775,20.4293,-22.585,-20.9286,11.9109,-49.1793,-18.1281,12.6461,-53.3644,-20.7376,6.2718,-54.4162,-19.29,5.84385,-49.8107,-16.6452,17.9536,-34.4895,-17.6679,22.4014,-36.7333,-22.0658,14.9622,-2.49924,-17.8183,17.4823,-47.4013,-20.8753,52.2807,42.7723,-39.2558,59.268,31.4818,-49.4495,56.0753,30.2009,-44.893,44.7712,67.2265,-39.9166,43.2382,56.6851,-34.1898,33.0926,60.8453,-29.1692,54.4211,59.9482,-48.511,53.4484,48.6906,-42.9845,33.3557,53.3766,-26.1811,43.1494,49.9738,-31.0335,21.1849,38.0932,-25.5696,19.3952,42.0871,-24.2054,25.9538,43.7783,-24.4765,26.7429,39.626,-25.1151,7.52153,20.4761,-22.7036,3.76776,23.2403,-20.7642,3.6278,28.0499,-23.0044,25.7227,4.08679,-25.8972,23.3151,10.7022,-27.0921,34.4706,9.33934,-28.1324,37.3142,2.38565,-27.4366,53.4994,16.6357,-38.9847,54.8544,21.9514,-43.2099,59.7561,20.1494,-47.6572,41.3315,40.7429,-29.1432,33.4977,43.4168,-25.8895,33.6677,48.093,-25.4794,48.3157,36.2335,-35.088,52.7282,29.4149,-41.4287,37.6271,32.0887,-27.9079,37.0801,31.6918,-27.8722,32.038,32.648,-25.8236,32.24,33.3246,-25.5952,26.6147,33.9179,-25.1221,26.7429,33.1126,-25.37,21.9278,32.2772,-26.3124,21.5651,32.8622,-26.2319,18.346,29.6767,-27.8305,17.7722,29.9408,-27.8571,15.2461,26.8331,-28.8648,17.5488,30.5888,-27.6642,47.2916,24.8121,-38.1339,46.4156,22.5139,-36.5816,27.1304,32.0682,-26.0625,36.7227,31.0087,-28.3524,40.6927,29.524,-31.7298,42.7552,26.4062,-35.45,42.9479,28.102,-35.2332,42.9619,27.8871,-34.7896,33.1404,39.3572,-25.6711,44.0163,32.0308,-31.9215,39.2136,34.5809,-27.8181,29.3792,20.3102,-27.8671,40.7591,20.5027,-31.6555,21.0221,21.9703,-28.1212,18.0716,23.4094,-28.931,16.7647,24.5664,-29.1271,17.3349,25.2998,-29.6251,12.5845,31.5655,-27.6109,16.4675,35.3145,-26.5988,16.1591,26.6899,-28.857,21.5688,33.6916,-25.9912,26.6607,35.086,-24.8468,17.4245,32.3865,-27.2427,28.9878,22.9895,-28.0132,39.1332,23.1385,-31.1716,38.3418,24.4218,-31.6424,18.5792,24.8159,-29.5774,21.2999,24.1922,-28.6242,18.8097,25.5818,-30.4066,28.783,24.1369,-29.0646,28.6152,24.0516,-30.6823,18.2623,27.322,-30.783,19.001,25.9547,-31.6312,18.2234,26.4307,-31.3031,40.5295,29.7252,-32.2413,6.39183,43.7945,-21.4203,4.19637,38.0154,-22.8787,21.4627,15.3341,-27.5929,15.2582,23.841,-28.8789,10.4135,34.5471,-26.1536,20.7673,18.8441,-27.8354,4.23618,-32.4826,-11.0995,4.33861,-29.8887,-10.7672,7.9311,-32.5097,-12.1655,7.97309,-34.9944,-13.3718,4.09379,-34.9238,-12.2111,12.9109,-33.3919,-14.5011,7.85212,-30.1664,-11.7246,12.7768,-31.5619,-13.9679,24.2227,-37.7224,-23.6317,13.8652,-39.219,-18.1764,14.6108,-40.827,-17.913,10.6972,-43.2947,-14.7152,9.64799,-41.0302,-14.3215,4.44013,-41.3466,-12.4495,3.75285,-38.555,-13.2896,8.61179,-38.6555,-14.7894,5.22733,-44.0942,-12.499,5.96729,-46.0757,-13.2283,5.77713,-47.3298,-14.1324,7.36237,-28.0113,-11.9178,11.6956,-46.7004,-16.2981,11.4813,-45.1523,-15.4192,70.8475,3.29306,-139.161,72.0595,11.4594,-139.45,69.6603,13.9117,-145.659,68.1074,4.24716,-145.308,71.8803,11.399,-95.8012,72.8958,29.2717,-104.867,70.7755,31.7624,-121.607,70.7394,22.925,-118.278,67.4089,-11.0528,-133.241,65.5987,-18.5201,-129.275,69.2691,-4.07431,-136.638,65.7849,-5.38862,-142.5,75.6004,12.8926,-137.38,74.5605,2.81759,-137.525,72.8267,-15.787,-129.643,75.8451,-7.14103,-133.969,70.231,-24.0063,-123.235,67.7502,-25.1219,-119.205,80.2352,0.769851,-128.373,68.8813,-12.764,-96.7339,67.7164,-19.0909,-98.2004,71.5903,-8.03189,-107.897,71.6141,-11.3687,-109.047,71.7123,21.5939,-116.761,78.939,12.8024,-139.834,78.1545,31.1346,-118.133,80.0316,29.4689,-116.233,75.9548,29.7361,-120.824,76.1794,13.1597,-107.283,82.2392,22.1557,-131.266,79.5091,12.0048,-125.469,74.5965,21.5949,-132.08,72.1617,19.6843,-135.729,70.7265,-10.9258,-131.431,72.8573,6.0663,-103.626,73.4463,23.8943,-124.883,71.6105,23.4612,-127.9,78.2606,21.9932,-117.525,75.0007,4.17659,-122.328,14.3054,99.8888,-40.18,13.2487,87.193,-31.7322,12.1888,74.1434,-26.6098,22.5349,62.1626,-24.9778,5.18212,-11.464,-11.3387,6.81677,-2.27756,-5.2724,11.6993,62.0573,-22.8544,11.7579,51.5431,-20.7278,3.53651,32.8122,-23.5778,27.0494,97.4502,-42.8907,23.3261,53.9621,-22.4998,24.8574,48.3283,-22.7787,27.1882,32.114,-26.5747,26.8396,36.8991,-24.8276,21.7303,35.3051,-25.7789,38.2576,93.512,-47.3321,40.1481,103.031,-60.1322,32.0932,31.7732,-26.4738,32.8636,36.562,-25.177,46.6962,78.638,-45.7959,38.33,32.919,-27.794,32.5473,34.5654,-25.2423,32.1282,31.8008,-26.9472,40.1803,37.1311,-28.3872,55.8955,73.273,-54.7169,41.8948,30.3599,-31.4606,41.3057,30.06,-31.3226,36.6423,31.1043,-28.8633,46.0511,33.7731,-33.3272,14.2855,38.7917,-25.1004,59.6588,-39.9227,-116.269,70.8904,29.5724,-133.981,69.9481,40.5033,-141.748,66.9333,17.4468,-154.95,64.659,4.14311,-154.692,70.7131,23.3054,-142.281,68.3083,30.2365,-151.441,61.3348,-8.75586,-151.131,15.64,-81.9095,-58.1311,25.6224,-79.3734,-66.0314,52.248,-59.7085,-72.2996,64.564,68.7996,-68.742,15.0255,112.182,-54.3286,28.4336,108.433,-56.77,46.0709,28.4452,-35.7031,54.1895,-51.9105,-60.6088,7.26892,-24.6528,-13.1878,17.024,-26.8012,-17.3914,7.50115,-21.7766,-14.4036,11.3011,-22.0393,-16.3024,11.7039,-25.5591,-14.9858,33.465,-32.9758,-26.6298,33.3806,-39.277,-27.903,63.6947,-27.8916,-121.459,67.892,-20.9501,-90.1684,69.052,-13.9202,-88.937,71.7446,13.4538,-79.0973,70.1078,-2.32461,-76.5974,49.5874,19.7303,-37.6964,68.2085,-13.2502,-76.9718,67.2388,-21.7847,-78.863,13.3469,2.40361,-19.8327,17.8889,-11.0073,-20.5267,17.2183,-10.4828,-17.0887,32.4878,-24.5104,-25.4253,50.8726,-38.2277,-43.3075,42.3549,-35.5971,-33.2269,47.6127,-47.2342,-43.4936,60.1444,-20.8096,-51.3861,32.3937,-60.78,-34.9808,41.1037,-54.7652,-40.2358,48.4791,8.82999,-32.2362,45.0711,14.3027,-32.2468,40.5676,-42.9102,-33.7266,36.2209,-48.7865,-32.6783,13.4991,-61.4208,-21.9766,32.0573,14.0804,-28.1729,12.4577,-3.74329,-10.9929,65.8234,-11.8359,-62.9518,64.7296,-21.5709,-65.5234,7.75646,36.6843,-24.4033,16.8879,26.878,-28.9806,15.9232,-22.2446,-18.6821,37.0104,-78.5405,-96.1653,30.272,-82.4265,-87.0712,39.2689,-98.2624,-103.343,31.5308,-101.428,-96.2047,31.0351,-43.6782,-28.2304,47.0623,-65.5909,-97.0468,52.9337,-59.2178,-91.8976,54.8771,-55.0928,-102.643,51.3613,-62.5441,-107.229,54.2998,-61.247,-116.449,56.5831,-74.1929,-144.632,66.5278,-23.9395,-101.054,55.8301,-59.6115,-139.253,22.2154,-86.015,-78.1245,22.819,-104.57,-88.7103,23.419,-43.6911,-24.9874,70.9709,66.1129,-90.2368,46.4434,-57.2312,-164.635,50.9695,-64.4193,-155.186,52.3367,-45.8561,-149.773,14.9847,121.728,-77.2791,28.9899,117.461,-78.2532,14.9346,124.294,-145.317,14.229,111.573,-171.486,27.36,108.907,-168.418,28.6677,121.187,-142.616,13.6409,91.0267,-188.853,26.0888,88.4308,-185.551,28.9738,122.76,-110.769,15.0314,126.377,-112.38,13.1085,66.1321,-200.242,24.9989,63.7841,-196.722,12.5443,39.5419,-205.641,23.9373,37.6092,-201.945,22.774,12.5023,-200.75,11.8858,14.1092,-204.21,11.1964,-9.06417,-196.547,21.4732,-10.3109,-195.015,10.5168,-45.512,-189.779,20.68,-47.2322,-187.412,10.9585,-26.7201,-192.313,21.1851,-29.037,-190.26,41.3828,111.031,-79.7959,51.6582,102.573,-81.9427,49.1813,96.411,-157.389,39.0465,103.65,-163.407,37.5691,84.0938,-180.372,47.6723,78.2808,-173.829,50.4726,106.505,-134.457,40.3069,115.041,-138.806,51.7857,107.115,-108.538,41.2094,116.141,-109.471,46.0695,55.7737,-184.392,36.1298,60.2249,-191.288,34.6909,34.8635,-196.209,44.2734,31.6089,-188.8,42.3631,8.11692,-187.527,33.2722,10.2377,-195.098,31.9442,-12.3877,-190.355,41.1605,-13.9366,-182.934,31.3891,-31.8474,-184.757,39.7122,-52.2213,-174.397,30.8202,-49.5112,-182.117,59.1088,95.6701,-128.856,57.6741,87.5282,-150.29,64.3437,75.9771,-141.229,66.2399,81.2522,-120.231,67.1984,81.697,-98.5583,60.5054,95.6939,-105.937,54.3432,50.4437,-176.401,56.0547,71.3175,-166.358,49.514,6.07186,-177.396,52.3064,27.857,-179.624,47.7313,-14.1345,-174.104,67.0873,51.6723,-148.723,55.5492,4.57958,-168.402,60.4398,4.15514,-161.473,63.6478,20.4831,-161.532,58.7955,24.0454,-169.974,65.1603,36.9078,-158.464,60.6602,44.0991,-167.469,62.4748,62.4884,-157.741,53.6601,-26.7048,-152.845,56.6665,-11.3101,-158.383,52.305,-13.1701,-165.875,82.3541,23.4305,-132.478,80.924,24.7802,-134.307,81.2971,29.1691,-124.242,79.7488,31.2517,-125.55,77.4937,24.5324,-109.903,75.4911,25.337,-111.987,73.5547,24.7716,-115.115,78.5715,23.2996,-135.781,77.3879,29.8217,-127.564,81.7777,12.106,-134.464,80.5738,27.4787,-115.522,81.4155,27.2344,-123.619,65.3117,-0.689416,-53.2872,64.2214,4.38973,-49.1558,60.6897,5.30523,-43.0055,13.7438,43.8926,-22.2149,8.41864,47.1256,-20.8025,20.8936,30.59,-28.6219,20.8268,30.3579,-27.613,13.116,26.416,-28.7217,10.917,29.3925,-27.7152,42.3066,23.8899,-33.5521,41.2961,25.218,-33.5442,14.1227,19.2111,-27.4367,14.3545,21.0932,-28.1142,18.1393,26.7899,-31.1005,17.7259,26.3361,-30.0929,24.3508,24.8095,-31.0631,24.3918,24.7476,-29.1508,21.8567,-38.0247,-23.3002,18.5336,-37.2631,-20.4035,22.7806,-38.3474,-24.0633,18.9478,-38.6339,-22.5742,20.6735,-38.6146,-23.7068,68.098,-21.6729,-108.086,67.1978,-24.6678,-111.036,76.5296,-13.9151,-119.081,73.9968,-11.7758,-117.312,71.1299,-19.8283,-109.335,71.9777,-20.8585,-110.883,70.6356,-20.2916,-108.571,70.7055,-17.8179,-108.615,69.7489,-8.15361,-111.285,69.8122,-6.27654,-112.981,70.2275,-9.85321,-112.452,70.7302,-8.8615,-110.347,70.3642,-6.31018,-110.919,75.5693,10.987,-110.691,75.7204,11.4698,-109.718,75.6555,11.9902,-111.152,75.187,9.31406,-111.598,72.242,2.48545,-115.636,73.3745,6.20332,-118.681,72.1919,-0.305749,-116.473,72.5141,0.401498,-112.698,73.1152,5.3558,-114.249,72.0268,-12.5713,-130.934,70.6555,-16.5706,-128.622,77.3785,2.19146,-124.921,78.289,5.48442,-125.388,75.3427,-1.89309,-122.275,68.7585,-16.336,-105.37,68.5277,-15.5938,-104.452,69.3334,-15.7885,-106.072,68.9876,-18.0708,-106.137,68.6097,-14.3501,-103.428,68.483,-14.7439,-102.428,68.9978,-12.7061,-103.279,70.7954,-6.08583,-102.957,71.4114,-3.47345,-102.889,70.9702,-6.476,-103.912,70.3849,-7.10472,-102.537,69.9855,-8.19659,-102.11,69.6312,-9.96849,-102.682,69.8883,-8.0843,-101.085,71.9724,-10.9058,-115.095,72.1014,-8.86024,-116.787,72.194,-11.8882,-113.258,72.8605,0.304073,-111.021,71.4963,-3.2194,-110.859,73.6784,0.796306,-109.865,73.7592,3.86506,-110.95,71.0768,-5.1634,-110.628,71.6899,-5.51104,-110.071,44.3616,29.7858,-33.4771,43.2959,29.232,-33.2785,17.3248,26.0897,-29.65,17.5697,25.6198,-29.91,16.9472,25.8876,-29.3753,17.373,26.8968,-29.1836,18.3843,27.9095,-29.075,18.6665,28.196,-30.3253,16.6269,28.2324,-28.4924,16.0906,28.7088,-28.3953,12.9235,-37.0448,-17.1464,70.9766,3.32429,-92.4823,70.9574,2.42252,-99.6799,57.6815,-48.88,-125.816,57.1221,-55.1432,-128.904,58.1994,-78.6552,-138.797,19.9228,-39.9712,-22.9713,21.2421,-39.1665,-24.1303,15.4587,-43.1222,-18.2508,17.7264,-41.4208,-20.643,80.744,0.487881,-134.366,78.445,-8.68277,-129.573,74.2986,10.3826,-104.968,73.7069,5.7669,-104.281,73.3171,10.1899,-104.64,74.6851,15.2057,-106.05,75.1091,10.5413,-105.363,70.9489,-9.91748,-106.732,70.4072,-10.6869,-105.624,71.0408,-8.38128,-106.022,71.3633,-9.62879,-108.187,71.3093,-11.9118,-108.046,70.361,-15.4545,-107.507,70.0308,-13.2207,-106.085,71.2907,-15.0015,-108.807,82.0199,12.5259,-137.283,79.1795,1.1018,-137.163,80.273,12.9395,-139.51,72.3145,12.1006,-105.027,72.2739,16.3371,-108.162,74.5655,-5.8284,-134.507,76.3934,2.41148,-137.866,78.783,-7.27991,-126.62,77.4936,-12.9031,-122.464,75.735,-19.1893,-123.197,76.5931,-16.92,-121.565,76.602,-15.9434,-125.668,74.5282,-20.7061,-124.669,74.9919,-21.4127,-120.478,75.553,-18.3635,-116.561,75.0375,-17.9121,-115.163,76.2021,-17.1236,-117.96,75.1234,-20.0157,-116.974,66.1543,-26.2545,-114.465,64.8459,-27.9169,-113.554,70.299,-25.3318,-113.624,70.6425,-26.1098,-116.5,68.7467,-25.71,-114.435,69.887,-23.7192,-110.881,71.934,-24.1742,-113.197,76.8273,17.4119,-107.177,77.0706,17.9188,-107.801,76.1247,14.2002,-106.423,77.0108,19.2696,-107.343,77.1036,20.937,-107.787,76.4157,20.4311,-107.595,78.0614,23.8892,-109.554,76.4963,18.2234,-109.924,77.0325,19.2693,-109.17,77.0893,18.4004,-108.402,78.0459,22.2491,-109.849,76.4347,15.1529,-108.221,74.0444,0.995253,-107.254,75.6914,12.8138,-111.507,75.8174,14.2205,-110.828,75.9384,12.6754,-113.34,22.1124,-13.7717,-24.3988,24.4701,-11.1602,-24.4696,18.494,-10.7045,-23.9637,19.2458,-8.95802,-24.4091,9.22583,-14.7585,-17.4657,9.62294,-14.08,-17.4957,10.1086,-15.4195,-17.8095,7.79834,-14.707,-17.0112,9.76023,-13.094,-17.2254,11.3712,-13.355,-17.1654,8.275,-12.068,-16.5404,43.3716,26.9502,-35.2458,43.1992,27.1111,-35.3333,44.5229,26.0225,-36.0661,18.5066,26.1595,-31.4428,18.2191,25.6973,-30.4117,16.8521,-6.31153,-16.492,17.5879,-6.85093,-18.8946,14.1961,-14.4541,-18.4549,12.1411,-16.1163,-18.9987,1.26951,-67.7012,-19.4377,0.367898,11.4071,-11.1931,0.386635,-15.4429,-13.835,-0.0586131,41.3419,-21.5218,0.434835,-43.208,-11.9543,0.535188,-45.5004,-12.2827,0.378986,-40.0453,-12.54,0.363782,-37.893,-13.4882,0.337186,-14.0805,-10.7877,0.440665,-3.59267,-2.5326,0.398729,-7.60446,-3.04991,0.416047,-17.0925,-14.648,0.429304,0.475317,-3.81859,0.280158,-34.1158,-10.8395,0.33174,-36.3199,-12.503,-0.128983,48.1542,-20.5966,1.47241,-75.164,-22.9903,0.299338,21.2699,-18.1286,1.07001,-58.6686,-19.1776,0.0457326,35.8577,-22.6106,0.417793,5.07164,-6.78912,57.6423,-40.5397,-137.153,61.4805,-30.3399,-130.866,14.9152,-73.4192,-25.4457,7.74978,-74.8648,-23.5217,23.5879,-69.8244,-30.3088,7.44148,-67.358,-20.1127,14.4043,12.0866,-24.3889,11.9865,13.9519,-23.2565,13.9259,15.3647,-25.7235,17.0065,10.311,-25.2449,14.982,8.28292,-23.2161,47.1714,-13.0641,-31.2258,47.5817,-18.248,-32.6714,40.943,-11.3581,-27.1829,46.4888,-7.96627,-30.1242,52.7701,-14.7045,-36.8241,57.8443,-5.85392,-40.3672,57.6808,-10.909,-41.7696,52.2298,-4.66537,-33.9458,57.4519,-0.539923,-38.9184,61.9384,-6.07789,-47.3398,64.863,12.7158,-52.6101,68.3295,8.61767,-62.1326,47.6146,-27.9649,-35.7113,4.12717,10.8245,-12.3164,62.0277,-30.6834,-61.7626,60.8717,-40.1132,-65.9469,5.54852,4.28926,-8.46526,9.90133,2.29673,-13.2071,24.3405,-7.37166,-24.3784,20.9776,-6.60823,-24.3324,23.4493,-3.07329,-24.3784,28.9693,-8.60753,-24.3452,16.4404,-14.4004,-21.1181,11.3661,-17.8287,-18.5997,14.9323,-17.5898,-20.7714,4.5959,-14.8234,-15.1577,18.3767,-15.5807,-23.1424,13.4678,-7.98483,-11.2271,7.04732,-7.58019,-5.64305,20.1682,-54.1015,-24.7417,27.6345,-50.2955,-28.3701,8.30819,9.29492,-16.0822,17.846,-7.11941,-22.1274,18.0819,-6.82497,-23.0136,18.0927,-8.69199,-22.8283,17.7981,-7.2069,-21.2325,17.4253,-5.86695,-21.0758,4.75451,-17.0133,-15.148,8.03037,-17.3244,-16.5704,17.7129,-7.03402,-20.135,17.9578,-8.31333,-20.8181,17.2982,-5.93035,-19.5171,18.1219,-10.5874,-23.2082,17.7809,-12.7376,-23.1471,18.0128,-10.2312,-22.3226,16.812,-4.88795,-19.4941,15.8041,-4.028,-17.2457,16.3262,-3.65582,-20.0886,29.759,6.77375,-27.1576,24.506,7.64652,-26.5639,28.4504,9.83603,-27.5293,35.9109,6.13308,-27.8526,31.1692,3.19583,-26.5435,54.905,19.0384,-41.7161,60.2762,15.7045,-45.8437,3.64973,20.2192,-18.7387,7.63082,17.3413,-20.7304,40.8631,29.5725,-31.462,22.4517,31.5324,-26.5011,20.5702,30.4855,-27.1875,19.0674,29.1776,-27.9215,19.9363,31.1316,-27.0694,19.484,31.5592,-27.0502,17.3008,28.1776,-28.4782,19.427,32.2985,-26.8147,47.1958,23.6205,-37.8141,43.2384,27.3369,-35.7644,35.2266,20.1568,-29.1936,36.526,17.2609,-29.487,24.4516,21.071,-27.695,24.9193,17.9687,-27.6731,34.3036,22.8914,-29.1512,19.1097,22.7743,-28.6207,19.5533,24.5736,-29.2364,17.8984,25.0125,-29.7008,14.4474,33.5715,-27.1703,15.6474,30.5703,-27.974,16.2958,25.4514,-29.0409,15.0676,25.2064,-28.9817,15.8998,29.4462,-28.2278,17.5349,31.3364,-27.4708,14.7638,27.4442,-28.7598,33.843,24.1024,-30.0298,21.3698,25.0036,-29.0879,19.7445,25.4744,-30.2734,33.9243,24.1107,-31.5068,41.4086,25.3481,-34.3003,19.8217,25.7536,-31.8939,18.0318,25.3769,-29.9748,42.2728,28.6714,-33.2737,42.7656,29.0623,-33.1157,42.0883,28.6891,-33.4714,5.04583,40.8118,-22.1889,19.1947,11.9613,-26.6571,17.9887,16.5455,-27.6105,14.0165,23.8708,-28.8439,8.93048,32.2623,-26.3357,18.1052,19.9135,-28.1306,7.94554,-33.7489,-12.6297,4.22497,-33.7457,-11.5657,12.8969,-34.5764,-15.1608,7.98557,-36.2105,-14.3764,3.789,-36.1187,-13.0341,16.4651,-38.8077,-20.6146,16.6452,-39.1605,-20.4573,13.5805,-38.7136,-18.3938,17.5533,-40.7951,-20.5592,14.9488,-41.6222,-17.9968,17.2249,-40.2107,-20.4099,10.1684,-42.218,-14.4215,4.07392,-39.8338,-12.8302,9.07631,-39.7618,-14.4596,4.82753,-42.7999,-12.3387,5.6447,-45.2197,-12.8321,3.54086,-37.7783,-13.6854,8.25925,-37.9421,-15.1004,22.0994,-38.7387,-24.3827,21.0157,-38.8358,-23.902,19.3547,-39.1259,-22.5913,11.1445,-44.2946,-15.0548,76.9614,-8.22924,-132.898,74.3855,-16.8606,-128.692,81.0325,1.39565,-131.945,68.5874,-25.2037,-120.944,69.1881,-23.2134,-123.554,68.1155,-23.7244,-122.059,68.2393,-25.9257,-118.386,69.471,-25.8853,-120.226,69.9202,-19.9944,-107.59,69.7368,-20.8132,-107.88,69.2214,-21.863,-108.671,81.1519,12.8225,-132.429,81.5521,10.415,-129.505,73.6176,0.630257,-105.82,74.8251,5.72167,-105.91,72.4145,-3.47182,-105.73,73.1453,0.822937,-104.483,68.257,-16.1239,-97.3932,79.1832,30.4581,-117.081,76.5364,25.0324,-110.747,77.1392,31.1284,-119.241,78.7042,31.437,-126.257,80.2244,19.1537,-138.221,81.2711,19.1307,-137.317,79.855,24.7889,-135.097,79.0097,18.6055,-138.608,75.499,10.3693,-105.96,75.5781,9.57582,-106.896,81.8321,17.836,-133.308,81.8297,21.9748,-130.911,82.1847,17.3679,-133.714,81.5461,15.0015,-134.046,74.2781,5.815,-110.718,74.9534,7.02825,-109.579,74.1857,6.38681,-111.473,77.7205,8.8686,-124.154,69.521,-9.05597,-96.4813,77.1542,19.3303,-136.423,75.9274,25.8945,-129.797,77.8801,17.1728,-138.295,77.4089,12.4512,-139.01,68.0953,-25.7255,-115.903,67.6651,-25.3621,-115.465,66.9544,-25.5187,-115.151,67.0966,-24.5254,-119.73,78.801,6.95741,-125.679,80.4602,8.2019,-127.157,72.5684,1.02717,-103.449,71.8861,1.09657,-102.44,69.359,-11.474,-103.351,69.5677,-11.5485,-104.171,72.0388,-14.2626,-109.795,72.4295,-13.2121,-110.643,72.9665,-16.0344,-111.582,71.5311,-6.35513,-105.7,72.0924,-6.13703,-107.711,74.6458,26.7155,-122.966,74.3208,7.39165,-112.938,74.9073,8.74403,-115.401,76.7143,9.47526,-122.05,4.45657,-12.3771,-13.4541,6.92768,-4.04097,-4.94555,6.56304,-0.434183,-5.88389,26.7513,35.907,-24.7799,21.6752,34.3815,-25.8624,38.7488,33.6343,-27.755,32.7116,35.4709,-25.1388,43.2529,31.4461,-31.5718,16.6467,40.6049,-24.5418,18.6971,36.8295,-26.0396,19.4687,33.9716,-26.4812,41.9812,28.8935,-33.9419,55.0591,-56.593,-79.4163,58.2364,-49.6031,-71.4504,60.0688,-38.4766,-121.796,62.9194,-30.9882,-116.152,68.4608,-17.5752,-89.3176,71.0433,5.22111,-77.5341,50.6318,21.3711,-39.5024,67.6713,-17.6708,-77.7084,22.2743,1.20097,-24.6362,18.4556,2.52389,-23.9171,21.1905,5.18317,-25.2075,26.9756,0.172565,-25.1871,32.4829,-0.786914,-25.8255,33.6751,-5.13505,-25.2178,38.6685,-1.76913,-26.9429,15.4511,4.20263,-22.6946,15.8235,0.651707,-22.0222,12.768,6.19258,-20.5443,18.9468,-6.53483,-23.8489,17.7536,-3.97354,-22.7527,18.0125,-9.44008,-20.1581,17.3241,-8.82448,-16.6658,18.0117,-9.81633,-21.3209,17.823,-11.4924,-21.6189,35.594,-15.2,-25.615,37.3262,-25.6299,-27.6882,34.6965,-9.93972,-25.1199,54.7568,-39.4355,-49.9834,55.9826,-29.7402,-47.4664,37.7705,-34.2724,-29.5663,50.9942,-49.5409,-50.3891,57.2688,-15.6419,-43.1978,60.7065,-16.0553,-49.9579,56.8093,-20.2939,-44.6251,33.4441,-64.2455,-37.8345,43.1085,-57.8693,-44.9662,56.2935,4.51941,-37.5515,50.0662,4.89929,-32.3336,54.5516,8.99606,-36.7672,47.062,18.39,-35.0873,44.4586,21.3951,-34.4102,50.2264,14.9698,-35.5887,46.7607,-36.9103,-37.7121,44.1189,-45.006,-38.0599,30.9581,-57.1409,-32.4734,38.7655,-51.7128,-36.0987,42.8346,5.59564,-29.2262,41.3807,9.12071,-29.3948,44.2088,1.46621,-29.2461,45.4727,-3.06874,-29.4489,14.144,-65.7818,-22.5221,22.2106,-62.0598,-27.2399,38.5989,14.0697,-29.6183,11.86,-2.2577,-11.3155,20.1864,8.79744,-25.9443,64.7369,-6.11549,-54.4986,66.648,-6.26598,-61.7977,63.9611,-11.4305,-55.7298,62.7286,-21.2118,-58.4388,63.2452,-16.3874,-57.025,65.1715,-16.8229,-64.1618,13.0385,-57.0171,-21.6459,6.5855,-58.422,-19.7013,24.3537,24.5055,-28.4447,24.3942,23.5987,-27.979,26.2588,14.4803,-27.6619,3.73017,35.352,-23.3659,6.69671,34.1328,-24.7856,14.1704,25.5295,-28.9703,12.9043,-5.03909,-10.85,15.5622,-15.9482,-21.5132,9.27592,39.2028,-23.7595,12.2223,36.7546,-25.7004,15.9982,-1.91947,-21.051,14.0897,-0.452701,-18.815,33.5676,-46.0456,-30.0603,36.8953,-40.9598,-30.365,40.4045,-76.4568,-100.289,44.1986,-67.8099,-91.7158,50.6254,-61.9403,-85.6962,42.8954,-96.1998,-106.726,68.9993,-8.30302,-76.581,69.6979,-9.68725,-89.1037,56.9278,-65.0186,-134.144,64.6363,-23.4451,-125.874,67.042,-21.3125,-124.161,16.8254,-39.6594,-20.2949,14.1791,-39.9831,-17.9525,54.223,-53.1937,-144.444,53.8312,-69.1212,-150.168,82.0841,18.7434,-136.224,82.5213,18.1197,-135.167,81.8026,24.2276,-133.382,72.963,-21.0974,-125.736,71.8172,-24.2386,-122.589,71.466,-20.5897,-126.399,80.6451,30.333,-124.846,75.3648,20.3749,-108.062,74.2431,20.4151,-108.974,74.2479,-22.5739,-117.826,72.8974,-24.802,-118.7,73.5244,-22.6816,-115.257,74.5033,25.3263,-113.516,73.2115,20.7263,-110.545,72.3577,21.1088,-112.363,72.6301,23.3122,-116.246,76.8754,-15.2115,-120.126,71.0798,-25.8506,-119.494,72.7988,-22.0306,-112.982,73.3122,-19.362,-112.934,74.0762,-17.2091,-113.428,74.6185,-15.6216,-114.121,82.2153,11.9128,-135.16,82.4936,17.5923,-134.318,82.4654,22.6988,-131.765,80.5351,28.4313,-115.75,80.1337,26.7798,-115.414,81.5419,28.091,-123.836,80.9873,26.7196,-123.466,19.4797,33.0084,-26.6434,67.7193,-21.82,-123.544,68.7109,-20.12,-125.465,69.9423,-11.686,-105.149,70.0857,-20.0103,-126.352,76.7777,11.7711,-117.874,75.7482,9.45564,-119.183,41.3825,25.0118,-33.2402,38.3946,24.213,-31.1985,42.8596,26.0195,-34.7397,43.1433,27.7944,-34.6719,36.7908,31.164,-28.0342,32.051,31.9895,-26.1477,27.0069,32.3026,-25.7337,18.0654,28.0392,-28.5218,33.8868,23.8687,-29.4547,28.7869,23.901,-28.4269,19.662,25.2363,-29.6487,18.7756,25.3163,-29.8984,21.5233,-38.5794,-25.2496,21.3695,-38.9593,-25.2147,20.9098,-38.3174,-24.9847,0.310345,-37.9897,-16.8869,0.305383,-36.0143,-17.1822,18.5691,-39.1153,-23.6073,2.89321,-37.9338,-17.106,7.20455,-38.1246,-18.1621,12.0027,-37.5332,-19.9581,7.22282,-36.644,-17.787,3.37568,-36.1487,-17.1371,17.4874,-38.3273,-23.1817,14.8537,-38.0385,-21.5194,15.8322,-39.1555,-22.0794,12.7225,-38.9099,-20.4841,-21.0429,-38.8869,-23.8307,-20.6019,-38.8031,-24.5196,-18.0143,-38.3601,-21.4403,-20.8584,-39.1924,-24.6583,-18.4434,-38.8113,-22.4733,-12.7649,-38.0965,-18.1843,-12.2871,-38.2724,-19.5099,-17.753,-38.8634,-23.0034,-7.45189,-37.108,-15.1873,-2.87632,-36.9549,-13.8571,-12.9603,-38.5568,-18.514,-18.1906,-39.1175,-23.088,-2.45385,-37.3088,-15.7813,-2.80265,-37.3715,-14.0728,-7.52972,-37.5858,-15.3476,-6.95028,-37.2666,-16.7968,-6.90527,-37.5624,-16.8899,-2.60534,-36.8842,-15.8152,-12.4424,-38.5333,-19.6353,-20.9714,-38.9211,-24.3736,-20.7505,-38.8666,-24.1807,-20.7889,-38.982,-24.2147,-21.0464,-38.9627,-24.7134,-15.5727,-38.437,-20.1174,-15.6191,-38.7726,-20.9166,-12.6507,-38.4177,-18.9804,-18.2659,-38.8744,-22.6973,-15.2158,-38.6941,-21.2972,-15.8962,-38.8183,-20.617,-2.63402,-37.1712,-14.7716,-7.17945,-37.4149,-15.9761,-7.17945,-37.4149,-15.9761,-2.63402,-37.1712,-14.7716,-15.6191,-38.7726,-20.9166,-12.6507,-38.4177,-18.9804,-15.4991,-38.9435,-21.4245,-18.2659,-38.8744,-22.6973,-11.7861,-80.3085,-32.9363,-20.5257,-78.1023,-37.5962,-14.3702,-81.3072,-42.1417,-65.2241,8.15396,-52.4647,-67.8492,1.39009,-61.6862,-62.8426,0.355954,-47.5077,-59.8058,10.7254,-43.9181,-11.4772,41.3543,-22.9386,-17.4285,45.6616,-21.8762,-45.2549,27.0687,-35.7777,-44.7437,24.3779,-35.9857,-23.5549,30.9431,-28.0249,-20.2868,28.8721,-29.9816,-20.1759,28.577,-28.7207,-23.4913,30.7933,-27.3006,-43.357,17.2267,-32.9334,-7.68596,26.1192,-24.9548,-8.15382,29.9971,-25.7657,-9.83005,27.3528,-27.0659,-14.3446,28.3437,-28.6951,-12.6506,24.4255,-28.5402,-43.6122,25.6216,-35.4837,-16.7305,21.0268,-28.6108,-16.2683,18.0052,-27.7852,-12.6847,21.0552,-27.3456,-18.5131,25.5295,-30.5545,-18.6051,26.5316,-29.8735,-21.9805,24.987,-32.1666,-21.8088,-37.9339,-22.5791,-18.1423,-36.5696,-19.0723,-23.2813,-38.6008,-23.7957,-23.4424,-35.5891,-21.7451,-27.804,-37.527,-24.5414,-25.3082,-38.2373,-23.9302,-15.6625,-45.25,-18.5975,-21.0682,-41.2239,-23.4772,-12.3672,-29.838,-14.0618,-17.5988,-32.3849,-17.0431,-18.7754,-39.0769,-22.309,-39.2748,23.8486,-33.2673,-67.7071,-18.4182,-106.172,-67.7122,-24.378,-112.907,-66.0202,-25.4375,-111.518,-73.8427,-9.78955,-120.908,-76.4224,-11.7853,-122.991,-75.6303,-4.87531,-124.941,-70.8765,-22.5276,-111.741,-69.4196,-17.8685,-108.622,-73.31,14.9647,-108.071,-78.3908,24.0439,-118.36,-79.1132,26.1432,-117.152,-70.1671,-3.55803,-113.858,-69.684,-7.77637,-115.771,-74.8676,8.82093,-111.621,-75.4799,13.4013,-111.615,-75.1747,10.8329,-115.042,-73.2263,7.05183,-117.675,-80.1082,2.39365,-132.457,-67.8876,-17.1496,-128.834,-67.9228,-22.3883,-124.995,-80.8724,7.52118,-131.181,-80.5244,10.9332,-133.891,-77.6649,-6.3875,-127.223,-68.9381,-13.6089,-106.261,-69.0679,-11.0796,-103.374,-70.7693,-4.19299,-103.464,-71.7364,-3.14104,-105.8,-70.0236,-8.9278,-105.561,-73.0826,-13.0412,-116.659,-72.8331,4.18485,-113.881,-80.1097,19.7058,-130.784,-79.8996,17.9145,-129.757,-79.9437,15.4507,-128.456,-76.8751,20.2661,-118.026,-78.9139,20.1612,-125.84,-79.6733,22.3734,-126.344,-78.5479,17.2435,-123.943,-27.1441,-76.8188,-50.7968,-43.8123,30.3329,-32.0741,-61.9729,-32.9155,-111.675,-63.3716,-33.4403,-101.685,-64.1133,-29.0195,-108.512,-6.38134,31.5456,-24.4669,-12.5373,-35.9271,-15.9697,-56.6903,-47.3227,-108.795,-56.1657,-49.7898,-119.738,-54.4088,-53.4649,-111.713,-70.5561,-3.59563,-91.9701,-70.2968,-3.79581,-99.2795,-55.4753,-58.7709,-125.087,-56.6178,-48.0083,-132.447,-19.4488,-40.9099,-22.5783,-19.2298,-39.7321,-22.5175,-21.8222,-39.4297,-24.3612,-24.5325,-39.4196,-24.6105,-15.1599,-43.9059,-17.9643,-14.7194,-42.526,-17.7583,-31.6652,-72.6101,-45.6411,-39.0578,-34.5392,-175.809,-46.0752,-40.9054,-161.905,-45.1798,-30.7378,-167.935,-57.0805,86.3818,-64.8499,-48.9303,88.6735,-53.3835,-50.4067,96.0224,-64.1335,-81.4665,12.1665,-137.689,-80.3501,12.8862,-140.086,-80.1151,0.788993,-134.57,-79.1435,0.647971,-137.369,-76.9236,-8.81858,-132.847,-77.8716,-7.9554,-129.393,-74.3165,5.96266,-106.812,-70.4714,-12.4188,-108.66,-76.9377,1.81884,-139.474,-71.1962,18.4138,-111.889,-71.9232,10.2274,-104.996,-72.0673,-4.55037,-136.256,-72.8331,-23.4508,-123.055,-75.1835,-18.9353,-120.622,-76.4794,-14.2604,-125.337,-74.7907,-16.9507,-128.825,-73.7053,-20.0496,-116.329,-75.1171,-15.8618,-117.835,-65.3882,-25.3494,-120.225,-71.7494,-24.9638,-117.221,-68.4166,-26.3247,-118.649,-73.009,-14.6108,-113.907,-71.5874,-17.8719,-112.094,-77.8088,22.5522,-110.864,-75.716,16.0773,-107.877,-80.7454,22.169,-131.77,-77.3674,22.0976,-111.918,-76.4072,20.0198,-113.649,-76.1677,16.9999,-110.604,-80.0609,26.2626,-125.054,-79.7719,24.6347,-124.493,-79.6306,6.31873,-128.74,-76.3497,18.0291,-116.293,-77.716,13.3132,-122.915,-78.0693,1.17367,-127.975,-70.7042,-7.02857,-111.757,-70.5375,-10.3714,-112.758,-72.0745,-2.8657,-111.637,-72.6675,-3.08874,-109.247,-74.8177,5.89969,-108.691,-74.2359,4.73437,-111.293,-75.6957,14.8725,-114.373,-48.632,-28.7735,-161.117,-23.5217,-16.5768,-24.2191,-21.7076,-10.2462,-24.8279,-29.6469,-13.7879,-24.6889,-18.5418,-13.3326,-23.7909,-18.9091,-8.54023,-23.832,-51.4579,22.9227,-41.3624,-50.5572,28.3238,-39.2249,-30.995,17.2007,-28.5669,-51.8155,38.995,-37.6214,-43.6694,44.9634,-30.1555,-7.3085,-13.4554,-16.7384,-11.8632,-15.0171,-18.2269,-8.15719,-15.9555,-16.9038,-10.1632,-11.7025,-15.4662,-17.5184,-7.32452,-16.1913,-16.9978,-5.23406,-17.2394,-18.4586,-7.97752,-19.5464,-59.5703,92.6303,-83.3377,-63.8872,82.2694,-78.4603,-15.482,-13.8541,-18.0173,-11.6892,-16.9664,-18.9752,-21.9842,24.7922,-30.2072,-66.0944,-29.2837,-83.8502,-66.257,-26.9698,-94.7633,-64.2946,-36.4707,-89.3428,-55.2096,-86.6644,-124.558,-51.2477,-90.4335,-116.734,-49.3805,-73.4288,-111.652,-44.6713,-94.5284,-108.91,-42.6469,-75.103,-102.968,-53.5019,-72.0209,-120.189,-55.8609,-69.1153,-129.11,-57.1345,-82.3102,-133.264,-61.4896,-43.1358,-94.7423,-58.0467,-49.1715,-98.6656,-56.5249,-53.9951,-85.8268,-60.0001,-47.5645,-79.9387,-72.4122,49.0697,-86.9992,-72.6695,31.1274,-83.8362,-64.5722,35.3022,-60.7231,-65.4803,52.9129,-64.4861,-70.7554,46.3673,-126.692,-73.4428,48.2813,-110.062,-71.4563,64.924,-113.138,-68.5542,61.4189,-132.358,-3.84455,-88.203,-68.6801,-10.6272,-88.0967,-70.8112,-11.2962,-107.587,-82.2849,-4.39883,-108.71,-80.3352,-61.2541,-24.1318,-134.677,-56.5964,-33.4979,-141.307,-59.9461,-35.4667,-127.616,-62.6641,-14.5314,-139.27,-57.4467,-21.2307,-146.384,-62.5153,-39.3534,-74.3578,-63.9137,-30.564,-69.842,-59.8608,-40.6605,-105.679,-5.0533,-71.4499,-21.1112,-12.3129,-69.9632,-22.9627,-12.2437,-76.5166,-26.9476,-4.81657,-77.6122,-25.7335,-21.0072,-66.3344,-27.715,-21.3735,-73.399,-31.2483,-4.79481,-63.0099,-19.3587,-4.65856,-81.1766,-32.3729,-4.75848,-83.0039,-40.942,-12.7757,10.5175,-21.5325,-12.11,17.368,-24.8596,-16.7792,13.7957,-26.4066,-18.2077,6.82125,-24.5166,-52.9785,-19.4747,-38.8937,-42.1413,-16.5482,-28.6964,-40.4902,-6.24544,-27.3967,-53.1753,-9.62412,-36.1242,-61.8608,-11.1103,-49.6154,-52.0099,0.404863,-33.9307,-64.394,18.4729,-54.9707,-68.3787,16.4422,-64.1052,-42.743,-26.8868,-31.4254,-52.0515,-28.8853,-41.3989,-3.3971,16.1317,-15.4032,-4.47689,7.49472,-9.77291,-26.2733,85.9252,-34.2083,-37.4445,83.2207,-39.1513,-35.2468,71.8928,-33.7958,-24.3011,73.7154,-29.0231,-4.54005,-82.96,-54.0586,-59.2319,-30.3763,-54.826,-57.7417,-40.2943,-57.5665,-32.1799,-67.7031,-39.529,-43.1325,-61.1991,-48.6072,-43.121,-66.4914,-57.5055,-32.7994,-75.629,-74.5773,-39.1418,-71.0132,-65.4704,-46.7102,-65.3501,-77.9219,-39.7849,-70.7168,-84.9079,-5.85266,2.16392,-6.51806,-9.34627,6.061,-14.16,-11.147,0.15045,-11.8359,-19.6664,-1.86662,-23.8224,-28.6363,-3.88086,-24.9572,-26.7318,-41.0426,-25.9025,-17.225,-14.0512,-20.5454,-16.1458,-15.4579,-21.3384,-11.2006,-19.0513,-17.8387,-15.3195,-16.8327,-21.352,-15.108,-18.8796,-20.2473,-4.03748,-13.9412,-14.1871,-4.15337,-15.9436,-15.0432,-19.1001,-17.7285,-22.6811,-6.6153,-5.92028,-4.45307,-13.211,-6.41635,-10.4406,-12.7555,-9.89151,-11.7468,-6.43123,-9.81016,-6.39836,-27.9219,-53.7794,-29.5976,-19.4778,-58.0792,-25.3645,-17.723,-51.276,-22.7247,-24.82,-47.6758,-26.3731,-27.2483,-31.0106,-23.0697,-22.246,-29.1044,-20.2808,-4.09619,-18.3666,-14.6599,-3.98659,-21.6023,-13.6244,-8.1138,13.8094,-18.0371,-17.7771,-4.88029,-21.9496,-18.5102,-8.47615,-21.8553,-18.0093,-6.15209,-20.6947,-7.54718,-18.702,-15.6956,-18.227,-12.1643,-22.4518,-3.90996,-24.6023,-12.6784,-3.99417,-27.6956,-11.363,-25.5242,-23.3246,-23.2488,-20.5635,-22.7011,-21.1382,-10.6443,-49.2623,-17.5038,-11.0232,-53.4146,-20.2331,-4.41197,-54.4786,-19.1085,-4.29227,-49.7831,-16.4218,-17.8044,-34.6352,-17.5836,-22.2243,-36.9974,-21.8895,-15.2389,-2.13448,-17.8683,-16.4151,-47.5387,-20.1666,-53.3927,42.7301,-40.0792,-60.1387,31.5365,-50.6671,-57.0097,30.1398,-45.9104,-45.8456,67.3551,-40.1958,-44.1791,56.7768,-34.7374,-33.9128,60.9832,-29.3156,-55.5995,60.0997,-49.3901,-54.4689,48.7669,-43.9533,-34.2186,53.3928,-26.4402,-44.1479,49.9475,-31.559,-21.6157,38.0058,-25.8512,-19.8746,41.9203,-24.2201,-26.6223,43.6647,-24.5895,-27.4149,39.4945,-25.4998,-7.82126,20.8357,-22.4452,-3.5744,23.5304,-20.4338,-3.57818,28.2198,-22.6216,-26.2496,4.24911,-26.327,-23.8562,10.8272,-27.446,-35.179,9.39024,-28.7429,-37.9612,2.49646,-28.1334,-54.0937,16.3294,-40.3602,-55.5098,21.6854,-44.478,-60.2607,20.0083,-49.0527,-42.4597,40.5658,-29.5582,-34.3799,43.2853,-26.1858,-34.5811,47.9985,-25.6544,-49.574,35.9865,-35.675,-53.7404,29.2482,-42.2524,-38.5895,31.5038,-28.3769,-38.0293,31.0827,-28.3284,-32.9331,32.061,-26.2735,-33.1299,32.7837,-26.0266,-27.4422,33.415,-25.5406,-27.6058,32.5367,-25.8286,-22.7507,31.7444,-26.7263,-22.3369,32.4083,-26.6208,-19.1289,29.1903,-28.1565,-18.4672,29.5451,-28.1859,-15.6882,26.5747,-29.1557,-18.118,30.2846,-28.0107,-48.1548,24.4181,-38.9328,-47.1732,22.0084,-37.4157,-27.994,31.4671,-26.5405,-37.6611,30.3927,-28.7967,-41.6782,28.8876,-32.2192,-43.6799,25.8198,-36.0269,-43.9246,27.4872,-35.7868,-43.9388,27.272,-35.3425,-34.019,39.1759,-26.0987,-45.1579,31.5405,-32.4465,-40.2754,34.1918,-28.2559,-29.9943,19.9872,-28.3593,-41.4832,20.0352,-32.3093,-21.5772,21.7199,-28.5408,-18.6269,23.1245,-29.2543,-17.339,24.2449,-29.3364,-18.0103,24.9007,-29.7851,-12.5473,31.3692,-27.5409,-16.6602,35.2125,-26.7583,-16.775,26.3404,-29.0935,-22.2592,33.3305,-26.3927,-27.444,34.6899,-25.262,-17.8107,32.1912,-27.5685,-29.5517,22.5359,-28.5204,-39.8219,22.5874,-31.7167,-39.0191,23.8269,-32.1538,-19.1578,24.4271,-29.8763,-21.8393,23.7907,-29.0603,-19.4075,25.1611,-30.6932,-29.3204,23.6225,-29.5547,-29.1521,23.5409,-31.1668,-18.9798,26.8906,-31.0174,-19.6042,25.5502,-31.9242,-18.8721,26.0363,-31.5554,-41.5175,29.0907,-32.7305,-6.53667,43.6469,-21.3978,-4.26734,37.8555,-22.6236,-22.0053,15.375,-27.9199,-15.6475,23.6318,-29.127,-10.455,34.2698,-25.9008,-21.3127,18.7492,-28.2015,-3.7789,-32.5136,-11.0008,-3.90849,-29.9002,-10.7215,-7.6161,-32.5422,-12.1,-7.61019,-35.033,-13.2891,-3.59658,-34.9612,-12.1145,-12.6834,-33.4765,-14.4536,-7.59687,-30.1766,-11.6783,-12.6218,-31.6157,-13.9478,-23.9822,-38.0371,-23.443,-13.5065,-39.3308,-17.9395,-14.1846,-40.9394,-17.5889,-10.0689,-43.3632,-14.2741,-9.1286,-41.0553,-14.0015,-3.72013,-41.3459,-12.3081,-3.1319,-38.5552,-13.208,-8.1822,-38.6678,-14.6019,-4.36591,-44.0994,-12.2491,-4.92807,-46.1125,-12.8856,-4.49586,-47.3571,-13.8102,-7.14635,-28.0028,-11.8963,-10.7166,-46.8591,-15.666,-10.7132,-45.2829,-14.8717,-69.8042,3.33702,-140.535,-71.0214,11.5176,-140.88,-68.5065,13.9535,-147.025,-66.9696,4.28262,-146.618,-72.4204,11.9104,-97.754,-73.1336,29.5328,-106.547,-70.2653,31.8801,-123.094,-70.3116,23.1308,-119.875,-66.5496,-11.0342,-134.441,-64.8518,-18.5101,-130.356,-68.2988,-4.04416,-137.937,-64.7254,-5.35452,-143.728,-74.6544,12.9617,-138.89,-73.5698,2.8575,-138.969,-71.9996,-15.7879,-130.995,-74.9083,-7.12783,-135.404,-69.4864,-23.9999,-124.565,-67.1378,-25.1076,-120.468,-79.4319,0.767454,-129.875,-68.8513,-12.4281,-98.4626,-67.5011,-18.8475,-99.7292,-71.2938,-7.86692,-109.527,-71.2358,-11.2618,-110.604,-71.3395,21.8379,-118.424,-77.9864,12.8611,-141.391,-77.7488,31.2961,-119.811,-79.6346,29.5986,-117.906,-75.4961,29.9086,-122.476,-75.9207,13.327,-108.953,-81.5495,22.187,-132.846,-78.9225,12.0114,-126.96,-73.7992,21.7018,-133.624,-71.2362,19.7686,-137.202,-69.8984,-10.9168,-132.722,-72.9143,6.43467,-105.496,-72.8502,24.0582,-126.479,-70.8844,23.5888,-129.418,-77.7931,22.0375,-119.05,-74.4023,4.24274,-123.828,-15.1023,99.8449,-40.1243,-14.0882,87.1975,-31.6117,-12.9653,74.208,-26.5598,-23.3132,62.2613,-25.0225,-4.71182,-11.9429,-11.092,-6.49302,-2.08427,-4.70455,-12.3106,62.1047,-22.9559,-12.1753,51.4988,-20.9005,-3.54727,32.7835,-23.2126,-27.87,97.3938,-42.8131,-24.044,53.9524,-22.6336,-25.5938,48.1378,-22.791,-28.0518,31.5132,-27.0494,-27.5732,36.6148,-25.2717,-22.3025,35.0507,-26.2003,-39.1366,93.4814,-47.3492,-40.7657,102.924,-60.4275,-32.9831,31.173,-26.9217,-33.753,36.267,-25.5879,-47.8016,78.7289,-45.9614,-39.3333,32.3964,-28.2466,-33.4397,34.132,-25.6496,-33.0193,31.2014,-27.3951,-41.2789,36.8792,-28.8412,-57.0618,73.3794,-55.4037,-42.9064,29.7508,-31.981,-42.3024,29.435,-31.8247,-37.5834,30.4898,-29.3095,-47.2684,33.4244,-33.8782,-14.5211,38.5905,-25.0551,-58.9538,-39.9533,-116.791,-70.0183,29.6428,-135.416,-68.9178,40.5413,-143.123,-65.6332,17.4811,-156.257,-63.3793,4.17978,-155.944,-69.6441,23.3557,-143.685,-67.0823,30.2761,-152.788,-60.1363,-8.70777,-152.298,-12.8872,-82.2332,-56.9229,-23.3161,-79.8678,-64.4457,-51.4079,-60.1709,-70.9008,-65.4733,68.9062,-69.816,-15.6234,112.105,-54.3989,-29.0167,108.316,-56.9328,-47.1258,27.9687,-36.2971,-53.4563,-52.1895,-59.7315,-7.05633,-24.6507,-13.1559,-16.9976,-26.9062,-17.4526,-7.25956,-21.7605,-14.311,-11.2465,-22.0805,-16.2902,-11.6139,-25.6089,-14.9928,-33.3133,-33.0436,-26.6588,-32.9207,-39.4192,-27.7041,-63.0261,-27.8803,-122.411,-67.7676,-20.6855,-91.6143,-69.106,-13.542,-90.6311,-72.2735,13.8184,-80.8917,-70.5178,-1.94265,-78.3151,-50.2919,19.2741,-38.812,-68.404,-12.9197,-78.5065,-67.1885,-21.5534,-80.1363,-13.7651,2.72438,-19.7532,-18.4498,-11.1809,-20.3971,-17.4324,-10.7464,-16.8355,-32.7089,-24.4775,-25.6225,-50.4571,-38.3168,-43.1818,-42.0462,-35.6604,-33.2115,-46.81,-47.4157,-42.8735,-60.3856,-20.7276,-52.1344,-30.7208,-61.0269,-34.0163,-39.9007,-54.9941,-39.2682,-49.1696,8.83708,-33.3532,-45.8251,14.108,-33.3033,-39.8805,-43.0607,-33.4063,-35.2042,-48.9638,-32.1278,-11.4781,-61.5896,-21.4533,-32.777,14.0484,-28.7077,-12.5271,-3.43723,-10.6368,-66.1908,-11.6056,-64.2309,-64.8057,-21.4121,-66.5536,-7.8702,36.3947,-24.1117,-17.6263,26.4407,-29.1722,-15.9881,-22.3469,-18.787,-35.2781,-79.006,-94.6183,-28.1901,-82.9202,-85.4305,-37.2183,-98.7568,-101.814,-29.1447,-101.928,-94.6005,-30.2462,-43.8379,-27.9105,-45.8205,-65.9975,-95.8165,-51.9911,-59.6436,-90.7903,-53.9669,-55.3791,-101.962,-50.2111,-62.8423,-106.393,-53.1807,-61.4445,-116.027,-55.1565,-74.2836,-144.975,-66.1961,-23.7861,-102.373,-54.6056,-59.6754,-139.62,-19.718,-86.4465,-76.6182,-20.0404,-104.998,-87.2443,-22.506,-43.8957,-24.5552,-71.2575,66.1845,-91.5516,-44.9272,-57.1958,-165.472,-49.5395,-64.4093,-155.864,-51.0997,-45.8283,-150.54,-15.1453,121.643,-77.472,-29.1445,117.311,-78.6484,-13.8034,124.273,-145.605,-12.5553,111.582,-171.765,-25.7533,108.929,-168.961,-27.5949,121.164,-143.177,-11.6066,91.0434,-189.114,-24.1234,88.4594,-186.062,-28.5346,122.651,-111.301,-14.5533,126.316,-112.648,-10.8765,66.1475,-200.487,-22.8407,63.8092,-197.205,-10.2561,39.5561,-205.873,-21.7328,37.6321,-202.405,-20.6552,12.5256,-201.191,-9.6842,14.1236,-204.433,-9.1721,-9.04873,-196.759,-19.5174,-10.2841,-195.439,-8.59076,-45.4959,-189.981,-18.8022,-47.21,-187.816,-9.10771,-26.7079,-192.518,-19.376,-29.0172,-190.671,-41.5738,110.882,-80.367,-51.9233,102.484,-82.6636,-47.826,96.4546,-158.378,-37.5458,103.684,-164.188,-35.7131,84.1336,-181.117,-45.9562,78.3292,-174.782,-49.6208,106.515,-135.444,-39.3245,115.034,-139.6,-51.5038,107.061,-109.444,-40.8326,116.038,-110.216,-44.1607,55.8171,-185.302,-34.0821,60.2598,-191.995,-32.5974,34.8948,-196.885,-42.3145,31.6484,-189.672,-40.4637,8.15565,-188.366,-31.252,10.2671,-195.748,-30.0701,-12.3577,-190.986,-39.3854,-13.9001,-183.754,-29.6535,-31.8222,-185.376,-38.0463,-52.1858,-175.182,-29.025,-49.4848,-182.725,-58.3922,95.7091,-130.011,-56.4753,87.5815,-151.449,-63.319,76.0297,-142.512,-65.6862,81.3024,-121.518,-67.2347,81.7279,-99.7553,-60.3527,95.6888,-106.997,-52.5936,50.4904,-177.477,-54.4969,71.3696,-167.479,-47.7594,6.12171,-178.393,-50.5016,27.9008,-180.659,-46.0908,-14.0845,-175.076,-65.8854,51.7136,-150.048,-53.9504,4.62901,-169.515,-59.0037,4.1993,-162.664,-62.1778,20.5154,-162.776,-57.1549,24.0838,-171.131,-63.7564,36.9484,-159.75,-59.0826,44.1433,-168.669,-61.0989,62.5376,-158.985,-52.4089,-26.6418,-153.849,-55.3237,-11.2491,-159.502,-50.8112,-13.108,-166.941,-81.5965,23.4757,-134.08,-80.1097,24.8444,-135.908,-80.7093,29.2489,-125.871,-79.1226,31.3501,-127.176,-77.2573,24.7348,-111.628,-75.2843,25.5882,-113.732,-73.2944,25.0313,-116.831,-77.7319,23.3756,-137.356,-76.7238,29.9319,-129.162,-80.9679,12.1205,-136.011,-80.1758,27.574,-117.161,-80.8701,27.2959,-125.225,-65.7802,-0.491117,-54.6444,-64.6387,4.52787,-50.5507,-61.1524,5.3902,-44.3286,-14.1227,43.644,-22.2777,-8.66034,47.021,-20.906,-21.7141,30.0487,-28.9923,-21.6453,29.8145,-27.9924,-13.2351,26.266,-28.7962,-10.9296,29.2063,-27.4821,-43.0709,23.3247,-34.1388,-42.0842,24.6174,-34.0789,-14.5442,19.3426,-27.5835,-14.7366,21.0958,-28.2848,-18.8156,26.3846,-31.3388,-18.4237,25.919,-30.2988,-24.8803,24.3378,-31.5027,-24.9173,24.2726,-29.6056,-21.555,-38.4053,-23.116,-18.2623,-37.5252,-20.2524,-22.4233,-38.7361,-23.8931,-18.6042,-38.897,-22.3573,-20.3117,-38.9251,-23.4878,-67.7005,-21.6333,-109.414,-66.7222,-24.633,-112.306,-75.8443,-13.9175,-120.558,-73.3771,-11.7247,-118.814,-70.7321,-19.8055,-110.76,-71.5232,-20.8518,-112.3,-70.2561,-20.2668,-109.982,-70.3466,-17.7727,-110.068,-69.253,-8.00492,-112.838,-69.2763,-6.13153,-114.519,-69.6846,-9.72675,-113.984,-70.2864,-8.72273,-111.915,-69.9161,-6.15271,-112.495,-75.1852,11.0918,-112.26,-75.3579,11.5831,-111.302,-75.2568,12.0861,-112.708,-74.7903,9.4221,-113.165,-71.7603,2.61332,-117.18,-72.8809,6.30814,-120.207,-71.6671,-0.187631,-118.006,-72.0719,0.53924,-114.269,-72.6781,5.48063,-115.804,-71.196,-12.5679,-132.259,-69.8941,-16.5681,-129.916,-76.6942,2.22015,-126.412,-77.6226,5.50329,-126.877,-74.6688,-1.84037,-123.771,-68.4985,-16.2447,-106.834,-68.3013,-15.4719,-105.949,-69.0632,-15.7006,-107.554,-68.6876,-18.0046,-107.565,-68.4255,-14.1902,-104.976,-68.3102,-14.5571,-103.991,-68.8393,-12.5264,-104.874,-70.6987,-5.81168,-104.713,-71.3475,-3.17629,-104.678,-70.825,-6.22957,-105.637,-70.304,-6.83354,-104.282,-69.9137,-7.93184,-103.839,-69.5189,-9.7397,-104.36,-69.8524,-7.78933,-102.841,-71.389,-10.8162,-116.611,-71.4767,-8.76968,-118.296,-71.6623,-11.8044,-114.78,-72.4743,0.453559,-112.621,-71.0871,-3.0591,-112.455,-73.3491,0.953452,-111.496,-73.3992,4.00834,-112.553,-70.6631,-5.00237,-112.222,-71.3115,-5.34933,-111.683,-45.4274,29.2259,-34.026,-44.3044,28.6392,-33.8274,-18.0461,25.6627,-29.8143,-18.2476,25.208,-30.0918,-17.6618,25.4729,-29.5214,-18.1268,26.4445,-29.3824,-19.1597,27.4273,-29.3407,-19.4303,27.7256,-30.5868,-17.2806,27.8626,-28.779,-16.5944,28.4288,-28.7131,-12.5959,-37.1625,-17.0407,-71.3288,3.84083,-94.4108,-71.1442,2.88557,-101.602,-56.7333,-48.943,-126.105,-56.0502,-55.2325,-129.084,-56.755,-78.7993,-138.938,-19.445,-40.205,-22.6934,-20.8002,-39.4392,-23.9069,-14.8885,-43.2773,-17.8088,-17.2091,-41.6126,-20.2866,-79.7791,0.508412,-135.912,-77.5215,-8.67612,-131.066,-74.2633,10.6959,-106.792,-73.6891,6.08473,-106.111,-73.359,10.5551,-106.502,-74.6041,15.5033,-107.851,-75.0069,10.8045,-107.143,-70.6752,-9.77084,-108.333,-70.1776,-10.5356,-107.224,-70.8066,-8.19723,-107.672,-71.0317,-9.49062,-109.781,-70.9811,-11.8038,-109.603,-70.0569,-15.376,-109.003,-69.7819,-13.1032,-107.631,-70.9421,-14.9299,-110.314,-81.1005,12.5636,-138.87,-78.1907,1.13321,-138.691,-79.3207,12.996,-141.089,-72.4249,12.5097,-106.909,-72.2579,16.6986,-109.981,-73.6336,-5.81306,-135.912,-75.4091,2.44784,-139.343,-77.9146,-7.27355,-128.121,-76.7203,-12.9123,-123.938,-74.9408,-19.2066,-124.627,-75.835,-16.9398,-123.013,-75.7627,-15.9545,-127.115,-73.7149,-20.7178,-126.075,-74.2502,-21.4345,-121.894,-74.9114,-18.3828,-118.006,-74.4409,-17.9224,-116.614,-75.5294,-17.1428,-119.413,-74.4666,-20.038,-118.404,-65.6296,-26.2155,-115.666,-64.3102,-27.8713,-114.661,-69.7355,-25.3343,-114.965,-70.0017,-26.1144,-117.845,-68.1719,-25.701,-115.746,-69.4078,-23.7131,-112.223,-71.383,-24.186,-114.572,-76.6116,17.6004,-108.882,-76.8129,18.0812,-109.475,-75.9316,14.406,-108.142,-76.7995,19.4673,-109.06,-76.8859,21.1412,-109.512,-76.2292,20.6628,-109.342,-77.8074,24.067,-111.259,-76.1237,18.3172,-111.49,-76.693,19.3801,-110.77,-76.7818,18.5342,-110.036,-77.7312,22.372,-111.483,-76.1205,15.2866,-109.845,-73.8238,1.19441,-108.954,-75.2783,12.9029,-113.052,-75.4158,14.3103,-112.376,-75.5032,12.7542,-114.874,-22.6008,-13.6274,-24.6464,-24.9986,-10.981,-24.6641,-18.941,-10.5731,-24.0875,-19.7498,-8.75115,-24.5867,-8.93457,-14.7546,-17.3299,-9.30302,-14.0564,-17.436,-9.88109,-15.418,-17.6947,-7.47377,-14.7161,-16.7711,-9.40211,-13.0298,-17.2434,-11.011,-13.236,-17.2608,-7.86826,-12.0742,-16.4506,-44.3111,26.3485,-35.8174,-44.1496,26.509,-35.908,-45.4183,25.4896,-36.6976,-19.1327,25.764,-31.7119,-18.8472,25.2861,-30.6612,-17.2159,-6.12717,-16.3221,-18.0672,-6.69756,-18.8036,-13.9533,-14.5657,-18.3682,-12.0456,-16.1828,-18.9172,-56.6293,-40.5506,-137.797,-60.643,-30.3408,-131.694,-12.4147,-73.5451,-24.6475,-4.96294,-74.8877,-23.1397,-21.4247,-70.0783,-29.2402,-5.01925,-67.4217,-19.8186,-14.8395,12.3699,-24.4382,-12.3858,14.2777,-23.2001,-14.3569,15.6283,-25.8064,-17.4784,10.5544,-25.4077,-15.4254,8.56055,-23.2305,-47.6565,-12.963,-31.854,-47.9544,-18.1627,-33.1859,-41.4649,-11.2387,-27.7088,-47.051,-7.85926,-30.8543,-53.2116,-14.6174,-37.5122,-58.4178,-5.73252,-41.3819,-58.1948,-10.7971,-42.6575,-52.8397,-4.56461,-34.855,-58.0473,-0.421111,-40.0525,-62.4641,-5.919,-48.4768,-65.2549,12.7576,-54.112,-68.7727,8.84157,-63.7248,-47.6506,-27.9455,-35.9547,-3.80866,11.2156,-11.9564,-61.8959,-30.6636,-62.2876,-60.5034,-40.2256,-65.9483,-5.25003,4.72955,-8.03417,-10.1706,2.77115,-12.9626,-24.8559,-7.1785,-24.604,-21.4665,-6.39708,-24.5187,-23.9377,-2.8722,-24.6421,-29.5059,-8.43934,-24.6439,-16.7087,-14.7197,-20.9739,-11.3415,-17.8841,-18.5393,-15.0615,-17.6923,-20.8986,-4.08942,-14.9604,-14.7916,-18.6806,-15.5879,-23.3978,-13.237,-8.15001,-10.8483,-6.59223,-7.87251,-5.11255,-18.6097,-54.2582,-24.1019,-26.3458,-50.5142,-27.8107,-8.58285,9.73592,-15.7855,-18.3148,-6.96883,-22.1924,-18.5441,-6.6424,-23.1396,-18.5827,-8.57225,-22.8774,-18.2826,-7.07393,-21.242,-17.8518,-5.67543,-21.1571,-4.14974,-17.0113,-14.9843,-7.7877,-17.2977,-16.349,-18.2011,-6.89561,-20.0979,-18.4992,-8.24449,-20.7503,-17.7213,-5.72779,-19.531,-18.5911,-10.5107,-23.25,-18.1809,-12.7443,-23.1914,-18.534,-10.2056,-22.2969,-17.1826,-4.6344,-19.571,-16.0792,-3.69958,-17.2666,-16.6792,-3.37157,-20.203,-30.3609,6.8873,-27.6714,-25.0391,7.79745,-26.9626,-29.0637,9.91556,-27.9749,-36.5931,6.22431,-28.5202,-31.7591,3.3271,-27.1037,-55.483,18.7122,-43.0764,-60.6833,15.5624,-47.273,-3.37838,20.5373,-18.4232,-7.88979,17.7335,-20.4651,-41.8506,28.9352,-31.9523,-23.288,30.9684,-26.932,-21.3908,29.943,-27.57,-19.8724,28.6591,-28.2506,-20.7399,30.6217,-27.4431,-20.2179,31.1344,-27.4124,-18.0617,27.7143,-28.7424,-20.0595,31.9655,-27.1912,-47.9882,23.161,-38.6655,-44.198,26.7348,-36.3464,-35.8987,19.757,-29.7492,-37.2517,16.9874,-30.134,-25.0272,20.8009,-28.1483,-25.5176,17.8394,-28.0913,-34.9155,22.3884,-29.6739,-19.6603,22.5124,-28.9989,-20.1043,24.1826,-29.6119,-18.5231,24.6209,-29.9205,-14.5089,33.4269,-27.2408,-15.9232,30.3817,-28.2365,-16.8834,25.1168,-29.2413,-15.4686,24.9693,-29.2447,-16.3005,29.2134,-28.534,-18.0215,31.0825,-27.8172,-15.0756,27.2277,-29.0215,-34.4322,23.5418,-30.5317,-21.8979,24.5555,-29.4978,-20.3129,25.0437,-30.6086,-34.5187,23.5511,-32.0079,-42.2229,24.7544,-34.8392,-20.4033,25.3342,-32.2177,-18.6605,24.9664,-30.2011,-43.2643,28.041,-33.7972,-43.7625,28.45,-33.6525,-43.078,28.0589,-33.992,-5.14519,40.6427,-22.0346,-19.7008,12.1406,-26.9292,-18.4853,16.6291,-27.8895,-14.3004,23.728,-29.0162,-9.03453,32.0059,-25.944,-18.6053,19.8284,-28.4571,-7.60456,-33.7849,-12.557,-3.7499,-33.7839,-11.4655,-12.6286,-34.6712,-15.0961,-7.61193,-36.2477,-14.278,-3.26239,-36.1441,-12.9446,-16.1191,-39.0042,-20.4094,-16.2909,-39.3386,-20.2239,-13.228,-38.8411,-18.1983,-17.0813,-40.9807,-20.2405,-14.4737,-41.7497,-17.6359,-16.8031,-40.3833,-20.118,-9.59926,-42.2643,-14.037,-3.40995,-39.8345,-12.7266,-8.60264,-39.7745,-14.2093,-4.04059,-42.7991,-12.1452,-4.70034,-45.2397,-12.5289,-2.94789,-37.7764,-13.6141,-7.85244,-37.9651,-14.9555,-21.6864,-39.085,-24.1997,-20.6214,-39.1256,-23.6795,-18.9758,-39.35,-22.3376,-10.4501,-44.391,-14.5595,-76.0205,-8.21831,-134.359,-73.5326,-16.864,-130.09,-80.132,1.40465,-133.479,-67.9092,-25.1924,-122.238,-68.476,-23.204,-124.853,-67.4623,-23.7123,-123.325,-67.6083,-25.914,-119.677,-68.7729,-25.8777,-121.548,-69.5689,-19.9584,-108.993,-69.3626,-20.7838,-109.257,-68.8116,-21.8392,-110.02,-80.4118,12.825,-133.945,-80.8374,10.4008,-131.005,-73.4524,0.864346,-107.56,-74.6759,5.95075,-107.655,-72.2276,-3.2419,-107.452,-73.0463,1.09552,-106.263,-68.1323,-15.836,-99.0193,-78.7839,30.6054,-118.761,-76.3206,25.2622,-112.487,-76.7174,31.2975,-120.91,-78.0652,31.5416,-127.872,-79.3267,19.2174,-139.809,-80.385,19.1873,-138.915,-79.0285,24.8598,-136.688,-78.1089,18.6721,-140.178,-75.3401,10.5904,-107.696,-75.3617,9.76178,-108.589,-81.1118,17.8542,-134.86,-81.1756,22.0012,-132.475,-81.4247,17.3901,-135.279,-80.7949,15.0145,-135.584,-73.9271,5.95401,-112.322,-74.6365,7.1712,-111.202,-73.8062,6.51701,-113.059,-77.124,8.89839,-125.645,-69.5735,-8.67437,-98.3027,-76.2766,19.4079,-137.973,-75.2057,26.0067,-131.372,-76.9707,17.2417,-139.846,-76.4574,12.5135,-140.544,-67.508,-25.7126,-117.193,-67.1035,-25.3446,-116.738,-66.4134,-25.4916,-116.392,-66.502,-24.5056,-120.954,-78.1421,6.97013,-127.167,-79.7873,8.19391,-128.646,-72.5391,1.34129,-105.268,-71.9268,1.45687,-104.296,-69.2105,-11.28,-104.98,-69.388,-11.3768,-105.779,-71.6456,-14.1926,-111.312,-71.996,-13.1398,-112.168,-72.5062,-15.9986,-113.067,-71.3229,-6.14166,-107.391,-71.8216,-5.95084,-109.373,-74.1222,26.8871,-124.593,-73.9075,7.5066,-114.501,-74.4652,8.83899,-116.943,-76.1799,9.5256,-123.555,-4.08858,-12.7919,-13.1423,-6.57435,-4.00506,-4.35148,-6.25793,-0.115456,-5.36495,-27.5095,35.5661,-25.2082,-22.3128,34.0691,-26.2793,-39.7846,33.1719,-28.1964,-33.6046,35.1095,-25.5402,-44.3564,30.9037,-32.094,-17.018,40.421,-24.5357,-19.0062,36.747,-26.2614,-19.9512,33.7515,-26.8591,-42.9721,28.2644,-34.4614,-54.3678,-57.0141,-78.2623,-57.6664,-49.8756,-70.8087,-59.3038,-38.4945,-122.413,-62.2995,-30.9743,-117.043,-68.4276,-17.2527,-90.8921,-71.513,5.60773,-79.316,-51.3449,20.9388,-40.6232,-67.739,-17.3883,-79.1244,-22.7533,1.40374,-24.9207,-18.906,2.75188,-24.0496,-21.6758,5.38659,-25.4969,-27.5001,0.341689,-25.6104,-33.0579,-0.649048,-26.3782,-34.2373,-4.99069,-25.7098,-39.2793,-1.65314,-27.6269,-15.8914,4.46117,-22.6892,-16.2421,0.909621,-22.0457,-13.2027,6.51012,-20.4323,-19.4197,-6.32367,-24.0151,-18.1753,-3.74339,-22.8979,-18.5939,-9.47983,-20.0283,-17.6724,-8.9193,-16.4065,-18.5782,-9.82902,-21.2426,-18.3625,-11.6122,-21.5364,-36.076,-15.0759,-25.9333,-37.5071,-25.5864,-27.8801,-35.2375,-9.79682,-25.5234,-54.3477,-39.5392,-49.8345,-55.9241,-29.7451,-47.7799,-37.5451,-34.3291,-29.5822,-50.2037,-49.7605,-49.6287,-57.6841,-15.5521,-43.9623,-61.0899,-15.9408,-50.8415,-57.0915,-20.2279,-45.2582,-31.6983,-64.5292,-36.6245,-41.8356,-58.1334,-43.7918,-56.8781,4.60074,-38.7762,-50.7496,4.97765,-33.4027,-55.1315,8.98829,-38.068,-47.7915,17.9679,-36.1085,-45.2057,20.8922,-35.1713,-50.9006,14.7207,-36.8776,-46.3849,-36.9859,-37.6396,-43.3601,-45.1716,-37.5926,-29.4076,-57.3634,-31.6905,-37.6515,-51.9145,-35.3417,-43.5543,5.67771,-30.0965,-42.1284,9.14775,-30.2586,-44.885,1.56532,-30.0943,-46.0942,-2.967,-30.2561,-11.9377,-65.9509,-21.9253,-20.2935,-62.2812,-26.5035,-39.3752,13.9578,-30.3868,-11.975,-1.8463,-11.0359,-20.6829,8.99625,-26.2265,-65.2236,-5.91576,-55.754,-67.1011,-6.02177,-63.1791,-64.3959,-11.2481,-56.8722,-62.8925,-21.0943,-59.3287,-63.5622,-16.234,-58.051,-65.3995,-16.6231,-65.3286,-11.2158,-57.1335,-21.1648,-4.55776,-58.5226,-19.4768,-24.8735,24.0296,-28.9077,-24.9375,23.1774,-28.4586,-26.8812,14.4884,-28.0588,-3.77224,35.2384,-23.0437,-6.86165,33.8982,-24.3833,-14.4384,25.3399,-29.1808,-12.9272,-4.87897,-10.4268,-15.7212,-16.1234,-21.4957,-9.40727,38.9165,-23.6061,-12.3251,36.5181,-25.5752,-16.3758,-1.63754,-21.1395,-14.4359,-0.0973456,-18.8195,-32.6636,-46.2096,-29.6678,-36.3113,-41.1011,-30.1462,-38.8078,-76.8909,-98.8592,-42.8699,-68.2651,-90.3095,-49.6201,-62.4162,-84.3699,-40.9845,-96.6705,-105.305,-69.3162,-7.9388,-78.2117,-69.8306,-9.26144,-90.8971,-55.6778,-65.1323,-134.302,-63.9283,-23.4358,-126.891,-66.3975,-21.2981,-125.339,-16.4463,-39.8266,-20.0319,-13.7946,-40.0866,-17.6706,-53.0104,-53.2095,-145.009,-52.413,-69.1554,-150.693,-81.2218,18.7889,-137.822,-81.6893,18.1546,-136.759,-81.0138,24.2826,-134.987,-72.1532,-21.1009,-127.112,-71.0531,-24.2412,-123.951,-70.6845,-20.5881,-127.738,-80.037,30.4231,-126.477,-75.221,20.6436,-109.834,-74.1259,20.7144,-110.759,-73.5655,-22.596,-119.233,-72.1942,-24.8181,-120.081,-72.9107,-22.6995,-116.661,-74.2829,25.5873,-115.253,-73.0847,21.0366,-112.319,-72.1791,21.4096,-114.107,-72.3125,23.5652,-117.937,-76.154,-15.227,-121.589,-70.3719,-25.8541,-120.846,-72.2629,-22.0389,-114.39,-72.7885,-19.36,-114.373,-73.5454,-17.2009,-114.892,-74.0703,-15.607,-115.602,-81.3613,11.933,-136.726,-81.6968,17.6197,-135.898,-81.7417,22.736,-133.357,-80.1386,28.5427,-117.409,-79.733,26.8628,-117.028,-80.9753,28.1609,-125.456,-80.4643,26.7745,-125.055,-20.0461,32.726,-27.0282,-67.0838,-21.8067,-124.776,-68.0278,-20.1112,-126.724,-69.7284,-11.5381,-106.735,-69.3511,-20.0061,-127.65,-76.3128,11.8316,-119.397,-75.2665,9.52835,-120.705,-42.1583,24.4068,-33.7743,-39.0658,23.6159,-31.7103,-43.7331,25.4213,-35.3009,-44.1206,27.1812,-35.2282,-37.7305,30.5475,-28.4767,-32.9423,31.3895,-26.5948,-27.8737,31.7018,-26.2143,-18.8537,27.5458,-28.795,-34.4705,23.3065,-29.9583,-29.3201,23.3855,-28.921,-20.2136,24.8054,-29.9959,-19.3574,24.8929,-30.1885,-21.1659,-38.9815,-25.0031,-20.9973,-39.3495,-24.9894,-20.5588,-38.7039,-24.7344,-18.2123,-39.4313,-23.425,-2.33202,-37.9433,-17.0572,-6.75888,-38.1881,-18.0571,-11.6258,-37.7038,-19.8073,-6.78464,-36.7077,-17.6774,-2.82915,-36.1609,-17.0754,-17.1192,-38.6329,-22.9954,-14.4841,-38.278,-21.3501,-15.4624,-39.4003,-21.922,-12.3361,-39.0835,-20.3481,21.2284,-38.8036,-24.884,21.4063,-38.5618,-24.9577,3.00959,-37.3004,-15.8346,0.31165,-37.3683,-15.6232,18.5421,-38.8047,-23.2719,7.33833,-37.5017,-16.9958,12.8176,-38.3628,-19.7731,7.38708,-37.2062,-16.9076,3.16038,-36.8763,-15.8811,20.9555,-38.414,-24.7647,18.1155,-38.5549,-23.1948,15.8607,-38.7022,-21.5836,12.6637,-38.1007,-19.6627,15.5826,-38.4521,-21.4698,0.315241,-36.8766,-15.7272,1.03017,-8.8945,-196.612,1.12258,14.6388,-205.376,-0.0914064,123.022,-77.1787,0.247844,127.226,-112.963,0.932757,-26.3407,-192.033,0.961074,-45.1384,-189.222,1.16303,40.2284,-206.955,0.854744,112.461,-172.561,1.02853,91.9155,-190.05,1.12894,66.9137,-201.484,0.590385,124.663,-146.18,-21.0464,-38.9627,-24.7134,-20.8584,-39.1924,-24.6583,-2.45385,-37.3088,-15.7813,-18.1906,-39.1175,-23.088,-12.4424,-38.5333,-19.6353,-6.90527,-37.5624,-16.8899,-6.95028,-37.2666,-16.7968,-2.60534,-36.8842,-15.8152,-20.6019,-38.8031,-24.5196,-17.753,-38.8634,-23.0034,-15.4991,-38.9435,-21.4245,-12.2871,-38.2724,-19.5099,-15.2158,-38.6941,-21.2972 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_vertex.txt b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_vertex.txt deleted file mode 100644 index 4a37c32a..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/head_vertex.txt +++ /dev/null @@ -1 +0,0 @@ --0.640392,-0.796162,-0.461589,-0.621462,-0.983976,-0.372592,-0.539605,-1.051964,-0.515397,-0.456846,-1.263119,-0.188610,-0.427482,-1.255879,-0.352311,-0.416176,-1.237811,-0.429343,-0.259849,-1.337666,-0.359079,-0.250842,-1.282170,-0.528197,-0.395896,-1.303629,-0.084531,-0.059393,-1.351012,-0.454048,-0.059686,-1.271903,-0.622205,-0.362074,-1.311859,-0.270222,-0.342812,-1.280238,-0.438727,-0.328316,-1.213903,-0.591385,-0.537188,-1.151944,-0.340983,-0.056835,-1.159547,-0.776952,-0.314854,-1.114869,-0.725916,-0.587283,-1.139935,-0.138103,-0.664168,-0.947954,-0.240305,-0.627603,-1.053237,-0.210378,-0.644458,-0.573693,-0.493052,-0.607084,-0.837966,-0.530275,-0.175344,-1.377904,-0.059978,-0.168813,-1.386209,-0.166306,-0.160363,-1.364390,-0.361158,-0.156860,-1.302693,-0.535512,-0.155120,-1.213463,-0.696066,-0.018324,0.199440,-1.119555,0.003693,0.153644,-1.102910,-0.067042,0.144282,-1.075103,-0.165292,0.153009,-1.022930,-0.038994,0.139464,-1.081720,-0.015571,-0.063004,-1.123387,-0.124487,-0.217264,-1.069794,-0.122948,-0.263902,-1.044005,-0.096814,-0.199230,-1.159220,-0.087771,-0.155082,-1.076690,-0.214378,-0.198908,-0.990612,-0.184131,-0.122327,-1.014056,-0.024625,0.290092,-1.069751,-0.228687,0.063774,-1.030148,-0.042133,0.568113,-0.964107,-0.309908,0.438880,-0.868868,-0.452743,0.140285,-0.865478,-0.268493,0.014392,-1.001278,-0.221653,0.120798,-1.029633,-0.132906,0.465846,-1.025960,-0.143550,0.336311,-1.026383,-0.202871,-0.085446,-1.004292,-0.404288,0.311337,-0.840765,-0.036998,-0.003744,-1.112433,-0.158448,0.009693,-1.059940,-0.264231,0.307956,-0.954656,-0.223347,0.347525,-0.976310,-0.350527,-0.058577,-0.975555,-0.385137,0.003495,-0.953831,-0.392701,0.218919,-0.898026,-0.065146,0.708718,-0.556138,-0.374014,0.529047,-0.423806,-0.562472,0.263795,-0.555682,-0.432191,0.445747,-0.448429,-0.521622,0.041211,-0.809108,-0.490748,0.242674,-0.772421,-0.460694,0.335480,-0.753749,-0.416362,0.412854,-0.750101,-0.352744,0.475655,-0.766058,-0.267103,0.530314,-0.802740,-0.574965,0.050023,-0.701042,-0.051882,0.651410,-0.696916,-0.098766,-0.342221,-1.027800,-0.474653,-0.096871,-0.895944,-0.618827,-0.039434,-0.595963,-0.475632,-0.538586,-0.854479,-0.108517,-0.477531,-0.948655,-0.306244,-0.301148,-0.930625,-0.156477,-0.439987,-0.921268,-0.554419,-0.519001,-0.724082,-0.060743,-0.433269,-1.007590,-0.050008,-0.479139,-0.996660,-0.282495,-0.589063,-0.960072,-0.355381,-0.590278,-0.942254,-0.064989,-0.536337,-0.987128,-0.432090,-0.626537,-0.884641,-0.023133,-0.566068,-1.002893,-0.167223,-0.657859,-0.993162,-0.381433,-0.678093,-0.905760,-0.316865,-0.418698,-0.915353,-0.355463,-0.493288,-0.907727,-0.183589,-0.742439,-0.979825,-0.264080,-0.749772,-0.948808,-0.454764,-0.858107,-0.764033,-0.042230,-0.864544,-0.957242,-0.643819,-0.277937,-0.612420,-0.371325,-1.033866,-0.750375,-0.052606,-1.077122,-0.846657,-0.365146,-0.963045,-0.801218,-0.047602,-0.977937,-0.908977,-0.813955,-0.291580,-0.024465,-0.787142,-0.300803,-0.078922,-0.808046,-0.100982,0.023242,-0.699081,-0.221709,-0.174624,-0.697338,0.047917,-0.167867,-0.717895,-0.040946,-0.159466,-0.694217,-0.093420,-0.183904,-0.676028,-0.147366,-0.201440,-0.711901,-0.194694,-0.219116,-0.736044,-0.405749,-0.096537,-0.629574,0.000714,-0.050960,-0.656207,-0.092938,-0.337234,-0.641075,-0.098037,0.009027,-0.711854,0.035233,-0.072432,-0.554720,0.127178,-0.145053,-0.704829,-0.325538,0.019949,-0.553228,0.118331,-0.089267,-0.581034,0.175559,-0.285272,-0.561739,0.102786,-0.008380,-0.582653,0.013887,0.034319,-0.725290,-0.436505,-0.110938,-0.546523,0.167679,0.014485,-0.678124,-0.446494,-0.377751,-0.725374,-0.497173,-0.177345,-0.500332,0.351883,-0.312127,-0.678913,-0.319880,0.077958,-0.530016,0.126787,0.106856,-0.505630,0.349159,-0.230767,-0.686483,-0.506166,0.175329,-0.706509,-0.891397,0.052109,-0.688136,-0.828998,0.166625,-0.224992,0.221006,0.347291,-0.338165,-0.165120,0.425350,-0.419605,-0.532104,0.459650,-0.458878,-0.926704,0.357488,-0.461195,-1.043935,0.291065,-0.343803,0.218898,0.292832,-0.640239,-0.859349,0.237735,-0.637164,-0.961965,0.179914,-0.569758,-1.166115,-0.042272,-0.421654,-0.164984,0.381096,-0.455660,-0.272893,0.396817,-0.563895,-0.893073,0.302794,-0.505910,-1.222599,-0.012651,-0.302598,-0.547410,0.504964,-0.334472,-0.956904,0.399942,-0.336421,-1.078333,0.330296,-0.030989,-0.300618,0.522682,-0.036367,-0.571391,0.549601,-0.045897,-0.996832,0.442740,-0.048531,-1.121548,0.368886,-0.056444,-1.367599,0.058218,-0.592655,-0.185498,0.210329,-0.618479,-0.389395,0.264487,-0.394649,-0.399419,0.461541,-0.439514,-1.223986,0.115229,-0.323238,-1.266441,0.144687,-0.054982,-1.316102,0.174239,-0.717610,-0.867641,-0.011177,-0.713088,-0.516721,0.096265,-0.555707,-0.018411,0.165860,-0.043279,-0.862188,0.499393,-0.327411,-0.827304,0.453970,-0.449587,-0.802469,0.410042,-0.631887,-0.749624,0.284357,-0.683251,-0.727726,0.207589,-0.732398,-0.703857,0.054760,-0.040325,-0.718729,0.535128,-0.316260,-0.689564,0.488614,-0.435867,-0.669444,0.443544,-0.616417,-0.631133,0.315221,-0.051673,-1.231536,0.280291,-0.333149,-1.184691,0.245684,-0.455587,-1.146237,0.210586,-0.697607,-0.936393,-0.050372,-0.172197,-0.560800,0.534889,-0.182063,-0.707051,0.518986,-0.188700,-0.848152,0.483724,-0.192247,-0.980984,0.428676,-0.193362,-1.105042,0.356574,-0.192897,-1.214404,0.269854,-0.189952,-1.298375,0.165451,-0.101071,0.120783,0.387044,-0.663791,-0.271145,-0.518519,-0.608540,0.148531,-0.475839,-0.044259,-0.404106,-1.045007,-0.150228,-0.334723,-0.975873,-0.486459,0.324148,0.124003,-0.511160,0.411520,-0.016428,-0.473331,0.449763,-0.259705,-0.213171,0.321765,0.355075,-0.270746,0.323797,0.332593,-0.264838,0.432787,0.354291,-0.503618,0.526384,-0.038372,-0.468863,0.549208,-0.217959,-0.071530,0.751869,-0.511421,-0.207416,0.539647,0.400292,-0.403219,0.563014,0.290275,-0.438347,0.570382,0.249047,-0.464440,0.581132,0.203315,-0.493638,0.607824,0.103167,-0.427401,0.654627,-0.257039,-0.183677,0.752530,-0.457361,0.650987,-0.516088,-0.464051,0.731823,-0.795220,-0.126060,0.531405,-1.079510,-0.464785,0.226126,-1.283801,-0.529035,0.222151,-1.244476,-0.607170,0.044667,-1.397233,-0.267139,0.037356,-1.351491,-0.454324,0.035559,-1.271963,-0.621953,0.332765,-1.306257,-0.360432,0.057832,-1.396165,-0.056349,0.587152,-0.726392,-0.597753,0.755102,-0.732232,-0.033493,0.653212,-0.886521,-0.354752,0.592895,-0.844322,-0.536979,0.176005,-1.383579,-0.063275,0.132687,-1.303553,-0.535774,0.160322,-0.096328,-1.062600,0.147072,-0.269992,-1.010718,0.101504,-0.305754,-1.049098,0.103015,-0.197453,-1.156969,0.075045,-0.161403,-1.199498,0.109091,-0.071136,-1.075515,0.154887,-0.058581,-1.035710,0.216898,-0.195839,-0.992333,0.219403,0.096976,-1.037143,0.033194,0.289923,-1.068975,0.164487,0.249460,-1.035378,0.058102,0.484426,-1.049922,0.203953,0.306345,-0.998271,0.310673,0.052704,-0.986165,0.166144,0.547600,-0.932132,0.149494,0.470568,-1.022708,0.220211,0.433197,-0.978471,0.208555,-0.081461,-1.004312,0.346429,-0.155685,-0.970377,0.121779,0.051784,-1.098391,0.314901,0.327837,-0.913102,0.042338,-0.002544,-1.113008,0.318596,0.252038,-0.935936,0.064678,0.542568,-1.002758,0.410014,-0.008246,-0.937884,0.332571,0.552939,-0.489582,0.616518,0.124798,-0.481876,0.233450,0.626191,-0.528632,0.539079,0.320329,-0.463626,0.441379,0.438278,-0.463635,0.527387,0.216718,-0.720688,0.491173,0.312966,-0.719890,0.435044,0.404450,-0.734406,0.353497,0.479264,-0.762884,0.261993,0.536501,-0.803412,0.598026,0.123645,-0.605226,0.576798,0.219857,-0.595984,0.530708,0.322154,-0.591762,0.455165,0.426743,-0.598716,0.507293,-0.103809,-0.869173,0.435872,-0.157699,-0.927182,0.576407,-0.065203,-0.759808,0.162921,-0.387420,-0.939693,0.186355,-0.474943,-0.926425,0.257685,-0.573510,-0.958136,0.493076,-0.414963,-0.788295,0.101401,-0.431670,-0.959116,0.602148,-0.219974,-0.738851,0.634828,-0.272027,-0.642109,0.635736,-0.203251,-0.637012,0.050278,-0.529421,-0.990317,0.468562,-0.639066,-0.834595,0.319477,-0.420371,-0.920815,0.261787,-0.505512,-0.936640,0.340992,-0.502849,-0.922916,0.418841,-0.457998,-0.843403,0.175946,-0.439931,-0.918530,0.250581,-0.750519,-0.951766,0.034411,-0.721098,-1.002821,0.116435,-0.788125,-0.978398,0.268340,-0.877171,-0.889142,0.613498,-0.476162,-0.611749,0.538875,-0.819682,-0.649625,0.344180,-1.034630,-0.749190,0.127830,-1.072791,-0.833095,0.039207,-1.076646,-0.845214,0.277568,-0.972721,-0.839395,0.806597,-0.308357,0.078382,0.834360,-0.297285,0.088983,0.748101,-0.224784,-0.054728,0.815595,-0.385393,-0.101901,0.821290,-0.301608,-0.015060,0.789956,-0.309151,-0.071882,0.846920,-0.228190,0.080866,0.686384,-0.228359,-0.167194,0.691290,-0.135085,-0.089160,0.750305,-0.080419,-0.050009,0.682125,0.057677,-0.162191,0.683433,0.057926,-0.109227,0.654913,-0.050227,-0.032048,0.718467,-0.253825,0.023727,0.645248,-0.082716,-0.010088,0.630291,-0.185878,-0.180474,0.737428,-0.368563,0.011602,0.550863,0.101813,-0.099674,0.555613,0.170914,-0.192879,0.569831,0.022091,0.003648,0.630122,-0.084156,0.039995,0.533104,0.180946,-0.034526,0.740169,-0.481711,-0.120288,0.598574,0.146852,-0.313022,0.511329,0.320843,-0.160522,0.513081,0.261362,-0.013190,0.533408,0.081545,0.092293,0.633967,-0.337361,0.256683,0.694806,-0.556756,0.238649,0.718867,-0.867860,0.150338,0.479046,-0.574388,0.447877,0.504548,-0.958964,0.345493,0.498167,-1.072091,0.279434,0.425438,-1.290757,0.005470,0.641341,-1.086837,-0.112510,0.535854,-0.226067,0.313813,0.676521,-0.898706,0.222065,0.665582,-0.996180,0.164689,0.370657,-0.017550,0.320891,0.508334,-0.324832,0.384124,0.605276,-0.930313,0.288520,0.364597,-0.579786,0.495921,0.383439,-0.981812,0.390854,0.376496,-1.100014,0.321548,0.098270,-1.002021,0.440884,0.091789,-1.125979,0.367142,0.676140,-0.346432,0.188185,0.613657,-0.443219,0.322432,0.094972,-0.436847,0.542215,0.648593,-1.091953,-0.019810,0.546854,-1.195643,0.066038,0.342467,-1.281472,0.137255,0.076455,-1.319175,0.172763,0.680624,-1.014635,-0.103170,0.749501,-0.821737,0.009082,0.102660,-0.868102,0.497467,0.383412,-0.855156,0.444742,0.502342,-0.838515,0.397939,0.601450,-0.817264,0.338447,0.675123,-0.793863,0.268639,0.720492,-0.771535,0.191253,0.745515,-0.753534,0.113586,0.103923,-0.725246,0.533174,0.376722,-0.719932,0.479440,0.493343,-0.708861,0.431536,0.590507,-0.694825,0.370858,0.712891,-0.666923,0.220657,0.740792,-0.657941,0.140513,0.084439,-1.235250,0.278668,0.363118,-1.203048,0.237486,0.482844,-1.170148,0.199624,0.699867,-0.993655,-0.011787,0.105440,0.201193,0.374442,0.205955,-0.312847,0.505702,0.235893,-0.581001,0.529249,0.244539,-0.726142,0.513243,0.246888,-0.865604,0.477991,0.243478,-0.996484,0.423099,0.235574,-1.118407,0.351267,0.224784,-1.225669,0.264906,0.210712,-1.307605,0.160964,0.531308,0.019854,0.147093,0.661549,-0.373804,-0.502177,0.613121,0.132363,-0.385008,0.530679,-0.173676,-0.845145,0.471267,0.426245,-0.274633,0.371287,0.276406,0.251655,0.211745,0.291609,0.341809,0.321950,0.281900,0.286923,0.452077,0.439439,-0.354862,0.444843,0.692522,0.094712,0.322750,0.763219,-0.317051,0.082725,0.406751,0.396085,0.301561,0.395363,0.306889,0.389823,0.394482,0.232539,0.466479,0.464148,0.038721,0.460747,0.527341,-0.194041,0.382646,0.565814,-0.347103,0.306565,0.622333,-0.416696,0.400929,0.647637,-0.260549,0.124545,0.760786,-0.467274,-0.705627,-0.834665,-0.168839,-0.224901,-1.373312,-0.168628,-0.009335,-1.383528,-0.363415,-0.655003,-1.010296,-0.178183,-0.683465,-0.613050,-0.347308,-0.655103,-0.870638,-0.377016,-0.040444,0.221180,-1.112834,-0.121773,0.195315,-1.076679,-0.051165,0.066286,-1.131436,-0.081142,0.177402,-1.100710,-0.105980,0.089188,-1.110291,0.007807,0.142878,-1.100698,-0.085507,0.140844,-1.080544,-0.070086,0.164941,-1.055742,-0.026354,-0.132339,-1.217739,0.002951,-0.254071,-1.190411,-0.059588,-0.239049,-1.176532,-0.042594,-0.154404,-1.112321,-0.116070,-0.117189,-1.108435,-0.041298,0.447587,-1.064175,0.014283,0.568775,-0.964980,-0.035603,0.377969,-1.070984,-0.157371,0.557193,-0.911985,-0.123926,0.433701,-1.038936,-0.095113,0.284087,-1.059899,-0.095620,0.536353,-0.998978,-0.041601,0.516485,-1.031760,-0.216149,0.452305,-0.965342,-0.241786,0.637478,-0.505644,-0.170027,0.599946,-0.754512,-0.049723,0.629385,-0.783852,-0.556545,-0.104148,-0.803680,-0.415431,-0.462224,-0.860276,-0.190408,-0.546151,-0.947509,-0.487586,-0.560509,-0.842792,-0.501986,-0.483223,-0.800785,-0.316682,-0.364727,-0.919345,-0.357273,-0.404647,-0.907161,-0.137158,-0.522641,-0.948213,-0.111941,-0.402321,-0.963809,-0.513323,-0.283581,-0.836106,-0.526902,-0.422377,-0.757056,-0.582602,-0.441507,-0.688558,0.002414,-0.476964,-1.012815,-0.391477,-0.587924,-0.925849,-0.256937,-0.413692,-0.928916,-0.238325,-0.503572,-0.928901,-0.282218,-0.507487,-0.930565,-0.061733,-0.723458,-1.000483,-0.216636,-0.930403,-0.902536,-0.405023,-0.834243,-0.820642,-0.121210,-0.818974,-0.966238,-0.576726,-0.765740,-0.623039,-0.507089,-0.909369,-0.670136,-0.294762,-0.928357,-0.868508,-0.131439,-0.927534,-0.924274,-0.734422,-0.074935,0.022097,-0.780324,-0.039116,-0.020026,-0.719781,-0.281021,-0.140457,-0.725015,-0.010924,-0.015403,-0.644428,-0.180968,-0.168214,-0.712335,-0.405388,-0.209637,-0.593633,0.109222,-0.248820,-0.708692,-0.422849,0.026749,-0.385455,0.266435,0.263100,-0.152178,0.027056,0.400316,-0.228608,-0.117829,0.440905,-0.028514,-0.129731,0.473019,-0.525492,-0.389291,0.370533,-0.130800,-0.123251,0.462589,-0.210774,0.125772,0.363603,-0.341486,0.122563,0.306747,-0.637461,-0.074279,-0.496328,-0.482076,0.769928,0.212565,-0.468463,0.691262,-0.181878,0.604449,-0.953104,-0.433894,0.203184,-1.373261,-0.270282,0.356569,-1.115932,-0.667953,-0.006807,-1.399418,-0.266642,0.381565,-1.321905,-0.139556,0.192440,-1.356480,-0.362424,0.116208,0.187729,-1.086311,0.066855,0.067809,-1.130232,0.074795,0.140488,-1.090429,0.030531,-0.131709,-1.217842,0.065604,-0.237472,-1.175003,0.126561,-0.104152,-1.094918,0.083245,-0.162359,-1.112182,0.069719,-0.147597,-1.081562,0.054634,0.447423,-1.063104,0.117977,0.560333,-0.947498,0.139304,0.436013,-1.038090,0.090531,0.306425,-1.053327,0.264614,-0.050242,-0.996530,0.363875,0.194886,-0.926326,0.205201,0.505041,-0.954342,0.164949,0.605577,-0.765332,0.063262,0.629058,-0.786431,0.586511,0.219985,-0.533440,0.497549,-0.525191,-0.815603,0.298378,-0.531100,-0.949970,0.503983,-0.260804,-0.855602,0.589051,-0.414524,-0.683684,0.441180,-0.592321,-0.886832,0.504841,-0.592312,-0.799290,0.253412,-0.426515,-0.932509,0.434294,-0.437677,-0.792167,0.414734,-0.424469,-0.809453,0.334917,-0.920327,-0.824225,0.448295,-0.857503,-0.749582,0.202337,-0.929083,-0.898507,0.727692,-0.193641,-0.109791,0.776778,-0.036628,0.002028,0.715779,-0.293250,-0.136548,0.682473,-0.270440,-0.191659,0.691676,-0.195710,-0.215517,0.743102,-0.420507,-0.142400,0.588908,0.106147,-0.227845,0.643227,-0.049976,-0.346683,0.384996,0.219285,0.244000,0.364498,-0.155937,0.400018,0.203809,0.192338,0.347521,0.273316,-0.149338,0.432568,0.074247,-0.136330,0.471223,0.129377,-1.365698,0.053224,0.080513,-1.281389,0.228387,0.131291,0.056623,0.389079,0.152496,-0.042070,0.418308,0.176158,-0.142828,0.457347,0.359476,0.077231,0.292122,0.420268,0.111010,0.235653,0.636099,-0.078201,-0.514438,0.304504,0.697349,0.344892,0.177010,0.569132,0.397539,-0.011755,-1.249856,-0.663375,-0.001589,-1.402929,-0.110226,-0.011606,-1.337201,-0.498789,0.746075,-0.523958,0.048570,0.642870,-0.662747,-0.471887,0.666521,-0.671043,-0.399687,0.666974,-0.794966,-0.363588,0.699170,-0.885322,-0.192906,0.718929,-0.918904,-0.074835,0.552325,-0.976376,-0.526832,0.641469,-1.049144,-0.195941,0.175300,-1.176225,-0.724069,0.250476,-1.093530,-0.767678,0.534386,-1.129549,-0.377966,0.496435,-1.245118,-0.161667,0.399975,-1.300017,-0.234758,0.433123,-1.229893,-0.392765,0.353450,-1.251157,-0.476108,0.476610,-1.036421,-0.607326,0.311725,-1.342890,-0.228001,0.226274,-1.378097,-0.121108,0.260562,-1.208099,-0.636191,0.359677,-1.327002,-0.033069,0.527338,-1.196579,-0.246707,0.489199,-1.180621,-0.385818,0.459744,-1.136268,-0.516531,0.110524,-1.398047,-0.113397,0.084635,-1.189272,-0.736421,0.580914,-1.173629,-0.105033,0.528989,-1.228749,-0.079910,0.596602,-0.577179,-0.609928,0.623113,-0.592887,-0.530584,0.723697,-0.688948,-0.195783,0.033136,0.115163,-1.131803,0.063270,0.144654,-1.101767,0.079005,0.211902,-1.105612,0.159247,0.124819,-1.070659,0.130768,0.093295,-1.099599,0.206355,0.151270,-1.016770,0.044586,0.160127,-1.063133,0.063423,0.123760,-1.072132,0.205193,0.174751,-1.005330,0.173208,0.142793,-1.025691,0.074584,0.134749,-1.083472,0.095062,-0.038657,-1.083018,0.001597,-0.095276,-1.189605,0.142054,-0.144523,-1.117476,0.134266,-0.220931,-1.049316,0.002398,-0.169710,-1.233193,0.052607,-0.204890,-1.209480,0.043614,-0.106366,-1.184287,0.036971,-0.066323,-1.111794,0.040340,-0.144622,-1.118673,0.071789,-0.130714,-1.154526,0.186005,-0.150427,-1.011302,0.263423,0.429150,-0.936722,0.524372,-0.031387,-0.834045,0.520141,0.073938,-0.798681,0.110264,0.514068,-1.017924,0.083678,0.376144,-1.063275,0.436831,0.347468,-0.780819,0.331122,-0.074329,-0.984416,0.240289,0.025232,-1.019252,0.478689,0.259304,-0.774329,0.383534,0.239209,-0.894766,0.374181,0.422966,-0.804230,0.288750,0.132020,-0.990232,0.454398,0.008749,-0.899914,0.461793,0.086247,-0.869692,0.425369,0.247684,-0.846778,0.337997,0.394067,-0.865867,0.098425,0.720297,-0.520414,0.273538,0.623586,-0.467214,0.381876,0.525436,-0.406166,0.566922,0.265881,-0.410674,0.592249,-0.015263,-0.691426,0.579303,0.075356,-0.675418,0.569059,0.169950,-0.662349,0.538575,0.268019,-0.655214,0.487967,0.369529,-0.659425,0.409021,0.462455,-0.676997,0.310809,0.532263,-0.709580,0.213607,0.586156,-0.749046,0.114906,0.620388,-0.778617,0.009392,0.633549,-0.789717,0.620746,-0.006006,-0.561079,0.616867,0.079482,-0.548966,0.498644,0.377888,-0.528033,0.396292,0.484754,-0.538863,0.291992,0.570353,-0.572026,0.193627,0.627232,-0.602261,0.100694,0.663415,-0.613917,0.001086,0.679304,-0.610239,0.555086,-0.118873,-0.811751,0.483814,-0.162517,-0.891197,0.424330,-0.356198,-0.873698,0.372279,-0.411090,-0.903327,0.277194,-0.292917,-0.945195,0.419381,-0.257872,-0.913556,0.526910,-0.455647,-0.756301,0.563528,-0.328230,-0.759751,0.560318,-0.471919,-0.712842,0.615350,-0.310158,-0.684118,0.620922,-0.174082,-0.687190,0.442392,-0.453019,-0.834239,0.425555,-0.489207,-0.871596,0.169512,-0.538809,-0.949758,0.410769,-0.549214,-0.903825,0.338601,-0.376748,-0.920243,0.135835,-0.487918,-0.936657,0.571838,-0.267371,-0.778465,0.635505,-0.352455,-0.613116,0.055895,-0.414282,-1.023962,0.047288,-0.454859,-1.005112,0.001406,-0.424128,-1.043081,0.126828,-0.579354,-0.982641,0.314301,-0.613139,-0.956791,0.378146,-0.610347,-0.929140,0.540485,-0.635170,-0.714149,0.133433,-0.619135,-0.994956,0.383716,-0.649264,-0.911131,0.441160,-0.654603,-0.859496,0.127815,-0.694977,-1.002544,0.211024,-0.706971,-0.980868,0.005436,-0.617002,-1.009497,0.302365,-0.396336,-0.864924,0.181576,-0.467199,-0.869783,0.235153,-0.502471,-0.873478,0.316516,-0.507870,-0.853650,0.363868,-0.496348,-0.826722,0.180864,-0.434041,-0.870503,0.483989,-0.939063,-0.660847,0.663516,-0.288424,-0.516907,0.661686,-0.219908,-0.496114,0.082817,-0.925278,-0.928927,0.721059,-0.368376,-0.185861,0.783425,-0.425137,-0.019157,0.813460,-0.387807,0.042972,0.737292,-0.035487,0.013328,0.811258,-0.210657,0.085193,0.792847,-0.396001,-0.132794,0.827456,-0.427286,-0.057484,0.821324,-0.133504,0.066169,0.800926,-0.151042,0.027233,0.820014,-0.262694,0.047864,0.794379,-0.205185,-0.004778,0.727245,-0.142990,-0.039606,0.817048,-0.383043,-0.024437,0.742223,-0.315364,-0.161466,0.844062,-0.360114,0.033459,0.783010,-0.111816,-0.008080,0.665728,-0.125000,-0.169780,0.727810,0.018123,-0.094218,0.614575,0.049854,-0.119140,0.684848,-0.048841,-0.181865,0.669542,-0.119705,-0.199616,0.650155,-0.041303,-0.241779,0.766152,-0.293449,0.037835,0.683590,-0.072425,-0.018816,0.658784,-0.192809,-0.291055,0.623043,0.051160,-0.211188,0.663338,-0.267045,-0.279759,0.703130,-0.383427,-0.214516,0.754227,-0.388574,-0.006426,0.624680,0.038047,-0.288406,0.673676,-0.154296,0.015478,0.588233,-0.006749,-0.033463,0.727990,0.024150,-0.048624,0.535644,0.273446,-0.260604,0.668868,-0.454532,-0.404017,0.724926,-0.494761,-0.208560,0.743834,-0.461914,-0.029949,0.569122,0.002800,0.078235,0.649723,-0.152926,0.095600,0.703643,-0.260504,0.041653,0.673488,-0.363478,-0.371230,0.684262,-0.430782,-0.319566,0.672754,-0.285896,-0.429785,0.492074,0.183387,0.110487,0.505641,0.346041,-0.072291,0.494073,0.372194,-0.316667,0.665247,-0.220729,0.126342,0.623950,-0.130722,0.133826,0.026958,-0.244752,0.509119,0.013314,0.066267,0.405098,0.003260,0.258299,0.389965,0.018259,-0.031742,0.434368,0.028161,-0.934484,0.474428,0.024069,-1.064573,0.408434,0.031970,-0.503659,0.550324,0.007957,-1.348762,0.116363,0.031021,-0.795334,0.521461,0.032318,-0.648465,0.546266,0.019115,-1.182104,0.326647,0.452177,0.201961,0.174990,0.589002,-0.281029,0.289495,0.490263,0.001771,0.214630,0.543287,-0.095267,0.222749,0.658789,-0.501228,0.283019,0.683981,-0.615411,0.270232,0.676134,-1.018019,0.101534,0.245240,0.046327,0.358831,0.451171,-0.265539,0.404340,0.355870,-0.261235,0.446663,0.484167,-0.380803,0.419304,0.385446,-0.379440,0.468567,0.516176,-0.506116,0.421898,0.414076,-0.510236,0.476416,0.431967,-0.645905,0.467381,0.447734,-0.910224,0.398835,0.444435,-1.030686,0.337679,0.543652,-1.105031,0.217154,0.434612,-1.140115,0.263207,0.388687,-1.291624,0.069996,0.428885,-0.071389,0.312579,0.622856,-0.625088,0.345688,0.645820,-0.860829,0.282274,0.643376,-0.967032,0.228135,0.627029,-1.062437,0.161946,0.564556,-1.194322,0.002935,0.252174,-0.256556,0.479561,0.273402,-0.376971,0.504794,0.302200,-1.165195,0.296880,0.163882,-0.508218,0.540782,0.173433,-0.935099,0.464484,0.166876,-1.063661,0.399652,0.158300,-1.180241,0.319400,0.136612,-1.344780,0.110736,0.267409,-1.324211,0.094555,0.708666,-0.406421,0.144030,0.648173,-1.088592,0.036136,0.520142,-1.188573,0.132955,0.415222,-1.229718,0.172932,0.287519,-1.259668,0.203646,0.175672,-0.798852,0.510337,0.442012,-0.782792,0.443372,0.315050,-0.793823,0.482677,0.637291,-0.748319,0.323832,0.488757,0.084956,0.168978,0.463728,0.365196,0.096084,0.434816,0.492398,-0.310289,-0.009190,0.836649,-0.451806,0.070446,0.834208,-0.436431,0.137863,0.829963,-0.411947,0.413764,0.732384,0.194034,0.452927,0.774947,-0.059553,0.457796,0.766387,0.011063,0.349536,0.806096,-0.279991,0.402604,0.794473,-0.214418,0.436361,0.783912,-0.136416,0.361768,0.710200,0.289278,0.189811,0.684578,0.417618,0.033650,0.683949,0.468502,-0.007543,0.466516,0.418416,0.216596,0.454476,0.360382,0.442179,0.488158,0.128966,0.473006,0.561557,-0.087874,0.249398,0.686618,-0.427654,0.041812,0.572923,0.437210,0.252099,0.570696,0.359466,0.341313,0.578429,0.294622,0.405557,0.596513,0.209705,0.363609,0.706545,-0.291353,0.225101,0.750028,-0.404223,-0.727969,-0.570604,0.049269,-0.736023,-0.742599,0.005242,-0.673071,-0.785142,-0.356292,-0.705624,-0.876993,-0.119531,-0.611253,-0.936930,-0.454420,-0.198791,-1.176578,-0.726426,-0.192066,-1.109560,-0.795546,-0.540368,-1.106391,-0.434042,-0.412112,-1.098636,-0.653489,-0.502492,-1.032097,-0.602325,-0.337951,-1.333799,-0.126752,-0.213961,-1.363333,-0.314520,-0.286935,-1.207428,-0.636767,-0.573752,-0.906552,-0.561435,-0.355816,-1.314582,-0.025943,-0.507837,-1.172637,-0.378968,-0.484187,-1.131467,-0.511701,-0.113845,-1.394769,-0.111428,-0.622457,-0.480562,-0.595637,-0.588079,-0.641042,-0.630235,-0.735818,-0.662532,-0.044141,-0.717413,-0.670631,-0.185335,-0.019631,0.113250,-1.133898,-0.221558,0.162689,-1.005023,-0.060703,0.143344,-1.102581,-0.186151,0.161271,-1.028650,-0.148055,0.126153,-1.024119,-0.163853,-0.118776,-1.070238,-0.039455,-0.107754,-1.184627,-0.047030,-0.206336,-1.211416,-0.136116,-0.146533,-1.120209,-0.158982,-0.251145,-1.007800,-0.066262,-0.312200,-1.095389,-0.075742,-0.131464,-1.177109,-0.129461,-0.069290,-1.056377,-0.050632,-0.129621,-1.088393,-0.084872,-0.164167,-1.108057,-0.184300,-0.156500,-1.010430,-0.087108,-0.043334,-1.084633,-0.291993,0.373045,-0.918040,-0.351951,0.174692,-0.940843,-0.101456,0.572335,-0.926381,-0.428096,-0.096393,-0.931672,-0.372398,-0.149635,-0.955463,-0.073238,0.377192,-1.062035,-0.305500,0.132155,-0.979285,-0.424707,0.022170,-0.923906,-0.487199,-0.019623,-0.872190,-0.197450,0.512949,-0.943221,-0.312474,-0.192728,-0.964014,-0.274129,-0.122503,-0.991730,-0.135047,0.719734,-0.516806,-0.118468,0.662435,-0.600813,-0.343739,0.596190,-0.395803,-0.418023,0.515780,-0.340042,-0.402686,0.474123,-0.509657,-0.329668,0.545844,-0.521542,-0.613116,0.099663,-0.531017,-0.570390,0.208126,-0.625946,-0.234782,0.611951,-0.565189,-0.536470,0.318890,-0.479274,-0.528914,0.315348,-0.596732,-0.470018,0.404740,-0.552234,-0.530338,0.199528,-0.729840,-0.502977,0.300790,-0.708413,-0.461415,0.389773,-0.686483,-0.403654,0.460568,-0.676193,-0.325263,0.520289,-0.693837,-0.109919,0.618931,-0.772569,-0.586422,-0.095850,-0.753578,-0.422593,-0.433762,-0.857914,-0.163176,-0.455929,-0.919203,-0.205056,-0.357672,-0.937627,-0.412452,-0.358501,-0.876443,-0.519851,-0.547617,-0.791664,-0.534442,-0.334471,-0.785748,-0.598291,-0.257723,-0.738084,-0.385040,-0.501489,-0.908051,-0.405038,-0.255493,-0.914316,-0.478047,-0.225991,-0.882644,-0.542367,-0.196187,-0.829870,-0.598883,-0.179695,-0.745913,-0.629125,-0.169308,-0.654295,-0.183554,-0.585400,-0.975040,-0.124075,-0.693997,-0.999736,-0.217839,-0.704321,-0.978225,-0.462728,-0.706544,-0.815360,-0.254538,-0.424736,-0.915781,-0.288719,-0.401693,-0.862073,-0.387363,-0.418074,-0.828289,-0.190805,-0.491698,-0.867259,-0.266659,-0.511684,-0.869594,-0.368550,-0.492870,-0.834698,-0.168631,-0.441929,-0.858101,-0.508989,-0.818344,-0.713310,-0.184235,-1.027695,-0.859066,-0.267401,-1.021635,-0.833157,-0.726355,-0.358648,-0.188431,-0.785579,-0.421773,-0.057158,-0.761195,-0.395913,-0.012104,-0.792770,-0.359610,0.044316,-0.787621,-0.185165,0.069882,-0.795892,-0.303554,0.072651,-0.788515,-0.389747,-0.134015,-0.819155,-0.397075,-0.002705,-0.792860,-0.357656,-0.102646,-0.805326,-0.244344,0.035763,-0.804065,-0.192307,0.004296,-0.740830,-0.162692,-0.041172,-0.722301,-0.259088,-0.102017,-0.804414,-0.367462,-0.024945,-0.701143,-0.141765,-0.095267,-0.741626,-0.194501,-0.117114,-0.750302,-0.311007,-0.167946,-0.821001,-0.396061,-0.053035,-0.835796,-0.293685,0.051379,-0.828288,-0.185698,0.046978,-0.738808,-0.086901,-0.091745,-0.638053,-0.149858,-0.162223,-0.680785,-0.121338,-0.245586,-0.618577,0.055731,-0.114079,-0.623634,0.063907,-0.170788,-0.742468,0.008245,-0.106512,-0.662917,-0.050774,-0.259591,-0.730275,-0.395121,-0.161186,-0.688318,-0.097804,-0.001916,-0.734451,-0.255381,0.036618,-0.672633,-0.202244,-0.317219,-0.642756,0.005902,-0.268135,-0.632056,0.046869,-0.219568,-0.683447,-0.271219,-0.297862,-0.726164,-0.351025,0.000708,-0.631968,0.030924,-0.331091,-0.681255,-0.229065,0.034808,-0.581374,0.023348,-0.024372,-0.664533,-0.211002,0.048921,-0.550922,0.219334,-0.236211,-0.525035,0.303194,-0.291742,-0.527183,0.299982,-0.140843,-0.533810,0.285857,-0.083758,-0.588267,-0.021502,0.103221,-0.589167,0.206711,-0.415851,-0.651967,-0.456078,-0.506380,-0.494537,0.227882,0.128182,-0.507880,0.396579,-0.176778,-0.623836,-0.163051,0.136951,-0.704155,-0.768367,0.150838,-0.541208,-0.222406,0.302859,-0.575666,-0.330332,0.303457,-0.511456,-0.037325,0.236419,-0.469516,0.056541,0.229813,-0.608300,-0.446221,0.297720,-0.636143,-0.564085,0.285728,-0.653981,-0.986349,0.116704,-0.323480,-0.019175,0.362303,-0.220089,0.078036,0.368801,-0.327782,-0.340489,0.478545,-0.353489,-0.471758,0.486771,-0.371640,-0.609320,0.477997,-0.396463,-0.879534,0.409578,-0.401208,-1.003630,0.348159,-0.513237,-1.076757,0.229665,-0.400809,-1.116804,0.273224,-0.375567,-1.275932,0.078234,-0.640309,-1.068770,-0.056328,-0.395313,-0.020877,0.325927,-0.569971,-0.575429,0.360330,-0.603194,-0.819715,0.297452,-0.608441,-0.930777,0.243080,-0.600621,-1.031295,0.176249,-0.555282,-1.172850,0.014889,-0.124012,0.266135,0.373893,-0.199135,-0.229561,0.486530,-0.214385,-0.349722,0.511884,-0.231130,-0.483565,0.523191,-0.265933,-1.148863,0.303758,-0.100330,-0.494434,0.544523,-0.108840,-0.640018,0.539039,-0.117662,-0.924006,0.468277,-0.119242,-1.054050,0.403273,-0.120485,-1.172085,0.322793,-0.120991,-1.339283,0.113522,-0.252747,-1.313274,0.100172,-0.480401,0.136639,0.185566,-0.454602,0.250334,0.194355,-0.665110,-0.351045,0.157203,-0.633610,-1.061745,0.050294,-0.581138,-1.113210,0.098903,-0.499374,-1.164925,0.144547,-0.391725,-1.210296,0.182182,-0.261900,-1.246062,0.209980,-0.121440,-1.271643,0.227333,-0.114245,-0.786485,0.514217,-0.384817,-0.749004,0.454099,-0.255323,-0.769881,0.490228,-0.588411,-0.702763,0.338863,-0.696177,-0.668056,0.183964,-0.467717,0.381513,0.169381,-0.495039,0.431055,0.073587,-0.436280,0.378181,0.220367,-0.394751,0.379662,0.264210,-0.112764,0.834176,-0.440361,-0.317795,0.726557,-0.354627,-0.389230,0.794839,-0.273823,-0.212053,0.818745,-0.397165,-0.503266,0.681953,-0.021852,-0.505170,0.778695,0.128133,-0.450771,0.789078,-0.205161,-0.482326,0.786325,-0.135097,-0.497578,0.785104,-0.063356,-0.376814,0.740764,0.362757,-0.334678,0.613448,0.356607,-0.232117,0.713276,0.438558,-0.068415,0.581078,0.442098,-0.071235,0.691593,0.473660,-0.122752,0.476002,0.408695,-0.497833,0.588320,-0.108997,-0.243140,0.709087,-0.436457 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr.mat deleted file mode 100644 index b18370e5..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr.mat +++ /dev/null @@ -1,277 +0,0 @@ -material { - name : pbr, - shadingModel : lit, - blending : ${BLENDING}, - doubleSided: true, - transparency : ${TRANSPARENCY}, - parameters : [ - { - type : sampler2d, - name : baseColorMap - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : alphaPremultiplied - }, - { - type : bool, - name : hasAlphaMap - }, - { - type : sampler2d, - name : normalMap - }, - { - type : bool, - name : hasNormalMap - }, - - { - type : sampler2d, - name : specularMap - }, - { - type : bool, - name : hasSpecularMap - }, - - { - type : sampler2d, - name : skinMaskMap - }, - { - type : bool, - name : hasMaskMap - }, - - { - type : sampler2d, - name : metallicMap - }, - { - type : bool, - name : hasMetallicMap - }, - - { - type : sampler2d, - name : emissionMap - }, - { - type : bool, - name : hasEmissionMap - }, - - { - type : float, - name : glossiness - }, - { - type: float3, - name: diffuseColor - }, - { - type: float, - name: diffuseFactor - }, - { - type: bool, - name: isEtcImage - }, - { - type: bool, - name: colorize - }, - { - type: float3, - name: deltaHSV - }, - { - type: float4, - name: emissionColor - }, - { - type: bool, - name: negNormal - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - vec3 rgb2hsv(vec3 c) { - vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - float d = q.x - min(q.w, q.y); - float e = 0.0001; - - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - vec3 hsv2rgb(vec3 c) { - vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - vec3 blend2(vec3 left, vec3 right, float pos){ - return vec3(left.r * (1.0-pos) + right.r * pos, left.g * (1.0-pos) + right.g * pos, left.b * (1.0-pos) + right.b * pos); - } - - vec3 blend3(vec3 left, vec3 main, vec3 right,float pos) - { - if (pos < 0.0){ - return blend2(left, main, pos + 1.0); - } - else if (pos > 0.0){ - return blend2(main, right, pos); - } - else{ - return main; - } - } - - // deltaH scaled from 0~1 , deltaS:0~1 deltaV:-1~1 - vec4 applyColorizeHSV(vec4 mainColor, vec3 deltaHSV) - { - float deltaH = deltaHSV.x; - vec3 hueRGB = hsv2rgb(vec3(deltaH,1.0,1.0)); - float saturation = deltaHSV.y; - float lightness = deltaHSV.z; - float value = rgb2hsv(mainColor.rgb).z; - - vec3 cc = blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - if (lightness <= -1.0){ - return vec4(0,0,0,mainColor.a); - } - else if (lightness >= 1.0){ - return vec4(1,1,1,mainColor.a); - } - else if (lightness >= 0.0){ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 - lightness) * (value - 1.0) + 1.0); - return vec4(c.rgb,mainColor.a); - } - else{ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 + lightness) * (value) - 1.0); - return vec4(c.rgb,mainColor.a); - } - } - - vec4 applyHSV(vec4 color, vec3 deltaHSV) { - if (deltaHSV.x != 0.0) { - vec3 hsv = rgb2hsv(color.rgb); - hsv.x += deltaHSV.x; - if (hsv.x > 6.0) { - hsv.x = hsv.x - 6.0; - } else if (hsv.x < 0.0) { - hsv.x = hsv.x + 6.0; - } - color.rgb = hsv2rgb(hsv); - } - - if (deltaHSV.y != 0.0) { - float c_max = max(color.r, max(color.g, color.b)); - float c_min = min(color.r, min(color.g, color.b)); - float delta = c_max - c_min; - if (delta != 0.0) { - float v = c_max + c_min; - float l = v * 0.5; - float s = l < 0.5 ? (delta / v) : ((delta) / (2.0 - v)); - if (deltaHSV.y >= 0.0) { - float alpha = (deltaHSV.y + s) >= 1.0 ? s : (1.0 - deltaHSV.y); - alpha = 1.0 / alpha - 1.0; - color.rgb = color.rgb + (color.rgb - l) * alpha; - } - else { - float alpha = deltaHSV.y; - color.rgb = l + (color.rgb - l) * (1.0 + alpha); - } - } - } - - if (deltaHSV.z != 0.0) { - color.rgb = deltaHSV.z > 0.0 ? (color.rgb * (1.0 - deltaHSV.z) + deltaHSV.z) : (color.rgb + color.rgb * deltaHSV.z); - } - return color; - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - float3 normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - if (materialParams.negNormal) { - normal = -normal; - } - material.normal = normal; - } - prepareMaterial(material); - - float4 albedo = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedo.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedo.rgb *= albedo.a; - } - lowp float skinMask = 0.0; - float3 deltaHSV = materialParams.deltaHSV; - - if (materialParams.hasMaskMap) { - skinMask = texture(materialParams_skinMaskMap, uv).r; - } - float4 color = albedo; - if (materialParams.colorize) { - if (skinMask > 0.1) { - color = applyColorizeHSV(albedo, deltaHSV); - } - } else { - if(deltaHSV.x != 0.0 || deltaHSV.y != 0.0 || deltaHSV.z != 0.0) { - if (skinMask > 0.1) { - color = applyHSV(albedo, deltaHSV); - } - } - } - float4 diffuse = vec4(materialParams.diffuseColor, 1.0); - float4 emission = vec4(0.0, 0.0, 0.0, 0.0); - if (materialParams.hasEmissionMap) { - emission = texture(materialParams_emissionMap, uv); - } - material.emissive = emission * materialParams.emissionColor; - material.baseColor = saturate(color * diffuse * materialParams.diffuseFactor); - material.baseColor.a = albedo.a; - - float metallic = 0.0; - float roughness = lerp(materialParams.glossiness, 0.25, skinMask); - if (materialParams.hasMetallicMap) { - float metallicColor = texture(materialParams_metallicMap, uv).r; - metallic = lerp(metallicColor, 0.0, skinMask); - } - if (materialParams.hasSpecularMap) { - float roughnessColor = texture(materialParams_specularMap, uv).r; - roughness = lerp(roughnessColor, 0.25, skinMask); - } - material.metallic = metallic; - // 经验值,不加0.2这些素材感觉都高光过强 - material.roughness = saturate(roughness + 0.2); - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_fade.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_fade.filamat deleted file mode 100644 index 368ef7f0..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_fade.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_fade.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_fade.mat deleted file mode 100644 index 2e2a00a4..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_fade.mat +++ /dev/null @@ -1,277 +0,0 @@ -material { - name : pbr, - shadingModel : lit, - blending : fade, - doubleSided: true, - transparency : twoPassesTwoSides, - parameters : [ - { - type : sampler2d, - name : baseColorMap - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : alphaPremultiplied - }, - { - type : bool, - name : hasAlphaMap - }, - { - type : sampler2d, - name : normalMap - }, - { - type : bool, - name : hasNormalMap - }, - - { - type : sampler2d, - name : specularMap - }, - { - type : bool, - name : hasSpecularMap - }, - - { - type : sampler2d, - name : skinMaskMap - }, - { - type : bool, - name : hasMaskMap - }, - - { - type : sampler2d, - name : metallicMap - }, - { - type : bool, - name : hasMetallicMap - }, - - { - type : sampler2d, - name : emissionMap - }, - { - type : bool, - name : hasEmissionMap - }, - - { - type : float, - name : glossiness - }, - { - type: float3, - name: diffuseColor - }, - { - type: float, - name: diffuseFactor - }, - { - type: bool, - name: isEtcImage - }, - { - type: bool, - name: colorize - }, - { - type: float3, - name: deltaHSV - }, - { - type: float4, - name: emissionColor - }, - { - type: bool, - name: negNormal - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - vec3 rgb2hsv(vec3 c) { - vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - float d = q.x - min(q.w, q.y); - float e = 0.0001; - - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - vec3 hsv2rgb(vec3 c) { - vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - vec3 blend2(vec3 left, vec3 right, float pos){ - return vec3(left.r * (1.0-pos) + right.r * pos, left.g * (1.0-pos) + right.g * pos, left.b * (1.0-pos) + right.b * pos); - } - - vec3 blend3(vec3 left, vec3 main, vec3 right,float pos) - { - if (pos < 0.0){ - return blend2(left, main, pos + 1.0); - } - else if (pos > 0.0){ - return blend2(main, right, pos); - } - else{ - return main; - } - } - - // deltaH scaled from 0~1 , deltaS:0~1 deltaV:-1~1 - vec4 applyColorizeHSV(vec4 mainColor, vec3 deltaHSV) - { - float deltaH = deltaHSV.x; - vec3 hueRGB = hsv2rgb(vec3(deltaH,1.0,1.0)); - float saturation = deltaHSV.y; - float lightness = deltaHSV.z; - float value = rgb2hsv(mainColor.rgb).z; - - vec3 cc = blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - if (lightness <= -1.0){ - return vec4(0,0,0,mainColor.a); - } - else if (lightness >= 1.0){ - return vec4(1,1,1,mainColor.a); - } - else if (lightness >= 0.0){ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 - lightness) * (value - 1.0) + 1.0); - return vec4(c.rgb,mainColor.a); - } - else{ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 + lightness) * (value) - 1.0); - return vec4(c.rgb,mainColor.a); - } - } - - vec4 applyHSV(vec4 color, vec3 deltaHSV) { - if (deltaHSV.x != 0.0) { - vec3 hsv = rgb2hsv(color.rgb); - hsv.x += deltaHSV.x; - if (hsv.x > 6.0) { - hsv.x = hsv.x - 6.0; - } else if (hsv.x < 0.0) { - hsv.x = hsv.x + 6.0; - } - color.rgb = hsv2rgb(hsv); - } - - if (deltaHSV.y != 0.0) { - float c_max = max(color.r, max(color.g, color.b)); - float c_min = min(color.r, min(color.g, color.b)); - float delta = c_max - c_min; - if (delta != 0.0) { - float v = c_max + c_min; - float l = v * 0.5; - float s = l < 0.5 ? (delta / v) : ((delta) / (2.0 - v)); - if (deltaHSV.y >= 0.0) { - float alpha = (deltaHSV.y + s) >= 1.0 ? s : (1.0 - deltaHSV.y); - alpha = 1.0 / alpha - 1.0; - color.rgb = color.rgb + (color.rgb - l) * alpha; - } - else { - float alpha = deltaHSV.y; - color.rgb = l + (color.rgb - l) * (1.0 + alpha); - } - } - } - - if (deltaHSV.z != 0.0) { - color.rgb = deltaHSV.z > 0.0 ? (color.rgb * (1.0 - deltaHSV.z) + deltaHSV.z) : (color.rgb + color.rgb * deltaHSV.z); - } - return color; - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - float3 normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - if (materialParams.negNormal) { - normal = -normal; - } - material.normal = normal; - } - prepareMaterial(material); - - float4 albedo = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedo.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedo.rgb *= albedo.a; - } - lowp float skinMask = 0.0; - float3 deltaHSV = materialParams.deltaHSV; - - if (materialParams.hasMaskMap) { - skinMask = texture(materialParams_skinMaskMap, uv).r; - } - float4 color = albedo; - if (materialParams.colorize) { - if (skinMask > 0.1) { - color = applyColorizeHSV(albedo, deltaHSV); - } - } else { - if(deltaHSV.x != 0.0 || deltaHSV.y != 0.0 || deltaHSV.z != 0.0) { - if (skinMask > 0.1) { - color = applyHSV(albedo, deltaHSV); - } - } - } - float4 diffuse = vec4(materialParams.diffuseColor, 1.0); - float4 emission = vec4(0.0, 0.0, 0.0, 0.0); - if (materialParams.hasEmissionMap) { - emission = texture(materialParams_emissionMap, uv); - } - material.emissive = emission * materialParams.emissionColor; - material.baseColor = saturate(color * diffuse * materialParams.diffuseFactor); - material.baseColor.a = albedo.a; - - float metallic = 0.0; - float roughness = lerp(materialParams.glossiness, 0.25, skinMask); - if (materialParams.hasMetallicMap) { - float metallicColor = texture(materialParams_metallicMap, uv).r; - metallic = lerp(metallicColor, 0.0, skinMask); - } - if (materialParams.hasSpecularMap) { - float roughnessColor = texture(materialParams_specularMap, uv).r; - roughness = lerp(roughnessColor, 0.25, skinMask); - } - material.metallic = metallic; - // 经验值,不加0.2这些素材感觉都高光过强 - material.roughness = saturate(roughness + 0.2); - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_masked.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_masked.filamat deleted file mode 100644 index 69502ec6..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_masked.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_masked.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_masked.mat deleted file mode 100644 index 35879ff5..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_masked.mat +++ /dev/null @@ -1,277 +0,0 @@ -material { - name : pbr, - shadingModel : lit, - blending : masked, - doubleSided: true, - transparency : default, - parameters : [ - { - type : sampler2d, - name : baseColorMap - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : alphaPremultiplied - }, - { - type : bool, - name : hasAlphaMap - }, - { - type : sampler2d, - name : normalMap - }, - { - type : bool, - name : hasNormalMap - }, - - { - type : sampler2d, - name : specularMap - }, - { - type : bool, - name : hasSpecularMap - }, - - { - type : sampler2d, - name : skinMaskMap - }, - { - type : bool, - name : hasMaskMap - }, - - { - type : sampler2d, - name : metallicMap - }, - { - type : bool, - name : hasMetallicMap - }, - - { - type : sampler2d, - name : emissionMap - }, - { - type : bool, - name : hasEmissionMap - }, - - { - type : float, - name : glossiness - }, - { - type: float3, - name: diffuseColor - }, - { - type: float, - name: diffuseFactor - }, - { - type: bool, - name: isEtcImage - }, - { - type: bool, - name: colorize - }, - { - type: float3, - name: deltaHSV - }, - { - type: float4, - name: emissionColor - }, - { - type: bool, - name: negNormal - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - vec3 rgb2hsv(vec3 c) { - vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - float d = q.x - min(q.w, q.y); - float e = 0.0001; - - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - vec3 hsv2rgb(vec3 c) { - vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - vec3 blend2(vec3 left, vec3 right, float pos){ - return vec3(left.r * (1.0-pos) + right.r * pos, left.g * (1.0-pos) + right.g * pos, left.b * (1.0-pos) + right.b * pos); - } - - vec3 blend3(vec3 left, vec3 main, vec3 right,float pos) - { - if (pos < 0.0){ - return blend2(left, main, pos + 1.0); - } - else if (pos > 0.0){ - return blend2(main, right, pos); - } - else{ - return main; - } - } - - // deltaH scaled from 0~1 , deltaS:0~1 deltaV:-1~1 - vec4 applyColorizeHSV(vec4 mainColor, vec3 deltaHSV) - { - float deltaH = deltaHSV.x; - vec3 hueRGB = hsv2rgb(vec3(deltaH,1.0,1.0)); - float saturation = deltaHSV.y; - float lightness = deltaHSV.z; - float value = rgb2hsv(mainColor.rgb).z; - - vec3 cc = blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - if (lightness <= -1.0){ - return vec4(0,0,0,mainColor.a); - } - else if (lightness >= 1.0){ - return vec4(1,1,1,mainColor.a); - } - else if (lightness >= 0.0){ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 - lightness) * (value - 1.0) + 1.0); - return vec4(c.rgb,mainColor.a); - } - else{ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 + lightness) * (value) - 1.0); - return vec4(c.rgb,mainColor.a); - } - } - - vec4 applyHSV(vec4 color, vec3 deltaHSV) { - if (deltaHSV.x != 0.0) { - vec3 hsv = rgb2hsv(color.rgb); - hsv.x += deltaHSV.x; - if (hsv.x > 6.0) { - hsv.x = hsv.x - 6.0; - } else if (hsv.x < 0.0) { - hsv.x = hsv.x + 6.0; - } - color.rgb = hsv2rgb(hsv); - } - - if (deltaHSV.y != 0.0) { - float c_max = max(color.r, max(color.g, color.b)); - float c_min = min(color.r, min(color.g, color.b)); - float delta = c_max - c_min; - if (delta != 0.0) { - float v = c_max + c_min; - float l = v * 0.5; - float s = l < 0.5 ? (delta / v) : ((delta) / (2.0 - v)); - if (deltaHSV.y >= 0.0) { - float alpha = (deltaHSV.y + s) >= 1.0 ? s : (1.0 - deltaHSV.y); - alpha = 1.0 / alpha - 1.0; - color.rgb = color.rgb + (color.rgb - l) * alpha; - } - else { - float alpha = deltaHSV.y; - color.rgb = l + (color.rgb - l) * (1.0 + alpha); - } - } - } - - if (deltaHSV.z != 0.0) { - color.rgb = deltaHSV.z > 0.0 ? (color.rgb * (1.0 - deltaHSV.z) + deltaHSV.z) : (color.rgb + color.rgb * deltaHSV.z); - } - return color; - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - float3 normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - if (materialParams.negNormal) { - normal = -normal; - } - material.normal = normal; - } - prepareMaterial(material); - - float4 albedo = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedo.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedo.rgb *= albedo.a; - } - lowp float skinMask = 0.0; - float3 deltaHSV = materialParams.deltaHSV; - - if (materialParams.hasMaskMap) { - skinMask = texture(materialParams_skinMaskMap, uv).r; - } - float4 color = albedo; - if (materialParams.colorize) { - if (skinMask > 0.1) { - color = applyColorizeHSV(albedo, deltaHSV); - } - } else { - if(deltaHSV.x != 0.0 || deltaHSV.y != 0.0 || deltaHSV.z != 0.0) { - if (skinMask > 0.1) { - color = applyHSV(albedo, deltaHSV); - } - } - } - float4 diffuse = vec4(materialParams.diffuseColor, 1.0); - float4 emission = vec4(0.0, 0.0, 0.0, 0.0); - if (materialParams.hasEmissionMap) { - emission = texture(materialParams_emissionMap, uv); - } - material.emissive = emission * materialParams.emissionColor; - material.baseColor = saturate(color * diffuse * materialParams.diffuseFactor); - material.baseColor.a = albedo.a; - - float metallic = 0.0; - float roughness = lerp(materialParams.glossiness, 0.25, skinMask); - if (materialParams.hasMetallicMap) { - float metallicColor = texture(materialParams_metallicMap, uv).r; - metallic = lerp(metallicColor, 0.0, skinMask); - } - if (materialParams.hasSpecularMap) { - float roughnessColor = texture(materialParams_specularMap, uv).r; - roughness = lerp(roughnessColor, 0.25, skinMask); - } - material.metallic = metallic; - // 经验值,不加0.2这些素材感觉都高光过强 - material.roughness = saturate(roughness + 0.2); - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_opaque.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_opaque.filamat deleted file mode 100644 index 7b0ee678..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_opaque.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_opaque.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_opaque.mat deleted file mode 100644 index 4c9e0e67..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_opaque.mat +++ /dev/null @@ -1,277 +0,0 @@ -material { - name : pbr, - shadingModel : lit, - blending : opaque, - doubleSided: true, - transparency : default, - parameters : [ - { - type : sampler2d, - name : baseColorMap - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : alphaPremultiplied - }, - { - type : bool, - name : hasAlphaMap - }, - { - type : sampler2d, - name : normalMap - }, - { - type : bool, - name : hasNormalMap - }, - - { - type : sampler2d, - name : specularMap - }, - { - type : bool, - name : hasSpecularMap - }, - - { - type : sampler2d, - name : skinMaskMap - }, - { - type : bool, - name : hasMaskMap - }, - - { - type : sampler2d, - name : metallicMap - }, - { - type : bool, - name : hasMetallicMap - }, - - { - type : sampler2d, - name : emissionMap - }, - { - type : bool, - name : hasEmissionMap - }, - - { - type : float, - name : glossiness - }, - { - type: float3, - name: diffuseColor - }, - { - type: float, - name: diffuseFactor - }, - { - type: bool, - name: isEtcImage - }, - { - type: bool, - name: colorize - }, - { - type: float3, - name: deltaHSV - }, - { - type: float4, - name: emissionColor - }, - { - type: bool, - name: negNormal - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - vec3 rgb2hsv(vec3 c) { - vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - float d = q.x - min(q.w, q.y); - float e = 0.0001; - - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - vec3 hsv2rgb(vec3 c) { - vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - vec3 blend2(vec3 left, vec3 right, float pos){ - return vec3(left.r * (1.0-pos) + right.r * pos, left.g * (1.0-pos) + right.g * pos, left.b * (1.0-pos) + right.b * pos); - } - - vec3 blend3(vec3 left, vec3 main, vec3 right,float pos) - { - if (pos < 0.0){ - return blend2(left, main, pos + 1.0); - } - else if (pos > 0.0){ - return blend2(main, right, pos); - } - else{ - return main; - } - } - - // deltaH scaled from 0~1 , deltaS:0~1 deltaV:-1~1 - vec4 applyColorizeHSV(vec4 mainColor, vec3 deltaHSV) - { - float deltaH = deltaHSV.x; - vec3 hueRGB = hsv2rgb(vec3(deltaH,1.0,1.0)); - float saturation = deltaHSV.y; - float lightness = deltaHSV.z; - float value = rgb2hsv(mainColor.rgb).z; - - vec3 cc = blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - if (lightness <= -1.0){ - return vec4(0,0,0,mainColor.a); - } - else if (lightness >= 1.0){ - return vec4(1,1,1,mainColor.a); - } - else if (lightness >= 0.0){ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 - lightness) * (value - 1.0) + 1.0); - return vec4(c.rgb,mainColor.a); - } - else{ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 + lightness) * (value) - 1.0); - return vec4(c.rgb,mainColor.a); - } - } - - vec4 applyHSV(vec4 color, vec3 deltaHSV) { - if (deltaHSV.x != 0.0) { - vec3 hsv = rgb2hsv(color.rgb); - hsv.x += deltaHSV.x; - if (hsv.x > 6.0) { - hsv.x = hsv.x - 6.0; - } else if (hsv.x < 0.0) { - hsv.x = hsv.x + 6.0; - } - color.rgb = hsv2rgb(hsv); - } - - if (deltaHSV.y != 0.0) { - float c_max = max(color.r, max(color.g, color.b)); - float c_min = min(color.r, min(color.g, color.b)); - float delta = c_max - c_min; - if (delta != 0.0) { - float v = c_max + c_min; - float l = v * 0.5; - float s = l < 0.5 ? (delta / v) : ((delta) / (2.0 - v)); - if (deltaHSV.y >= 0.0) { - float alpha = (deltaHSV.y + s) >= 1.0 ? s : (1.0 - deltaHSV.y); - alpha = 1.0 / alpha - 1.0; - color.rgb = color.rgb + (color.rgb - l) * alpha; - } - else { - float alpha = deltaHSV.y; - color.rgb = l + (color.rgb - l) * (1.0 + alpha); - } - } - } - - if (deltaHSV.z != 0.0) { - color.rgb = deltaHSV.z > 0.0 ? (color.rgb * (1.0 - deltaHSV.z) + deltaHSV.z) : (color.rgb + color.rgb * deltaHSV.z); - } - return color; - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - float3 normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - if (materialParams.negNormal) { - normal = -normal; - } - material.normal = normal; - } - prepareMaterial(material); - - float4 albedo = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedo.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedo.rgb *= albedo.a; - } - lowp float skinMask = 0.0; - float3 deltaHSV = materialParams.deltaHSV; - - if (materialParams.hasMaskMap) { - skinMask = texture(materialParams_skinMaskMap, uv).r; - } - float4 color = albedo; - if (materialParams.colorize) { - if (skinMask > 0.1) { - color = applyColorizeHSV(albedo, deltaHSV); - } - } else { - if(deltaHSV.x != 0.0 || deltaHSV.y != 0.0 || deltaHSV.z != 0.0) { - if (skinMask > 0.1) { - color = applyHSV(albedo, deltaHSV); - } - } - } - float4 diffuse = vec4(materialParams.diffuseColor, 1.0); - float4 emission = vec4(0.0, 0.0, 0.0, 0.0); - if (materialParams.hasEmissionMap) { - emission = texture(materialParams_emissionMap, uv); - } - material.emissive = emission * materialParams.emissionColor; - material.baseColor = saturate(color * diffuse * materialParams.diffuseFactor); - material.baseColor.a = albedo.a; - - float metallic = 0.0; - float roughness = lerp(materialParams.glossiness, 0.25, skinMask); - if (materialParams.hasMetallicMap) { - float metallicColor = texture(materialParams_metallicMap, uv).r; - metallic = lerp(metallicColor, 0.0, skinMask); - } - if (materialParams.hasSpecularMap) { - float roughnessColor = texture(materialParams_specularMap, uv).r; - roughness = lerp(roughnessColor, 0.25, skinMask); - } - material.metallic = metallic; - // 经验值,不加0.2这些素材感觉都高光过强 - material.roughness = saturate(roughness + 0.2); - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_transparent.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_transparent.filamat deleted file mode 100644 index e4b882f8..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_transparent.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_transparent.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_transparent.mat deleted file mode 100644 index d1206f29..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_mr_transparent.mat +++ /dev/null @@ -1,277 +0,0 @@ -material { - name : pbr, - shadingModel : lit, - blending : transparent, - doubleSided: true, - transparency : twoPassesTwoSides, - parameters : [ - { - type : sampler2d, - name : baseColorMap - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : alphaPremultiplied - }, - { - type : bool, - name : hasAlphaMap - }, - { - type : sampler2d, - name : normalMap - }, - { - type : bool, - name : hasNormalMap - }, - - { - type : sampler2d, - name : specularMap - }, - { - type : bool, - name : hasSpecularMap - }, - - { - type : sampler2d, - name : skinMaskMap - }, - { - type : bool, - name : hasMaskMap - }, - - { - type : sampler2d, - name : metallicMap - }, - { - type : bool, - name : hasMetallicMap - }, - - { - type : sampler2d, - name : emissionMap - }, - { - type : bool, - name : hasEmissionMap - }, - - { - type : float, - name : glossiness - }, - { - type: float3, - name: diffuseColor - }, - { - type: float, - name: diffuseFactor - }, - { - type: bool, - name: isEtcImage - }, - { - type: bool, - name: colorize - }, - { - type: float3, - name: deltaHSV - }, - { - type: float4, - name: emissionColor - }, - { - type: bool, - name: negNormal - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - vec3 rgb2hsv(vec3 c) { - vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - float d = q.x - min(q.w, q.y); - float e = 0.0001; - - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - vec3 hsv2rgb(vec3 c) { - vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - vec3 blend2(vec3 left, vec3 right, float pos){ - return vec3(left.r * (1.0-pos) + right.r * pos, left.g * (1.0-pos) + right.g * pos, left.b * (1.0-pos) + right.b * pos); - } - - vec3 blend3(vec3 left, vec3 main, vec3 right,float pos) - { - if (pos < 0.0){ - return blend2(left, main, pos + 1.0); - } - else if (pos > 0.0){ - return blend2(main, right, pos); - } - else{ - return main; - } - } - - // deltaH scaled from 0~1 , deltaS:0~1 deltaV:-1~1 - vec4 applyColorizeHSV(vec4 mainColor, vec3 deltaHSV) - { - float deltaH = deltaHSV.x; - vec3 hueRGB = hsv2rgb(vec3(deltaH,1.0,1.0)); - float saturation = deltaHSV.y; - float lightness = deltaHSV.z; - float value = rgb2hsv(mainColor.rgb).z; - - vec3 cc = blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - if (lightness <= -1.0){ - return vec4(0,0,0,mainColor.a); - } - else if (lightness >= 1.0){ - return vec4(1,1,1,mainColor.a); - } - else if (lightness >= 0.0){ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 - lightness) * (value - 1.0) + 1.0); - return vec4(c.rgb,mainColor.a); - } - else{ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 + lightness) * (value) - 1.0); - return vec4(c.rgb,mainColor.a); - } - } - - vec4 applyHSV(vec4 color, vec3 deltaHSV) { - if (deltaHSV.x != 0.0) { - vec3 hsv = rgb2hsv(color.rgb); - hsv.x += deltaHSV.x; - if (hsv.x > 6.0) { - hsv.x = hsv.x - 6.0; - } else if (hsv.x < 0.0) { - hsv.x = hsv.x + 6.0; - } - color.rgb = hsv2rgb(hsv); - } - - if (deltaHSV.y != 0.0) { - float c_max = max(color.r, max(color.g, color.b)); - float c_min = min(color.r, min(color.g, color.b)); - float delta = c_max - c_min; - if (delta != 0.0) { - float v = c_max + c_min; - float l = v * 0.5; - float s = l < 0.5 ? (delta / v) : ((delta) / (2.0 - v)); - if (deltaHSV.y >= 0.0) { - float alpha = (deltaHSV.y + s) >= 1.0 ? s : (1.0 - deltaHSV.y); - alpha = 1.0 / alpha - 1.0; - color.rgb = color.rgb + (color.rgb - l) * alpha; - } - else { - float alpha = deltaHSV.y; - color.rgb = l + (color.rgb - l) * (1.0 + alpha); - } - } - } - - if (deltaHSV.z != 0.0) { - color.rgb = deltaHSV.z > 0.0 ? (color.rgb * (1.0 - deltaHSV.z) + deltaHSV.z) : (color.rgb + color.rgb * deltaHSV.z); - } - return color; - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - float3 normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - if (materialParams.negNormal) { - normal = -normal; - } - material.normal = normal; - } - prepareMaterial(material); - - float4 albedo = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedo.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedo.rgb *= albedo.a; - } - lowp float skinMask = 0.0; - float3 deltaHSV = materialParams.deltaHSV; - - if (materialParams.hasMaskMap) { - skinMask = texture(materialParams_skinMaskMap, uv).r; - } - float4 color = albedo; - if (materialParams.colorize) { - if (skinMask > 0.1) { - color = applyColorizeHSV(albedo, deltaHSV); - } - } else { - if(deltaHSV.x != 0.0 || deltaHSV.y != 0.0 || deltaHSV.z != 0.0) { - if (skinMask > 0.1) { - color = applyHSV(albedo, deltaHSV); - } - } - } - float4 diffuse = vec4(materialParams.diffuseColor, 1.0); - float4 emission = vec4(0.0, 0.0, 0.0, 0.0); - if (materialParams.hasEmissionMap) { - emission = texture(materialParams_emissionMap, uv); - } - material.emissive = emission * materialParams.emissionColor; - material.baseColor = saturate(color * diffuse * materialParams.diffuseFactor); - material.baseColor.a = albedo.a; - - float metallic = 0.0; - float roughness = lerp(materialParams.glossiness, 0.25, skinMask); - if (materialParams.hasMetallicMap) { - float metallicColor = texture(materialParams_metallicMap, uv).r; - metallic = lerp(metallicColor, 0.0, skinMask); - } - if (materialParams.hasSpecularMap) { - float roughnessColor = texture(materialParams_specularMap, uv).r; - roughness = lerp(roughnessColor, 0.25, skinMask); - } - material.metallic = metallic; - // 经验值,不加0.2这些素材感觉都高光过强 - material.roughness = saturate(roughness + 0.2); - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp.mat deleted file mode 100644 index 0e1bb81c..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp.mat +++ /dev/null @@ -1,271 +0,0 @@ -material { - name : pbr, - shadingModel : specularGlossiness, - blending : ${BLENDING}, - doubleSided: true, - transparency : ${TRANSPARENCY}, - parameters : [ - { - type : sampler2d, - name : baseColorMap - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : alphaPremultiplied - }, - { - type : bool, - name : hasAlphaMap - }, - { - type : sampler2d, - name : normalMap - }, - { - type : bool, - name : hasNormalMap - }, - - { - type : sampler2d, - name : specularMap - }, - { - type : bool, - name : hasSpecularMap - }, - - { - type : sampler2d, - name : skinMaskMap - }, - { - type : bool, - name : hasMaskMap - }, - - { - type : sampler2d, - name : metallicMap - }, - { - type : bool, - name : hasMetallicMap - }, - - { - type : sampler2d, - name : emissionMap - }, - { - type : bool, - name : hasEmissionMap - }, - - { - type : float, - name : glossiness - }, - { - type: float3, - name: diffuseColor - }, - { - type: float, - name: diffuseFactor - }, - { - type: bool, - name: isEtcImage - }, - { - type: bool, - name: colorize - }, - { - type: float3, - name: deltaHSV - }, - { - type: float4, - name: emissionColor - }, - { - type: bool, - name: negNormal - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - vec3 rgb2hsv(vec3 c) { - vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - float d = q.x - min(q.w, q.y); - float e = 0.0001; - - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - vec3 hsv2rgb(vec3 c) { - vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - vec3 blend2(vec3 left, vec3 right, float pos){ - return vec3(left.r * (1.0-pos) + right.r * pos, left.g * (1.0-pos) + right.g * pos, left.b * (1.0-pos) + right.b * pos); - } - - vec3 blend3(vec3 left, vec3 main, vec3 right,float pos) - { - if (pos < 0.0){ - return blend2(left, main, pos + 1.0); - } - else if (pos > 0.0){ - return blend2(main, right, pos); - } - else{ - return main; - } - } - - // deltaH scaled from 0~1 , deltaS:0~1 deltaV:-1~1 - vec4 applyColorizeHSV(vec4 mainColor, vec3 deltaHSV) - { - float deltaH = deltaHSV.x; - vec3 hueRGB = hsv2rgb(vec3(deltaH,1.0,1.0)); - float saturation = deltaHSV.y; - float lightness = deltaHSV.z; - float value = rgb2hsv(mainColor.rgb).z; - - vec3 cc = blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - if (lightness <= -1.0){ - return vec4(0,0,0,mainColor.a); - } - else if (lightness >= 1.0){ - return vec4(1,1,1,mainColor.a); - } - else if (lightness >= 0.0){ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 - lightness) * (value - 1.0) + 1.0); - return vec4(c.rgb,mainColor.a); - } - else{ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 + lightness) * (value) - 1.0); - return vec4(c.rgb,mainColor.a); - } - } - - vec4 applyHSV(vec4 color, vec3 deltaHSV) { - if (deltaHSV.x != 0.0) { - vec3 hsv = rgb2hsv(color.rgb); - hsv.x += deltaHSV.x; - if (hsv.x > 6.0) { - hsv.x = hsv.x - 6.0; - } else if (hsv.x < 0.0) { - hsv.x = hsv.x + 6.0; - } - color.rgb = hsv2rgb(hsv); - } - - if (deltaHSV.y != 0.0) { - float c_max = max(color.r, max(color.g, color.b)); - float c_min = min(color.r, min(color.g, color.b)); - float delta = c_max - c_min; - if (delta != 0.0) { - float v = c_max + c_min; - float l = v * 0.5; - float s = l < 0.5 ? (delta / v) : ((delta) / (2.0 - v)); - if (deltaHSV.y >= 0.0) { - float alpha = (deltaHSV.y + s) >= 1.0 ? s : (1.0 - deltaHSV.y); - alpha = 1.0 / alpha - 1.0; - color.rgb = color.rgb + (color.rgb - l) * alpha; - } - else { - float alpha = deltaHSV.y; - color.rgb = l + (color.rgb - l) * (1.0 + alpha); - } - } - } - - if (deltaHSV.z != 0.0) { - color.rgb = deltaHSV.z > 0.0 ? (color.rgb * (1.0 - deltaHSV.z) + deltaHSV.z) : (color.rgb + color.rgb * deltaHSV.z); - } - return color; - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - float3 normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - if (materialParams.negNormal) { - normal = -normal; - } - material.normal = normal; - } - prepareMaterial(material); - - float4 albedo = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedo.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedo.rgb *= albedo.a; - } - lowp float skinMask = 0.0; - float3 deltaHSV = materialParams.deltaHSV; - if (materialParams.hasMaskMap) { - skinMask = texture(materialParams_skinMaskMap, uv).r; - } - float4 color = albedo; - if (materialParams.colorize) { - if (skinMask > 0.1) { - color = applyColorizeHSV(albedo, deltaHSV); - } - } else { - if(deltaHSV.x != 0.0 || deltaHSV.y != 0.0 || deltaHSV.z != 0.0) { - if (skinMask > 0.1) { - color = applyHSV(albedo, deltaHSV); - } - } - } - float4 diffuse = vec4(materialParams.diffuseColor, 1.0); - - float4 emission = vec4(0.0, 0.0, 0.0, 0.0); - if (materialParams.hasEmissionMap) { - emission = texture(materialParams_emissionMap, uv); - } - material.emissive = emission * materialParams.emissionColor; - - material.baseColor = saturate(color * diffuse * materialParams.diffuseFactor); - material.baseColor.a = albedo.a; - - material.glossiness = materialParams.glossiness; - if (materialParams.hasSpecularMap) { - vec4 specular = texture(materialParams_specularMap, uv); - material.specularColor = specular.rgb; - material.glossiness *= specular.a; - } - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_fade.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_fade.filamat deleted file mode 100644 index 88751d5b..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_fade.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_fade.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_fade.mat deleted file mode 100644 index 4338a86d..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_fade.mat +++ /dev/null @@ -1,271 +0,0 @@ -material { - name : pbr, - shadingModel : specularGlossiness, - blending : fade, - doubleSided: true, - transparency : twoPassesTwoSides, - parameters : [ - { - type : sampler2d, - name : baseColorMap - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : alphaPremultiplied - }, - { - type : bool, - name : hasAlphaMap - }, - { - type : sampler2d, - name : normalMap - }, - { - type : bool, - name : hasNormalMap - }, - - { - type : sampler2d, - name : specularMap - }, - { - type : bool, - name : hasSpecularMap - }, - - { - type : sampler2d, - name : skinMaskMap - }, - { - type : bool, - name : hasMaskMap - }, - - { - type : sampler2d, - name : metallicMap - }, - { - type : bool, - name : hasMetallicMap - }, - - { - type : sampler2d, - name : emissionMap - }, - { - type : bool, - name : hasEmissionMap - }, - - { - type : float, - name : glossiness - }, - { - type: float3, - name: diffuseColor - }, - { - type: float, - name: diffuseFactor - }, - { - type: bool, - name: isEtcImage - }, - { - type: bool, - name: colorize - }, - { - type: float3, - name: deltaHSV - }, - { - type: float4, - name: emissionColor - }, - { - type: bool, - name: negNormal - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - vec3 rgb2hsv(vec3 c) { - vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - float d = q.x - min(q.w, q.y); - float e = 0.0001; - - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - vec3 hsv2rgb(vec3 c) { - vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - vec3 blend2(vec3 left, vec3 right, float pos){ - return vec3(left.r * (1.0-pos) + right.r * pos, left.g * (1.0-pos) + right.g * pos, left.b * (1.0-pos) + right.b * pos); - } - - vec3 blend3(vec3 left, vec3 main, vec3 right,float pos) - { - if (pos < 0.0){ - return blend2(left, main, pos + 1.0); - } - else if (pos > 0.0){ - return blend2(main, right, pos); - } - else{ - return main; - } - } - - // deltaH scaled from 0~1 , deltaS:0~1 deltaV:-1~1 - vec4 applyColorizeHSV(vec4 mainColor, vec3 deltaHSV) - { - float deltaH = deltaHSV.x; - vec3 hueRGB = hsv2rgb(vec3(deltaH,1.0,1.0)); - float saturation = deltaHSV.y; - float lightness = deltaHSV.z; - float value = rgb2hsv(mainColor.rgb).z; - - vec3 cc = blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - if (lightness <= -1.0){ - return vec4(0,0,0,mainColor.a); - } - else if (lightness >= 1.0){ - return vec4(1,1,1,mainColor.a); - } - else if (lightness >= 0.0){ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 - lightness) * (value - 1.0) + 1.0); - return vec4(c.rgb,mainColor.a); - } - else{ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 + lightness) * (value) - 1.0); - return vec4(c.rgb,mainColor.a); - } - } - - vec4 applyHSV(vec4 color, vec3 deltaHSV) { - if (deltaHSV.x != 0.0) { - vec3 hsv = rgb2hsv(color.rgb); - hsv.x += deltaHSV.x; - if (hsv.x > 6.0) { - hsv.x = hsv.x - 6.0; - } else if (hsv.x < 0.0) { - hsv.x = hsv.x + 6.0; - } - color.rgb = hsv2rgb(hsv); - } - - if (deltaHSV.y != 0.0) { - float c_max = max(color.r, max(color.g, color.b)); - float c_min = min(color.r, min(color.g, color.b)); - float delta = c_max - c_min; - if (delta != 0.0) { - float v = c_max + c_min; - float l = v * 0.5; - float s = l < 0.5 ? (delta / v) : ((delta) / (2.0 - v)); - if (deltaHSV.y >= 0.0) { - float alpha = (deltaHSV.y + s) >= 1.0 ? s : (1.0 - deltaHSV.y); - alpha = 1.0 / alpha - 1.0; - color.rgb = color.rgb + (color.rgb - l) * alpha; - } - else { - float alpha = deltaHSV.y; - color.rgb = l + (color.rgb - l) * (1.0 + alpha); - } - } - } - - if (deltaHSV.z != 0.0) { - color.rgb = deltaHSV.z > 0.0 ? (color.rgb * (1.0 - deltaHSV.z) + deltaHSV.z) : (color.rgb + color.rgb * deltaHSV.z); - } - return color; - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - float3 normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - if (materialParams.negNormal) { - normal = -normal; - } - material.normal = normal; - } - prepareMaterial(material); - - float4 albedo = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedo.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedo.rgb *= albedo.a; - } - lowp float skinMask = 0.0; - float3 deltaHSV = materialParams.deltaHSV; - if (materialParams.hasMaskMap) { - skinMask = texture(materialParams_skinMaskMap, uv).r; - } - float4 color = albedo; - if (materialParams.colorize) { - if (skinMask > 0.1) { - color = applyColorizeHSV(albedo, deltaHSV); - } - } else { - if(deltaHSV.x != 0.0 || deltaHSV.y != 0.0 || deltaHSV.z != 0.0) { - if (skinMask > 0.1) { - color = applyHSV(albedo, deltaHSV); - } - } - } - float4 diffuse = vec4(materialParams.diffuseColor, 1.0); - - float4 emission = vec4(0.0, 0.0, 0.0, 0.0); - if (materialParams.hasEmissionMap) { - emission = texture(materialParams_emissionMap, uv); - } - material.emissive = emission * materialParams.emissionColor; - - material.baseColor = saturate(color * diffuse * materialParams.diffuseFactor); - material.baseColor.a = albedo.a; - - material.glossiness = materialParams.glossiness; - if (materialParams.hasSpecularMap) { - vec4 specular = texture(materialParams_specularMap, uv); - material.specularColor = specular.rgb; - material.glossiness *= specular.a; - } - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_masked.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_masked.filamat deleted file mode 100644 index cc32457b..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_masked.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_masked.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_masked.mat deleted file mode 100644 index 17e3436c..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_masked.mat +++ /dev/null @@ -1,271 +0,0 @@ -material { - name : pbr, - shadingModel : specularGlossiness, - blending : masked, - doubleSided: true, - transparency : default, - parameters : [ - { - type : sampler2d, - name : baseColorMap - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : alphaPremultiplied - }, - { - type : bool, - name : hasAlphaMap - }, - { - type : sampler2d, - name : normalMap - }, - { - type : bool, - name : hasNormalMap - }, - - { - type : sampler2d, - name : specularMap - }, - { - type : bool, - name : hasSpecularMap - }, - - { - type : sampler2d, - name : skinMaskMap - }, - { - type : bool, - name : hasMaskMap - }, - - { - type : sampler2d, - name : metallicMap - }, - { - type : bool, - name : hasMetallicMap - }, - - { - type : sampler2d, - name : emissionMap - }, - { - type : bool, - name : hasEmissionMap - }, - - { - type : float, - name : glossiness - }, - { - type: float3, - name: diffuseColor - }, - { - type: float, - name: diffuseFactor - }, - { - type: bool, - name: isEtcImage - }, - { - type: bool, - name: colorize - }, - { - type: float3, - name: deltaHSV - }, - { - type: float4, - name: emissionColor - }, - { - type: bool, - name: negNormal - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - vec3 rgb2hsv(vec3 c) { - vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - float d = q.x - min(q.w, q.y); - float e = 0.0001; - - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - vec3 hsv2rgb(vec3 c) { - vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - vec3 blend2(vec3 left, vec3 right, float pos){ - return vec3(left.r * (1.0-pos) + right.r * pos, left.g * (1.0-pos) + right.g * pos, left.b * (1.0-pos) + right.b * pos); - } - - vec3 blend3(vec3 left, vec3 main, vec3 right,float pos) - { - if (pos < 0.0){ - return blend2(left, main, pos + 1.0); - } - else if (pos > 0.0){ - return blend2(main, right, pos); - } - else{ - return main; - } - } - - // deltaH scaled from 0~1 , deltaS:0~1 deltaV:-1~1 - vec4 applyColorizeHSV(vec4 mainColor, vec3 deltaHSV) - { - float deltaH = deltaHSV.x; - vec3 hueRGB = hsv2rgb(vec3(deltaH,1.0,1.0)); - float saturation = deltaHSV.y; - float lightness = deltaHSV.z; - float value = rgb2hsv(mainColor.rgb).z; - - vec3 cc = blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - if (lightness <= -1.0){ - return vec4(0,0,0,mainColor.a); - } - else if (lightness >= 1.0){ - return vec4(1,1,1,mainColor.a); - } - else if (lightness >= 0.0){ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 - lightness) * (value - 1.0) + 1.0); - return vec4(c.rgb,mainColor.a); - } - else{ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 + lightness) * (value) - 1.0); - return vec4(c.rgb,mainColor.a); - } - } - - vec4 applyHSV(vec4 color, vec3 deltaHSV) { - if (deltaHSV.x != 0.0) { - vec3 hsv = rgb2hsv(color.rgb); - hsv.x += deltaHSV.x; - if (hsv.x > 6.0) { - hsv.x = hsv.x - 6.0; - } else if (hsv.x < 0.0) { - hsv.x = hsv.x + 6.0; - } - color.rgb = hsv2rgb(hsv); - } - - if (deltaHSV.y != 0.0) { - float c_max = max(color.r, max(color.g, color.b)); - float c_min = min(color.r, min(color.g, color.b)); - float delta = c_max - c_min; - if (delta != 0.0) { - float v = c_max + c_min; - float l = v * 0.5; - float s = l < 0.5 ? (delta / v) : ((delta) / (2.0 - v)); - if (deltaHSV.y >= 0.0) { - float alpha = (deltaHSV.y + s) >= 1.0 ? s : (1.0 - deltaHSV.y); - alpha = 1.0 / alpha - 1.0; - color.rgb = color.rgb + (color.rgb - l) * alpha; - } - else { - float alpha = deltaHSV.y; - color.rgb = l + (color.rgb - l) * (1.0 + alpha); - } - } - } - - if (deltaHSV.z != 0.0) { - color.rgb = deltaHSV.z > 0.0 ? (color.rgb * (1.0 - deltaHSV.z) + deltaHSV.z) : (color.rgb + color.rgb * deltaHSV.z); - } - return color; - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - float3 normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - if (materialParams.negNormal) { - normal = -normal; - } - material.normal = normal; - } - prepareMaterial(material); - - float4 albedo = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedo.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedo.rgb *= albedo.a; - } - lowp float skinMask = 0.0; - float3 deltaHSV = materialParams.deltaHSV; - if (materialParams.hasMaskMap) { - skinMask = texture(materialParams_skinMaskMap, uv).r; - } - float4 color = albedo; - if (materialParams.colorize) { - if (skinMask > 0.1) { - color = applyColorizeHSV(albedo, deltaHSV); - } - } else { - if(deltaHSV.x != 0.0 || deltaHSV.y != 0.0 || deltaHSV.z != 0.0) { - if (skinMask > 0.1) { - color = applyHSV(albedo, deltaHSV); - } - } - } - float4 diffuse = vec4(materialParams.diffuseColor, 1.0); - - float4 emission = vec4(0.0, 0.0, 0.0, 0.0); - if (materialParams.hasEmissionMap) { - emission = texture(materialParams_emissionMap, uv); - } - material.emissive = emission * materialParams.emissionColor; - - material.baseColor = saturate(color * diffuse * materialParams.diffuseFactor); - material.baseColor.a = albedo.a; - - material.glossiness = materialParams.glossiness; - if (materialParams.hasSpecularMap) { - vec4 specular = texture(materialParams_specularMap, uv); - material.specularColor = specular.rgb; - material.glossiness *= specular.a; - } - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_opaque.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_opaque.filamat deleted file mode 100644 index 6e22314a..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_opaque.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_opaque.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_opaque.mat deleted file mode 100644 index 482c0eb5..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_opaque.mat +++ /dev/null @@ -1,271 +0,0 @@ -material { - name : pbr, - shadingModel : specularGlossiness, - blending : opaque, - doubleSided: true, - transparency : default, - parameters : [ - { - type : sampler2d, - name : baseColorMap - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : alphaPremultiplied - }, - { - type : bool, - name : hasAlphaMap - }, - { - type : sampler2d, - name : normalMap - }, - { - type : bool, - name : hasNormalMap - }, - - { - type : sampler2d, - name : specularMap - }, - { - type : bool, - name : hasSpecularMap - }, - - { - type : sampler2d, - name : skinMaskMap - }, - { - type : bool, - name : hasMaskMap - }, - - { - type : sampler2d, - name : metallicMap - }, - { - type : bool, - name : hasMetallicMap - }, - - { - type : sampler2d, - name : emissionMap - }, - { - type : bool, - name : hasEmissionMap - }, - - { - type : float, - name : glossiness - }, - { - type: float3, - name: diffuseColor - }, - { - type: float, - name: diffuseFactor - }, - { - type: bool, - name: isEtcImage - }, - { - type: bool, - name: colorize - }, - { - type: float3, - name: deltaHSV - }, - { - type: float4, - name: emissionColor - }, - { - type: bool, - name: negNormal - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - vec3 rgb2hsv(vec3 c) { - vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - float d = q.x - min(q.w, q.y); - float e = 0.0001; - - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - vec3 hsv2rgb(vec3 c) { - vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - vec3 blend2(vec3 left, vec3 right, float pos){ - return vec3(left.r * (1.0-pos) + right.r * pos, left.g * (1.0-pos) + right.g * pos, left.b * (1.0-pos) + right.b * pos); - } - - vec3 blend3(vec3 left, vec3 main, vec3 right,float pos) - { - if (pos < 0.0){ - return blend2(left, main, pos + 1.0); - } - else if (pos > 0.0){ - return blend2(main, right, pos); - } - else{ - return main; - } - } - - // deltaH scaled from 0~1 , deltaS:0~1 deltaV:-1~1 - vec4 applyColorizeHSV(vec4 mainColor, vec3 deltaHSV) - { - float deltaH = deltaHSV.x; - vec3 hueRGB = hsv2rgb(vec3(deltaH,1.0,1.0)); - float saturation = deltaHSV.y; - float lightness = deltaHSV.z; - float value = rgb2hsv(mainColor.rgb).z; - - vec3 cc = blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - if (lightness <= -1.0){ - return vec4(0,0,0,mainColor.a); - } - else if (lightness >= 1.0){ - return vec4(1,1,1,mainColor.a); - } - else if (lightness >= 0.0){ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 - lightness) * (value - 1.0) + 1.0); - return vec4(c.rgb,mainColor.a); - } - else{ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 + lightness) * (value) - 1.0); - return vec4(c.rgb,mainColor.a); - } - } - - vec4 applyHSV(vec4 color, vec3 deltaHSV) { - if (deltaHSV.x != 0.0) { - vec3 hsv = rgb2hsv(color.rgb); - hsv.x += deltaHSV.x; - if (hsv.x > 6.0) { - hsv.x = hsv.x - 6.0; - } else if (hsv.x < 0.0) { - hsv.x = hsv.x + 6.0; - } - color.rgb = hsv2rgb(hsv); - } - - if (deltaHSV.y != 0.0) { - float c_max = max(color.r, max(color.g, color.b)); - float c_min = min(color.r, min(color.g, color.b)); - float delta = c_max - c_min; - if (delta != 0.0) { - float v = c_max + c_min; - float l = v * 0.5; - float s = l < 0.5 ? (delta / v) : ((delta) / (2.0 - v)); - if (deltaHSV.y >= 0.0) { - float alpha = (deltaHSV.y + s) >= 1.0 ? s : (1.0 - deltaHSV.y); - alpha = 1.0 / alpha - 1.0; - color.rgb = color.rgb + (color.rgb - l) * alpha; - } - else { - float alpha = deltaHSV.y; - color.rgb = l + (color.rgb - l) * (1.0 + alpha); - } - } - } - - if (deltaHSV.z != 0.0) { - color.rgb = deltaHSV.z > 0.0 ? (color.rgb * (1.0 - deltaHSV.z) + deltaHSV.z) : (color.rgb + color.rgb * deltaHSV.z); - } - return color; - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - float3 normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - if (materialParams.negNormal) { - normal = -normal; - } - material.normal = normal; - } - prepareMaterial(material); - - float4 albedo = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedo.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedo.rgb *= albedo.a; - } - lowp float skinMask = 0.0; - float3 deltaHSV = materialParams.deltaHSV; - if (materialParams.hasMaskMap) { - skinMask = texture(materialParams_skinMaskMap, uv).r; - } - float4 color = albedo; - if (materialParams.colorize) { - if (skinMask > 0.1) { - color = applyColorizeHSV(albedo, deltaHSV); - } - } else { - if(deltaHSV.x != 0.0 || deltaHSV.y != 0.0 || deltaHSV.z != 0.0) { - if (skinMask > 0.1) { - color = applyHSV(albedo, deltaHSV); - } - } - } - float4 diffuse = vec4(materialParams.diffuseColor, 1.0); - - float4 emission = vec4(0.0, 0.0, 0.0, 0.0); - if (materialParams.hasEmissionMap) { - emission = texture(materialParams_emissionMap, uv); - } - material.emissive = emission * materialParams.emissionColor; - - material.baseColor = saturate(color * diffuse * materialParams.diffuseFactor); - material.baseColor.a = albedo.a; - - material.glossiness = materialParams.glossiness; - if (materialParams.hasSpecularMap) { - vec4 specular = texture(materialParams_specularMap, uv); - material.specularColor = specular.rgb; - material.glossiness *= specular.a; - } - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_transparent.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_transparent.filamat deleted file mode 100644 index 02e8fcc9..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_transparent.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_transparent.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_transparent.mat deleted file mode 100644 index 37ac9f8f..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_custom_sp_transparent.mat +++ /dev/null @@ -1,271 +0,0 @@ -material { - name : pbr, - shadingModel : specularGlossiness, - blending : transparent, - doubleSided: true, - transparency : twoPassesTwoSides, - parameters : [ - { - type : sampler2d, - name : baseColorMap - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : alphaPremultiplied - }, - { - type : bool, - name : hasAlphaMap - }, - { - type : sampler2d, - name : normalMap - }, - { - type : bool, - name : hasNormalMap - }, - - { - type : sampler2d, - name : specularMap - }, - { - type : bool, - name : hasSpecularMap - }, - - { - type : sampler2d, - name : skinMaskMap - }, - { - type : bool, - name : hasMaskMap - }, - - { - type : sampler2d, - name : metallicMap - }, - { - type : bool, - name : hasMetallicMap - }, - - { - type : sampler2d, - name : emissionMap - }, - { - type : bool, - name : hasEmissionMap - }, - - { - type : float, - name : glossiness - }, - { - type: float3, - name: diffuseColor - }, - { - type: float, - name: diffuseFactor - }, - { - type: bool, - name: isEtcImage - }, - { - type: bool, - name: colorize - }, - { - type: float3, - name: deltaHSV - }, - { - type: float4, - name: emissionColor - }, - { - type: bool, - name: negNormal - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - vec3 rgb2hsv(vec3 c) { - vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - float d = q.x - min(q.w, q.y); - float e = 0.0001; - - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - vec3 hsv2rgb(vec3 c) { - vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - vec3 blend2(vec3 left, vec3 right, float pos){ - return vec3(left.r * (1.0-pos) + right.r * pos, left.g * (1.0-pos) + right.g * pos, left.b * (1.0-pos) + right.b * pos); - } - - vec3 blend3(vec3 left, vec3 main, vec3 right,float pos) - { - if (pos < 0.0){ - return blend2(left, main, pos + 1.0); - } - else if (pos > 0.0){ - return blend2(main, right, pos); - } - else{ - return main; - } - } - - // deltaH scaled from 0~1 , deltaS:0~1 deltaV:-1~1 - vec4 applyColorizeHSV(vec4 mainColor, vec3 deltaHSV) - { - float deltaH = deltaHSV.x; - vec3 hueRGB = hsv2rgb(vec3(deltaH,1.0,1.0)); - float saturation = deltaHSV.y; - float lightness = deltaHSV.z; - float value = rgb2hsv(mainColor.rgb).z; - - vec3 cc = blend2(vec3(0.5, 0.5, 0.5), hueRGB, saturation); - if (lightness <= -1.0){ - return vec4(0,0,0,mainColor.a); - } - else if (lightness >= 1.0){ - return vec4(1,1,1,mainColor.a); - } - else if (lightness >= 0.0){ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 - lightness) * (value - 1.0) + 1.0); - return vec4(c.rgb,mainColor.a); - } - else{ - vec3 c = blend3(vec3(0.0,0.0,0.0), cc, vec3(1.0, 1.0, 1.0), 2.0* (1.0 + lightness) * (value) - 1.0); - return vec4(c.rgb,mainColor.a); - } - } - - vec4 applyHSV(vec4 color, vec3 deltaHSV) { - if (deltaHSV.x != 0.0) { - vec3 hsv = rgb2hsv(color.rgb); - hsv.x += deltaHSV.x; - if (hsv.x > 6.0) { - hsv.x = hsv.x - 6.0; - } else if (hsv.x < 0.0) { - hsv.x = hsv.x + 6.0; - } - color.rgb = hsv2rgb(hsv); - } - - if (deltaHSV.y != 0.0) { - float c_max = max(color.r, max(color.g, color.b)); - float c_min = min(color.r, min(color.g, color.b)); - float delta = c_max - c_min; - if (delta != 0.0) { - float v = c_max + c_min; - float l = v * 0.5; - float s = l < 0.5 ? (delta / v) : ((delta) / (2.0 - v)); - if (deltaHSV.y >= 0.0) { - float alpha = (deltaHSV.y + s) >= 1.0 ? s : (1.0 - deltaHSV.y); - alpha = 1.0 / alpha - 1.0; - color.rgb = color.rgb + (color.rgb - l) * alpha; - } - else { - float alpha = deltaHSV.y; - color.rgb = l + (color.rgb - l) * (1.0 + alpha); - } - } - } - - if (deltaHSV.z != 0.0) { - color.rgb = deltaHSV.z > 0.0 ? (color.rgb * (1.0 - deltaHSV.z) + deltaHSV.z) : (color.rgb + color.rgb * deltaHSV.z); - } - return color; - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - float3 normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - if (materialParams.negNormal) { - normal = -normal; - } - material.normal = normal; - } - prepareMaterial(material); - - float4 albedo = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedo.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedo.rgb *= albedo.a; - } - lowp float skinMask = 0.0; - float3 deltaHSV = materialParams.deltaHSV; - if (materialParams.hasMaskMap) { - skinMask = texture(materialParams_skinMaskMap, uv).r; - } - float4 color = albedo; - if (materialParams.colorize) { - if (skinMask > 0.1) { - color = applyColorizeHSV(albedo, deltaHSV); - } - } else { - if(deltaHSV.x != 0.0 || deltaHSV.y != 0.0 || deltaHSV.z != 0.0) { - if (skinMask > 0.1) { - color = applyHSV(albedo, deltaHSV); - } - } - } - float4 diffuse = vec4(materialParams.diffuseColor, 1.0); - - float4 emission = vec4(0.0, 0.0, 0.0, 0.0); - if (materialParams.hasEmissionMap) { - emission = texture(materialParams_emissionMap, uv); - } - material.emissive = emission * materialParams.emissionColor; - - material.baseColor = saturate(color * diffuse * materialParams.diffuseFactor); - material.baseColor.a = albedo.a; - - material.glossiness = materialParams.glossiness; - if (materialParams.hasSpecularMap) { - vec4 specular = texture(materialParams_specularMap, uv); - material.specularColor = specular.rgb; - material.glossiness *= specular.a; - } - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_makeup.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_makeup.filamat deleted file mode 100644 index 46806a3d..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_makeup.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_makeup.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_makeup.mat deleted file mode 100644 index 395a507d..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_makeup.mat +++ /dev/null @@ -1,316 +0,0 @@ -material { - name : bakedTexture, - parameters : [ - { - type : int, - name : beautyCount - }, - { - type : sampler2d, - name : map - }, - { - type : float3, - name : hsv - }, - { - type : sampler2d, - name : beautyMap1 - }, - { - type : float3, - name : beautyHsv1 - }, - { - type : float2, - name : beautyLocation1 - }, - { - type : float2, - name : beautySize1 - }, - { - type : sampler2d, - name : beautyMap2 - }, - { - type : float3, - name : beautyHsv2 - }, - { - type : float2, - name : beautyLocation2 - }, - { - type : float2, - name : beautySize2 - }, - { - type : sampler2d, - name : beautyMap3 - }, - { - type : float3, - name : beautyHsv3 - }, - { - type : float2, - name : beautyLocation3 - }, - { - type : float2, - name : beautySize3 - }, - { - type : sampler2d, - name : beautyMap4 - }, - { - type : float3, - name : beautyHsv4 - }, - { - type : float2, - name : beautyLocation4 - }, - { - type : float2, - name : beautySize4 - }, - { - type : sampler2d, - name : beautyMap5 - }, - { - type : float3, - name : beautyHsv5 - }, - { - type : float2, - name : beautyLocation5 - }, - { - type : float2, - name : beautySize5 - }, - { - type : sampler2d, - name : beautyMap6 - }, - { - type : float3, - name : beautyHsv6 - }, - { - type : float2, - name : beautyLocation6 - }, - { - type : float2, - name : beautySize6 - }, - { - type : sampler2d, - name : beautyMap7 - }, - { - type : float3, - name : beautyHsv7 - }, - { - type : float2, - name : beautyLocation7 - }, - { - type : float2, - name : beautySize7 - } - ], - requires : [ - uv0 - ], - shadingModel : unlit, - blending : fade, - doubleSided: true, - flipUV: true -} - -fragment { - vec3 rgb2hsv(vec3 c) - { - vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); - vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); - vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); - - float d = q.x - min(q.w, q.y); - float e = 0.0001; - return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); - } - - - vec3 hsv2rgb(vec3 c) - { - vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); - vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); - return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); - } - - - vec4 applyHSV(vec4 color, vec3 deltaHSV) - { - if (deltaHSV.x != 0.0) - { - vec3 hsv = rgb2hsv(color.rgb); - hsv.x += deltaHSV.x; - if (hsv.x > 6.0) { - hsv.x = hsv.x - 6.0; - } else if (hsv.x < 0.0) { - hsv.x = hsv.x + 6.0; - } - color.rgb = hsv2rgb(hsv); - } - - if (deltaHSV.y != 0.0) - { - float c_max = max(color.r, max(color.g, color.b)); - float c_min = min(color.r, min(color.g, color.b)); - float delta = c_max - c_min; - if (delta != 0.0) - { - float v = c_max + c_min; - float l = v * 0.5; - float s = l < 0.5 ? (delta / v) : ((delta) / (2.0 - v)); - if (deltaHSV.y >= 0.0) - { - float alpha = (deltaHSV.y + s) >= 1.0 ? s : (1.0 - deltaHSV.y); - alpha = 1.0 / alpha - 1.0; - color.rgb = color.rgb + (color.rgb - l) * alpha; - } - else - { - float alpha = deltaHSV.y; - color.rgb = l + (color.rgb - l) * (1.0 + alpha); - } - } - } - - if (deltaHSV.z != 0.0) - { - color.rgb = deltaHSV.z > 0.0 ? (color.rgb * (1.0 - deltaHSV.z) + deltaHSV.z) : (color.rgb + color.rgb * deltaHSV.z); - } - return color; - } - - void material(inout MaterialInputs material) { - prepareMaterial(material); - vec2 v_TexCoord = uvToRenderTargetUV(getUV0()); - vec4 mc = texture(materialParams_map, vec2(v_TexCoord.x, 1.0 - v_TexCoord.y)); - mc.a = 1.0; - mc = applyHSV(mc, materialParams.hsv); - if (materialParams.beautyCount >= 1) - { - vec2 cl = materialParams.beautyLocation1; - vec2 cs = materialParams.beautySize1; - if(v_TexCoord.x >= cl.x && v_TexCoord.x <= (cl.x + cs.x) && v_TexCoord.y >= cl.y && v_TexCoord.y <= (cl.y + cs.y) ) - { - vec2 localUV = vec2((v_TexCoord.x - cl.x) / (cs.x) ,(v_TexCoord.y - cl.y) / (cs.y) ); - vec4 c = texture(materialParams_beautyMap1, localUV); - c = applyHSV(c, materialParams.beautyHsv1); - mc = mc * ( 1.0- c.a) + vec4(c.rgb,1.0) * c.a; - } - } - - if (materialParams.beautyCount >= 1) - { - vec2 cl = materialParams.beautyLocation1; - vec2 cs = materialParams.beautySize1; - if(v_TexCoord.x >= cl.x && v_TexCoord.x <= (cl.x + cs.x) && v_TexCoord.y >= cl.y && v_TexCoord.y <= (cl.y + cs.y) ) - { - vec2 localUV = vec2((v_TexCoord.x - cl.x) / (cs.x) ,(v_TexCoord.y - cl.y) / (cs.y) ); - vec4 c = texture(materialParams_beautyMap1, localUV); - c = applyHSV(c, materialParams.beautyHsv1); - mc = mc * ( 1.0- c.a) + vec4(c.rgb,1.0) * c.a; - } - } - - if (materialParams.beautyCount >= 2) - { - vec2 cl = materialParams.beautyLocation2; - vec2 cs = materialParams.beautySize2; - if(v_TexCoord.x >= cl.x && v_TexCoord.x <= (cl.x + cs.x) && v_TexCoord.y >= cl.y && v_TexCoord.y <= (cl.y + cs.y) ) - { - vec2 localUV = vec2((v_TexCoord.x - cl.x) / (cs.x) ,(v_TexCoord.y - cl.y) / (cs.y) ); - vec4 c = texture(materialParams_beautyMap2, localUV); - c = applyHSV(c, materialParams.beautyHsv2); - mc = mc * ( 1.0- c.a) + vec4(c.rgb,1.0) * c.a; - } - } - - if (materialParams.beautyCount >= 3) - { - vec2 cl = materialParams.beautyLocation3; - vec2 cs = materialParams.beautySize3; - if(v_TexCoord.x >= cl.x && v_TexCoord.x <= (cl.x + cs.x) && v_TexCoord.y >= cl.y && v_TexCoord.y <= (cl.y + cs.y) ) - { - vec2 localUV = vec2((v_TexCoord.x - cl.x) / (cs.x) ,(v_TexCoord.y - cl.y) / (cs.y) ); - vec4 c = texture(materialParams_beautyMap3, localUV); - c = applyHSV(c, materialParams.beautyHsv3); - mc = mc * ( 1.0- c.a) + vec4(c.rgb,1.0) * c.a; - } - } - - if (materialParams.beautyCount >= 4) - { - vec2 cl = materialParams.beautyLocation4; - vec2 cs = materialParams.beautySize4; - if(v_TexCoord.x >= cl.x && v_TexCoord.x <= (cl.x + cs.x) && v_TexCoord.y >= cl.y && v_TexCoord.y <= (cl.y + cs.y) ) - { - vec2 localUV = vec2((v_TexCoord.x - cl.x) / (cs.x) ,(v_TexCoord.y - cl.y) / (cs.y) ); - vec4 c = texture(materialParams_beautyMap4, localUV); - c = applyHSV(c, materialParams.beautyHsv4); - mc = mc * ( 1.0- c.a) + vec4(c.rgb,1.0) * c.a; - } - } - - if (materialParams.beautyCount >= 5) - { - vec2 cl = materialParams.beautyLocation5; - vec2 cs = materialParams.beautySize5; - if(v_TexCoord.x >= cl.x && v_TexCoord.x <= (cl.x + cs.x) && v_TexCoord.y >= cl.y && v_TexCoord.y <= (cl.y + cs.y) ) - { - vec2 localUV = vec2((v_TexCoord.x - cl.x) / (cs.x) ,(v_TexCoord.y - cl.y) / (cs.y) ); - vec4 c = texture(materialParams_beautyMap5, localUV); - c = applyHSV(c, materialParams.beautyHsv5); - mc = mc * ( 1.0- c.a) + vec4(c.rgb,1.0) * c.a; - } - } - - if (materialParams.beautyCount >= 6) - { - vec2 cl = materialParams.beautyLocation6; - vec2 cs = materialParams.beautySize6; - if(v_TexCoord.x >= cl.x && v_TexCoord.x <= (cl.x + cs.x) && v_TexCoord.y >= cl.y && v_TexCoord.y <= (cl.y + cs.y) ) - { - vec2 localUV = vec2((v_TexCoord.x - cl.x) / (cs.x) ,(v_TexCoord.y - cl.y) / (cs.y) ); - vec4 c = texture(materialParams_beautyMap6, localUV); - c = applyHSV(c, materialParams.beautyHsv6); - mc = mc * ( 1.0- c.a) + vec4(c.rgb,1.0) * c.a; - } - } - - if (materialParams.beautyCount >= 7) - { - vec2 cl = materialParams.beautyLocation7; - vec2 cs = materialParams.beautySize7; - if(v_TexCoord.x >= cl.x && v_TexCoord.x <= (cl.x + cs.x) && v_TexCoord.y >= cl.y && v_TexCoord.y <= (cl.y + cs.y) ) - { - vec2 localUV = vec2((v_TexCoord.x - cl.x) / (cs.x) ,(v_TexCoord.y - cl.y) / (cs.y) ); - vec4 c = texture(materialParams_beautyMap7, localUV); - c = applyHSV(c, materialParams.beautyHsv7); - mc = mc * ( 1.0- c.a) + vec4(c.rgb,1.0) * c.a; - } - } - - material.baseColor = mc; - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard.mat deleted file mode 100644 index 3178ebd6..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard.mat +++ /dev/null @@ -1,117 +0,0 @@ -material { - name : pbr, - shadingModel : lit, - blending : ${BLENDING}, - doubleSided: true, - transparency : ${TRANSPARENCY}, - parameters : [ - - { type : sampler2d, name : baseColorMap }, - { type : sampler2d, name : normalMap }, - { type : sampler2d, name : roughnessMap }, - { type : sampler2d, name : metallicMap }, - { - type : bool, - name : alphaPremultiplied - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : hasAlphaMap - }, - { - type : bool, - name : hasNormalMap - }, - { - type : float, - name : metallic - }, - { - type : float, - name : roughness - }, - { - type : bool, - name : hasRoughnessMap - }, - { - type : bool, - name : hasMetallicMap - }, - { - type : sampler2d, - name : emissionMap - }, - { - type : bool, - name : hasEmissionMap - }, - { - type: float4, - name: emissionColor - }, - { - type: bool, - name: isEtcImage - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - material.normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - } - - prepareMaterial(material); - - float4 emission = vec4(0.0, 0.0, 0.0, 0.0); - if (materialParams.hasEmissionMap) { - emission = texture(materialParams_emissionMap, uv); - } - material.emissive = emission * materialParams.emissionColor; - - float4 albedoColor = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedoColor.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedoColor.rgb *= albedoColor.a; - } - material.baseColor.rgb = saturate(albedoColor.rgb); - material.baseColor.a = albedoColor.a; - - if (materialParams.hasRoughnessMap) { - vec4 roughnessColor = texture(materialParams_roughnessMap, uv); - material.roughness = lerp(roughnessColor.r, 1.0, materialParams.roughness); //mrs.g * materialParams.roughnessFactor; - } else { - material.roughness = materialParams.roughness; - } - if (materialParams.hasMetallicMap) { - vec4 metallicColor = texture(materialParams_metallicMap, uv); - material.metallic = lerp(metallicColor.r, 1.0, materialParams.metallic); //mrs.r * materialParams.metallicFactor; - } else { - material.metallic = materialParams.metallic; - } - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_fade.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_fade.filamat deleted file mode 100644 index d2a89f2b..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_fade.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_fade.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_fade.mat deleted file mode 100644 index 63f5d83e..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_fade.mat +++ /dev/null @@ -1,117 +0,0 @@ -material { - name : pbr, - shadingModel : lit, - blending : fade, - doubleSided: true, - transparency : twoPassesTwoSides, - parameters : [ - - { type : sampler2d, name : baseColorMap }, - { type : sampler2d, name : normalMap }, - { type : sampler2d, name : roughnessMap }, - { type : sampler2d, name : metallicMap }, - { - type : bool, - name : alphaPremultiplied - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : hasAlphaMap - }, - { - type : bool, - name : hasNormalMap - }, - { - type : float, - name : metallic - }, - { - type : float, - name : roughness - }, - { - type : bool, - name : hasRoughnessMap - }, - { - type : bool, - name : hasMetallicMap - }, - { - type : sampler2d, - name : emissionMap - }, - { - type : bool, - name : hasEmissionMap - }, - { - type: float4, - name: emissionColor - }, - { - type: bool, - name: isEtcImage - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - material.normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - } - - prepareMaterial(material); - - float4 emission = vec4(0.0, 0.0, 0.0, 0.0); - if (materialParams.hasEmissionMap) { - emission = texture(materialParams_emissionMap, uv); - } - material.emissive = emission * materialParams.emissionColor; - - float4 albedoColor = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedoColor.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedoColor.rgb *= albedoColor.a; - } - material.baseColor.rgb = saturate(albedoColor.rgb); - material.baseColor.a = albedoColor.a; - - if (materialParams.hasRoughnessMap) { - vec4 roughnessColor = texture(materialParams_roughnessMap, uv); - material.roughness = lerp(roughnessColor.r, 1.0, materialParams.roughness); //mrs.g * materialParams.roughnessFactor; - } else { - material.roughness = materialParams.roughness; - } - if (materialParams.hasMetallicMap) { - vec4 metallicColor = texture(materialParams_metallicMap, uv); - material.metallic = lerp(metallicColor.r, 1.0, materialParams.metallic); //mrs.r * materialParams.metallicFactor; - } else { - material.metallic = materialParams.metallic; - } - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_masked.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_masked.filamat deleted file mode 100644 index eca2805b..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_masked.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_masked.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_masked.mat deleted file mode 100644 index 292748fc..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_masked.mat +++ /dev/null @@ -1,117 +0,0 @@ -material { - name : pbr, - shadingModel : lit, - blending : masked, - doubleSided: true, - transparency : default, - parameters : [ - - { type : sampler2d, name : baseColorMap }, - { type : sampler2d, name : normalMap }, - { type : sampler2d, name : roughnessMap }, - { type : sampler2d, name : metallicMap }, - { - type : bool, - name : alphaPremultiplied - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : hasAlphaMap - }, - { - type : bool, - name : hasNormalMap - }, - { - type : float, - name : metallic - }, - { - type : float, - name : roughness - }, - { - type : bool, - name : hasRoughnessMap - }, - { - type : bool, - name : hasMetallicMap - }, - { - type : sampler2d, - name : emissionMap - }, - { - type : bool, - name : hasEmissionMap - }, - { - type: float4, - name: emissionColor - }, - { - type: bool, - name: isEtcImage - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - material.normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - } - - prepareMaterial(material); - - float4 emission = vec4(0.0, 0.0, 0.0, 0.0); - if (materialParams.hasEmissionMap) { - emission = texture(materialParams_emissionMap, uv); - } - material.emissive = emission * materialParams.emissionColor; - - float4 albedoColor = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedoColor.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedoColor.rgb *= albedoColor.a; - } - material.baseColor.rgb = saturate(albedoColor.rgb); - material.baseColor.a = albedoColor.a; - - if (materialParams.hasRoughnessMap) { - vec4 roughnessColor = texture(materialParams_roughnessMap, uv); - material.roughness = lerp(roughnessColor.r, 1.0, materialParams.roughness); //mrs.g * materialParams.roughnessFactor; - } else { - material.roughness = materialParams.roughness; - } - if (materialParams.hasMetallicMap) { - vec4 metallicColor = texture(materialParams_metallicMap, uv); - material.metallic = lerp(metallicColor.r, 1.0, materialParams.metallic); //mrs.r * materialParams.metallicFactor; - } else { - material.metallic = materialParams.metallic; - } - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_opaque.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_opaque.filamat deleted file mode 100644 index 0acf65d4..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_opaque.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_opaque.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_opaque.mat deleted file mode 100644 index 461a94a5..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_opaque.mat +++ /dev/null @@ -1,117 +0,0 @@ -material { - name : pbr, - shadingModel : lit, - blending : opaque, - doubleSided: true, - transparency : default, - parameters : [ - - { type : sampler2d, name : baseColorMap }, - { type : sampler2d, name : normalMap }, - { type : sampler2d, name : roughnessMap }, - { type : sampler2d, name : metallicMap }, - { - type : bool, - name : alphaPremultiplied - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : hasAlphaMap - }, - { - type : bool, - name : hasNormalMap - }, - { - type : float, - name : metallic - }, - { - type : float, - name : roughness - }, - { - type : bool, - name : hasRoughnessMap - }, - { - type : bool, - name : hasMetallicMap - }, - { - type : sampler2d, - name : emissionMap - }, - { - type : bool, - name : hasEmissionMap - }, - { - type: float4, - name: emissionColor - }, - { - type: bool, - name: isEtcImage - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - material.normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - } - - prepareMaterial(material); - - float4 emission = vec4(0.0, 0.0, 0.0, 0.0); - if (materialParams.hasEmissionMap) { - emission = texture(materialParams_emissionMap, uv); - } - material.emissive = emission * materialParams.emissionColor; - - float4 albedoColor = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedoColor.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedoColor.rgb *= albedoColor.a; - } - material.baseColor.rgb = saturate(albedoColor.rgb); - material.baseColor.a = albedoColor.a; - - if (materialParams.hasRoughnessMap) { - vec4 roughnessColor = texture(materialParams_roughnessMap, uv); - material.roughness = lerp(roughnessColor.r, 1.0, materialParams.roughness); //mrs.g * materialParams.roughnessFactor; - } else { - material.roughness = materialParams.roughness; - } - if (materialParams.hasMetallicMap) { - vec4 metallicColor = texture(materialParams_metallicMap, uv); - material.metallic = lerp(metallicColor.r, 1.0, materialParams.metallic); //mrs.r * materialParams.metallicFactor; - } else { - material.metallic = materialParams.metallic; - } - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_transparent.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_transparent.filamat deleted file mode 100644 index cc46b471..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_transparent.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_transparent.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_transparent.mat deleted file mode 100644 index 48608d47..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/kapu_standard_transparent.mat +++ /dev/null @@ -1,117 +0,0 @@ -material { - name : pbr, - shadingModel : lit, - blending : transparent, - doubleSided: true, - transparency : twoPassesTwoSides, - parameters : [ - - { type : sampler2d, name : baseColorMap }, - { type : sampler2d, name : normalMap }, - { type : sampler2d, name : roughnessMap }, - { type : sampler2d, name : metallicMap }, - { - type : bool, - name : alphaPremultiplied - }, - { - type : sampler2d, - name : baseColorMap_Alpha - }, - { - type : bool, - name : hasAlphaMap - }, - { - type : bool, - name : hasNormalMap - }, - { - type : float, - name : metallic - }, - { - type : float, - name : roughness - }, - { - type : bool, - name : hasRoughnessMap - }, - { - type : bool, - name : hasMetallicMap - }, - { - type : sampler2d, - name : emissionMap - }, - { - type : bool, - name : hasEmissionMap - }, - { - type: float4, - name: emissionColor - }, - { - type: bool, - name: isEtcImage - } - ], - requires : [ - uv0, tangents - ], - - flipUV:true -} - -fragment { - float lerp(float a, float b, float w) { - return a + w * (b-a); - } - vec3 lerpv(vec3 a, vec3 b, float w) { - return a + w * (b-a); - } - - void material(inout MaterialInputs material) { - float2 uv = getUV0(); - if (materialParams.isEtcImage) { - uv.y = 1.0 - uv.y; - } - if (materialParams.hasNormalMap) { - material.normal = texture(materialParams_normalMap, uv).xyz * 2.0 - 1.0; - } - - prepareMaterial(material); - - float4 emission = vec4(0.0, 0.0, 0.0, 0.0); - if (materialParams.hasEmissionMap) { - emission = texture(materialParams_emissionMap, uv); - } - material.emissive = emission * materialParams.emissionColor; - - float4 albedoColor = texture(materialParams_baseColorMap, uv); - if(materialParams.hasAlphaMap) { - albedoColor.a = texture(materialParams_baseColorMap_Alpha, uv).r; - } - if (!materialParams.alphaPremultiplied) { - albedoColor.rgb *= albedoColor.a; - } - material.baseColor.rgb = saturate(albedoColor.rgb); - material.baseColor.a = albedoColor.a; - - if (materialParams.hasRoughnessMap) { - vec4 roughnessColor = texture(materialParams_roughnessMap, uv); - material.roughness = lerp(roughnessColor.r, 1.0, materialParams.roughness); //mrs.g * materialParams.roughnessFactor; - } else { - material.roughness = materialParams.roughness; - } - if (materialParams.hasMetallicMap) { - vec4 metallicColor = texture(materialParams_metallicMap, uv); - material.metallic = lerp(metallicColor.r, 1.0, materialParams.metallic); //mrs.r * materialParams.metallicFactor; - } else { - material.metallic = materialParams.metallic; - } - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/lit_fade.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/lit_fade.filamat deleted file mode 100644 index 4c1fbf59..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/lit_fade.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/lit_masked.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/lit_masked.filamat deleted file mode 100644 index c1f9a9c7..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/lit_masked.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/lit_opaque.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/lit_opaque.filamat deleted file mode 100644 index 7f19f87e..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/lit_opaque.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/location_init.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/location_init.filamat deleted file mode 100644 index 9de440c6..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/location_init.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/location_init.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/location_init.mat deleted file mode 100644 index 89f27445..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/location_init.mat +++ /dev/null @@ -1,78 +0,0 @@ -// Simple unlit material that uses the colors associated with each vertex. -// -// This source material must be compiled to a binary material using the matc tool. -// The command used to compile this material is: -// matc -p mobile -a opengl -o app/src/main/assets/baked_color.filamat app/src/materials/baked_color.mat -// -// See build.gradle for an example of how to compile materials automatically -// Please refer to the documentation for more information about matc and the materials system. - -material { - name : location_init, - shadingModel : unlit, - requires : [uv0], - depthCulling : false, - flipUV: false, - culling : none, - parameters : [ - { - type : sampler2d, - name : texture - }, - { - type : mat4, - name : mvpMatrix - }, - { - type : float, - name : scale - }, - { - type : mat4, - name : scaleTransform - } - ], - variables : [ - pos - ] -} - -vertex { - void materialVertex(inout MaterialVertexInputs material) { - vec4 pos = materialParams.mvpMatrix * materialParams.scaleTransform * getPosition(); - material.pos = pos / pos.w; - material.pos.x /= (getResolution().x * materialParams.scale); - material.pos.y /= (getResolution().y * materialParams.scale); - - vec2 uv = material.uv0; - uv = 2.0 * uv - 1.0; - material.worldPosition = inverse(getClipFromWorldMatrix()) * vec4(uv, 0.0, 1.0);; - } -} - -fragment { - vec3 GammaToLinearSpace (vec3 sRGB) - { - return sRGB * (sRGB * (sRGB * 0.305306011 + 0.682171111) + 0.012522878); - } - - float sRGB_to_linear(float color) { - return color <= 0.04045 ? color / 12.92 : pow((color + 0.055) / 1.055, 2.4); - } - - vec3 GTLSpace (vec3 sRGB) - { - return vec3(sRGB_to_linear(sRGB.r), sRGB_to_linear(sRGB.g), sRGB_to_linear(sRGB.b)); - } - - void material(inout MaterialInputs material) { - prepareMaterial(material); - vec2 uv = vec2(variable_pos.x, variable_pos.y); - uv.y = 1.0 - uv.y; - vec4 color = texture(materialParams_texture, uv); - color.rgb = GTLSpace(color.rgb); - - material.baseColor = color; - //material.baseColor = vec4(0.3, 0.0, 0.0, 0.3); - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/miniSkybox.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/miniSkybox.filamat deleted file mode 100644 index bd635035..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/miniSkybox.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/mipmapDepth.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/mipmapDepth.filamat deleted file mode 100644 index d736d529..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/mipmapDepth.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/mix.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/mix.filamat deleted file mode 100644 index 38aabb49..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/mix.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/mix.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/mix.mat deleted file mode 100644 index 5e3d0555..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/mix.mat +++ /dev/null @@ -1,32 +0,0 @@ -material { - name : mix, - shadingModel : unlit, - depthWrite: false, - depthCulling: false, - blending: transparent, - parameters : [ - { - type : sampler2d, - name : color - }, - { - type : sampler2d, - name : secondary - } - ], - requires: [ - uv0 - ], -} -fragment { - void material(inout MaterialInputs material) { - prepareMaterial(material); - vec2 uv = uvToRenderTargetUV(getUV0()); - vec4 primary = texture(materialParams_color, uv); - vec4 blurred = texture(materialParams_secondary, uv); - material.baseColor = mix(primary, blurred, blurred.a); - if (material.baseColor.a > 0.01) { - material.baseColor *= (max(primary.a, blurred.a) / material.baseColor.a); - } - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/normalRender.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/normalRender.filamat deleted file mode 100644 index 8fc87c4b..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/normalRender.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/normalRender.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/normalRender.mat deleted file mode 100644 index 323ce81c..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/normalRender.mat +++ /dev/null @@ -1,26 +0,0 @@ -material { - name : test, - shadingModel : unlit, - requires : [tangents], - culling : front, - variables : [ - norm - ] -} - -vertex { - void materialVertex(inout MaterialVertexInputs material) { - float3 normal = normalize(inverse(getWorldFromModelNormalMatrix()) * material.worldNormal); - material.norm.xyz = -normalize(normal) * 0.5 + 0.5; - } -} - -fragment { - - void material(inout MaterialInputs material) { - prepareMaterial(material); - float3 nor = -normalize(getWorldNormalVector()) * 0.5 + 0.5; - material.baseColor.rgb = variable_norm.xyz; - material.baseColor.a = 1.0; - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/plane.glb b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/plane.glb deleted file mode 100644 index a753ed58..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/plane.glb and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/redtotal.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/redtotal.filamat deleted file mode 100644 index 1e1ac8f9..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/redtotal.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/reflection.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/reflection.filamat deleted file mode 100644 index e7dc233d..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/reflection.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/reflection.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/reflection.mat deleted file mode 100644 index ec653e4e..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/reflection.mat +++ /dev/null @@ -1,91 +0,0 @@ -material { - name : reflection, - parameters : [ - { - type : sampler2d, - name : baseColorMap - }, - { - type : sampler2d, - name : reflectMap - }, - { - type : float, - name : zNormalScale - }, - { - type : float, - name : blendFactor - }, - { - type : float2, - name : reflectOffset - }, - { - type : int, - name : blendMode - }, - { - type : float, - name : modulateAlpha - } - ], - requires : [ - uv0, tangents - ], - shadingModel : unlit, - blending : transparent, - flipUV : false -} - -fragment { - void material(inout MaterialInputs material) { - prepareMaterial(material); - - //float zNormalScale = 1.0; - //float blendFactor = 0.5; - - vec3 cameraDirection = getWorldCameraPosition() - getWorldPosition(); - vec3 normalVector = getWorldGeometricNormalVector(); - vec3 I = normalize(cameraDirection * -1.0); - vec3 adjustNormal = vec3(normalVector.x, normalVector.y, normalVector.z * materialParams.zNormalScale); - vec3 R = reflect(I, normalize(adjustNormal)); - //R = getWorldReflectedVector(); - //R.z *= materialParams.zNormalScale; - - float vp1 = 0.0; - float vp2 = 0.0; - float vp3 = -1.0; - float n1 = 0.0; - float n2 = 0.0; - float n3 = 0.5; - float v1 = R.x; - float v2 = R.y; - float v3 = R.z; - float m1 = 0.0; - float m2 = 0.0; - float m3 = 0.0; - float vpt = v1 * vp1 + v2 * vp2 + v3 * vp3; - float t = ((n1 - m1) * vp1 + (n2 - m2) * vp2 + (n3 - m3) * vp3) / vpt; - float r = m1 + v1 * t; - float g = m2 + v2 * t; - - vec4 baseColor = texture(materialParams_baseColorMap, getUV0()); - //baseColor = vec4(inverseTonemapSRGB(baseColor.rgb), baseColor.a); - - vec4 reflectColor = texture(materialParams_reflectMap, vec2(r + 0.5, 0.5 - g) + materialParams.reflectOffset); - //reflectColor = vec4(inverseTonemapSRGB(reflectColor.rgb), reflectColor.a); - - if(materialParams.blendMode > 0) - { - vec3 vOne = vec3(1.0, 1.0, 1.0); - baseColor = vec4(vOne - (vOne - baseColor.rgb) * (vOne - reflectColor.rgb), baseColor.a); - } - - //adjustNormal *= 100000.0; - - //material.baseColor = vec4(adjustNormal, 1.0);//mix(baseColor, reflectColor, materialParams.blendFactor); - material.baseColor = mix(baseColor, reflectColor, materialParams.blendFactor); - material.baseColor.a *= materialParams.modulateAlpha; - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/sao.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/sao.filamat deleted file mode 100644 index 75106d86..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/sao.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/separableGaussianBlur.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/separableGaussianBlur.filamat deleted file mode 100644 index d7a2a84d..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/separableGaussianBlur.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/skybox.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/skybox.filamat deleted file mode 100644 index f180a172..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/skybox.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/specularGlossiness_fade.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/specularGlossiness_fade.filamat deleted file mode 100644 index e20c08ef..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/specularGlossiness_fade.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/specularGlossiness_masked.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/specularGlossiness_masked.filamat deleted file mode 100644 index 67293920..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/specularGlossiness_masked.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/specularGlossiness_opaque.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/specularGlossiness_opaque.filamat deleted file mode 100644 index 76780184..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/specularGlossiness_opaque.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/test.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/test.filamat deleted file mode 100644 index c00d87a6..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/test.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/transparentTail.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/transparentTail.filamat deleted file mode 100644 index 3ba13885..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/transparentTail.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/transparentTail.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/transparentTail.mat deleted file mode 100644 index 7c34ffff..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/transparentTail.mat +++ /dev/null @@ -1,42 +0,0 @@ -material { - name : transparentColor, - parameters : [ - { - type : sampler2d, - name : depth - }, - { - type : sampler2d, - name : depthOpaque - }, - { - type : sampler2d, - precision :high, - name : color - } - ], - doubleSided : true, - transparency : twoPassesTwoSides, - blending : transparent, - shadingModel : unlit, - flipUV:false, - requires : [ - uv0 - ] -} - -fragment { - void material(inout MaterialInputs material) { - prepareMaterial(material); - vec3 coord = getNormalizedViewportCoord(); - if (coord.z >= texture(materialParams_depthOpaque, uvToRenderTargetUV(coord.xy)).r) { - discard; - } - if (coord.z <= texture(materialParams_depth, uvToRenderTargetUV(coord.xy)).r) { - discard; - } else { - material.baseColor = texture(materialParams_color, getUV0()); - material.baseColor.rgb *= material.baseColor.a; - } - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/transparentTest.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/transparentTest.filamat deleted file mode 100644 index 01b39b1e..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/transparentTest.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/transparentTest.mat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/transparentTest.mat deleted file mode 100644 index 00d180fa..00000000 --- a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/transparentTest.mat +++ /dev/null @@ -1,45 +0,0 @@ -material { - name : transparentColor, - parameters : [ - { - type : sampler2d, - name : depth - }, - { - type : sampler2d, - name : depthOpaque - }, - { - type : sampler2d, - precision :high, - name : color - } - ], - doubleSided : true, - blending : masked, - transparency : twoPassesOneSide, - culling : none, - depthCulling : true, - depthWrite : true, - shadingModel : unlit, - flipUV:false, - requires : [ - uv0 - ] -} - -fragment { - void material(inout MaterialInputs material) { - prepareMaterial(material); - vec3 coord = getNormalizedViewportCoord(); - if (coord.z >= texture(materialParams_depthOpaque, uvToRenderTargetUV(coord.xy)).r) { - discard; - } - if (coord.z <= texture(materialParams_depth, uvToRenderTargetUV(coord.xy)).r) { - discard; - } else { - material.baseColor = texture(materialParams_color, getUV0()); - material.baseColor.rgb *= material.baseColor.a; - } - } -} diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/unity_hbao.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/unity_hbao.filamat deleted file mode 100644 index 51ba266f..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/unity_hbao.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/unlit_fade.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/unlit_fade.filamat deleted file mode 100644 index 738154f8..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/unlit_fade.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/unlit_masked.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/unlit_masked.filamat deleted file mode 100644 index 899ebb72..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/unlit_masked.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/unlit_opaque.filamat b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/unlit_opaque.filamat deleted file mode 100644 index 0dfb0b77..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/unlit_opaque.filamat and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/user_head.glb b/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/user_head.glb deleted file mode 100644 index fcc1cc59..00000000 Binary files a/Android/tuibeauty/src/main/assets/Light3DPlugin/sticker3d/user_head.glb and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/default/basic/basic3.json b/Android/tuibeauty/src/main/assets/LightCore/default/basic/basic3.json deleted file mode 100644 index 6115919e..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/default/basic/basic3.json +++ /dev/null @@ -1,318 +0,0 @@ -{ - "distortionList": [ - { - "radius": 500, - "distortion": 3, - "strength": 0.087099999189376831, - "position": 9, - "direction": 2 - }, - { - "radius": 80, - "distortion": 3, - "strength": 0.25, - "dx": -6, - "position": 35, - "direction": 1 - }, - { - "radius": 80, - "distortion": 3, - "strength": 0.25, - "dx": 6, - "position": 45, - "direction": 3 - }, - { - "radius": 80, - "distortion": 3, - "strength": 0.2199999988079071, - "position": 41, - "direction": 2 - }, - { - "radius": 80, - "distortion": 3, - "strength": 0.2199999988079071, - "position": 51, - "direction": 2 - }, - { - "radius": 80, - "distortion": 3, - "strength": 0.10000000149011612, - "dx": 5, - "position": 36, - "direction": 4 - }, - { - "radius": 80, - "distortion": 3, - "strength": 0.10000000149011612, - "dx": -5, - "position": 46, - "direction": 4 - }, - { - "radius": 80, - "distortion": 3, - "strength": 0.11999999731779099, - "position": 42, - "direction": 2 - }, - { - "radius": 80, - "distortion": 3, - "strength": 0.11999999731779099, - "position": 52, - "direction": 2 - }, - { - "radius": 80, - "distortion": 1, - "strength": 0.070000000298023224, - "position": 43, - "direction": 0 - }, - { - "radius": 80, - "distortion": 1, - "strength": 0.070000000298023224, - "position": 53, - "direction": 0 - }, - { - "radius": 180, - "position": 57, - "dy": -10, - "distortion": 3, - "strength": 0.15000000596046448, - "direction": 3, - "dx": 10 - }, - { - "radius": 180, - "position": 61, - "dy": -10, - "distortion": 3, - "strength": 0.15000000596046448, - "direction": 1, - "dx": -10 - }, - { - "radius": 200, - "distortion": 3, - "strength": 0.079999998211860657, - "position": 0, - "direction": 3 - }, - { - "radius": 200, - "distortion": 3, - "strength": 0.079999998211860657, - "position": 18, - "direction": 1 - }, - { - "radius": 220, - "distortion": 3, - "strength": 0.093800000846385956, - "position": 2, - "direction": 6 - }, - { - "radius": 220, - "distortion": 3, - "strength": 0.093800000846385956, - "position": 16, - "direction": 5 - }, - { - "radius": 200, - "position": 5, - "dy": -5, - "distortion": 3, - "strength": 0.10719999670982361, - "direction": 6, - "dx": -10 - }, - { - "radius": 200, - "position": 13, - "dy": -5, - "distortion": 3, - "strength": 0.10719999670982361, - "direction": 5, - "dx": 10 - }, - { - "radius": 120, - "position": 7, - "dy": 0, - "distortion": 3, - "strength": 0.067000001668930054, - "direction": 6, - "dx": 5 - }, - { - "radius": 120, - "position": 11, - "dy": 0, - "distortion": 3, - "strength": 0.067000001668930054, - "direction": 5, - "dx": -5 - }, - { - "radius": 120, - "position": 39, - "dy": 0, - "targetDx": 0, - "distortion": 3, - "strength": 0.10000000149011612, - "direction": 3, - "dx": 0, - "targetDy": 0 - }, - { - "radius": 120, - "position": 49, - "dy": 0, - "targetDx": 0, - "distortion": 3, - "strength": 0.10000000149011612, - "direction": 1, - "dx": 0, - "targetDy": 0 - }, - { - "radius": 120, - "position": 5, - "dy": 0, - "targetDx": 0, - "distortion": 3, - "strength": 0.10050000250339508, - "direction": 3, - "dx": 10, - "targetDy": 0 - }, - { - "radius": 120, - "position": 13, - "dy": 10, - "targetDx": 0, - "distortion": 3, - "strength": 0.10050000250339508, - "direction": 1, - "dx": -10, - "targetDy": 0 - }, - { - "radius": 220, - "position": 9, - "dy": -20, - "targetDx": 0, - "distortion": 3, - "strength": 0.087099999189376831, - "direction": 2, - "dx": 0, - "targetDy": 0 - }, - { - "radius": 240, - "position": 85, - "dy": -20, - "targetDx": 0, - "distortion": 3, - "strength": 0.087099999189376831, - "direction": 2, - "dx": 0, - "targetDy": 0 - }, - { - "radius": 600, - "position": 83, - "dy": -50, - "targetDx": 0, - "distortion": 3, - "strength": 0.059999998658895493, - "direction": 2, - "dx": 0, - "targetDy": 0 - }, - { - "radius": 80, - "position": 8, - "dy": 10, - "targetDx": 0, - "distortion": 3, - "strength": 0.039999999105930328, - "direction": 6, - "dx": 0, - "targetDy": 0 - }, - { - "radius": 80, - "position": 10, - "dy": 10, - "targetDx": 0, - "distortion": 3, - "strength": 0.039999999105930328, - "direction": 5, - "dx": 0, - "targetDy": 0 - }, - { - "radius": 300, - "position": 86, - "dy": -20, - "targetDx": 0, - "distortion": 4, - "strength": 0.06, - "directionArray": [ - 83, - -1, - -1, - -1 - ], - "direction": 83, - "dx": 0, - "targetDy": 0 - }, - { - "radius": 300, - "position": 88, - "dy": -20, - "targetDx": 0, - "distortion": 4, - "strength": 0.06, - "directionArray": [ - 83, - -1, - -1, - -1 - ], - "direction": 83, - "dx": 0, - "targetDy": 0 - }, - { - "radius": 300, - "position": 87, - "dy": 50, - "targetDx": 0, - "distortion": 4, - "strength": 0.05, - "directionArray": [ - 83, - -1, - -1, - -1 - ], - "direction": 83, - "dx": 0, - "targetDy": 0 - } - ] -} - \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/default/basic/basic4.json b/Android/tuibeauty/src/main/assets/LightCore/default/basic/basic4.json deleted file mode 100644 index 5f6dd3e4..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/default/basic/basic4.json +++ /dev/null @@ -1,317 +0,0 @@ -{ - "distortionList": [ - { - "radius": 500, - "distortion": 3, - "strength": 0.087099999189376831, - "position": 9, - "direction": 2 - }, - { - "radius": 80, - "distortion": 3, - "strength": 0.25, - "dx": -6, - "position": 35, - "direction": 1 - }, - { - "radius": 80, - "distortion": 3, - "strength": 0.25, - "dx": 6, - "position": 45, - "direction": 3 - }, - { - "radius": 80, - "distortion": 3, - "strength": 0.2199999988079071, - "position": 41, - "direction": 2 - }, - { - "radius": 80, - "distortion": 3, - "strength": 0.2199999988079071, - "position": 51, - "direction": 2 - }, - { - "radius": 80, - "distortion": 3, - "strength": 0.10000000149011612, - "dx": 5, - "position": 36, - "direction": 4 - }, - { - "radius": 80, - "distortion": 3, - "strength": 0.10000000149011612, - "dx": -5, - "position": 46, - "direction": 4 - }, - { - "radius": 80, - "distortion": 3, - "strength": 0.11999999731779099, - "position": 42, - "direction": 2 - }, - { - "radius": 80, - "distortion": 3, - "strength": 0.11999999731779099, - "position": 52, - "direction": 2 - }, - { - "radius": 80, - "distortion": 1, - "strength": 0.070000000298023224, - "position": 43, - "direction": 0 - }, - { - "radius": 80, - "distortion": 1, - "strength": 0.070000000298023224, - "position": 53, - "direction": 0 - }, - { - "radius": 180, - "position": 57, - "dy": -10, - "distortion": 3, - "strength": 0.15000000596046448, - "direction": 3, - "dx": 10 - }, - { - "radius": 180, - "position": 61, - "dy": -10, - "distortion": 3, - "strength": 0.15000000596046448, - "direction": 1, - "dx": -10 - }, - { - "radius": 200, - "distortion": 3, - "strength": 0.079999998211860657, - "position": 0, - "direction": 3 - }, - { - "radius": 200, - "distortion": 3, - "strength": 0.079999998211860657, - "position": 18, - "direction": 1 - }, - { - "radius": 220, - "distortion": 3, - "strength": 0.093800000846385956, - "position": 2, - "direction": 6 - }, - { - "radius": 220, - "distortion": 3, - "strength": 0.093800000846385956, - "position": 16, - "direction": 5 - }, - { - "radius": 200, - "position": 5, - "dy": -5, - "distortion": 3, - "strength": 0.10719999670982361, - "direction": 6, - "dx": -10 - }, - { - "radius": 200, - "position": 13, - "dy": -5, - "distortion": 3, - "strength": 0.10719999670982361, - "direction": 5, - "dx": 10 - }, - { - "radius": 120, - "position": 7, - "dy": 0, - "distortion": 3, - "strength": 0.067000001668930054, - "direction": 6, - "dx": 5 - }, - { - "radius": 120, - "position": 11, - "dy": 0, - "distortion": 3, - "strength": 0.067000001668930054, - "direction": 5, - "dx": -5 - }, - { - "radius": 120, - "position": 39, - "dy": 0, - "targetDx": 0, - "distortion": 3, - "strength": 0.10000000149011612, - "direction": 3, - "dx": 0, - "targetDy": 0 - }, - { - "radius": 120, - "position": 49, - "dy": 0, - "targetDx": 0, - "distortion": 3, - "strength": 0.10000000149011612, - "direction": 1, - "dx": 0, - "targetDy": 0 - }, - { - "radius": 120, - "position": 5, - "dy": 0, - "targetDx": 0, - "distortion": 3, - "strength": 0.10050000250339508, - "direction": 3, - "dx": 10, - "targetDy": 0 - }, - { - "radius": 120, - "position": 13, - "dy": 10, - "targetDx": 0, - "distortion": 3, - "strength": 0.10050000250339508, - "direction": 1, - "dx": -10, - "targetDy": 0 - }, - { - "radius": 220, - "position": 9, - "dy": -20, - "targetDx": 0, - "distortion": 3, - "strength": 0.087099999189376831, - "direction": 2, - "dx": 0, - "targetDy": 0 - }, - { - "radius": 240, - "position": 85, - "dy": -20, - "targetDx": 0, - "distortion": 3, - "strength": 0.087099999189376831, - "direction": 2, - "dx": 0, - "targetDy": 0 - }, - { - "radius": 600, - "position": 83, - "dy": -50, - "targetDx": 0, - "distortion": 3, - "strength": 0.059999998658895493, - "direction": 2, - "dx": 0, - "targetDy": 0 - }, - { - "radius": 80, - "position": 8, - "dy": 10, - "targetDx": 0, - "distortion": 3, - "strength": 0.039999999105930328, - "direction": 6, - "dx": 0, - "targetDy": 0 - }, - { - "radius": 80, - "position": 10, - "dy": 10, - "targetDx": 0, - "distortion": 3, - "strength": 0.039999999105930328, - "direction": 5, - "dx": 0, - "targetDy": 0 - }, - { - "radius": 300, - "position": 86, - "dy": -20, - "targetDx": 0, - "distortion": 4, - "strength": 0.06, - "directionArray": [ - 83, - -1, - -1, - -1 - ], - "direction": 83, - "dx": 0, - "targetDy": 0 - }, - { - "radius": 300, - "position": 88, - "dy": -20, - "targetDx": 0, - "distortion": 4, - "strength": 0.06, - "directionArray": [ - 83, - -1, - -1, - -1 - ], - "direction": 83, - "dx": 0, - "targetDy": 0 - }, - { - "radius": 300, - "position": 87, - "dy": 50, - "targetDx": 0, - "distortion": 4, - "strength": 0.05, - "directionArray": [ - 83, - -1, - -1, - -1 - ], - "direction": 83, - "dx": 0, - "targetDy": 0 - } - ] -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/default/basic/basic5.json b/Android/tuibeauty/src/main/assets/LightCore/default/basic/basic5.json deleted file mode 100644 index 7bc35542..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/default/basic/basic5.json +++ /dev/null @@ -1,608 +0,0 @@ -{ - "distortionList" : [ - { - "radius" : 500, - "distortion" : 3, - "strength" : 0.18000000715255737, - "position" : 9, - "direction" : 2 - }, - { - "radius" : 70, - "distortion" : 3, - "strength" : 0.0099999997764825821, - "dx" : -10, - "position" : 35, - "direction" : 1 - }, - { - "radius" : 70, - "distortion" : 3, - "strength" : 0.0099999997764825821, - "dx" : 10, - "position" : 45, - "direction" : 3 - }, - { - "radius" : 80, - "distortion" : 3, - "strength" : 0.10000000149011612, - "dx" : 10, - "position" : 41, - "direction" : 2 - }, - { - "radius" : 80, - "distortion" : 3, - "strength" : 0.10000000149011612, - "dx" : -10, - "position" : 51, - "direction" : 2 - }, - { - "radius" : 90, - "distortion" : 3, - "strength" : 0.059999998658895493, - "dx" : 0, - "position" : 37, - "direction" : 8 - }, - { - "radius" : 90, - "distortion" : 3, - "strength" : 0.059999998658895493, - "dx" : 0, - "position" : 47, - "direction" : 7 - }, - { - "radius" : 80, - "distortion" : 3, - "strength" : 0.079999998211860657, - "position" : 42, - "direction" : 2 - }, - { - "radius" : 80, - "distortion" : 3, - "strength" : 0.079999998211860657, - "position" : 52, - "direction" : 2 - }, - { - "radius" : 110, - "position" : 43, - "dy" : 5, - "distortion" : 1, - "strength" : 0.059999998658895493, - "direction" : 0, - "dx" : -10 - }, - { - "radius" : 110, - "position" : 53, - "dy" : 5, - "distortion" : 1, - "strength" : 0.059999998658895493, - "direction" : 0, - "dx" : 10 - }, - { - "radius" : 70, - "position" : 39, - "dy" : 5, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 3, - "dx" : 10, - "targetDy" : 0 - }, - { - "radius" : 70, - "position" : 49, - "dy" : 5, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 1, - "dx" : -10, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 36, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.079999998211860657, - "direction" : 4, - "dx" : -10, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 46, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.079999998211860657, - "direction" : 4, - "dx" : 10, - "targetDy" : 0 - }, - { - "radius" : 160, - "position" : 57, - "dy" : -50, - "distortion" : 3, - "strength" : 0.12999999523162842, - "direction" : 3, - "dx" : 10 - }, - { - "radius" : 160, - "position" : 61, - "dy" : -50, - "distortion" : 3, - "strength" : 0.12999999523162842, - "direction" : 1, - "dx" : -10 - }, - { - "radius" : 220, - "position" : 2, - "dy" : -10, - "distortion" : 3, - "strength" : 0.070000000298023224, - "direction" : 6, - "dx" : 0 - }, - { - "radius" : 220, - "position" : 16, - "dy" : -10, - "distortion" : 3, - "strength" : 0.070000000298023224, - "direction" : 5, - "dx" : 0 - }, - { - "radius" : 240, - "position" : 5, - "dy" : -5, - "distortion" : 3, - "strength" : 0.039999999105930328, - "direction" : 6, - "dx" : -10 - }, - { - "radius" : 240, - "position" : 13, - "dy" : -5, - "distortion" : 3, - "strength" : 0.039999999105930328, - "direction" : 5, - "dx" : 10 - }, - { - "radius" : 200, - "position" : 7, - "dy" : -20, - "distortion" : 3, - "strength" : 0.11999999731779099, - "direction" : 6, - "dx" : 0 - }, - { - "radius" : 200, - "position" : 11, - "dy" : -20, - "distortion" : 3, - "strength" : 0.11999999731779099, - "direction" : 5, - "dx" : 0 - }, - { - "radius" : 120, - "position" : 5, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.079999998211860657, - "direction" : 6, - "dx" : 10, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 13, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.079999998211860657, - "direction" : 5, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 220, - "position" : 9, - "dy" : -20, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.34999999403953552, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 240, - "position" : 85, - "dy" : 20, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.029999999329447746, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 77, - "dy" : 20, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0, - "direction" : 4, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 68, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 70, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 9, - "dy" : 15, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0, - "direction" : 4, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 100, - "position" : 64, - "dy" : 0, - "targetDx" : 0, - "distortion" : 2, - "strength" : 0.059999998658895493, - "direction" : 0, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 600, - "position" : 83, - "dy" : -50, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.059999998658895493, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 140, - "position" : 4, - "dy" : 10, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.059999998658895493, - "direction" : 6, - "dx" : -10, - "targetDy" : 0 - }, - { - "radius" : 140, - "position" : 14, - "dy" : 10, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.059999998658895493, - "direction" : 5, - "dx" : 10, - "targetDy" : 0 - }, - { - "radius" : 140, - "distortion" : 3, - "strength" : 0.14000000059604645, - "dx" : -20, - "position" : 0, - "direction" : 3 - }, - { - "radius" : 140, - "distortion" : 3, - "strength" : 0.14000000059604645, - "dx" : 20, - "position" : 18, - "direction" : 1 - }, - { - "radius" : 120, - "position" : 1, - "dy" : -5, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.11999999731779099, - "direction" : 3, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 17, - "dy" : -5, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.11999999731779099, - "direction" : 1, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 100, - "position" : 56, - "dy" : -15, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.23000000417232513, - "direction" : 3, - "dx" : -25, - "targetDy" : 0 - }, - { - "radius" : 100, - "position" : 62, - "dy" : -15, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.23000000417232513, - "direction" : 1, - "dx" : 25, - "targetDy" : 0 - }, - { - "radius" : 220, - "position" : 5, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.30000001192092896, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 220, - "position" : 13, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.30000001192092896, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 0, - "dy" : 30, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0, - "direction" : 1, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 18, - "dy" : 30, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0, - "direction" : 3, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 100, - "position" : 3, - "dy" : 10, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.059999998658895493, - "direction" : 3, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 100, - "position" : 15, - "dy" : 10, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.059999998658895493, - "direction" : 1, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 0, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.079999998211860657, - "direction" : 3, - "dx" : -5, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 18, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.079999998211860657, - "direction" : 1, - "dx" : 5, - "targetDy" : 0 - }, - { - "radius" : 200, - "position" : 0, - "dy" : 100, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.029999999329447746, - "direction" : 3, - "dx" : -20, - "targetDy" : 0 - }, - { - "radius" : 200, - "position" : 18, - "dy" : 100, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.029999999329447746, - "direction" : 1, - "dx" : 20, - "targetDy" : 0 - }, - { - "radius" : 100, - "position" : 1, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.11999999731779099, - "direction" : 3, - "dx" : -10, - "targetDy" : 0 - }, - { - "radius" : 100, - "position" : 17, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.11999999731779099, - "direction" : 1, - "dx" : 10, - "targetDy" : 0 - }, - { - "radius" : 200, - "position" : 3, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.039999999105930328, - "direction" : 6, - "dx" : -20, - "targetDy" : 0 - }, - { - "radius" : 200, - "position" : 15, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.039999999105930328, - "direction" : 5, - "dx" : 20, - "targetDy" : 0 - }, - { - "radius" : 90, - "position" : 64, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.11999999731779099, - "direction" : 4, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 43, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.039999999105930328, - "direction" : 3, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 53, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.039999999105930328, - "direction" : 1, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 65, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 3, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 66, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 1, - "dx" : 0, - "targetDy" : 0 - } - ] - } \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/default/basic/basic6.json b/Android/tuibeauty/src/main/assets/LightCore/default/basic/basic6.json deleted file mode 100644 index 93f3d725..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/default/basic/basic6.json +++ /dev/null @@ -1,575 +0,0 @@ -{ - "distortionList" : [ - { - "radius" : 500, - "distortion" : 3, - "strength" : 0.01, - "position" : 9, - "direction" : 2 - }, - { - "radius" : 70, - "distortion" : 3, - "strength" : 0, - "dx" : -10, - "position" : 35, - "direction" : 1 - }, - { - "radius" : 70, - "distortion" : 3, - "strength" : 0, - "dx" : 10, - "position" : 45, - "direction" : 3 - }, - { - "radius" : 80, - "distortion" : 3, - "strength" : 0.10000000149011612, - "dx" : 10, - "position" : 41, - "direction" : 2 - }, - { - "radius" : 80, - "distortion" : 3, - "strength" : 0.10000000149011612, - "dx" : -10, - "position" : 51, - "direction" : 2 - }, - { - "radius" : 90, - "distortion" : 3, - "strength" : 0.059999998658895493, - "dx" : 0, - "position" : 37, - "direction" : 8 - }, - { - "radius" : 90, - "distortion" : 3, - "strength" : 0.059999998658895493, - "dx" : 0, - "position" : 47, - "direction" : 7 - }, - { - "radius" : 80, - "distortion" : 3, - "strength" : 0.079999998211860657, - "position" : 42, - "direction" : 2 - }, - { - "radius" : 80, - "distortion" : 3, - "strength" : 0.079999998211860657, - "position" : 52, - "direction" : 2 - }, - { - "radius" : 110, - "position" : 43, - "dy" : 5, - "distortion" : 1, - "strength" : 0.059999998658895493, - "direction" : 0, - "dx" : -10 - }, - { - "radius" : 110, - "position" : 53, - "dy" : 5, - "distortion" : 1, - "strength" : 0.059999998658895493, - "direction" : 0, - "dx" : 10 - }, - { - "radius" : 70, - "position" : 39, - "dy" : 5, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 3, - "dx" : 10, - "targetDy" : 0 - }, - { - "radius" : 70, - "position" : 49, - "dy" : 5, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 1, - "dx" : -10, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 36, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.079999998211860657, - "direction" : 4, - "dx" : -10, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 46, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.079999998211860657, - "direction" : 4, - "dx" : 10, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 57, - "dy" : -60, - "distortion" : 3, - "strength" : 0.15000000596046448, - "direction" : 3, - "dx" : 10 - }, - { - "radius" : 120, - "position" : 61, - "dy" : -60, - "distortion" : 3, - "strength" : 0.15000000596046448, - "direction" : 1, - "dx" : -10 - }, - { - "radius" : 220, - "position" : 2, - "dy" : -10, - "distortion" : 3, - "strength" : 0.059999998658895493, - "direction" : 6, - "dx" : 0 - }, - { - "radius" : 220, - "position" : 16, - "dy" : -10, - "distortion" : 3, - "strength" : 0.059999998658895493, - "direction" : 5, - "dx" : 0 - }, - { - "radius" : 240, - "position" : 5, - "dy" : -5, - "distortion" : 3, - "strength" : 0.05000000074505806, - "direction" : 6, - "dx" : -10 - }, - { - "radius" : 240, - "position" : 13, - "dy" : -5, - "distortion" : 3, - "strength" : 0.05000000074505806, - "direction" : 5, - "dx" : 10 - }, - { - "radius" : 150, - "position" : 7, - "dy" : -10, - "distortion" : 3, - "strength" : 0.11999999731779099, - "direction" : 6, - "dx" : -10 - }, - { - "radius" : 150, - "position" : 11, - "dy" : -10, - "distortion" : 3, - "strength" : 0.11999999731779099, - "direction" : 5, - "dx" : 10 - }, - { - "radius" : 120, - "position" : 5, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.15000000596046448, - "direction" : 6, - "dx" : 10, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 13, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.15000000596046448, - "direction" : 5, - "dx" : -10, - "targetDy" : 0 - }, - { - "radius" : 220, - "position" : 9, - "dy" : -20, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.25, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 68, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.15000000596046448, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 70, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.15000000596046448, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 180, - "position" : 9, - "dy" : 15, - "targetDx" : 0, - "distortion" : 2, - "strength" : 0, - "direction" : 0, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 64, - "dy" : 0, - "targetDx" : 0, - "distortion" : 2, - "strength" : 0.059999998658895493, - "direction" : 0, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 600, - "position" : 83, - "dy" : -50, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.029999999329447746, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 150, - "position" : 4, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.039999999105930328, - "direction" : 6, - "dx" : -10, - "targetDy" : 0 - }, - { - "radius" : 150, - "position" : 14, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.039999999105930328, - "direction" : 5, - "dx" : 10, - "targetDy" : 0 - }, - { - "radius" : 140, - "distortion" : 3, - "strength" : 0.18000000715255737, - "dx" : -20, - "position" : 0, - "direction" : 3 - }, - { - "radius" : 140, - "distortion" : 3, - "strength" : 0.18000000715255737, - "dx" : 20, - "position" : 18, - "direction" : 1 - }, - { - "radius" : 120, - "position" : 1, - "dy" : -5, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 3, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 17, - "dy" : -5, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 1, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 90, - "position" : 56, - "dy" : -15, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.25, - "direction" : 3, - "dx" : -20, - "targetDy" : 0 - }, - { - "radius" : 90, - "position" : 62, - "dy" : -15, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.25, - "direction" : 1, - "dx" : 20, - "targetDy" : 0 - }, - { - "radius" : 220, - "position" : 5, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.18000000715255737, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 220, - "position" : 13, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.18000000715255737, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 0, - "dy" : 30, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.029999999329447746, - "direction" : 1, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 18, - "dy" : 30, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.029999999329447746, - "direction" : 3, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 100, - "position" : 3, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 3, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 100, - "position" : 15, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 1, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 0, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.079999998211860657, - "direction" : 3, - "dx" : -5, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 18, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.079999998211860657, - "direction" : 1, - "dx" : 5, - "targetDy" : 0 - }, - { - "radius" : 200, - "position" : 0, - "dy" : 100, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.070000000298023224, - "direction" : 3, - "dx" : -20, - "targetDy" : 0 - }, - { - "radius" : 200, - "position" : 18, - "dy" : 100, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.070000000298023224, - "direction" : 1, - "dx" : 20, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 43, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.059999998658895493, - "direction" : 3, - "dx" : 5, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 53, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.059999998658895493, - "direction" : 1, - "dx" : -5, - "targetDy" : 0 - }, - { - "radius" : 100, - "position" : 1, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.11999999731779099, - "direction" : 3, - "dx" : -10, - "targetDy" : 0 - }, - { - "radius" : 100, - "position" : 17, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.11999999731779099, - "direction" : 1, - "dx" : 10, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 2, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0, - "direction" : 3, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 16, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0, - "direction" : 1, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 220, - "position" : 4, - "dy" : 5, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.05000000074505806, - "direction" : 3, - "dx" : -20, - "targetDy" : 0 - }, - { - "radius" : 220, - "position" : 14, - "dy" : 5, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.05000000074505806, - "direction" : 1, - "dx" : 20, - "targetDy" : 0 - } - ] - } \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/default/basic/basic7.json b/Android/tuibeauty/src/main/assets/LightCore/default/basic/basic7.json deleted file mode 100644 index 810b1a5f..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/default/basic/basic7.json +++ /dev/null @@ -1,575 +0,0 @@ -{ - "distortionList" : [ - { - "radius" : 500, - "distortion" : 3, - "strength" : 0.05000000074505806, - "position" : 9, - "direction" : 2 - }, - { - "radius" : 70, - "distortion" : 3, - "strength" : 0, - "dx" : -10, - "position" : 35, - "direction" : 1 - }, - { - "radius" : 70, - "distortion" : 3, - "strength" : 0, - "dx" : 10, - "position" : 45, - "direction" : 3 - }, - { - "radius" : 80, - "distortion" : 3, - "strength" : 0.10000000149011612, - "dx" : 10, - "position" : 41, - "direction" : 2 - }, - { - "radius" : 80, - "distortion" : 3, - "strength" : 0.10000000149011612, - "dx" : -10, - "position" : 51, - "direction" : 2 - }, - { - "radius" : 90, - "distortion" : 3, - "strength" : 0.059999998658895493, - "dx" : 0, - "position" : 37, - "direction" : 8 - }, - { - "radius" : 90, - "distortion" : 3, - "strength" : 0.059999998658895493, - "dx" : 0, - "position" : 47, - "direction" : 7 - }, - { - "radius" : 80, - "distortion" : 3, - "strength" : 0.079999998211860657, - "position" : 42, - "direction" : 2 - }, - { - "radius" : 80, - "distortion" : 3, - "strength" : 0.079999998211860657, - "position" : 52, - "direction" : 2 - }, - { - "radius" : 110, - "position" : 43, - "dy" : 5, - "distortion" : 1, - "strength" : 0.059999998658895493, - "direction" : 0, - "dx" : -10 - }, - { - "radius" : 110, - "position" : 53, - "dy" : 5, - "distortion" : 1, - "strength" : 0.059999998658895493, - "direction" : 0, - "dx" : 10 - }, - { - "radius" : 70, - "position" : 39, - "dy" : 5, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 3, - "dx" : 10, - "targetDy" : 0 - }, - { - "radius" : 70, - "position" : 49, - "dy" : 5, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 1, - "dx" : -10, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 36, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.079999998211860657, - "direction" : 4, - "dx" : -10, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 46, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.079999998211860657, - "direction" : 4, - "dx" : 10, - "targetDy" : 0 - }, - { - "radius" : 160, - "position" : 57, - "dy" : -50, - "distortion" : 3, - "strength" : 0.14000000059604645, - "direction" : 3, - "dx" : 10 - }, - { - "radius" : 160, - "position" : 61, - "dy" : -50, - "distortion" : 3, - "strength" : 0.14000000059604645, - "direction" : 1, - "dx" : -10 - }, - { - "radius" : 220, - "position" : 2, - "dy" : -10, - "distortion" : 3, - "strength" : 0.05000000074505806, - "direction" : 6, - "dx" : 0 - }, - { - "radius" : 220, - "position" : 16, - "dy" : -10, - "distortion" : 3, - "strength" : 0.05000000074505806, - "direction" : 5, - "dx" : 0 - }, - { - "radius" : 240, - "position" : 5, - "dy" : -5, - "distortion" : 3, - "strength" : 0.059999998658895493, - "direction" : 6, - "dx" : -10 - }, - { - "radius" : 240, - "position" : 13, - "dy" : -5, - "distortion" : 3, - "strength" : 0.059999998658895493, - "direction" : 5, - "dx" : 10 - }, - { - "radius" : 150, - "position" : 7, - "dy" : -10, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 6, - "dx" : -10 - }, - { - "radius" : 150, - "position" : 11, - "dy" : -10, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 5, - "dx" : 10 - }, - { - "radius" : 120, - "position" : 5, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.11999999731779099, - "direction" : 6, - "dx" : 10, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 13, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.11999999731779099, - "direction" : 5, - "dx" : -10, - "targetDy" : 0 - }, - { - "radius" : 220, - "position" : 9, - "dy" : -20, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.30000001192092896, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 68, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.15000000596046448, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 70, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.15000000596046448, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 180, - "position" : 9, - "dy" : 15, - "targetDx" : 0, - "distortion" : 2, - "strength" : 0, - "direction" : 0, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 64, - "dy" : 0, - "targetDx" : 0, - "distortion" : 2, - "strength" : 0.059999998658895493, - "direction" : 0, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 600, - "position" : 83, - "dy" : -50, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.029999999329447746, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 150, - "position" : 4, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.039999999105930328, - "direction" : 6, - "dx" : -10, - "targetDy" : 0 - }, - { - "radius" : 150, - "position" : 14, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.039999999105930328, - "direction" : 5, - "dx" : 10, - "targetDy" : 0 - }, - { - "radius" : 140, - "distortion" : 3, - "strength" : 0.20000000298023224, - "dx" : -10, - "position" : 0, - "direction" : 3 - }, - { - "radius" : 140, - "distortion" : 3, - "strength" : 0.20000000298023224, - "dx" : 10, - "position" : 18, - "direction" : 1 - }, - { - "radius" : 120, - "position" : 1, - "dy" : -5, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.12999999523162842, - "direction" : 3, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 17, - "dy" : -5, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.12999999523162842, - "direction" : 1, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 56, - "dy" : -15, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.20000000298023224, - "direction" : 3, - "dx" : -20, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 62, - "dy" : -15, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.20000000298023224, - "direction" : 1, - "dx" : 20, - "targetDy" : 0 - }, - { - "radius" : 220, - "position" : 5, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.2199999988079071, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 220, - "position" : 13, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.2199999988079071, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 0, - "dy" : 30, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.029999999329447746, - "direction" : 1, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 18, - "dy" : 30, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.029999999329447746, - "direction" : 3, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 100, - "position" : 3, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.079999998211860657, - "direction" : 3, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 100, - "position" : 15, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.079999998211860657, - "direction" : 1, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 0, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.079999998211860657, - "direction" : 3, - "dx" : -5, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 18, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.079999998211860657, - "direction" : 1, - "dx" : 5, - "targetDy" : 0 - }, - { - "radius" : 200, - "position" : 0, - "dy" : 100, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.05000000074505806, - "direction" : 3, - "dx" : -20, - "targetDy" : 0 - }, - { - "radius" : 200, - "position" : 18, - "dy" : 100, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.05000000074505806, - "direction" : 1, - "dx" : 20, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 43, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.059999998658895493, - "direction" : 3, - "dx" : 5, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 53, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.059999998658895493, - "direction" : 1, - "dx" : -5, - "targetDy" : 0 - }, - { - "radius" : 100, - "position" : 1, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.11999999731779099, - "direction" : 3, - "dx" : -10, - "targetDy" : 0 - }, - { - "radius" : 100, - "position" : 17, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.11999999731779099, - "direction" : 1, - "dx" : 10, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 2, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0, - "direction" : 3, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 16, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0, - "direction" : 1, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 220, - "position" : 4, - "dy" : 5, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.070000000298023224, - "direction" : 6, - "dx" : -20, - "targetDy" : 0 - }, - { - "radius" : 220, - "position" : 14, - "dy" : 5, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.070000000298023224, - "direction" : 5, - "dx" : 20, - "targetDy" : 0 - } - ] - } \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/default/basic/basic8.json b/Android/tuibeauty/src/main/assets/LightCore/default/basic/basic8.json deleted file mode 100644 index 4cf0e633..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/default/basic/basic8.json +++ /dev/null @@ -1,575 +0,0 @@ -{ - "distortionList" : [ - { - "radius" : 500, - "distortion" : 3, - "strength" : 0.10000000149011612, - "position" : 9, - "direction" : 2 - }, - { - "radius" : 70, - "distortion" : 3, - "strength" : 0.0099999997764825821, - "dx" : -10, - "position" : 35, - "direction" : 1 - }, - { - "radius" : 70, - "distortion" : 3, - "strength" : 0.0099999997764825821, - "dx" : 10, - "position" : 45, - "direction" : 3 - }, - { - "radius" : 80, - "distortion" : 3, - "strength" : 0.10000000149011612, - "dx" : 10, - "position" : 41, - "direction" : 2 - }, - { - "radius" : 80, - "distortion" : 3, - "strength" : 0.10000000149011612, - "dx" : -10, - "position" : 51, - "direction" : 2 - }, - { - "radius" : 90, - "distortion" : 3, - "strength" : 0.059999998658895493, - "dx" : 0, - "position" : 37, - "direction" : 8 - }, - { - "radius" : 90, - "distortion" : 3, - "strength" : 0.059999998658895493, - "dx" : 0, - "position" : 47, - "direction" : 7 - }, - { - "radius" : 80, - "distortion" : 3, - "strength" : 0.079999998211860657, - "position" : 42, - "direction" : 2 - }, - { - "radius" : 80, - "distortion" : 3, - "strength" : 0.079999998211860657, - "position" : 52, - "direction" : 2 - }, - { - "radius" : 110, - "position" : 43, - "dy" : 5, - "distortion" : 1, - "strength" : 0.059999998658895493, - "direction" : 0, - "dx" : -10 - }, - { - "radius" : 110, - "position" : 53, - "dy" : 5, - "distortion" : 1, - "strength" : 0.059999998658895493, - "direction" : 0, - "dx" : 10 - }, - { - "radius" : 70, - "position" : 39, - "dy" : 5, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 3, - "dx" : 10, - "targetDy" : 0 - }, - { - "radius" : 70, - "position" : 49, - "dy" : 5, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 1, - "dx" : -10, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 36, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.079999998211860657, - "direction" : 4, - "dx" : -10, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 46, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.079999998211860657, - "direction" : 4, - "dx" : 10, - "targetDy" : 0 - }, - { - "radius" : 160, - "position" : 57, - "dy" : -50, - "distortion" : 3, - "strength" : 0.15000000596046448, - "direction" : 3, - "dx" : 10 - }, - { - "radius" : 160, - "position" : 61, - "dy" : -50, - "distortion" : 3, - "strength" : 0.15000000596046448, - "direction" : 1, - "dx" : -10 - }, - { - "radius" : 220, - "position" : 2, - "dy" : -10, - "distortion" : 3, - "strength" : 0.05000000074505806, - "direction" : 6, - "dx" : 0 - }, - { - "radius" : 220, - "position" : 16, - "dy" : -10, - "distortion" : 3, - "strength" : 0.05000000074505806, - "direction" : 5, - "dx" : 0 - }, - { - "radius" : 240, - "position" : 5, - "dy" : -5, - "distortion" : 3, - "strength" : 0.039999999105930328, - "direction" : 6, - "dx" : -10 - }, - { - "radius" : 240, - "position" : 13, - "dy" : -5, - "distortion" : 3, - "strength" : 0.039999999105930328, - "direction" : 5, - "dx" : 10 - }, - { - "radius" : 150, - "position" : 7, - "dy" : -10, - "distortion" : 3, - "strength" : 0.029999999329447746, - "direction" : 6, - "dx" : 5 - }, - { - "radius" : 150, - "position" : 11, - "dy" : -10, - "distortion" : 3, - "strength" : 0.029999999329447746, - "direction" : 5, - "dx" : -5 - }, - { - "radius" : 120, - "position" : 5, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.070000000298023224, - "direction" : 6, - "dx" : 10, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 13, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.070000000298023224, - "direction" : 5, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 220, - "position" : 9, - "dy" : -20, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.30000001192092896, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 240, - "position" : 85, - "dy" : -30, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 77, - "dy" : 20, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0, - "direction" : 4, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 68, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.15000000596046448, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 70, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.15000000596046448, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 180, - "position" : 9, - "dy" : 15, - "targetDx" : 0, - "distortion" : 2, - "strength" : 0.019999999552965164, - "direction" : 0, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 100, - "position" : 64, - "dy" : 0, - "targetDx" : 0, - "distortion" : 2, - "strength" : 0.059999998658895493, - "direction" : 0, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 600, - "position" : 83, - "dy" : -50, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.039999999105930328, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 4, - "dy" : 10, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.070000000298023224, - "direction" : 6, - "dx" : -10, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 14, - "dy" : 10, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.070000000298023224, - "direction" : 5, - "dx" : 10, - "targetDy" : 0 - }, - { - "radius" : 140, - "distortion" : 3, - "strength" : 0.079999998211860657, - "dx" : -20, - "position" : 0, - "direction" : 3 - }, - { - "radius" : 140, - "distortion" : 3, - "strength" : 0.079999998211860657, - "dx" : 20, - "position" : 18, - "direction" : 1 - }, - { - "radius" : 120, - "position" : 1, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 3, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 17, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 1, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 56, - "dy" : -15, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.2199999988079071, - "direction" : 3, - "dx" : -20, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 62, - "dy" : -15, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.2199999988079071, - "direction" : 1, - "dx" : 20, - "targetDy" : 0 - }, - { - "radius" : 220, - "position" : 5, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.30000001192092896, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 220, - "position" : 13, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.30000001192092896, - "direction" : 2, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 3, - "dy" : 10, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.059999998658895493, - "direction" : 6, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 15, - "dy" : 10, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.059999998658895493, - "direction" : 5, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 0, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.079999998211860657, - "direction" : 3, - "dx" : -5, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 18, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.079999998211860657, - "direction" : 1, - "dx" : 5, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 1, - "dy" : 10, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.039999999105930328, - "direction" : 3, - "dx" : -10, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 17, - "dy" : 10, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.039999999105930328, - "direction" : 1, - "dx" : 10, - "targetDy" : 0 - }, - { - "radius" : 250, - "position" : 1, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.050000000000000003, - "direction" : 3, - "dx" : -20, - "targetDy" : 0 - }, - { - "radius" : 250, - "position" : 17, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.050000000000000003, - "direction" : 1, - "dx" : 20, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 43, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.02, - "direction" : 3, - "dx" : 5, - "targetDy" : 0 - }, - { - "radius" : 120, - "position" : 53, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.02, - "direction" : 1, - "dx" : -5, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 65, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 3, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 80, - "position" : 66, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.10000000149011612, - "direction" : 1, - "dx" : 0, - "targetDy" : 0 - }, - { - "radius" : 160, - "position" : 1, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.039999999105930328, - "direction" : 3, - "dx" : -20, - "targetDy" : 0 - }, - { - "radius" : 160, - "position" : 17, - "dy" : 0, - "targetDx" : 0, - "distortion" : 3, - "strength" : 0.039999999105930328, - "direction" : 1, - "dx" : 20, - "targetDy" : 0 - } - ] - } \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/default/basic/basicShortFace.json b/Android/tuibeauty/src/main/assets/LightCore/default/basic/basicShortFace.json deleted file mode 100644 index 62c4e7f6..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/default/basic/basicShortFace.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "distortionList": [ - { - "radius": 360, - "distortion": 3, - "strength": 0.05, - "position": 64, - "direction": 2 - }, - { - "radius": 200, - "distortion": 3, - "strength": 0.04, - "position": 64, - "direction": 2 - }, - { - "radius": 700, - "distortion": 3, - "strength": 0.04, - "position": 81, - "direction": 2 - }, - { - "radius": 300, - "distortion": 3, - "strength": 0.06, - "position": 69, - "direction": 2 - }, - { - "radius": 620, - "distortion": 2, - "strength": 0.03, - "position": 69, - "direction": 0 - }, - { - "radius": 320, - "distortion": 3, - "strength": 0.16, - "position": 9, - "direction": 2 - }, - { - "radius": 320, - "distortion": 3, - "strength": 0.08, - "position": 5, - "direction": 2 - }, - { - "radius": 320, - "distortion": 3, - "strength": 0.08, - "position": 13, - "direction": 2 - } - ] -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/default/basic/femaleGod.json b/Android/tuibeauty/src/main/assets/LightCore/default/basic/femaleGod.json deleted file mode 100644 index 24a5594a..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/default/basic/femaleGod.json +++ /dev/null @@ -1,506 +0,0 @@ -{ - "cheekboneThin": 0, - "chin": 0, - "componentID": -1232, - "editMode": false, - "enabled": true, - "enlargeEye": 0.2, - "entityId": -1034, - "eyeAngle": 0, - "eyeDistance": 0, - "foreHead": 0, - "height": 2048, - "lastPoints": [], - "mouthHeight": 0, - "mouthPosition": 0, - "mouthSize": 0, - "mouthWidth": 0, - "noseHeight": 0, - "noseSize": 0.3, - "noseWing": 0, - "basicFaceEyelarge": 0, - "overallFactor": 0.4, - "pinchFaceEnabled": true, - "reformSubType": "femaleGod", - "points": [ - { - "positionX": 403.1646728515625, - "positionY": 976.7918090820312, - "fixed": true - }, - { - "positionX": 413.9551086425781, - "positionY": 1178.6097412109375, - "fixed": true - }, - { - "positionX": 505.1136169433594, - "positionY": 1308.6165771484375, - "fixed": true - }, - { - "positionX": 585.596435546875, - "positionY": 1414.51904296875, - "fixed": true - }, - { - "positionX": 665.2039794921875, - "positionY": 1460.8314208984375, - "fixed": true - }, - { - "positionX": 768.2893676757812, - "positionY": 1536.94140625, - "fixed": true - }, - { - "positionX": 870.7962646484375, - "positionY": 1460.8316650390625, - "fixed": true - }, - { - "positionX": 950.4036865234375, - "positionY": 1414.51953125, - "fixed": true - }, - { - "positionX": 1030.8876953125, - "positionY": 1308.6168212890625, - "fixed": true - }, - { - "positionX": 1122.04541015625, - "positionY": 1178.6097412109375, - "fixed": true - }, - { - "positionX": 1132.8358154296875, - "positionY": 976.7918090820312, - "fixed": true - }, - { - "positionX": 420, - "positionY": 855, - "fixed": true - }, - { - "positionX": 506, - "positionY": 843, - "fixed": true - }, - { - "positionX": 700, - "positionY": 864, - "fixed": true - }, - { - "positionX": 499, - "positionY": 806, - "fixed": true - }, - { - "positionX": 1116, - "positionY": 855, - "fixed": true - }, - { - "positionX": 1030, - "positionY": 843, - "fixed": true - }, - { - "positionX": 836, - "positionY": 864, - "fixed": true - }, - { - "positionX": 1037, - "positionY": 806, - "fixed": true - }, - { - "positionX": 507.84814453125, - "positionY": 938.6270141601562, - "fixed": true - }, - { - "positionX": 544, - "positionY": 962, - "fixed": true - }, - { - "positionX": 582, - "positionY": 971, - "fixed": true - }, - { - "positionX": 623, - "positionY": 969, - "fixed": true - }, - { - "positionX": 666, - "positionY": 966, - "fixed": true - }, - { - "positionX": 634, - "positionY": 926, - "fixed": true - }, - { - "positionX": 595, - "positionY": 907, - "fixed": true - }, - { - "positionX": 550, - "positionY": 913, - "fixed": true - }, - { - "positionX": 1028.1517333984375, - "positionY": 938.6270141601562, - "fixed": true - }, - { - "positionX": 992, - "positionY": 962, - "fixed": true - }, - { - "positionX": 954, - "positionY": 971, - "fixed": true - }, - { - "positionX": 913, - "positionY": 969, - "fixed": true - }, - { - "positionX": 870, - "positionY": 966, - "fixed": true - }, - { - "positionX": 902, - "positionY": 926, - "fixed": true - }, - { - "positionX": 941, - "positionY": 907, - "fixed": true - }, - { - "positionX": 986, - "positionY": 913, - "fixed": true - }, - { - "positionX": 719, - "positionY": 966, - "fixed": true - }, - { - "positionX": 708, - "positionY": 1092, - "fixed": true - }, - { - "positionX": 662.095458984375, - "positionY": 1195.4093017578125, - "fixed": true - }, - { - "positionX": 705.095458984375, - "positionY": 1217.4093017578125, - "fixed": true - }, - { - "positionX": 767.0284423828125, - "positionY": 1229.10107421875, - "fixed": true - }, - { - "positionX": 830.904541015625, - "positionY": 1217.4093017578125, - "fixed": true - }, - { - "positionX": 873.904541015625, - "positionY": 1195.4093017578125, - "fixed": true - }, - { - "positionX": 828, - "positionY": 1092, - "fixed": true - }, - { - "positionX": 817, - "positionY": 966, - "fixed": true - }, - { - "positionX": 768, - "positionY": 1148, - "fixed": true - }, - { - "positionX": 623.2008666992188, - "positionY": 1271.1868896484375, - "fixed": true - }, - { - "positionX": 912.7991333007812, - "positionY": 1271.1868896484375, - "fixed": true - }, - { - "positionX": 768.7493286132812, - "positionY": 1359.647705078125, - "fixed": true - }, - { - "positionX": 840.2135009765625, - "positionY": 1304.823486328125, - "fixed": true - }, - { - "positionX": 767.8036499023438, - "positionY": 1323.7269287109375, - "fixed": true - }, - { - "positionX": 695.7864990234375, - "positionY": 1304.823486328125, - "fixed": true - }, - { - "positionX": 674.81591796875, - "positionY": 1272.4888916015625, - "fixed": true - }, - { - "positionX": 725.8011474609375, - "positionY": 1268.4599609375, - "fixed": true - }, - { - "positionX": 810.1988525390625, - "positionY": 1268.4599609375, - "fixed": true - }, - { - "positionX": 861.18408203125, - "positionY": 1272.4888916015625, - "fixed": true - }, - { - "positionX": 839.4693603515625, - "positionY": 1288.410888671875, - "fixed": true - }, - { - "positionX": 767.1473388671875, - "positionY": 1300.8702392578125, - "fixed": true - }, - { - "positionX": 696.5306396484375, - "positionY": 1288.410888671875, - "fixed": true - }, - { - "positionX": 768, - "positionY": 966, - "fixed": true - }, - { - "positionX": 768, - "positionY": 864, - "fixed": true - }, - { - "positionX": 580, - "positionY": 550, - "fixed": true - }, - { - "positionX": 956, - "positionY": 550, - "fixed": true - }, - { - "positionX": 768, - "positionY": 538, - "fixed": true - }, - { - "positionX": 418, - "positionY": 655, - "fixed": true - }, - { - "positionX": 1118, - "positionY": 655, - "fixed": true - }, - { - "positionX": 529, - "positionY": 1148, - "fixed": true - }, - { - "positionX": 1007, - "positionY": 1148, - "fixed": true - }, - { - "positionX": 595.9595947265625, - "positionY": 1344.4459228515625, - "fixed": true - }, - { - "positionX": 940.0404052734375, - "positionY": 1344.4459228515625, - "fixed": true - }, - { - "positionX": 768, - "positionY": 1056, - "fixed": true - }, - { - "positionX": 670, - "positionY": 683, - "fixed": true - }, - { - "positionX": 866, - "positionY": 683, - "fixed": true - }, - { - "positionX": 559, - "positionY": 721, - "fixed": true - }, - { - "positionX": 977, - "positionY": 721, - "fixed": true - }, - { - "positionX": 692.3292846679688, - "positionY": 1332.155517578125, - "fixed": true - }, - { - "positionX": 843.6707153320312, - "positionY": 1332.155517578125, - "fixed": true - }, - { - "positionX": 767.8294677734375, - "positionY": 1273.6622314453125, - "fixed": true - }, - { - "positionX": 679.9474487304688, - "positionY": 1398.2969970703125, - "fixed": true - }, - { - "positionX": 856.0525512695312, - "positionY": 1398.2969970703125, - "fixed": true - }, - { - "positionX": 768.5877685546875, - "positionY": 1434.13330078125, - "fixed": true - }, - { - "positionX": 407.2588806152344, - "positionY": 1088.2255859375, - "fixed": true - }, - { - "positionX": 459.90338134765625, - "positionY": 1229.6201171875, - "fixed": true - }, - { - "positionX": 536.1611938476562, - "positionY": 1368.84619140625, - "fixed": true - }, - { - "positionX": 447.3035583496094, - "positionY": 954.446044921875, - "fixed": true - }, - { - "positionX": 478.5321960449219, - "positionY": 1048.0111083984375, - "fixed": true - }, - { - "positionX": 1128.7423095703125, - "positionY": 1088.2257080078125, - "fixed": true - }, - { - "positionX": 1076.0972900390625, - "positionY": 1229.6202392578125, - "fixed": true - }, - { - "positionX": 999.839599609375, - "positionY": 1368.8463134765625, - "fixed": true - }, - { - "positionX": 1088.696044921875, - "positionY": 954.446044921875, - "fixed": true - }, - { - "positionX": 1057.4674072265625, - "positionY": 1048.0111083984375, - "fixed": true - }, - { - "positionX": 356.3348388671875, - "positionY": 880.8341064453125, - "fixed": true - }, - { - "positionX": 1179.6658935546875, - "positionY": 880.8341064453125, - "fixed": true - }, - { - "positionX": 411.6866455078125, - "positionY": 786.33203125, - "fixed": true - }, - { - "positionX": 1124.3143310546875, - "positionY": 786.33203125, - "fixed": true - } - ], - "strength": 100, - "stretchEnabled": false, - "symmetry": true, - "thinFace": 0, - "type": "FacialReform", - "vFace": 0, - "version": 2521, - "width": 1536, - "reformFacialType": 0 -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/default/basic/maleGod.json b/Android/tuibeauty/src/main/assets/LightCore/default/basic/maleGod.json deleted file mode 100644 index a0c6aa06..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/default/basic/maleGod.json +++ /dev/null @@ -1,505 +0,0 @@ -{ - "cheekboneThin": 0, - "chin": 0, - "componentID": -1229, - "editMode": false, - "enabled": true, - "enlargeEye": 0.2, - "entityId": -1034, - "eyeAngle": 0, - "eyeDistance": 0, - "foreHead": 0, - "height": 2048, - "lastPoints": [], - "mouthHeight": 0, - "mouthPosition": 0, - "mouthSize": 0, - "mouthWidth": 0, - "noseHeight": 0, - "noseSize": 0.3, - "noseWing": 0, - "basicFaceEyelarge": 0, - "overallFactor": 0.4, - "pinchFaceEnabled": true, - "reformSubType": "maleGod", - "points": [ - { - "fixed": true, - "positionX": 394.725830078125, - "positionY": 977.6270141601562 - }, - { - "fixed": true, - "positionX": 427.00439453125, - "positionY": 1170.8486328125 - }, - { - "fixed": true, - "positionX": 500.6820373535156, - "positionY": 1307.73388671875 - }, - { - "fixed": true, - "positionX": 579.3490600585938, - "positionY": 1428.994384765625 - }, - { - "fixed": true, - "positionX": 630.4270629882812, - "positionY": 1489.828857421875 - }, - { - "fixed": true, - "positionX": 767.7621459960938, - "positionY": 1532.2154541015625 - }, - { - "fixed": true, - "positionX": 905.5731811523438, - "positionY": 1489.8291015625 - }, - { - "fixed": true, - "positionX": 956.6510620117188, - "positionY": 1428.994873046875 - }, - { - "fixed": true, - "positionX": 1035.319091796875, - "positionY": 1307.734130859375 - }, - { - "fixed": true, - "positionX": 1108.9964599609375, - "positionY": 1170.8486328125 - }, - { - "fixed": true, - "positionX": 1141.2745361328125, - "positionY": 977.6270141601562 - }, - { - "fixed": true, - "positionX": 420, - "positionY": 855 - }, - { - "fixed": true, - "positionX": 506, - "positionY": 843 - }, - { - "fixed": true, - "positionX": 700, - "positionY": 864 - }, - { - "fixed": true, - "positionX": 499, - "positionY": 806 - }, - { - "fixed": true, - "positionX": 1116, - "positionY": 855 - }, - { - "fixed": true, - "positionX": 1030, - "positionY": 843 - }, - { - "fixed": true, - "positionX": 836, - "positionY": 864 - }, - { - "fixed": true, - "positionX": 1037, - "positionY": 806 - }, - { - "fixed": true, - "positionX": 507.84814453125, - "positionY": 938.6270141601562 - }, - { - "fixed": true, - "positionX": 544, - "positionY": 962 - }, - { - "fixed": true, - "positionX": 582, - "positionY": 971 - }, - { - "fixed": true, - "positionX": 623, - "positionY": 969 - }, - { - "fixed": true, - "positionX": 666, - "positionY": 966 - }, - { - "fixed": true, - "positionX": 634, - "positionY": 926 - }, - { - "fixed": true, - "positionX": 595, - "positionY": 907 - }, - { - "fixed": true, - "positionX": 550, - "positionY": 913 - }, - { - "fixed": true, - "positionX": 1028.1517333984375, - "positionY": 938.6270141601562 - }, - { - "fixed": true, - "positionX": 992, - "positionY": 962 - }, - { - "fixed": true, - "positionX": 954, - "positionY": 971 - }, - { - "fixed": true, - "positionX": 913, - "positionY": 969 - }, - { - "fixed": true, - "positionX": 870, - "positionY": 966 - }, - { - "fixed": true, - "positionX": 902, - "positionY": 926 - }, - { - "fixed": true, - "positionX": 941, - "positionY": 907 - }, - { - "fixed": true, - "positionX": 986, - "positionY": 913 - }, - { - "fixed": true, - "positionX": 719, - "positionY": 966 - }, - { - "fixed": true, - "positionX": 708, - "positionY": 1092 - }, - { - "fixed": true, - "positionX": 661, - "positionY": 1188 - }, - { - "fixed": true, - "positionX": 704, - "positionY": 1210 - }, - { - "fixed": true, - "positionX": 768, - "positionY": 1218 - }, - { - "fixed": true, - "positionX": 832, - "positionY": 1210 - }, - { - "fixed": true, - "positionX": 875, - "positionY": 1188 - }, - { - "fixed": true, - "positionX": 828, - "positionY": 1092 - }, - { - "fixed": true, - "positionX": 817, - "positionY": 966 - }, - { - "fixed": true, - "positionX": 768, - "positionY": 1148 - }, - { - "fixed": true, - "positionX": 612, - "positionY": 1295 - }, - { - "fixed": true, - "positionX": 924, - "positionY": 1295 - }, - { - "fixed": true, - "positionX": 768, - "positionY": 1404 - }, - { - "fixed": true, - "positionX": 846.6070556640625, - "positionY": 1326.9619140625 - }, - { - "fixed": true, - "positionX": 768.8685913085938, - "positionY": 1341.8841552734375 - }, - { - "fixed": true, - "positionX": 689.3929443359375, - "positionY": 1326.9619140625 - }, - { - "fixed": true, - "positionX": 666.3929443359375, - "positionY": 1281.9619140625 - }, - { - "fixed": true, - "positionX": 723.3929443359375, - "positionY": 1273.9619140625 - }, - { - "fixed": true, - "positionX": 812.6070556640625, - "positionY": 1273.9619140625 - }, - { - "fixed": true, - "positionX": 869.6070556640625, - "positionY": 1281.9619140625 - }, - { - "fixed": true, - "positionX": 844.6070556640625, - "positionY": 1305.9619140625 - }, - { - "fixed": true, - "positionX": 768.1602783203125, - "positionY": 1309.8330078125 - }, - { - "fixed": true, - "positionX": 691.3929443359375, - "positionY": 1305.9619140625 - }, - { - "fixed": true, - "positionX": 768, - "positionY": 966 - }, - { - "fixed": true, - "positionX": 768, - "positionY": 864 - }, - { - "fixed": true, - "positionX": 580, - "positionY": 550 - }, - { - "fixed": true, - "positionX": 956, - "positionY": 550 - }, - { - "fixed": true, - "positionX": 768, - "positionY": 538 - }, - { - "fixed": true, - "positionX": 418, - "positionY": 655 - }, - { - "fixed": true, - "positionX": 1118, - "positionY": 655 - }, - { - "fixed": true, - "positionX": 529, - "positionY": 1148 - }, - { - "fixed": true, - "positionX": 1007, - "positionY": 1148 - }, - { - "fixed": true, - "positionX": 591, - "positionY": 1350 - }, - { - "fixed": true, - "positionX": 945, - "positionY": 1350 - }, - { - "fixed": true, - "positionX": 768, - "positionY": 1056 - }, - { - "fixed": true, - "positionX": 670, - "positionY": 683 - }, - { - "fixed": true, - "positionX": 866, - "positionY": 683 - }, - { - "fixed": true, - "positionX": 559, - "positionY": 721 - }, - { - "fixed": true, - "positionX": 977, - "positionY": 721 - }, - { - "fixed": true, - "positionX": 674, - "positionY": 1372 - }, - { - "fixed": true, - "positionX": 862, - "positionY": 1372 - }, - { - "fixed": true, - "positionX": 767.1520385742188, - "positionY": 1271.6395263671875 - }, - { - "fixed": true, - "positionX": 657, - "positionY": 1412 - }, - { - "fixed": true, - "positionX": 879, - "positionY": 1412 - }, - { - "fixed": true, - "positionX": 768, - "positionY": 1449 - }, - { - "fixed": true, - "positionX": 407.2588806152344, - "positionY": 1088.2255859375 - }, - { - "fixed": true, - "positionX": 459.90338134765625, - "positionY": 1229.6201171875 - }, - { - "fixed": true, - "positionX": 535.85595703125, - "positionY": 1370.021240234375 - }, - { - "fixed": true, - "positionX": 454.9967041015625, - "positionY": 953.1712036132812 - }, - { - "fixed": true, - "positionX": 478.5321960449219, - "positionY": 1048.0111083984375 - }, - { - "fixed": true, - "positionX": 1128.7423095703125, - "positionY": 1088.2257080078125 - }, - { - "fixed": true, - "positionX": 1076.0972900390625, - "positionY": 1229.6202392578125 - }, - { - "fixed": true, - "positionX": 1000.1448364257812, - "positionY": 1370.0213623046875 - }, - { - "fixed": true, - "positionX": 1081.002685546875, - "positionY": 953.1712036132812 - }, - { - "fixed": true, - "positionX": 1057.4674072265625, - "positionY": 1048.0111083984375 - }, - { - "fixed": true, - "positionX": 367.03338623046875, - "positionY": 884.0590209960938 - }, - { - "fixed": true, - "positionX": 1168.967041015625, - "positionY": 884.0590209960938 - }, - { - "fixed": true, - "positionX": 420, - "positionY": 787 - }, - { - "fixed": true, - "positionX": 1116, - "positionY": 787 - } - ], - "strength": 100, - "stretchEnabled": false, - "symmetry": true, - "thinFace": 0, - "type": "FacialReform", - "vFace": 0, - "version": 923, - "width": 1536 -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/default/basic/nature.json b/Android/tuibeauty/src/main/assets/LightCore/default/basic/nature.json deleted file mode 100644 index bd28c046..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/default/basic/nature.json +++ /dev/null @@ -1,505 +0,0 @@ -{ - "cheekboneThin": 0, - "chin": 0, - "componentID": -1226, - "editMode": false, - "enabled": true, - "enlargeEye": 0.30000000000000004, - "entityId": -1034, - "eyeAngle": 0.10000000000000009, - "eyeDistance": 0.25, - "foreHead": 0, - "height": 2048, - "lastPoints": [], - "mouthHeight": 0, - "mouthPosition": 0, - "mouthSize": 0, - "mouthWidth": 0, - "noseHeight": 0.2, - "noseSize": 0.40000000000000013, - "noseWing": 0, - "overallFactor": 0.4, - "basicFaceEyelarge": 0, - "pinchFaceEnabled": true, - "reformSubType": "nature", - "points": [ - { - "positionX": 392.0104064941406, - "positionY": 966.646728515625, - "fixed": true - }, - { - "positionX": 424.6899108886719, - "positionY": 1160.541259765625, - "fixed": true - }, - { - "positionX": 511.9487609863281, - "positionY": 1306.074462890625, - "fixed": true - }, - { - "positionX": 596.3385620117188, - "positionY": 1381.8641357421875, - "fixed": true - }, - { - "positionX": 660.0175170898438, - "positionY": 1412.9744873046875, - "fixed": true - }, - { - "positionX": 767.317138671875, - "positionY": 1491.4183349609375, - "fixed": true - }, - { - "positionX": 875.8718872070312, - "positionY": 1412.962158203125, - "fixed": true - }, - { - "positionX": 935.34716796875, - "positionY": 1379.32421875, - "fixed": true - }, - { - "positionX": 1029.7938232421875, - "positionY": 1297.689208984375, - "fixed": true - }, - { - "positionX": 1107.4666748046875, - "positionY": 1157.3028564453125, - "fixed": true - }, - { - "positionX": 1143.990478515625, - "positionY": 966.646728515625, - "fixed": true - }, - { - "positionX": 420, - "positionY": 855, - "fixed": true - }, - { - "positionX": 506, - "positionY": 839.6893920898438, - "fixed": true - }, - { - "positionX": 692.8929443359375, - "positionY": 857.0098266601562, - "fixed": true - }, - { - "positionX": 499, - "positionY": 802.6893920898438, - "fixed": true - }, - { - "positionX": 1116, - "positionY": 855, - "fixed": true - }, - { - "positionX": 1030, - "positionY": 839.6893920898438, - "fixed": true - }, - { - "positionX": 843.1070556640625, - "positionY": 857.0098266601562, - "fixed": true - }, - { - "positionX": 1037, - "positionY": 802.6893920898438, - "fixed": true - }, - { - "positionX": 513.1281127929688, - "positionY": 950.0679321289062, - "fixed": true - }, - { - "positionX": 544.6527709960938, - "positionY": 970.9148559570312, - "fixed": true - }, - { - "positionX": 585.5798950195312, - "positionY": 972.0882568359375, - "fixed": true - }, - { - "positionX": 626.4053344726562, - "positionY": 968.7205810546875, - "fixed": true - }, - { - "positionX": 666.3204345703125, - "positionY": 968.0636596679688, - "fixed": true - }, - { - "positionX": 642.5635375976562, - "positionY": 922.6239013671875, - "fixed": true - }, - { - "positionX": 599.7583618164062, - "positionY": 911.7972412109375, - "fixed": true - }, - { - "positionX": 558.2445068359375, - "positionY": 923.4270629882812, - "fixed": true - }, - { - "positionX": 1022.8718872070312, - "positionY": 950.0679321289062, - "fixed": true - }, - { - "positionX": 991.3472290039062, - "positionY": 970.9148559570312, - "fixed": true - }, - { - "positionX": 950.4201049804688, - "positionY": 972.0882568359375, - "fixed": true - }, - { - "positionX": 909.5946655273438, - "positionY": 968.7205810546875, - "fixed": true - }, - { - "positionX": 869.6795654296875, - "positionY": 968.0636596679688, - "fixed": true - }, - { - "positionX": 893.4364624023438, - "positionY": 922.6239013671875, - "fixed": true - }, - { - "positionX": 936.2416381835938, - "positionY": 911.7972412109375, - "fixed": true - }, - { - "positionX": 977.7554931640625, - "positionY": 923.4270629882812, - "fixed": true - }, - { - "positionX": 719, - "positionY": 966, - "fixed": true - }, - { - "positionX": 714.8593139648438, - "positionY": 1102.2347412109375, - "fixed": true - }, - { - "positionX": 673.3064575195312, - "positionY": 1182.699951171875, - "fixed": true - }, - { - "positionX": 711.4496459960938, - "positionY": 1203.6878662109375, - "fixed": true - }, - { - "positionX": 767.4188842773438, - "positionY": 1216.0704345703125, - "fixed": true - }, - { - "positionX": 824.5503540039062, - "positionY": 1203.6878662109375, - "fixed": true - }, - { - "positionX": 862.6935424804688, - "positionY": 1182.699951171875, - "fixed": true - }, - { - "positionX": 821.1406860351562, - "positionY": 1102.2347412109375, - "fixed": true - }, - { - "positionX": 817, - "positionY": 966, - "fixed": true - }, - { - "positionX": 767.7044067382812, - "positionY": 1138.598876953125, - "fixed": true - }, - { - "positionX": 614.888671875, - "positionY": 1251.9876708984375, - "fixed": true - }, - { - "positionX": 921.111328125, - "positionY": 1251.9876708984375, - "fixed": true - }, - { - "positionX": 766.4959716796875, - "positionY": 1357.30322265625, - "fixed": true - }, - { - "positionX": 852.8787841796875, - "positionY": 1291.0240478515625, - "fixed": true - }, - { - "positionX": 766.7779541015625, - "positionY": 1307.046630859375, - "fixed": true - }, - { - "positionX": 683.1212158203125, - "positionY": 1291.0240478515625, - "fixed": true - }, - { - "positionX": 668.7772827148438, - "positionY": 1245.9910888671875, - "fixed": true - }, - { - "positionX": 727.4692993164062, - "positionY": 1244.43408203125, - "fixed": true - }, - { - "positionX": 808.5307006835938, - "positionY": 1244.43408203125, - "fixed": true - }, - { - "positionX": 867.2227172851562, - "positionY": 1245.9910888671875, - "fixed": true - }, - { - "positionX": 851.04150390625, - "positionY": 1268.3397216796875, - "fixed": true - }, - { - "positionX": 766.278076171875, - "positionY": 1280.4998779296875, - "fixed": true - }, - { - "positionX": 684.95849609375, - "positionY": 1268.3397216796875, - "fixed": true - }, - { - "positionX": 768, - "positionY": 966, - "fixed": true - }, - { - "positionX": 768.2948608398438, - "positionY": 860.6826782226562, - "fixed": true - }, - { - "positionX": 580, - "positionY": 550, - "fixed": true - }, - { - "positionX": 956, - "positionY": 550, - "fixed": true - }, - { - "positionX": 768, - "positionY": 538, - "fixed": true - }, - { - "positionX": 418, - "positionY": 655, - "fixed": true - }, - { - "positionX": 1118, - "positionY": 655, - "fixed": true - }, - { - "positionX": 526.6063232421875, - "positionY": 1138.6806640625, - "fixed": true - }, - { - "positionX": 1010.621826171875, - "positionY": 1138.8995361328125, - "fixed": true - }, - { - "positionX": 607.0260620117188, - "positionY": 1309.3126220703125, - "fixed": true - }, - { - "positionX": 923.7181396484375, - "positionY": 1317.06689453125, - "fixed": true - }, - { - "positionX": 768, - "positionY": 1056, - "fixed": true - }, - { - "positionX": 670, - "positionY": 683, - "fixed": true - }, - { - "positionX": 866, - "positionY": 683, - "fixed": true - }, - { - "positionX": 559, - "positionY": 721, - "fixed": true - }, - { - "positionX": 977, - "positionY": 721, - "fixed": true - }, - { - "positionX": 672.9261474609375, - "positionY": 1331.5426025390625, - "fixed": true - }, - { - "positionX": 863.0738525390625, - "positionY": 1331.5426025390625, - "fixed": true - }, - { - "positionX": 766.568603515625, - "positionY": 1248.2060546875, - "fixed": true - }, - { - "positionX": 672.6199340820312, - "positionY": 1371.67333984375, - "fixed": true - }, - { - "positionX": 860.5969848632812, - "positionY": 1369.945556640625, - "fixed": true - }, - { - "positionX": 766.186767578125, - "positionY": 1416.3792724609375, - "fixed": true - }, - { - "positionX": 412.3116455078125, - "positionY": 1086.68603515625, - "fixed": true - }, - { - "positionX": 465.0056457519531, - "positionY": 1225.9320068359375, - "fixed": true - }, - { - "positionX": 567.286865234375, - "positionY": 1357.969970703125, - "fixed": true - }, - { - "positionX": 447.096435546875, - "positionY": 952.1060180664062, - "fixed": true - }, - { - "positionX": 468.86627197265625, - "positionY": 1047.931884765625, - "fixed": true - }, - { - "positionX": 1118.267578125, - "positionY": 1087.3438720703125, - "fixed": true - }, - { - "positionX": 1074.6417236328125, - "positionY": 1228.001220703125, - "fixed": true - }, - { - "positionX": 964.3988037109375, - "positionY": 1355.176513671875, - "fixed": true - }, - { - "positionX": 1088.9036865234375, - "positionY": 952.1060180664062, - "fixed": true - }, - { - "positionX": 1065.43310546875, - "positionY": 1049.132568359375, - "fixed": true - }, - { - "positionX": 367.8214111328125, - "positionY": 890.7825927734375, - "fixed": true - }, - { - "positionX": 1168.2286376953125, - "positionY": 890.78759765625, - "fixed": true - }, - { - "positionX": 420, - "positionY": 787, - "fixed": true - }, - { - "positionX": 1116, - "positionY": 787, - "fixed": true - } - ], - "strength": 100, - "stretchEnabled": false, - "symmetry": true, - "thinFace": 0, - "type": "FacialReform", - "vFace": 0, - "version": 5665, - "width": 1536 -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyEmpty.json b/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyEmpty.json deleted file mode 100644 index a6dc63dd..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyEmpty.json +++ /dev/null @@ -1,160 +0,0 @@ -{ - "root": { - "id": 1016, - "name": "拍摄模板", - "children": [ - { - "id": 1024, - "name": "摄像头", - "children": [ - ], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": 1024, - "componentID": 1217, - "objectEnabled": true - }, - { - "componentID": 1218, - "enabled": true, - "entityId": 1024, - "renderTargetKey": "RenderTarget", - "type": "Camera", - "version": 8 - }, - { - "type": "EntityIdentifier", - "name": "摄像头", - "id": 1024 - } - ] - } - ], - "components": [ - { - "anchor": { - "bottom": 0, - "left": 0, - "right": 0, - "top": 0 - }, - "offset": { - "bottom": 0, - "left": 0, - "right": 0, - "top": 0 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "rotation": { - "w": 0, - "x": 0, - "y": 0, - "z": 0 - }, - "entityId": 1016, - "componentID": 1219, - "type": "ScreenTransform", - "enabled": true, - "version": 2, - "objectEnabled": true - }, - { - "enabled": true, - "entityId": 1016, - "tips": "提示语", - "type": "Tips", - "version": 17, - "image": "", - "componentID": 1230 - }, - { - "type": "EntityIdentifier", - "name": "拍摄模板", - "id": 1016 - } - ], - "enabled": true, - "version": 0, - "inputFormats": [ - { - "key": "DeviceCameraTexture", - "type": "TextureData", - "properties": {} - } - ] - }, - "inputSources": { - "RenderTarget": { - "key": "RenderTarget", - "path": "RenderTarget.rdt", - "hash": "1007a798a17b0b0b3b7e21c6a2e8b805", - "label": "RenderTarget.rdt", - "type": "RenderTarget", - "inputKey": "DeviceCameraTexture" - }, - "DeviceCameraTexture": { - "key": "DeviceCameraTexture", - "path": "DeviceCameraTexture.tex", - "hash": "18167426118cbf6da2972283f3318e72", - "label": "DeviceCameraTexture.tex", - "type": "TextureData" - } - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyForWeishi1.json b/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyForWeishi1.json deleted file mode 100644 index 2691e353..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyForWeishi1.json +++ /dev/null @@ -1,743 +0,0 @@ -{ - "root": { - "id": -1016, - "name": "拍摄模板", - "children": [ - { - "id": -1024, - "name": "摄像头", - "children": [ - { - "id": -1031, - "name": "去噪", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "top": 1, - "bottom": -1, - "left": -1, - "right": 1 - }, - "offset": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "objectEnabled": true, - "enabled": true, - "entityId": -1031, - "componentID": -1231 - }, - { - "componentID": -1232, - "effectStrength": 0, - "effectType": "denoise", - "enabled": true, - "entityId": -1031, - "subEffectType": "", - "type": "PostEffect", - "version": 8 - }, - { - "type": "EntityIdentifier", - "name": "去噪", - "id": -1031 - } - ] - }, - { - "id": -1025, - "name": "磨皮", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1025, - "componentID": -1203, - "objectEnabled": true - }, - { - "smoothVersion": "v7", - "componentID": -1204, - "curveAdjustAlpha": 1, - "enabled": true, - "entityId": -1025, - "faceColorAlpha": 1, - "sharpenStrength": 0.05, - "smooth": 0.6, - "type": "Smooth", - "version": 7 - }, - { - "type": "EntityIdentifier", - "name": "磨皮", - "id": -1025 - } - ] - }, - { - "id": -1026, - "name": "美型", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1026, - "componentID": -1233, - "objectEnabled": true - }, - { - "alignPoints": [ - 64 - ], - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isAllFrameFaceDetect": false, - "isRefine": true, - "isWaitFirstFrameDetect": false, - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "type": "FaceTracking", - "enabled": true, - "version": 1, - "entityId": -1026, - "componentID": -1234 - }, - { - "basicFace": 0, - "chin": 0, - "componentID": -1205, - "enabled": true, - "enlargeEye": 0, - "entityId": -1026, - "eyeAngle": 0, - "eyeDistance": 0, - "foreHead": 0, - "mouthHeight": 0, - "mouthSize": 0, - "mouthWidth": 0, - "cheekboneThin": 0, - "noseHeight": 0, - "noseSize": 0, - "noseWing": 0, - "shortFace": 0, - "thinFace": 0, - "type": "Stretch", - "vFace": 0, - "version": 91 - }, - { - "type": "EntityIdentifier", - "name": "美型", - "id": -1026 - } - ] - }, - { - "id": -1027, - "name": "形变", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1027, - "componentID": -1206, - "objectEnabled": true - }, - { - "alignPoints": [ - 64 - ], - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isAllFrameFaceDetect": false, - "isRefine": true, - "isWaitFirstFrameDetect": false, - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "type": "FaceTracking", - "enabled": true, - "version": 1, - "entityId": -1027, - "componentID": -1207 - }, - { - "componentID": -1208, - "enabled": true, - "entityId": -1027, - "resourcePath": "", - "strength": 1, - "type": "Liquefaction", - "version": 3 - }, - { - "type": "EntityIdentifier", - "name": "形变", - "id": -1027 - } - ] - }, - { - "id": -1028, - "name": "美体", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1028, - "componentID": -1209 - }, - { - "alignPoints": [ - 0 - ], - "isBodyDetectSmooth": true, - "scalePivotPoint1": 0, - "scalePivotPoint2": 1, - "type": "BodyTracking", - "enabled": false, - "version": 1, - "entityId": -1028, - "componentID": -1210 - }, - { - "longLegStrength": 0, - "slimWaistStrength": 0, - "thinBodyStrength": 0, - "thinShoulderStrength": 0, - "type": "BeautyBody", - "enabled": true, - "version": 1, - "entityId": -1028, - "componentID": -1211 - }, - { - "type": "EntityIdentifier", - "name": "美体", - "id": -1028 - } - ] - }, - { - "id": -1029, - "name": "滤镜", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1029, - "componentID": -1212 - }, - { - "enabled": true, - "entityId": -1029, - "src": "", - "type": "LUTFilter", - "version": 2, - "componentID": -1213, - "intensity": 1 - }, - { - "type": "EntityIdentifier", - "name": "滤镜", - "id": -1029 - } - ] - }, - { - "id": -1030, - "name": "美颜", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1030, - "componentID": -1214 - }, - { - "alignPoints": [ - 64 - ], - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isRefine": true, - "isWaitFirstFrameDetect": false, - "isAllFrameFaceDetect": false, - "type": "FaceTracking", - "enabled": true, - "entityId": -1030, - "componentID": -1215 - }, - { - "componentID": -1216, - "deepSmoothAlpha": 0, - "eBuiltInMode": "custom", - "enabled": true, - "entityId": -1030, - "eyeLightenAlpha": 0, - "eyePouchAlpha": 0, - "eyebrowContrastAlpha": 0, - "faceFeatureBlendFaceAlpha": 0, - "faceFeatureTeethLutAlpha": 0, - "imageContrastAlpha": 0, - "skinColorSlider": 0, - "type": "Beauty", - "wrinkleAlpha": 0, - "version": 16 - }, - { - "type": "EntityIdentifier", - "name": "美颜", - "id": -1030 - } - ] - } - ], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1024, - "componentID": -1217, - "objectEnabled": true - }, - { - "componentID": -1218, - "enabled": true, - "entityId": -1024, - "renderTargetKey": "RenderTarget", - "type": "Camera", - "version": 8 - }, - { - "type": "EntityIdentifier", - "name": "摄像头", - "id": -1024 - } - ] - } - ], - "components": [ - { - "anchor": { - "bottom": 0, - "left": 0, - "right": 0, - "top": 0 - }, - "offset": { - "bottom": 0, - "left": 0, - "right": 0, - "top": 0 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "rotation": { - "w": 0, - "x": 0, - "y": 0, - "z": 0 - }, - "entityId": -1016, - "componentID": -1219, - "type": "ScreenTransform", - "enabled": true, - "version": 2, - "objectEnabled": true - }, - { - "enabled": true, - "entityId": -1016, - "tips": "提示语", - "type": "Tips", - "version": 17, - "image": "", - "componentID": -1230 - }, - { - "type": "EntityIdentifier", - "name": "拍摄模板", - "id": -1016 - } - ], - "enabled": true, - "version": 0, - "inputFormats": [ - { - "key": "DeviceCameraTexture", - "type": "TextureData", - "properties": {} - } - ] - }, - "inputSources": { - "RenderTarget": { - "key": "RenderTarget", - "path": "RenderTarget.rdt", - "hash": "1007a798a17b0b0b3b7e21c6a2e8b805", - "label": "RenderTarget.rdt", - "type": "RenderTarget", - "inputKey": "DeviceCameraTexture" - }, - "DeviceCameraTexture": { - "key": "DeviceCameraTexture", - "path": "DeviceCameraTexture.tex", - "hash": "18167426118cbf6da2972283f3318e72", - "label": "DeviceCameraTexture.tex", - "type": "TextureData" - } - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyForWeishi2.json b/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyForWeishi2.json deleted file mode 100644 index f0f9df69..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyForWeishi2.json +++ /dev/null @@ -1,753 +0,0 @@ -{ - "root": { - "id": -1016, - "name": "拍摄模板", - "children": [ - { - "id": -1024, - "name": "摄像头", - "children": [ - { - "id": -1031, - "name": "去噪", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "top": 1, - "bottom": -1, - "left": -1, - "right": 1 - }, - "offset": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "objectEnabled": true, - "enabled": true, - "entityId": -1031, - "componentID": -1231 - }, - { - "componentID": -1232, - "effectStrength": 0, - "effectType": "denoise", - "enabled": true, - "entityId": -1031, - "subEffectType": "", - "type": "PostEffect", - "version": 8 - }, - { - "type": "EntityIdentifier", - "name": "去噪", - "id": -1031 - } - ] - }, - { - "id": -1025, - "name": "磨皮", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1025, - "componentID": -1203, - "objectEnabled": true - }, - { - "smoothVersion": "v7", - "componentID": -1204, - "curveAdjustAlpha": 1, - "enabled": true, - "entityId": -1025, - "faceColorAlpha": 1, - "sharpenStrength": 0.05, - "smooth": 0.6, - "type": "Smooth", - "version": 7 - }, - { - "type": "EntityIdentifier", - "name": "磨皮", - "id": -1025 - } - ] - }, - { - "id": -1026, - "name": "美型", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1026, - "componentID": -1233, - "objectEnabled": true - }, - { - "alignPoints": [ - 64 - ], - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isAllFrameFaceDetect": false, - "isRefine": true, - "isWaitFirstFrameDetect": false, - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "type": "FaceTracking", - "enabled": true, - "version": 1, - "entityId": -1026, - "componentID": -1234 - }, - { - "basicFace": 0, - "chin": 0, - "componentID": -1205, - "enabled": true, - "enlargeEye": 0, - "entityId": -1026, - "eyeAngle": 0, - "eyeDistance": 0, - "foreHead": 0, - "mouthHeight": 0, - "mouthSize": 0, - "mouthWidth": 0, - "cheekboneThin": 0, - "noseHeight": 0, - "noseSize": 0, - "noseWing": 0, - "shortFace": 0, - "thinFace": 0, - "type": "Stretch", - "vFace": 0, - "version": 91 - }, - { - "type": "EntityIdentifier", - "name": "美型", - "id": -1026 - } - ] - }, - { - "id": -1027, - "name": "形变", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1027, - "componentID": -1206, - "objectEnabled": true - }, - { - "alignPoints": [ - 64 - ], - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isAllFrameFaceDetect": false, - "isRefine": true, - "isWaitFirstFrameDetect": false, - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "type": "FaceTracking", - "enabled": true, - "version": 1, - "entityId": -1027, - "componentID": -1207 - }, - { - "componentID": -1208, - "enabled": true, - "entityId": -1027, - "resourcePath": "", - "strength": 1, - "type": "Liquefaction", - "version": 3 - }, - { - "type": "EntityIdentifier", - "name": "形变", - "id": -1027 - } - ] - }, - { - "id": -1028, - "name": "美体", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1028, - "componentID": -1209 - }, - { - "alignPoints": [ - 0 - ], - "isBodyDetectSmooth": true, - "scalePivotPoint1": 0, - "scalePivotPoint2": 1, - "type": "BodyTracking", - "enabled": false, - "version": 1, - "entityId": -1028, - "componentID": -1210 - }, - { - "longLegStrength": 0, - "slimWaistStrength": 0, - "thinBodyStrength": 0, - "thinShoulderStrength": 0, - "type": "BeautyBody", - "enabled": true, - "version": 1, - "entityId": -1028, - "componentID": -1211 - }, - { - "type": "EntityIdentifier", - "name": "美体", - "id": -1028 - } - ] - }, - { - "id": -1029, - "name": "滤镜", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1029, - "componentID": -1212 - }, - { - "enabled": true, - "entityId": -1029, - "src": "", - "type": "LUTFilter", - "version": 2, - "componentID": -1213, - "intensity": 1 - }, - { - "type": "EntityIdentifier", - "name": "滤镜", - "id": -1029 - } - ] - }, - { - "id": -1030, - "name": "美颜", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1030, - "componentID": -1235 - }, - { - "alignPoints": [ - 64 - ], - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isRefine": true, - "isWaitFirstFrameDetect": false, - "isAllFrameFaceDetect": false, - "type": "FaceTracking", - "enabled": true, - "entityId": -1030, - "componentID": -1214 - }, - { - "componentID": -1215, - "deepSmoothAlpha": 0, - "beautyVersion": "v7", - "eBuiltInMode": "custom", - "enabled": true, - "entityId": -1030, - "eyeLightenAlpha": 0, - "eyePouchAlpha": 0.5, - "eyebrowContrastAlpha": 0, - "faceFeatureBlendFaceAlpha": 0, - "faceFeatureTeethLutAlpha": 0.2, - "faceFeatureBlendFaceAlphaSoftlight": 0.4, - "lipsType": 0, - "lipsMaskPath": "images/beauty/lips_shanhuse.png", - "beautyMultiplyPath": "images/beauty/multiply_dongshang_1.png", - "softLightPath": "images/beauty/softlight_jianling.png", - "faceFeatureBlendFaceAlphaRedCheek": 0.2, - "faceFeatureLipsLutAlpha": 0.3, - "imageContrastAlpha": 0, - "lutClearAlpha": 0.2, - "lutFoundationAlpha": 0.3, - "skinColorSlider": 0, - "type": "Beauty", - "wrinkleAlpha": 0.3, - "version": 16 - }, - { - "type": "EntityIdentifier", - "name": "美颜", - "id": -1030 - } - ] - } - ], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1024, - "componentID": -1217, - "objectEnabled": true - }, - { - "componentID": -1218, - "enabled": true, - "entityId": -1024, - "renderTargetKey": "RenderTarget", - "type": "Camera", - "version": 8 - }, - { - "type": "EntityIdentifier", - "name": "摄像头", - "id": -1024 - } - ] - } - ], - "components": [ - { - "anchor": { - "bottom": 0, - "left": 0, - "right": 0, - "top": 0 - }, - "offset": { - "bottom": 0, - "left": 0, - "right": 0, - "top": 0 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "rotation": { - "w": 0, - "x": 0, - "y": 0, - "z": 0 - }, - "entityId": -1016, - "componentID": -1219, - "type": "ScreenTransform", - "enabled": true, - "version": 2, - "objectEnabled": true - }, - { - "enabled": true, - "entityId": -1016, - "tips": "提示语", - "type": "Tips", - "version": 17, - "image": "", - "componentID": -1230 - }, - { - "type": "EntityIdentifier", - "name": "拍摄模板", - "id": -1016 - } - ], - "enabled": true, - "version": 0, - "inputFormats": [ - { - "key": "DeviceCameraTexture", - "type": "TextureData", - "properties": {} - } - ] - }, - "inputSources": { - "RenderTarget": { - "key": "RenderTarget", - "path": "RenderTarget.rdt", - "hash": "1007a798a17b0b0b3b7e21c6a2e8b805", - "label": "RenderTarget.rdt", - "type": "RenderTarget", - "inputKey": "DeviceCameraTexture" - }, - "DeviceCameraTexture": { - "key": "DeviceCameraTexture", - "path": "DeviceCameraTexture.tex", - "hash": "18167426118cbf6da2972283f3318e72", - "label": "DeviceCameraTexture.tex", - "type": "TextureData" - } - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyV5.json b/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyV5.json deleted file mode 100644 index 14f443b9..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyV5.json +++ /dev/null @@ -1,743 +0,0 @@ -{ - "root": { - "id": -1016, - "name": "拍摄模板", - "children": [ - { - "id": -1024, - "name": "摄像头", - "children": [ - { - "id": -1031, - "name": "去噪", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "top": 1, - "bottom": -1, - "left": -1, - "right": 1 - }, - "offset": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "objectEnabled": true, - "enabled": true, - "entityId": -1031, - "componentID": -1231 - }, - { - "componentID": -1232, - "effectStrength": 0, - "effectType": "denoise", - "enabled": true, - "entityId": -1031, - "subEffectType": "", - "type": "PostEffect", - "version": 8 - }, - { - "type": "EntityIdentifier", - "name": "去噪", - "id": -1031 - } - ] - }, - { - "id": -1025, - "name": "磨皮", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1025, - "componentID": -1201, - "objectEnabled": true - }, - { - "smoothVersion": "v5", - "componentID": -1202, - "curveAdjustAlpha": 1, - "enabled": true, - "entityId": -1025, - "faceColorAlpha": 1, - "sharpenStrength": 1, - "smooth": 0.0, - "type": "Smooth", - "version": 7 - }, - { - "type": "EntityIdentifier", - "name": "磨皮", - "id": -1025 - } - ] - }, - { - "id": -1026, - "name": "美型", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1026, - "componentID": -1203, - "objectEnabled": true - }, - { - "alignPoints": [ - 64 - ], - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isAllFrameFaceDetect": false, - "isRefine": true, - "isWaitFirstFrameDetect": false, - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "type": "FaceTracking", - "enabled": true, - "version": 1, - "entityId": -1026, - "componentID": -1204 - }, - { - "basicFace": 0, - "chin": 0, - "componentID": -1205, - "enabled": true, - "enlargeEye": 0, - "entityId": -1026, - "eyeAngle": 0, - "eyeDistance": 0, - "foreHead": 0, - "mouthHeight": 0, - "mouthSize": 0, - "mouthWidth": 0, - "cheekboneThin": 0, - "noseHeight": 0, - "noseSize": 0, - "noseWing": 0, - "shortFace": 0, - "thinFace": 0, - "type": "Stretch", - "vFace": 0, - "version": 91 - }, - { - "type": "EntityIdentifier", - "name": "美型", - "id": -1026 - } - ] - }, - { - "id": -1027, - "name": "形变", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1027, - "componentID": -1206, - "objectEnabled": true - }, - { - "alignPoints": [ - 64 - ], - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isAllFrameFaceDetect": false, - "isRefine": true, - "isWaitFirstFrameDetect": false, - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "type": "FaceTracking", - "enabled": true, - "version": 1, - "entityId": -1027, - "componentID": -1207 - }, - { - "componentID": -1208, - "enabled": true, - "entityId": -1027, - "resourcePath": "", - "strength": 1, - "type": "Liquefaction", - "version": 3 - }, - { - "type": "EntityIdentifier", - "name": "形变", - "id": -1027 - } - ] - }, - { - "id": -1028, - "name": "美体", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1028, - "componentID": -1209 - }, - { - "alignPoints": [ - 0 - ], - "isBodyDetectSmooth": true, - "scalePivotPoint1": 0, - "scalePivotPoint2": 1, - "type": "BodyTracking", - "enabled": false, - "version": 1, - "entityId": -1028, - "componentID": -1210 - }, - { - "longLegStrength": 0, - "slimWaistStrength": 0, - "thinBodyStrength": 0, - "thinShoulderStrength": 0, - "type": "BeautyBody", - "enabled": true, - "version": 1, - "entityId": -1028, - "componentID": -1211 - }, - { - "type": "EntityIdentifier", - "name": "美体", - "id": -1028 - } - ] - }, - { - "id": -1029, - "name": "滤镜", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1029, - "componentID": -1212 - }, - { - "enabled": true, - "entityId": -1029, - "src": "", - "type": "LUTFilter", - "version": 2, - "componentID": -1213, - "intensity": 1 - }, - { - "type": "EntityIdentifier", - "name": "滤镜", - "id": -1029 - } - ] - }, - { - "id": -1030, - "name": "美颜", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1030, - "componentID": -1214 - }, - { - "alignPoints": [ - 64 - ], - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isRefine": true, - "isWaitFirstFrameDetect": false, - "isAllFrameFaceDetect": false, - "type": "FaceTracking", - "enabled": true, - "entityId": -1030, - "componentID": -1215 - }, - { - "componentID": -1216, - "deepSmoothAlpha": 0, - "eBuiltInMode": "custom", - "enabled": true, - "entityId": -1030, - "eyeLightenAlpha": 0, - "eyePouchAlpha": 0, - "eyebrowContrastAlpha": 0, - "faceFeatureBlendFaceAlpha": 0, - "faceFeatureTeethLutAlpha": 0, - "imageContrastAlpha": 0, - "skinColorSlider": 0, - "type": "Beauty", - "wrinkleAlpha": 0, - "version": 16 - }, - { - "type": "EntityIdentifier", - "name": "美颜", - "id": -1030 - } - ] - } - ], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1024, - "componentID": -1217, - "objectEnabled": true - }, - { - "componentID": -1218, - "enabled": true, - "entityId": -1024, - "renderTargetKey": "RenderTarget", - "type": "Camera", - "version": 8 - }, - { - "type": "EntityIdentifier", - "name": "摄像头", - "id": -1024 - } - ] - } - ], - "components": [ - { - "anchor": { - "bottom": 0, - "left": 0, - "right": 0, - "top": 0 - }, - "offset": { - "bottom": 0, - "left": 0, - "right": 0, - "top": 0 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "rotation": { - "w": 0, - "x": 0, - "y": 0, - "z": 0 - }, - "entityId": -1016, - "componentID": -1219, - "type": "ScreenTransform", - "enabled": true, - "version": 2, - "objectEnabled": true - }, - { - "enabled": true, - "entityId": -1016, - "tips": "提示语", - "type": "Tips", - "version": 17, - "image": "", - "componentID": -1230 - }, - { - "type": "EntityIdentifier", - "name": "拍摄模板", - "id": -1016 - } - ], - "enabled": true, - "version": 0, - "inputFormats": [ - { - "key": "DeviceCameraTexture", - "type": "TextureData", - "properties": {} - } - ] - }, - "inputSources": { - "RenderTarget": { - "key": "RenderTarget", - "path": "RenderTarget.rdt", - "hash": "1007a798a17b0b0b3b7e21c6a2e8b805", - "label": "RenderTarget.rdt", - "type": "RenderTarget", - "inputKey": "DeviceCameraTexture" - }, - "DeviceCameraTexture": { - "key": "DeviceCameraTexture", - "path": "DeviceCameraTexture.tex", - "hash": "18167426118cbf6da2972283f3318e72", - "label": "DeviceCameraTexture.tex", - "type": "TextureData" - } - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyV6.json b/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyV6.json deleted file mode 100644 index 2c148777..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyV6.json +++ /dev/null @@ -1,743 +0,0 @@ -{ - "root": { - "id": -1016, - "name": "拍摄模板", - "children": [ - { - "id": -1024, - "name": "摄像头", - "children": [ - { - "id": -1031, - "name": "去噪", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "top": 1, - "bottom": -1, - "left": -1, - "right": 1 - }, - "offset": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "objectEnabled": true, - "enabled": true, - "entityId": -1031, - "componentID": -1231 - }, - { - "componentID": -1232, - "effectStrength": 0, - "effectType": "denoise", - "enabled": true, - "entityId": -1031, - "subEffectType": "", - "type": "PostEffect", - "version": 8 - }, - { - "type": "EntityIdentifier", - "name": "去噪", - "id": -1031 - } - ] - }, - { - "id": -1025, - "name": "磨皮", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1025, - "componentID": -1201, - "objectEnabled": true - }, - { - "smoothVersion": "v6", - "componentID": -1202, - "curveAdjustAlpha": 1, - "enabled": true, - "entityId": -1025, - "faceColorAlpha": 1, - "sharpenStrength": 1, - "smooth": 0.0, - "type": "Smooth", - "version": 7 - }, - { - "type": "EntityIdentifier", - "name": "磨皮", - "id": -1025 - } - ] - }, - { - "id": -1026, - "name": "美型", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1026, - "componentID": -1203, - "objectEnabled": true - }, - { - "alignPoints": [ - 64 - ], - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isAllFrameFaceDetect": false, - "isRefine": true, - "isWaitFirstFrameDetect": false, - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "type": "FaceTracking", - "enabled": true, - "version": 1, - "entityId": -1026, - "componentID": -1204 - }, - { - "basicFace": 0, - "chin": 0, - "componentID": -1205, - "enabled": true, - "enlargeEye": 0, - "entityId": -1026, - "eyeAngle": 0, - "eyeDistance": 0, - "foreHead": 0, - "mouthHeight": 0, - "mouthSize": 0, - "mouthWidth": 0, - "cheekboneThin": 0, - "noseHeight": 0, - "noseSize": 0, - "noseWing": 0, - "shortFace": 0, - "thinFace": 0, - "type": "Stretch", - "vFace": 0, - "version": 91 - }, - { - "type": "EntityIdentifier", - "name": "美型", - "id": -1026 - } - ] - }, - { - "id": -1027, - "name": "形变", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1027, - "componentID": -1206, - "objectEnabled": true - }, - { - "alignPoints": [ - 64 - ], - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isAllFrameFaceDetect": false, - "isRefine": true, - "isWaitFirstFrameDetect": false, - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "type": "FaceTracking", - "enabled": true, - "version": 1, - "entityId": -1027, - "componentID": -1207 - }, - { - "componentID": -1208, - "enabled": true, - "entityId": -1027, - "resourcePath": "", - "strength": 1, - "type": "Liquefaction", - "version": 3 - }, - { - "type": "EntityIdentifier", - "name": "形变", - "id": -1027 - } - ] - }, - { - "id": -1028, - "name": "美体", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1028, - "componentID": -1209 - }, - { - "alignPoints": [ - 0 - ], - "isBodyDetectSmooth": true, - "scalePivotPoint1": 0, - "scalePivotPoint2": 1, - "type": "BodyTracking", - "enabled": false, - "version": 1, - "entityId": -1028, - "componentID": -1210 - }, - { - "longLegStrength": 0, - "slimWaistStrength": 0, - "thinBodyStrength": 0, - "thinShoulderStrength": 0, - "type": "BeautyBody", - "enabled": true, - "version": 1, - "entityId": -1028, - "componentID": -1211 - }, - { - "type": "EntityIdentifier", - "name": "美体", - "id": -1028 - } - ] - }, - { - "id": -1029, - "name": "滤镜", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1029, - "componentID": -1212 - }, - { - "enabled": true, - "entityId": -1029, - "src": "", - "type": "LUTFilter", - "version": 2, - "componentID": -1213, - "intensity": 1 - }, - { - "type": "EntityIdentifier", - "name": "滤镜", - "id": -1029 - } - ] - }, - { - "id": -1030, - "name": "美颜", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1030, - "componentID": -1214 - }, - { - "alignPoints": [ - 64 - ], - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isRefine": true, - "isWaitFirstFrameDetect": false, - "isAllFrameFaceDetect": false, - "type": "FaceTracking", - "enabled": true, - "entityId": -1030, - "componentID": -1215 - }, - { - "componentID": -1216, - "deepSmoothAlpha": 0, - "eBuiltInMode": "custom", - "enabled": true, - "entityId": -1030, - "eyeLightenAlpha": 0, - "eyePouchAlpha": 0, - "eyebrowContrastAlpha": 0, - "faceFeatureBlendFaceAlpha": 0, - "faceFeatureTeethLutAlpha": 0, - "imageContrastAlpha": 0, - "skinColorSlider": 0, - "type": "Beauty", - "wrinkleAlpha": 0, - "version": 16 - }, - { - "type": "EntityIdentifier", - "name": "美颜", - "id": -1030 - } - ] - } - ], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1024, - "componentID": -1217, - "objectEnabled": true - }, - { - "componentID": -1218, - "enabled": true, - "entityId": -1024, - "renderTargetKey": "RenderTarget", - "type": "Camera", - "version": 8 - }, - { - "type": "EntityIdentifier", - "name": "摄像头", - "id": -1024 - } - ] - } - ], - "components": [ - { - "anchor": { - "bottom": 0, - "left": 0, - "right": 0, - "top": 0 - }, - "offset": { - "bottom": 0, - "left": 0, - "right": 0, - "top": 0 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "rotation": { - "w": 0, - "x": 0, - "y": 0, - "z": 0 - }, - "entityId": -1016, - "componentID": -1219, - "type": "ScreenTransform", - "enabled": true, - "version": 2, - "objectEnabled": true - }, - { - "enabled": true, - "entityId": -1016, - "tips": "提示语", - "type": "Tips", - "version": 17, - "image": "", - "componentID": -1230 - }, - { - "type": "EntityIdentifier", - "name": "拍摄模板", - "id": -1016 - } - ], - "enabled": true, - "version": 0, - "inputFormats": [ - { - "key": "DeviceCameraTexture", - "type": "TextureData", - "properties": {} - } - ] - }, - "inputSources": { - "RenderTarget": { - "key": "RenderTarget", - "path": "RenderTarget.rdt", - "hash": "1007a798a17b0b0b3b7e21c6a2e8b805", - "label": "RenderTarget.rdt", - "type": "RenderTarget", - "inputKey": "DeviceCameraTexture" - }, - "DeviceCameraTexture": { - "key": "DeviceCameraTexture", - "path": "DeviceCameraTexture.tex", - "hash": "18167426118cbf6da2972283f3318e72", - "label": "DeviceCameraTexture.tex", - "type": "TextureData" - } - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyV7.json b/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyV7.json deleted file mode 100644 index a9b60e68..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyV7.json +++ /dev/null @@ -1,2468 +0,0 @@ -{ - "root": { - "id": -1016, - "name": "拍摄模板", - "children": [ - { - "id": -1024, - "name": "摄像头", - "children": [ - { - "id": -1031, - "name": "去噪", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "top": 1, - "bottom": -1, - "left": -1, - "right": 1 - }, - "offset": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "objectEnabled": true, - "enabled": true, - "entityId": -1031, - "componentID": -1201 - }, - { - "componentID": -1202, - "effectStrength": 0, - "effectType": "denoise", - "enabled": true, - "entityId": -1031, - "subEffectType": "", - "type": "PostEffect", - "version": 8 - }, - { - "type": "EntityIdentifier", - "name": "去噪", - "id": -1031 - } - ] - }, - { - "id": -1025, - "name": "磨皮", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1025, - "componentID": -1203, - "objectEnabled": true - }, - { - "smoothVersion": "v7", - "componentID": -1204, - "curveAdjustAlpha": 1, - "enabled": true, - "entityId": -1025, - "faceColorAlpha": 1, - "sharpenStrength": 0.05, - "smooth": 0.6, - "type": "Smooth", - "version": 7 - }, - { - "type": "EntityIdentifier", - "name": "磨皮", - "id": -1025 - } - ] - }, - { - "id": -1027, - "name": "形变", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1027, - "componentID": -1206, - "objectEnabled": true - }, - { - "alignPoints": [ - 64 - ], - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isAllFrameFaceDetect": false, - "isRefine": true, - "isWaitFirstFrameDetect": false, - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "type": "FaceTracking", - "enabled": true, - "version": 1, - "entityId": -1027, - "componentID": -1207 - }, - { - "componentID": -1208, - "enabled": true, - "entityId": -1027, - "resourcePath": "", - "strength": 1, - "type": "Liquefaction", - "version": 3 - }, - { - "type": "EntityIdentifier", - "name": "形变", - "id": -1027 - } - ] - }, - { - "id": -1028, - "name": "美体", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1028, - "componentID": -1208 - }, - { - "alignPoints": [ - 0 - ], - "isBodyDetectSmooth": true, - "scalePivotPoint1": 0, - "scalePivotPoint2": 1, - "type": "BodyTracking", - "enabled": false, - "version": 1, - "entityId": -1028, - "componentID": -1209 - }, - { - "longLegStrength": 0, - "slimWaistStrength": 0, - "thinBodyStrength": 0, - "thinShoulderStrength": 0, - "type": "BeautyBody", - "enabled": true, - "version": 1, - "entityId": -1028, - "componentID": -1210 - }, - { - "type": "EntityIdentifier", - "name": "美体", - "id": -1028 - } - ] - }, - { - "id": -1029, - "name": "滤镜", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1029, - "componentID": -1211 - }, - { - "enabled": true, - "entityId": -1029, - "src": "", - "type": "LUTFilter", - "version": 2, - "componentID": -1212, - "intensity": 1 - }, - { - "type": "EntityIdentifier", - "name": "滤镜", - "id": -1029 - } - ] - }, - { - "id": -1030, - "name": "美颜", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1030, - "componentID": -1213 - }, - { - "alignPoints": [ - 64 - ], - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isRefine": true, - "isWaitFirstFrameDetect": false, - "isAllFrameFaceDetect": false, - "type": "FaceTracking", - "enabled": true, - "entityId": -1030, - "componentID": -1214 - }, - { - "componentID": -1215, - "deepSmoothAlpha": 0, - "beautyVersion": "v7", - "eBuiltInMode": "custom", - "enabled": true, - "entityId": -1030, - "eyeLightenAlpha": 0, - "eyePouchAlpha": 0.5, - "eyebrowContrastAlpha": 0, - "faceFeatureBlendFaceAlpha": 0, - "faceFeatureTeethLutAlpha": 0.2, - "faceFeatureBlendFaceAlphaSoftlight": 0.4, - "lipsType": 2, - "lipsMaskPath": "images/beauty/lips_mitaose.png", - "beautyMultiplyPath": "images/beauty/saihong_jianyue.png", - "softLightPath": "images/beauty/liti_ziran.png", - "faceFeatureBlendFaceAlphaRedCheek": 0.2, - "faceFeatureLipsLutAlpha": 0.3, - "imageContrastAlpha": 0, - "lutClearAlpha": 0.2, - "lutFoundationAlpha": 0.3, - "skinColorSlider": 0, - "type": "Beauty", - "wrinkleAlpha": 0.3, - "version": 16 - }, - { - "type": "EntityIdentifier", - "name": "美颜", - "id": -1030 - } - ] - }, - { - "id": -1040, - "name": "大眼", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1040, - "componentID": -1216 - }, - { - "alignPoints": [ - 64 - ], - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isRefine": true, - "isWaitFirstFrameDetect": false, - "isAllFrameFaceDetect": false, - "xAxisTrack": true, - "yAxisTrack": true, - "xAxisRotateTrack": true, - "yAxisRotateTrack": true, - "zAxisRotateTrack": true, - "xAxisScale": true, - "yAxisScale": true, - "genderBinding": "", - "type": "FaceTracking", - "enabled": true, - "entityId": -1040, - "componentID": -1217 - }, - { - "componentID": -1218, - "eSelectedIndex": 0, - "editMode": false, - "enabled": true, - "entityId": -1040, - "enlargeeyeFactor": 0.3, - "liquefactionParams": [ - { - "direction": 0, - "keepRatio": false, - "positionX": 364, - "positionY": 592, - "radiusX": 80, - "radiusY": 70, - "strength": 6, - "symmetry": true, - "visible": true - } - ], - "type": "LiquefactionV6", - "version": 375 - }, - { - "type": "EntityIdentifier", - "name": "大眼", - "id": -1040 - } - ] - }, - { - "id": -1033, - "name": "小脸", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1033, - "componentID": -1219 - }, - { - "cheekboneThin": 0, - "chin": 0, - "componentID": -1220, - "editMode": false, - "enabled": true, - "enlargeEye": 0, - "entityId": -1033, - "eyeAngle": 0, - "eyeDistance": 0, - "foreHead": 0, - "height": 2048, - "lastPoints": [], - "mouthHeight": 0, - "mouthPosition": 0, - "mouthSize": 0, - "mouthWidth": 0, - "noseHeight": 0, - "noseSize": 0, - "noseWing": 0, - "overallFactor": 0, - "pinchFaceEnabled": true, - "points": [ - { - "positionX": 377.0940246582031, - "positionY": 974.9481201171875, - "fixed": true - }, - { - "positionX": 414.4358825683594, - "positionY": 1168.5355224609375, - "fixed": true - }, - { - "positionX": 479.2079162597656, - "positionY": 1305.097412109375, - "fixed": true - }, - { - "positionX": 571.539306640625, - "positionY": 1419.6964111328125, - "fixed": true - }, - { - "positionX": 646.6416015625, - "positionY": 1466.5675048828125, - "fixed": true - }, - { - "positionX": 767.4573974609375, - "positionY": 1516.9371337890625, - "fixed": true - }, - { - "positionX": 889.3583984375, - "positionY": 1466.5675048828125, - "fixed": true - }, - { - "positionX": 964.4608764648438, - "positionY": 1419.696533203125, - "fixed": true - }, - { - "positionX": 1056.7938232421875, - "positionY": 1305.0975341796875, - "fixed": true - }, - { - "positionX": 1121.5655517578125, - "positionY": 1168.5355224609375, - "fixed": true - }, - { - "positionX": 1158.906982421875, - "positionY": 974.9480590820312, - "fixed": true - }, - { - "positionX": 420, - "positionY": 855, - "fixed": true - }, - { - "positionX": 506, - "positionY": 843, - "fixed": true - }, - { - "positionX": 700, - "positionY": 864, - "fixed": true - }, - { - "positionX": 499, - "positionY": 806, - "fixed": true - }, - { - "positionX": 1116, - "positionY": 855, - "fixed": true - }, - { - "positionX": 1030, - "positionY": 843, - "fixed": true - }, - { - "positionX": 836, - "positionY": 864, - "fixed": true - }, - { - "positionX": 1037, - "positionY": 806, - "fixed": true - }, - { - "positionX": 512, - "positionY": 939, - "fixed": true - }, - { - "positionX": 544, - "positionY": 962, - "fixed": true - }, - { - "positionX": 582, - "positionY": 971, - "fixed": true - }, - { - "positionX": 623, - "positionY": 969, - "fixed": true - }, - { - "positionX": 666, - "positionY": 966, - "fixed": true - }, - { - "positionX": 634, - "positionY": 926, - "fixed": true - }, - { - "positionX": 595, - "positionY": 907, - "fixed": true - }, - { - "positionX": 550, - "positionY": 913, - "fixed": true - }, - { - "positionX": 1024, - "positionY": 939, - "fixed": true - }, - { - "positionX": 992, - "positionY": 962, - "fixed": true - }, - { - "positionX": 954, - "positionY": 971, - "fixed": true - }, - { - "positionX": 913, - "positionY": 969, - "fixed": true - }, - { - "positionX": 870, - "positionY": 966, - "fixed": true - }, - { - "positionX": 902, - "positionY": 926, - "fixed": true - }, - { - "positionX": 941, - "positionY": 907, - "fixed": true - }, - { - "positionX": 986, - "positionY": 913, - "fixed": true - }, - { - "positionX": 719, - "positionY": 966, - "fixed": true - }, - { - "positionX": 708, - "positionY": 1092, - "fixed": true - }, - { - "positionX": 662.1005859375, - "positionY": 1187.38427734375, - "fixed": true - }, - { - "positionX": 705.1005859375, - "positionY": 1209.38427734375, - "fixed": true - }, - { - "positionX": 767.6176147460938, - "positionY": 1220.7552490234375, - "fixed": true - }, - { - "positionX": 830.8994140625, - "positionY": 1209.38427734375, - "fixed": true - }, - { - "positionX": 873.8994140625, - "positionY": 1187.38427734375, - "fixed": true - }, - { - "positionX": 828, - "positionY": 1092, - "fixed": true - }, - { - "positionX": 817, - "positionY": 966, - "fixed": true - }, - { - "positionX": 768, - "positionY": 1148, - "fixed": true - }, - { - "positionX": 613.1290283203125, - "positionY": 1278.2718505859375, - "fixed": true - }, - { - "positionX": 922.8709716796875, - "positionY": 1278.2718505859375, - "fixed": true - }, - { - "positionX": 766.826904296875, - "positionY": 1382.09619140625, - "fixed": true - }, - { - "positionX": 843.4019775390625, - "positionY": 1315.479248046875, - "fixed": true - }, - { - "positionX": 767.7726440429688, - "positionY": 1326.3831787109375, - "fixed": true - }, - { - "positionX": 692.5980224609375, - "positionY": 1315.479248046875, - "fixed": true - }, - { - "positionX": 670.0049438476562, - "positionY": 1271.65576171875, - "fixed": true - }, - { - "positionX": 722.720458984375, - "positionY": 1264.085205078125, - "fixed": true - }, - { - "positionX": 813.279541015625, - "positionY": 1264.085205078125, - "fixed": true - }, - { - "positionX": 865.9950561523438, - "positionY": 1271.65576171875, - "fixed": true - }, - { - "positionX": 838.5339965820312, - "positionY": 1291.795654296875, - "fixed": true - }, - { - "positionX": 767.968994140625, - "positionY": 1297.7489013671875, - "fixed": true - }, - { - "positionX": 697.4660034179688, - "positionY": 1291.795654296875, - "fixed": true - }, - { - "positionX": 768, - "positionY": 966, - "fixed": true - }, - { - "positionX": 768, - "positionY": 864, - "fixed": true - }, - { - "positionX": 580, - "positionY": 550, - "fixed": true - }, - { - "positionX": 956, - "positionY": 550, - "fixed": true - }, - { - "positionX": 768, - "positionY": 538, - "fixed": true - }, - { - "positionX": 418, - "positionY": 655, - "fixed": true - }, - { - "positionX": 1118, - "positionY": 655, - "fixed": true - }, - { - "positionX": 529, - "positionY": 1148, - "fixed": true - }, - { - "positionX": 1007, - "positionY": 1148, - "fixed": true - }, - { - "positionX": 593.6622314453125, - "positionY": 1340.677001953125, - "fixed": true - }, - { - "positionX": 942.3377685546875, - "positionY": 1340.677001953125, - "fixed": true - }, - { - "positionX": 768, - "positionY": 1056, - "fixed": true - }, - { - "positionX": 670, - "positionY": 683, - "fixed": true - }, - { - "positionX": 866, - "positionY": 683, - "fixed": true - }, - { - "positionX": 559, - "positionY": 721, - "fixed": true - }, - { - "positionX": 977, - "positionY": 721, - "fixed": true - }, - { - "positionX": 678.6865234375, - "positionY": 1352.2061767578125, - "fixed": true - }, - { - "positionX": 857.3134765625, - "positionY": 1352.2061767578125, - "fixed": true - }, - { - "positionX": 766.418701171875, - "positionY": 1266.2930908203125, - "fixed": true - }, - { - "positionX": 664.6406860351562, - "positionY": 1397.7801513671875, - "fixed": true - }, - { - "positionX": 871.3593139648438, - "positionY": 1397.7801513671875, - "fixed": true - }, - { - "positionX": 767.3281860351562, - "positionY": 1432.434814453125, - "fixed": true - }, - { - "positionX": 390.493896484375, - "positionY": 1088.270751953125, - "fixed": true - }, - { - "positionX": 443.5300598144531, - "positionY": 1235.6744384765625, - "fixed": true - }, - { - "positionX": 520.4048461914062, - "positionY": 1372.5152587890625, - "fixed": true - }, - { - "positionX": 437, - "positionY": 956, - "fixed": true - }, - { - "positionX": 462.1441345214844, - "positionY": 1049.9522705078125, - "fixed": true - }, - { - "positionX": 1145.5072021484375, - "positionY": 1088.270751953125, - "fixed": true - }, - { - "positionX": 1092.4725341796875, - "positionY": 1235.6744384765625, - "fixed": true - }, - { - "positionX": 1015.59619140625, - "positionY": 1372.515380859375, - "fixed": true - }, - { - "positionX": 1099, - "positionY": 956, - "fixed": true - }, - { - "positionX": 1073.856201171875, - "positionY": 1049.9522705078125, - "fixed": true - }, - { - "positionX": 365.8800964355469, - "positionY": 891.4121704101562, - "fixed": true - }, - { - "positionX": 1170.1202392578125, - "positionY": 891.4121704101562, - "fixed": true - }, - { - "positionX": 420, - "positionY": 787, - "fixed": true - }, - { - "positionX": 1116, - "positionY": 787, - "fixed": true - } - ], - "strength": 100, - "stretchEnabled": false, - "symmetry": true, - "thinFace": 0, - "type": "FacialReform", - "vFace": 0, - "version": 2074, - "width": 1536 - }, - { - "alignPoints": [ - 64 - ], - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isRefine": true, - "isWaitFirstFrameDetect": false, - "isAllFrameFaceDetect": false, - "xAxisTrack": true, - "yAxisTrack": true, - "xAxisRotateTrack": true, - "yAxisRotateTrack": true, - "zAxisRotateTrack": true, - "xAxisScale": true, - "yAxisScale": true, - "genderBinding": "", - "type": "FaceTracking", - "enabled": true, - "entityId": -1033, - "componentID": -1221 - }, - { - "type": "EntityIdentifier", - "name": "小脸", - "id": -1033, - "enabled": true - } - ] - }, - { - "id": -1032, - "name": "人脸形变v7", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1032, - "componentID": -1222 - }, - { - "overallFactor": 1, - "vFace": 0, - "chin": 0, - "thinFace": 0, - "cheekboneThin": 1, - "enlargeEye": 0, - "noseSize": 0.3, - "foreHead": 0, - "eyeDistance": 0, - "shortFace": 0, - "eyeAngle": 0, - "noseWing": 0, - "noseHeight": 0, - "mouthSize": 0, - "mouthHeight": 0, - "mouthWidth": 0, - "mouthPosition": 0, - "points": [ - { - "positionX": 365, - "positionY": 975, - "fixed": false - }, - { - "positionX": 397, - "positionY": 1171, - "fixed": false - }, - { - "positionX": 457, - "positionY": 1323, - "fixed": false - }, - { - "positionX": 559, - "positionY": 1446, - "fixed": false - }, - { - "positionX": 623, - "positionY": 1491, - "fixed": false - }, - { - "positionX": 768, - "positionY": 1538, - "fixed": true - }, - { - "positionX": 913, - "positionY": 1491, - "fixed": false - }, - { - "positionX": 977, - "positionY": 1446, - "fixed": false - }, - { - "positionX": 1079, - "positionY": 1323, - "fixed": false - }, - { - "positionX": 1139, - "positionY": 1171, - "fixed": false - }, - { - "positionX": 1171, - "positionY": 975, - "fixed": false - }, - { - "positionX": 420, - "positionY": 855, - "fixed": true - }, - { - "positionX": 506, - "positionY": 843, - "fixed": false - }, - { - "positionX": 700, - "positionY": 864, - "fixed": false - }, - { - "positionX": 499, - "positionY": 806, - "fixed": true - }, - { - "positionX": 1116, - "positionY": 855, - "fixed": true - }, - { - "positionX": 1030, - "positionY": 843, - "fixed": false - }, - { - "positionX": 836, - "positionY": 864, - "fixed": false - }, - { - "positionX": 1037, - "positionY": 806, - "fixed": true - }, - { - "positionX": 512, - "positionY": 939, - "fixed": true - }, - { - "positionX": 544, - "positionY": 962, - "fixed": false - }, - { - "positionX": 582, - "positionY": 971, - "fixed": false - }, - { - "positionX": 623, - "positionY": 969, - "fixed": false - }, - { - "positionX": 666, - "positionY": 966, - "fixed": false - }, - { - "positionX": 634, - "positionY": 926, - "fixed": false - }, - { - "positionX": 595, - "positionY": 907, - "fixed": false - }, - { - "positionX": 550, - "positionY": 913, - "fixed": false - }, - { - "positionX": 1024, - "positionY": 939, - "fixed": true - }, - { - "positionX": 992, - "positionY": 962, - "fixed": false - }, - { - "positionX": 954, - "positionY": 971, - "fixed": false - }, - { - "positionX": 913, - "positionY": 969, - "fixed": false - }, - { - "positionX": 870, - "positionY": 966, - "fixed": false - }, - { - "positionX": 902, - "positionY": 926, - "fixed": false - }, - { - "positionX": 941, - "positionY": 907, - "fixed": false - }, - { - "positionX": 986, - "positionY": 913, - "fixed": false - }, - { - "positionX": 719, - "positionY": 966, - "fixed": false - }, - { - "positionX": 708, - "positionY": 1092, - "fixed": false - }, - { - "positionX": 661, - "positionY": 1188, - "fixed": false - }, - { - "positionX": 704, - "positionY": 1210, - "fixed": false - }, - { - "positionX": 768, - "positionY": 1218, - "fixed": false - }, - { - "positionX": 832, - "positionY": 1210, - "fixed": false - }, - { - "positionX": 875, - "positionY": 1188, - "fixed": false - }, - { - "positionX": 828, - "positionY": 1092, - "fixed": false - }, - { - "positionX": 817, - "positionY": 966, - "fixed": false - }, - { - "positionX": 768, - "positionY": 1148, - "fixed": false - }, - { - "positionX": 612, - "positionY": 1295, - "fixed": true - }, - { - "positionX": 924, - "positionY": 1295, - "fixed": true - }, - { - "positionX": 768, - "positionY": 1404, - "fixed": false - }, - { - "positionX": 847, - "positionY": 1331, - "fixed": false - }, - { - "positionX": 768, - "positionY": 1348, - "fixed": false - }, - { - "positionX": 689, - "positionY": 1331, - "fixed": false - }, - { - "positionX": 666, - "positionY": 1286, - "fixed": false - }, - { - "positionX": 723, - "positionY": 1278, - "fixed": false - }, - { - "positionX": 813, - "positionY": 1278, - "fixed": false - }, - { - "positionX": 870, - "positionY": 1286, - "fixed": false - }, - { - "positionX": 845, - "positionY": 1310, - "fixed": false - }, - { - "positionX": 768, - "positionY": 1316, - "fixed": false - }, - { - "positionX": 691, - "positionY": 1310, - "fixed": false - }, - { - "positionX": 768, - "positionY": 966, - "fixed": false - }, - { - "positionX": 768, - "positionY": 864, - "fixed": true - }, - { - "positionX": 580, - "positionY": 550, - "fixed": false - }, - { - "positionX": 956, - "positionY": 550, - "fixed": false - }, - { - "positionX": 768, - "positionY": 538, - "fixed": false - }, - { - "positionX": 418, - "positionY": 655, - "fixed": false - }, - { - "positionX": 1118, - "positionY": 655, - "fixed": false - }, - { - "positionX": 529, - "positionY": 1148, - "fixed": true - }, - { - "positionX": 1007, - "positionY": 1148, - "fixed": true - }, - { - "positionX": 591, - "positionY": 1350, - "fixed": false - }, - { - "positionX": 945, - "positionY": 1350, - "fixed": false - }, - { - "positionX": 768, - "positionY": 1056, - "fixed": false - }, - { - "positionX": 670, - "positionY": 683, - "fixed": true - }, - { - "positionX": 866, - "positionY": 683, - "fixed": true - }, - { - "positionX": 559, - "positionY": 721, - "fixed": false - }, - { - "positionX": 977, - "positionY": 721, - "fixed": false - }, - { - "positionX": 674, - "positionY": 1372, - "fixed": true - }, - { - "positionX": 862, - "positionY": 1372, - "fixed": true - }, - { - "positionX": 768, - "positionY": 1278, - "fixed": false - } - ], - "lastPoints": [], - "strength": 100, - "symmetry": true, - "editMode": false, - "width": 1536, - "height": 2048, - "stretchEnabled": true, - "pinchFaceEnabled": true, - "type": "FacialReform", - "enabled": true, - "entityId": -1032, - "componentID": -1223, - "version": 1 - }, - { - "alignPoints": [ - 64 - ], - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isRefine": true, - "isWaitFirstFrameDetect": false, - "isAllFrameFaceDetect": false, - "xAxisTrack": true, - "yAxisTrack": true, - "xAxisRotateTrack": true, - "yAxisRotateTrack": true, - "zAxisRotateTrack": true, - "xAxisScale": true, - "yAxisScale": true, - "genderBinding": "", - "type": "FaceTracking", - "enabled": true, - "entityId": -1032, - "componentID": -1224 - }, - { - "type": "EntityIdentifier", - "name": "人脸形变v7", - "id": -1032 - } - ] - }, - { - "id": -1034, - "name": "自然瘦脸", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1034, - "componentID": -1225 - }, - { - "cheekboneThin": 0, - "chin": 0, - "componentID": -1226, - "editMode": false, - "enabled": true, - "enlargeEye": 0.30000000000000004, - "entityId": -1034, - "eyeAngle": 0.10000000000000009, - "eyeDistance": 0.25, - "foreHead": 0, - "height": 2048, - "lastPoints": [], - "mouthHeight": 0, - "mouthPosition": 0, - "mouthSize": 0, - "mouthWidth": 0, - "noseHeight": 0.2, - "noseSize": 0.40000000000000013, - "noseWing": 0, - "overallFactor": 0.4, - "basicFaceEyelarge": 0, - "pinchFaceEnabled": true, - "points": [ - { - "positionX": 392.0104064941406, - "positionY": 966.646728515625, - "fixed": true - }, - { - "positionX": 424.6899108886719, - "positionY": 1160.541259765625, - "fixed": true - }, - { - "positionX": 511.9487609863281, - "positionY": 1306.074462890625, - "fixed": true - }, - { - "positionX": 596.3385620117188, - "positionY": 1381.8641357421875, - "fixed": true - }, - { - "positionX": 660.0175170898438, - "positionY": 1412.9744873046875, - "fixed": true - }, - { - "positionX": 767.317138671875, - "positionY": 1491.4183349609375, - "fixed": true - }, - { - "positionX": 875.8718872070312, - "positionY": 1412.962158203125, - "fixed": true - }, - { - "positionX": 935.34716796875, - "positionY": 1379.32421875, - "fixed": true - }, - { - "positionX": 1029.7938232421875, - "positionY": 1297.689208984375, - "fixed": true - }, - { - "positionX": 1107.4666748046875, - "positionY": 1157.3028564453125, - "fixed": true - }, - { - "positionX": 1143.990478515625, - "positionY": 966.646728515625, - "fixed": true - }, - { - "positionX": 420, - "positionY": 855, - "fixed": true - }, - { - "positionX": 506, - "positionY": 839.6893920898438, - "fixed": true - }, - { - "positionX": 692.8929443359375, - "positionY": 857.0098266601562, - "fixed": true - }, - { - "positionX": 499, - "positionY": 802.6893920898438, - "fixed": true - }, - { - "positionX": 1116, - "positionY": 855, - "fixed": true - }, - { - "positionX": 1030, - "positionY": 839.6893920898438, - "fixed": true - }, - { - "positionX": 843.1070556640625, - "positionY": 857.0098266601562, - "fixed": true - }, - { - "positionX": 1037, - "positionY": 802.6893920898438, - "fixed": true - }, - { - "positionX": 513.1281127929688, - "positionY": 950.0679321289062, - "fixed": true - }, - { - "positionX": 544.6527709960938, - "positionY": 970.9148559570312, - "fixed": true - }, - { - "positionX": 585.5798950195312, - "positionY": 972.0882568359375, - "fixed": true - }, - { - "positionX": 626.4053344726562, - "positionY": 968.7205810546875, - "fixed": true - }, - { - "positionX": 666.3204345703125, - "positionY": 968.0636596679688, - "fixed": true - }, - { - "positionX": 642.5635375976562, - "positionY": 922.6239013671875, - "fixed": true - }, - { - "positionX": 599.7583618164062, - "positionY": 911.7972412109375, - "fixed": true - }, - { - "positionX": 558.2445068359375, - "positionY": 923.4270629882812, - "fixed": true - }, - { - "positionX": 1022.8718872070312, - "positionY": 950.0679321289062, - "fixed": true - }, - { - "positionX": 991.3472290039062, - "positionY": 970.9148559570312, - "fixed": true - }, - { - "positionX": 950.4201049804688, - "positionY": 972.0882568359375, - "fixed": true - }, - { - "positionX": 909.5946655273438, - "positionY": 968.7205810546875, - "fixed": true - }, - { - "positionX": 869.6795654296875, - "positionY": 968.0636596679688, - "fixed": true - }, - { - "positionX": 893.4364624023438, - "positionY": 922.6239013671875, - "fixed": true - }, - { - "positionX": 936.2416381835938, - "positionY": 911.7972412109375, - "fixed": true - }, - { - "positionX": 977.7554931640625, - "positionY": 923.4270629882812, - "fixed": true - }, - { - "positionX": 719, - "positionY": 966, - "fixed": true - }, - { - "positionX": 714.8593139648438, - "positionY": 1102.2347412109375, - "fixed": true - }, - { - "positionX": 673.3064575195312, - "positionY": 1182.699951171875, - "fixed": true - }, - { - "positionX": 711.4496459960938, - "positionY": 1203.6878662109375, - "fixed": true - }, - { - "positionX": 767.4188842773438, - "positionY": 1216.0704345703125, - "fixed": true - }, - { - "positionX": 824.5503540039062, - "positionY": 1203.6878662109375, - "fixed": true - }, - { - "positionX": 862.6935424804688, - "positionY": 1182.699951171875, - "fixed": true - }, - { - "positionX": 821.1406860351562, - "positionY": 1102.2347412109375, - "fixed": true - }, - { - "positionX": 817, - "positionY": 966, - "fixed": true - }, - { - "positionX": 767.7044067382812, - "positionY": 1138.598876953125, - "fixed": true - }, - { - "positionX": 614.888671875, - "positionY": 1251.9876708984375, - "fixed": true - }, - { - "positionX": 921.111328125, - "positionY": 1251.9876708984375, - "fixed": true - }, - { - "positionX": 766.4959716796875, - "positionY": 1357.30322265625, - "fixed": true - }, - { - "positionX": 852.8787841796875, - "positionY": 1291.0240478515625, - "fixed": true - }, - { - "positionX": 766.7779541015625, - "positionY": 1307.046630859375, - "fixed": true - }, - { - "positionX": 683.1212158203125, - "positionY": 1291.0240478515625, - "fixed": true - }, - { - "positionX": 668.7772827148438, - "positionY": 1245.9910888671875, - "fixed": true - }, - { - "positionX": 727.4692993164062, - "positionY": 1244.43408203125, - "fixed": true - }, - { - "positionX": 808.5307006835938, - "positionY": 1244.43408203125, - "fixed": true - }, - { - "positionX": 867.2227172851562, - "positionY": 1245.9910888671875, - "fixed": true - }, - { - "positionX": 851.04150390625, - "positionY": 1268.3397216796875, - "fixed": true - }, - { - "positionX": 766.278076171875, - "positionY": 1280.4998779296875, - "fixed": true - }, - { - "positionX": 684.95849609375, - "positionY": 1268.3397216796875, - "fixed": true - }, - { - "positionX": 768, - "positionY": 966, - "fixed": true - }, - { - "positionX": 768.2948608398438, - "positionY": 860.6826782226562, - "fixed": true - }, - { - "positionX": 580, - "positionY": 550, - "fixed": true - }, - { - "positionX": 956, - "positionY": 550, - "fixed": true - }, - { - "positionX": 768, - "positionY": 538, - "fixed": true - }, - { - "positionX": 418, - "positionY": 655, - "fixed": true - }, - { - "positionX": 1118, - "positionY": 655, - "fixed": true - }, - { - "positionX": 526.6063232421875, - "positionY": 1138.6806640625, - "fixed": true - }, - { - "positionX": 1010.621826171875, - "positionY": 1138.8995361328125, - "fixed": true - }, - { - "positionX": 607.0260620117188, - "positionY": 1309.3126220703125, - "fixed": true - }, - { - "positionX": 923.7181396484375, - "positionY": 1317.06689453125, - "fixed": true - }, - { - "positionX": 768, - "positionY": 1056, - "fixed": true - }, - { - "positionX": 670, - "positionY": 683, - "fixed": true - }, - { - "positionX": 866, - "positionY": 683, - "fixed": true - }, - { - "positionX": 559, - "positionY": 721, - "fixed": true - }, - { - "positionX": 977, - "positionY": 721, - "fixed": true - }, - { - "positionX": 672.9261474609375, - "positionY": 1331.5426025390625, - "fixed": true - }, - { - "positionX": 863.0738525390625, - "positionY": 1331.5426025390625, - "fixed": true - }, - { - "positionX": 766.568603515625, - "positionY": 1248.2060546875, - "fixed": true - }, - { - "positionX": 672.6199340820312, - "positionY": 1371.67333984375, - "fixed": true - }, - { - "positionX": 860.5969848632812, - "positionY": 1369.945556640625, - "fixed": true - }, - { - "positionX": 766.186767578125, - "positionY": 1416.3792724609375, - "fixed": true - }, - { - "positionX": 412.3116455078125, - "positionY": 1086.68603515625, - "fixed": true - }, - { - "positionX": 465.0056457519531, - "positionY": 1225.9320068359375, - "fixed": true - }, - { - "positionX": 567.286865234375, - "positionY": 1357.969970703125, - "fixed": true - }, - { - "positionX": 447.096435546875, - "positionY": 952.1060180664062, - "fixed": true - }, - { - "positionX": 468.86627197265625, - "positionY": 1047.931884765625, - "fixed": true - }, - { - "positionX": 1118.267578125, - "positionY": 1087.3438720703125, - "fixed": true - }, - { - "positionX": 1074.6417236328125, - "positionY": 1228.001220703125, - "fixed": true - }, - { - "positionX": 964.3988037109375, - "positionY": 1355.176513671875, - "fixed": true - }, - { - "positionX": 1088.9036865234375, - "positionY": 952.1060180664062, - "fixed": true - }, - { - "positionX": 1065.43310546875, - "positionY": 1049.132568359375, - "fixed": true - }, - { - "positionX": 367.8214111328125, - "positionY": 890.7825927734375, - "fixed": true - }, - { - "positionX": 1168.2286376953125, - "positionY": 890.78759765625, - "fixed": true - }, - { - "positionX": 420, - "positionY": 787, - "fixed": true - }, - { - "positionX": 1116, - "positionY": 787, - "fixed": true - } - ], - "strength": 100, - "stretchEnabled": false, - "symmetry": true, - "thinFace": 0, - "shortFace": 0, - "reformSubType": "nature", - "type": "FacialReform", - "vFace": 0, - "version": 5665, - "width": 1536 - }, - { - "alignPoints": [ - 64 - ], - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isRefine": true, - "isWaitFirstFrameDetect": false, - "isAllFrameFaceDetect": false, - "xAxisTrack": true, - "yAxisTrack": true, - "xAxisRotateTrack": true, - "yAxisRotateTrack": true, - "zAxisRotateTrack": true, - "xAxisScale": true, - "yAxisScale": true, - "genderBinding": "", - "type": "FaceTracking", - "enabled": true, - "entityId": -1034, - "componentID": -1227 - }, - { - "type": "EntityIdentifier", - "name": "自然瘦脸", - "id": -1034, - "enabled": true - } - ] - } - ], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1024, - "componentID": -1301, - "objectEnabled": true - }, - { - "componentID": -1302, - "enabled": true, - "entityId": -1024, - "renderTargetKey": "RenderTarget", - "type": "Camera", - "version": 8 - }, - { - "type": "EntityIdentifier", - "name": "摄像头", - "id": -1024 - } - ] - } - ], - "components": [ - { - "anchor": { - "bottom": 0, - "left": 0, - "right": 0, - "top": 0 - }, - "offset": { - "bottom": 0, - "left": 0, - "right": 0, - "top": 0 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "rotation": { - "w": 0, - "x": 0, - "y": 0, - "z": 0 - }, - "entityId": -1016, - "componentID": -1303, - "type": "ScreenTransform", - "enabled": true, - "version": 2, - "objectEnabled": true - }, - { - "enabled": true, - "entityId": -1016, - "tips": "提示语", - "type": "Tips", - "version": 17, - "image": "", - "componentID": -1304 - }, - { - "type": "EntityIdentifier", - "name": "拍摄模板", - "id": -1016 - } - ], - "enabled": true, - "version": 0, - "inputFormats": [ - { - "key": "DeviceCameraTexture", - "type": "TextureData", - "properties": {} - } - ] - }, - "inputSources": { - "RenderTarget": { - "key": "RenderTarget", - "path": "RenderTarget.rdt", - "hash": "1007a798a17b0b0b3b7e21c6a2e8b805", - "label": "RenderTarget.rdt", - "type": "RenderTarget", - "inputKey": "DeviceCameraTexture" - }, - "DeviceCameraTexture": { - "key": "DeviceCameraTexture", - "path": "DeviceCameraTexture.tex", - "hash": "18167426118cbf6da2972283f3318e72", - "label": "DeviceCameraTexture.tex", - "type": "TextureData" - } - } -} diff --git a/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyV8.json b/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyV8.json deleted file mode 100644 index 30cd6466..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyV8.json +++ /dev/null @@ -1,2200 +0,0 @@ -{ - "root": { - "id": -1016, - "name": "拍摄模板", - "children": [ - { - "id": -1024, - "name": "摄像头", - "children": [ - { - "id": -1031, - "name": "去噪", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "top": 1, - "bottom": -1, - "left": -1, - "right": 1 - }, - "offset": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "objectEnabled": true, - "enabled": true, - "entityId": -1031, - "componentID": -1201 - }, - { - "componentID": -1202, - "effectStrength": 0, - "effectType": "denoise", - "enabled": true, - "entityId": -1031, - "subEffectType": "", - "type": "PostEffect", - "version": 8 - }, - { - "type": "EntityIdentifier", - "name": "去噪", - "id": -1031 - } - ] - }, - { - "id": -1028, - "name": "美体", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1028, - "componentID": -1208 - }, - { - "alignPoints": [ - 0 - ], - "isBodyDetectSmooth": true, - "scalePivotPoint1": 0, - "scalePivotPoint2": 1, - "type": "BodyTracking", - "enabled": false, - "version": 1, - "entityId": -1028, - "componentID": -1209 - }, - { - "longLegStrength": 0, - "slimWaistStrength": 0, - "thinBodyStrength": 0, - "thinShoulderStrength": 0, - "type": "BeautyBody", - "enabled": true, - "version": 1, - "entityId": -1028, - "componentID": -1210 - }, - { - "type": "EntityIdentifier", - "name": "美体", - "id": -1028 - } - ] - }, - { - "id": -1029, - "name": "滤镜", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1029, - "componentID": -1211 - }, - { - "enabled": true, - "entityId": -1029, - "src": "", - "type": "LUTFilter", - "version": 2, - "componentID": -1212, - "intensity": 1 - }, - { - "type": "EntityIdentifier", - "name": "滤镜", - "id": -1029 - } - ] - }, - { - "id": -1030, - "name": "美颜", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1030, - "componentID": -1213 - }, - { - "alignPoints": [ - 64 - ], - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isRefine": true, - "isWaitFirstFrameDetect": false, - "isAllFrameFaceDetect": false, - "type": "FaceTracking", - "enabled": true, - "entityId": -1030, - "componentID": -1214 - }, - { - "componentID": -1215, - "deepSmoothAlpha": 0, - "beautyVersion": "v8", - "eBuiltInMode": "custom", - "enabled": true, - "entityId": -1030, - "eyeLightenAlpha": 0, - "eyePouchAlpha": 0.5, - "beautySmooth": 0.6, - "beautySharpen": 0.7, - "beautyExposure": 50, - "eyebrowContrastAlpha": 0, - "faceFeatureBlendFaceAlpha": 0, - "faceFeatureTeethLutAlpha": 0.0, - "faceFeatureBlendFaceAlphaSoftlight": 0.0, - "lipsType": 2, - "lipsMaskPath": "images/beauty/lips_mitaose.png", - "beautyMultiplyPath": "images/beauty/saihong_jianyue.png", - "softLightPath": "images/beauty/liti_ziran.png", - "faceFeatureBlendFaceAlphaRedCheek": 0.0, - "faceFeatureLipsLutAlpha": 0.0, - "imageContrastAlpha": 0, - "lutClearAlpha": 0.2, - "lutFoundationAlpha": 0, - "skinColorSlider": 0, - "type": "Beauty", - "wrinkleAlpha": 0.35, - "version": 16 - }, - { - "type": "EntityIdentifier", - "name": "美颜", - "id": -1030 - } - ] - }, - { - "id": -1033, - "name": "小脸", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1033, - "componentID": -1219 - }, - { - "cheekboneThin": 0, - "chin": 0, - "componentID": -1220, - "editMode": false, - "enabled": true, - "enlargeEye": 0, - "entityId": -1033, - "eyeAngle": 0, - "eyeDistance": 0, - "foreHead": 0, - "height": 2048, - "lastPoints": [], - "mouthHeight": 0, - "mouthPosition": 0, - "mouthSize": 0, - "mouthWidth": 0, - "noseHeight": 0, - "noseSize": 0, - "noseWing": 0, - "overallFactor": 0, - "pinchFaceEnabled": true, - "points": [ - { - "positionX": 377.0940246582031, - "positionY": 974.9481201171875, - "fixed": true - }, - { - "positionX": 414.4358825683594, - "positionY": 1168.5355224609375, - "fixed": true - }, - { - "positionX": 479.2079162597656, - "positionY": 1305.097412109375, - "fixed": true - }, - { - "positionX": 571.539306640625, - "positionY": 1419.6964111328125, - "fixed": true - }, - { - "positionX": 646.6416015625, - "positionY": 1466.5675048828125, - "fixed": true - }, - { - "positionX": 767.4573974609375, - "positionY": 1516.9371337890625, - "fixed": true - }, - { - "positionX": 889.3583984375, - "positionY": 1466.5675048828125, - "fixed": true - }, - { - "positionX": 964.4608764648438, - "positionY": 1419.696533203125, - "fixed": true - }, - { - "positionX": 1056.7938232421875, - "positionY": 1305.0975341796875, - "fixed": true - }, - { - "positionX": 1121.5655517578125, - "positionY": 1168.5355224609375, - "fixed": true - }, - { - "positionX": 1158.906982421875, - "positionY": 974.9480590820312, - "fixed": true - }, - { - "positionX": 420, - "positionY": 855, - "fixed": true - }, - { - "positionX": 506, - "positionY": 843, - "fixed": true - }, - { - "positionX": 700, - "positionY": 864, - "fixed": true - }, - { - "positionX": 499, - "positionY": 806, - "fixed": true - }, - { - "positionX": 1116, - "positionY": 855, - "fixed": true - }, - { - "positionX": 1030, - "positionY": 843, - "fixed": true - }, - { - "positionX": 836, - "positionY": 864, - "fixed": true - }, - { - "positionX": 1037, - "positionY": 806, - "fixed": true - }, - { - "positionX": 512, - "positionY": 939, - "fixed": true - }, - { - "positionX": 544, - "positionY": 962, - "fixed": true - }, - { - "positionX": 582, - "positionY": 971, - "fixed": true - }, - { - "positionX": 623, - "positionY": 969, - "fixed": true - }, - { - "positionX": 666, - "positionY": 966, - "fixed": true - }, - { - "positionX": 634, - "positionY": 926, - "fixed": true - }, - { - "positionX": 595, - "positionY": 907, - "fixed": true - }, - { - "positionX": 550, - "positionY": 913, - "fixed": true - }, - { - "positionX": 1024, - "positionY": 939, - "fixed": true - }, - { - "positionX": 992, - "positionY": 962, - "fixed": true - }, - { - "positionX": 954, - "positionY": 971, - "fixed": true - }, - { - "positionX": 913, - "positionY": 969, - "fixed": true - }, - { - "positionX": 870, - "positionY": 966, - "fixed": true - }, - { - "positionX": 902, - "positionY": 926, - "fixed": true - }, - { - "positionX": 941, - "positionY": 907, - "fixed": true - }, - { - "positionX": 986, - "positionY": 913, - "fixed": true - }, - { - "positionX": 719, - "positionY": 966, - "fixed": true - }, - { - "positionX": 708, - "positionY": 1092, - "fixed": true - }, - { - "positionX": 662.1005859375, - "positionY": 1187.38427734375, - "fixed": true - }, - { - "positionX": 705.1005859375, - "positionY": 1209.38427734375, - "fixed": true - }, - { - "positionX": 767.6176147460938, - "positionY": 1220.7552490234375, - "fixed": true - }, - { - "positionX": 830.8994140625, - "positionY": 1209.38427734375, - "fixed": true - }, - { - "positionX": 873.8994140625, - "positionY": 1187.38427734375, - "fixed": true - }, - { - "positionX": 828, - "positionY": 1092, - "fixed": true - }, - { - "positionX": 817, - "positionY": 966, - "fixed": true - }, - { - "positionX": 768, - "positionY": 1148, - "fixed": true - }, - { - "positionX": 613.1290283203125, - "positionY": 1278.2718505859375, - "fixed": true - }, - { - "positionX": 922.8709716796875, - "positionY": 1278.2718505859375, - "fixed": true - }, - { - "positionX": 766.826904296875, - "positionY": 1382.09619140625, - "fixed": true - }, - { - "positionX": 843.4019775390625, - "positionY": 1315.479248046875, - "fixed": true - }, - { - "positionX": 767.7726440429688, - "positionY": 1326.3831787109375, - "fixed": true - }, - { - "positionX": 692.5980224609375, - "positionY": 1315.479248046875, - "fixed": true - }, - { - "positionX": 670.0049438476562, - "positionY": 1271.65576171875, - "fixed": true - }, - { - "positionX": 722.720458984375, - "positionY": 1264.085205078125, - "fixed": true - }, - { - "positionX": 813.279541015625, - "positionY": 1264.085205078125, - "fixed": true - }, - { - "positionX": 865.9950561523438, - "positionY": 1271.65576171875, - "fixed": true - }, - { - "positionX": 838.5339965820312, - "positionY": 1291.795654296875, - "fixed": true - }, - { - "positionX": 767.968994140625, - "positionY": 1297.7489013671875, - "fixed": true - }, - { - "positionX": 697.4660034179688, - "positionY": 1291.795654296875, - "fixed": true - }, - { - "positionX": 768, - "positionY": 966, - "fixed": true - }, - { - "positionX": 768, - "positionY": 864, - "fixed": true - }, - { - "positionX": 580, - "positionY": 550, - "fixed": true - }, - { - "positionX": 956, - "positionY": 550, - "fixed": true - }, - { - "positionX": 768, - "positionY": 538, - "fixed": true - }, - { - "positionX": 418, - "positionY": 655, - "fixed": true - }, - { - "positionX": 1118, - "positionY": 655, - "fixed": true - }, - { - "positionX": 529, - "positionY": 1148, - "fixed": true - }, - { - "positionX": 1007, - "positionY": 1148, - "fixed": true - }, - { - "positionX": 593.6622314453125, - "positionY": 1340.677001953125, - "fixed": true - }, - { - "positionX": 942.3377685546875, - "positionY": 1340.677001953125, - "fixed": true - }, - { - "positionX": 768, - "positionY": 1056, - "fixed": true - }, - { - "positionX": 670, - "positionY": 683, - "fixed": true - }, - { - "positionX": 866, - "positionY": 683, - "fixed": true - }, - { - "positionX": 559, - "positionY": 721, - "fixed": true - }, - { - "positionX": 977, - "positionY": 721, - "fixed": true - }, - { - "positionX": 678.6865234375, - "positionY": 1352.2061767578125, - "fixed": true - }, - { - "positionX": 857.3134765625, - "positionY": 1352.2061767578125, - "fixed": true - }, - { - "positionX": 766.418701171875, - "positionY": 1266.2930908203125, - "fixed": true - }, - { - "positionX": 664.6406860351562, - "positionY": 1397.7801513671875, - "fixed": true - }, - { - "positionX": 871.3593139648438, - "positionY": 1397.7801513671875, - "fixed": true - }, - { - "positionX": 767.3281860351562, - "positionY": 1432.434814453125, - "fixed": true - }, - { - "positionX": 390.493896484375, - "positionY": 1088.270751953125, - "fixed": true - }, - { - "positionX": 443.5300598144531, - "positionY": 1235.6744384765625, - "fixed": true - }, - { - "positionX": 520.4048461914062, - "positionY": 1372.5152587890625, - "fixed": true - }, - { - "positionX": 437, - "positionY": 956, - "fixed": true - }, - { - "positionX": 462.1441345214844, - "positionY": 1049.9522705078125, - "fixed": true - }, - { - "positionX": 1145.5072021484375, - "positionY": 1088.270751953125, - "fixed": true - }, - { - "positionX": 1092.4725341796875, - "positionY": 1235.6744384765625, - "fixed": true - }, - { - "positionX": 1015.59619140625, - "positionY": 1372.515380859375, - "fixed": true - }, - { - "positionX": 1099, - "positionY": 956, - "fixed": true - }, - { - "positionX": 1073.856201171875, - "positionY": 1049.9522705078125, - "fixed": true - }, - { - "positionX": 365.8800964355469, - "positionY": 891.4121704101562, - "fixed": true - }, - { - "positionX": 1170.1202392578125, - "positionY": 891.4121704101562, - "fixed": true - }, - { - "positionX": 420, - "positionY": 787, - "fixed": true - }, - { - "positionX": 1116, - "positionY": 787, - "fixed": true - } - ], - "strength": 100, - "stretchEnabled": false, - "symmetry": true, - "thinFace": 0, - "type": "FacialReform", - "vFace": 0, - "version": 2074, - "width": 1536 - }, - { - "alignPoints": [ - 64 - ], - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isRefine": true, - "isWaitFirstFrameDetect": false, - "isAllFrameFaceDetect": false, - "xAxisTrack": true, - "yAxisTrack": true, - "xAxisRotateTrack": true, - "yAxisRotateTrack": true, - "zAxisRotateTrack": true, - "xAxisScale": true, - "yAxisScale": true, - "genderBinding": "", - "type": "FaceTracking", - "enabled": true, - "entityId": -1033, - "componentID": -1221 - }, - { - "type": "EntityIdentifier", - "name": "小脸", - "id": -1033, - "enabled": true - } - ] - }, - { - "id": -1032, - "name": "人脸形变v7", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1032, - "componentID": -1222 - }, - { - "overallFactor": 1, - "vFace": 0, - "chin": 0, - "thinFace": 0, - "cheekboneThin": 1, - "enlargeEye": 0, - "noseSize": 0.3, - "foreHead": 0, - "eyeDistance": 0, - "shortFace": 0, - "eyeAngle": 0, - "noseWing": 0, - "noseHeight": 0, - "mouthSize": 0, - "mouthHeight": 0, - "mouthWidth": 0, - "mouthPosition": 0, - "points": [ - { - "positionX": 365, - "positionY": 975, - "fixed": false - }, - { - "positionX": 397, - "positionY": 1171, - "fixed": false - }, - { - "positionX": 457, - "positionY": 1323, - "fixed": false - }, - { - "positionX": 559, - "positionY": 1446, - "fixed": false - }, - { - "positionX": 623, - "positionY": 1491, - "fixed": false - }, - { - "positionX": 768, - "positionY": 1538, - "fixed": true - }, - { - "positionX": 913, - "positionY": 1491, - "fixed": false - }, - { - "positionX": 977, - "positionY": 1446, - "fixed": false - }, - { - "positionX": 1079, - "positionY": 1323, - "fixed": false - }, - { - "positionX": 1139, - "positionY": 1171, - "fixed": false - }, - { - "positionX": 1171, - "positionY": 975, - "fixed": false - }, - { - "positionX": 420, - "positionY": 855, - "fixed": true - }, - { - "positionX": 506, - "positionY": 843, - "fixed": false - }, - { - "positionX": 700, - "positionY": 864, - "fixed": false - }, - { - "positionX": 499, - "positionY": 806, - "fixed": true - }, - { - "positionX": 1116, - "positionY": 855, - "fixed": true - }, - { - "positionX": 1030, - "positionY": 843, - "fixed": false - }, - { - "positionX": 836, - "positionY": 864, - "fixed": false - }, - { - "positionX": 1037, - "positionY": 806, - "fixed": true - }, - { - "positionX": 512, - "positionY": 939, - "fixed": true - }, - { - "positionX": 544, - "positionY": 962, - "fixed": false - }, - { - "positionX": 582, - "positionY": 971, - "fixed": false - }, - { - "positionX": 623, - "positionY": 969, - "fixed": false - }, - { - "positionX": 666, - "positionY": 966, - "fixed": false - }, - { - "positionX": 634, - "positionY": 926, - "fixed": false - }, - { - "positionX": 595, - "positionY": 907, - "fixed": false - }, - { - "positionX": 550, - "positionY": 913, - "fixed": false - }, - { - "positionX": 1024, - "positionY": 939, - "fixed": true - }, - { - "positionX": 992, - "positionY": 962, - "fixed": false - }, - { - "positionX": 954, - "positionY": 971, - "fixed": false - }, - { - "positionX": 913, - "positionY": 969, - "fixed": false - }, - { - "positionX": 870, - "positionY": 966, - "fixed": false - }, - { - "positionX": 902, - "positionY": 926, - "fixed": false - }, - { - "positionX": 941, - "positionY": 907, - "fixed": false - }, - { - "positionX": 986, - "positionY": 913, - "fixed": false - }, - { - "positionX": 719, - "positionY": 966, - "fixed": false - }, - { - "positionX": 708, - "positionY": 1092, - "fixed": false - }, - { - "positionX": 661, - "positionY": 1188, - "fixed": false - }, - { - "positionX": 704, - "positionY": 1210, - "fixed": false - }, - { - "positionX": 768, - "positionY": 1218, - "fixed": false - }, - { - "positionX": 832, - "positionY": 1210, - "fixed": false - }, - { - "positionX": 875, - "positionY": 1188, - "fixed": false - }, - { - "positionX": 828, - "positionY": 1092, - "fixed": false - }, - { - "positionX": 817, - "positionY": 966, - "fixed": false - }, - { - "positionX": 768, - "positionY": 1148, - "fixed": false - }, - { - "positionX": 612, - "positionY": 1295, - "fixed": true - }, - { - "positionX": 924, - "positionY": 1295, - "fixed": true - }, - { - "positionX": 768, - "positionY": 1404, - "fixed": false - }, - { - "positionX": 847, - "positionY": 1331, - "fixed": false - }, - { - "positionX": 768, - "positionY": 1348, - "fixed": false - }, - { - "positionX": 689, - "positionY": 1331, - "fixed": false - }, - { - "positionX": 666, - "positionY": 1286, - "fixed": false - }, - { - "positionX": 723, - "positionY": 1278, - "fixed": false - }, - { - "positionX": 813, - "positionY": 1278, - "fixed": false - }, - { - "positionX": 870, - "positionY": 1286, - "fixed": false - }, - { - "positionX": 845, - "positionY": 1310, - "fixed": false - }, - { - "positionX": 768, - "positionY": 1316, - "fixed": false - }, - { - "positionX": 691, - "positionY": 1310, - "fixed": false - }, - { - "positionX": 768, - "positionY": 966, - "fixed": false - }, - { - "positionX": 768, - "positionY": 864, - "fixed": true - }, - { - "positionX": 580, - "positionY": 550, - "fixed": false - }, - { - "positionX": 956, - "positionY": 550, - "fixed": false - }, - { - "positionX": 768, - "positionY": 538, - "fixed": false - }, - { - "positionX": 418, - "positionY": 655, - "fixed": false - }, - { - "positionX": 1118, - "positionY": 655, - "fixed": false - }, - { - "positionX": 529, - "positionY": 1148, - "fixed": true - }, - { - "positionX": 1007, - "positionY": 1148, - "fixed": true - }, - { - "positionX": 591, - "positionY": 1350, - "fixed": false - }, - { - "positionX": 945, - "positionY": 1350, - "fixed": false - }, - { - "positionX": 768, - "positionY": 1056, - "fixed": false - }, - { - "positionX": 670, - "positionY": 683, - "fixed": true - }, - { - "positionX": 866, - "positionY": 683, - "fixed": true - }, - { - "positionX": 559, - "positionY": 721, - "fixed": false - }, - { - "positionX": 977, - "positionY": 721, - "fixed": false - }, - { - "positionX": 674, - "positionY": 1372, - "fixed": true - }, - { - "positionX": 862, - "positionY": 1372, - "fixed": true - }, - { - "positionX": 768, - "positionY": 1278, - "fixed": false - } - ], - "lastPoints": [], - "strength": 100, - "symmetry": true, - "editMode": false, - "width": 1536, - "height": 2048, - "stretchEnabled": true, - "pinchFaceEnabled": true, - "type": "FacialReform", - "enabled": true, - "entityId": -1032, - "componentID": -1223, - "version": 1 - }, - { - "alignPoints": [ - 64 - ], - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isRefine": true, - "isWaitFirstFrameDetect": false, - "isAllFrameFaceDetect": false, - "xAxisTrack": true, - "yAxisTrack": true, - "xAxisRotateTrack": true, - "yAxisRotateTrack": true, - "zAxisRotateTrack": true, - "xAxisScale": true, - "yAxisScale": true, - "genderBinding": "", - "type": "FaceTracking", - "enabled": true, - "entityId": -1032, - "componentID": -1224 - }, - { - "type": "EntityIdentifier", - "name": "人脸形变v7", - "id": -1032 - } - ] - }, - { - "id": -1034, - "name": "自然瘦脸", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1034, - "componentID": -1225 - }, - { - "cheekboneThin": 0, - "chin": 0, - "componentID": -1226, - "editMode": false, - "enabled": true, - "enlargeEye": 0.30000000000000004, - "entityId": -1034, - "eyeAngle": 0.10000000000000009, - "eyeDistance": 0.25, - "foreHead": 0, - "height": 2048, - "lastPoints": [], - "mouthHeight": 0, - "mouthPosition": 0, - "mouthSize": 0, - "mouthWidth": 0, - "noseHeight": 0.2, - "noseSize": 0.40000000000000013, - "noseWing": 0, - "overallFactor": 0.4, - "basicFaceEyelarge": 0, - "pinchFaceEnabled": true, - "points": [ - { - "positionX": 392.0104064941406, - "positionY": 966.646728515625, - "fixed": true - }, - { - "positionX": 424.6899108886719, - "positionY": 1160.541259765625, - "fixed": true - }, - { - "positionX": 511.9487609863281, - "positionY": 1306.074462890625, - "fixed": true - }, - { - "positionX": 596.3385620117188, - "positionY": 1381.8641357421875, - "fixed": true - }, - { - "positionX": 660.0175170898438, - "positionY": 1412.9744873046875, - "fixed": true - }, - { - "positionX": 767.317138671875, - "positionY": 1491.4183349609375, - "fixed": true - }, - { - "positionX": 875.8718872070312, - "positionY": 1412.962158203125, - "fixed": true - }, - { - "positionX": 935.34716796875, - "positionY": 1379.32421875, - "fixed": true - }, - { - "positionX": 1029.7938232421875, - "positionY": 1297.689208984375, - "fixed": true - }, - { - "positionX": 1107.4666748046875, - "positionY": 1157.3028564453125, - "fixed": true - }, - { - "positionX": 1143.990478515625, - "positionY": 966.646728515625, - "fixed": true - }, - { - "positionX": 420, - "positionY": 855, - "fixed": true - }, - { - "positionX": 506, - "positionY": 839.6893920898438, - "fixed": true - }, - { - "positionX": 692.8929443359375, - "positionY": 857.0098266601562, - "fixed": true - }, - { - "positionX": 499, - "positionY": 802.6893920898438, - "fixed": true - }, - { - "positionX": 1116, - "positionY": 855, - "fixed": true - }, - { - "positionX": 1030, - "positionY": 839.6893920898438, - "fixed": true - }, - { - "positionX": 843.1070556640625, - "positionY": 857.0098266601562, - "fixed": true - }, - { - "positionX": 1037, - "positionY": 802.6893920898438, - "fixed": true - }, - { - "positionX": 513.1281127929688, - "positionY": 950.0679321289062, - "fixed": true - }, - { - "positionX": 544.6527709960938, - "positionY": 970.9148559570312, - "fixed": true - }, - { - "positionX": 585.5798950195312, - "positionY": 972.0882568359375, - "fixed": true - }, - { - "positionX": 626.4053344726562, - "positionY": 968.7205810546875, - "fixed": true - }, - { - "positionX": 666.3204345703125, - "positionY": 968.0636596679688, - "fixed": true - }, - { - "positionX": 642.5635375976562, - "positionY": 922.6239013671875, - "fixed": true - }, - { - "positionX": 599.7583618164062, - "positionY": 911.7972412109375, - "fixed": true - }, - { - "positionX": 558.2445068359375, - "positionY": 923.4270629882812, - "fixed": true - }, - { - "positionX": 1022.8718872070312, - "positionY": 950.0679321289062, - "fixed": true - }, - { - "positionX": 991.3472290039062, - "positionY": 970.9148559570312, - "fixed": true - }, - { - "positionX": 950.4201049804688, - "positionY": 972.0882568359375, - "fixed": true - }, - { - "positionX": 909.5946655273438, - "positionY": 968.7205810546875, - "fixed": true - }, - { - "positionX": 869.6795654296875, - "positionY": 968.0636596679688, - "fixed": true - }, - { - "positionX": 893.4364624023438, - "positionY": 922.6239013671875, - "fixed": true - }, - { - "positionX": 936.2416381835938, - "positionY": 911.7972412109375, - "fixed": true - }, - { - "positionX": 977.7554931640625, - "positionY": 923.4270629882812, - "fixed": true - }, - { - "positionX": 719, - "positionY": 966, - "fixed": true - }, - { - "positionX": 714.8593139648438, - "positionY": 1102.2347412109375, - "fixed": true - }, - { - "positionX": 673.3064575195312, - "positionY": 1182.699951171875, - "fixed": true - }, - { - "positionX": 711.4496459960938, - "positionY": 1203.6878662109375, - "fixed": true - }, - { - "positionX": 767.4188842773438, - "positionY": 1216.0704345703125, - "fixed": true - }, - { - "positionX": 824.5503540039062, - "positionY": 1203.6878662109375, - "fixed": true - }, - { - "positionX": 862.6935424804688, - "positionY": 1182.699951171875, - "fixed": true - }, - { - "positionX": 821.1406860351562, - "positionY": 1102.2347412109375, - "fixed": true - }, - { - "positionX": 817, - "positionY": 966, - "fixed": true - }, - { - "positionX": 767.7044067382812, - "positionY": 1138.598876953125, - "fixed": true - }, - { - "positionX": 614.888671875, - "positionY": 1251.9876708984375, - "fixed": true - }, - { - "positionX": 921.111328125, - "positionY": 1251.9876708984375, - "fixed": true - }, - { - "positionX": 766.4959716796875, - "positionY": 1357.30322265625, - "fixed": true - }, - { - "positionX": 852.8787841796875, - "positionY": 1291.0240478515625, - "fixed": true - }, - { - "positionX": 766.7779541015625, - "positionY": 1307.046630859375, - "fixed": true - }, - { - "positionX": 683.1212158203125, - "positionY": 1291.0240478515625, - "fixed": true - }, - { - "positionX": 668.7772827148438, - "positionY": 1245.9910888671875, - "fixed": true - }, - { - "positionX": 727.4692993164062, - "positionY": 1244.43408203125, - "fixed": true - }, - { - "positionX": 808.5307006835938, - "positionY": 1244.43408203125, - "fixed": true - }, - { - "positionX": 867.2227172851562, - "positionY": 1245.9910888671875, - "fixed": true - }, - { - "positionX": 851.04150390625, - "positionY": 1268.3397216796875, - "fixed": true - }, - { - "positionX": 766.278076171875, - "positionY": 1280.4998779296875, - "fixed": true - }, - { - "positionX": 684.95849609375, - "positionY": 1268.3397216796875, - "fixed": true - }, - { - "positionX": 768, - "positionY": 966, - "fixed": true - }, - { - "positionX": 768.2948608398438, - "positionY": 860.6826782226562, - "fixed": true - }, - { - "positionX": 580, - "positionY": 550, - "fixed": true - }, - { - "positionX": 956, - "positionY": 550, - "fixed": true - }, - { - "positionX": 768, - "positionY": 538, - "fixed": true - }, - { - "positionX": 418, - "positionY": 655, - "fixed": true - }, - { - "positionX": 1118, - "positionY": 655, - "fixed": true - }, - { - "positionX": 526.6063232421875, - "positionY": 1138.6806640625, - "fixed": true - }, - { - "positionX": 1010.621826171875, - "positionY": 1138.8995361328125, - "fixed": true - }, - { - "positionX": 607.0260620117188, - "positionY": 1309.3126220703125, - "fixed": true - }, - { - "positionX": 923.7181396484375, - "positionY": 1317.06689453125, - "fixed": true - }, - { - "positionX": 768, - "positionY": 1056, - "fixed": true - }, - { - "positionX": 670, - "positionY": 683, - "fixed": true - }, - { - "positionX": 866, - "positionY": 683, - "fixed": true - }, - { - "positionX": 559, - "positionY": 721, - "fixed": true - }, - { - "positionX": 977, - "positionY": 721, - "fixed": true - }, - { - "positionX": 672.9261474609375, - "positionY": 1331.5426025390625, - "fixed": true - }, - { - "positionX": 863.0738525390625, - "positionY": 1331.5426025390625, - "fixed": true - }, - { - "positionX": 766.568603515625, - "positionY": 1248.2060546875, - "fixed": true - }, - { - "positionX": 672.6199340820312, - "positionY": 1371.67333984375, - "fixed": true - }, - { - "positionX": 860.5969848632812, - "positionY": 1369.945556640625, - "fixed": true - }, - { - "positionX": 766.186767578125, - "positionY": 1416.3792724609375, - "fixed": true - }, - { - "positionX": 412.3116455078125, - "positionY": 1086.68603515625, - "fixed": true - }, - { - "positionX": 465.0056457519531, - "positionY": 1225.9320068359375, - "fixed": true - }, - { - "positionX": 567.286865234375, - "positionY": 1357.969970703125, - "fixed": true - }, - { - "positionX": 447.096435546875, - "positionY": 952.1060180664062, - "fixed": true - }, - { - "positionX": 468.86627197265625, - "positionY": 1047.931884765625, - "fixed": true - }, - { - "positionX": 1118.267578125, - "positionY": 1087.3438720703125, - "fixed": true - }, - { - "positionX": 1074.6417236328125, - "positionY": 1228.001220703125, - "fixed": true - }, - { - "positionX": 964.3988037109375, - "positionY": 1355.176513671875, - "fixed": true - }, - { - "positionX": 1088.9036865234375, - "positionY": 952.1060180664062, - "fixed": true - }, - { - "positionX": 1065.43310546875, - "positionY": 1049.132568359375, - "fixed": true - }, - { - "positionX": 367.8214111328125, - "positionY": 890.7825927734375, - "fixed": true - }, - { - "positionX": 1168.2286376953125, - "positionY": 890.78759765625, - "fixed": true - }, - { - "positionX": 420, - "positionY": 787, - "fixed": true - }, - { - "positionX": 1116, - "positionY": 787, - "fixed": true - } - ], - "strength": 100, - "stretchEnabled": false, - "symmetry": true, - "thinFace": 0, - "shortFace": 0, - "reformSubType": "nature", - "type": "FacialReform", - "vFace": 0, - "version": 5665, - "width": 1536 - }, - { - "alignPoints": [ - 64 - ], - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isRefine": true, - "isWaitFirstFrameDetect": false, - "isAllFrameFaceDetect": false, - "xAxisTrack": true, - "yAxisTrack": true, - "xAxisRotateTrack": true, - "yAxisRotateTrack": true, - "zAxisRotateTrack": true, - "xAxisScale": true, - "yAxisScale": true, - "genderBinding": "", - "type": "FaceTracking", - "enabled": true, - "entityId": -1034, - "componentID": -1227 - }, - { - "type": "EntityIdentifier", - "name": "自然瘦脸", - "id": -1034, - "enabled": true - } - ] - } - ], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1024, - "componentID": -1301, - "objectEnabled": true - }, - { - "componentID": -1302, - "enabled": true, - "entityId": -1024, - "renderTargetKey": "RenderTarget", - "type": "Camera", - "version": 8 - }, - { - "type": "EntityIdentifier", - "name": "摄像头", - "id": -1024 - } - ] - } - ], - "components": [ - { - "anchor": { - "bottom": 0, - "left": 0, - "right": 0, - "top": 0 - }, - "offset": { - "bottom": 0, - "left": 0, - "right": 0, - "top": 0 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "rotation": { - "w": 0, - "x": 0, - "y": 0, - "z": 0 - }, - "entityId": -1016, - "componentID": -1303, - "type": "ScreenTransform", - "enabled": true, - "version": 2, - "objectEnabled": true - }, - { - "enabled": true, - "entityId": -1016, - "tips": "提示语", - "type": "Tips", - "version": 17, - "image": "", - "componentID": -1304 - }, - { - "type": "EntityIdentifier", - "name": "拍摄模板", - "id": -1016 - } - ], - "enabled": true, - "version": 0, - "inputFormats": [ - { - "key": "DeviceCameraTexture", - "type": "TextureData", - "properties": {} - } - ] - }, - "inputSources": { - "RenderTarget": { - "key": "RenderTarget", - "path": "RenderTarget.rdt", - "hash": "1007a798a17b0b0b3b7e21c6a2e8b805", - "label": "RenderTarget.rdt", - "type": "RenderTarget", - "inputKey": "DeviceCameraTexture" - }, - "DeviceCameraTexture": { - "key": "DeviceCameraTexture", - "path": "DeviceCameraTexture.tex", - "hash": "18167426118cbf6da2972283f3318e72", - "label": "DeviceCameraTexture.tex", - "type": "TextureData" - } - } -} diff --git a/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyV9.json b/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyV9.json deleted file mode 100644 index 8561d536..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/default/defaultBeautyV9.json +++ /dev/null @@ -1,2311 +0,0 @@ -{ - "root": { - "id": -1016, - "name": "拍摄模板", - "children": [ - { - "id": -1024, - "name": "摄像头", - "children": [ - { - "id": -1031, - "name": "去噪", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "top": 1, - "bottom": -1, - "left": -1, - "right": 1 - }, - "offset": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "objectEnabled": true, - "enabled": true, - "entityId": -1031, - "componentID": -1201 - }, - { - "componentID": -1202, - "effectStrength": 0, - "effectType": "denoise", - "enabled": true, - "entityId": -1031, - "subEffectType": "", - "type": "PostEffect", - "version": 8 - }, - { - "type": "EntityIdentifier", - "name": "去噪", - "id": -1031 - } - ] - }, - { - "id": -1028, - "name": "美体", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1028, - "componentID": -1208 - }, - { - "alignPoints": [ - 0 - ], - "isBodyDetectSmooth": true, - "scalePivotPoint1": 0, - "scalePivotPoint2": 1, - "type": "BodyTracking", - "enabled": false, - "version": 1, - "entityId": -1028, - "componentID": -1209 - }, - { - "longLegStrength": 0, - "slimWaistStrength": 0, - "thinBodyStrength": 0, - "thinShoulderStrength": 0, - "type": "BeautyBody", - "enabled": true, - "version": 1, - "entityId": -1028, - "componentID": -1210 - }, - { - "type": "EntityIdentifier", - "name": "美体", - "id": -1028 - } - ] - }, - { - "id": -1029, - "name": "滤镜", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1029, - "componentID": -1211 - }, - { - "enabled": true, - "entityId": -1029, - "src": "", - "type": "LUTFilter", - "version": 2, - "componentID": -1212, - "intensity": 1 - }, - { - "type": "EntityIdentifier", - "name": "滤镜", - "id": -1029 - } - ] - }, - { - "id": -1030, - "name": "美颜", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1030, - "componentID": -1213 - }, - { - "alignPoints": [ - 64 - ], - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isRefine": true, - "isWaitFirstFrameDetect": false, - "isAllFrameFaceDetect": false, - "type": "FaceTracking", - "enabled": true, - "entityId": -1030, - "componentID": -1214 - }, - { - "componentID": -1215, - "deepSmoothAlpha": 0, - "beautyVersion": "v9", - "eBuiltInMode": "custom", - "enabled": true, - "entityId": -1030, - "eyeLightenAlpha": 0, - "eyePouchAlpha": 0.5, - "eyebrowContrastAlpha": 0, - "faceFeatureBlendFaceAlpha": 0, - "faceFeatureTeethLutAlpha": 0.2, - "faceFeatureBlendFaceAlphaSoftlight": 0.4, - "lipsType": 2, - "lipsMaskPath": "images/beauty/lips_mitaose.png", - "beautyMultiplyPath": "images/beauty/saihong_jianyue.png", - "softLightPath": "images/beauty/liti_ziran.png", - "faceFeatureBlendFaceAlphaRedCheek": 0.2, - "faceFeatureLipsLutAlpha": 0.3, - "imageContrastAlpha": 0, - "lutClearAlpha": 0.2, - "lutFoundationAlpha": 0.3, - "skinColorSlider": 0, - "type": "Beauty", - "wrinkleAlpha": 0.3, - "version": 16 - }, - { - "type": "EntityIdentifier", - "name": "美颜", - "id": -1030 - } - ] - }, - { - "id": -1040, - "name": "大眼", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1040, - "componentID": -1216 - }, - { - "alignPoints": [ - 64 - ], - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isRefine": true, - "isWaitFirstFrameDetect": false, - "isAllFrameFaceDetect": false, - "xAxisTrack": true, - "yAxisTrack": true, - "xAxisRotateTrack": true, - "yAxisRotateTrack": true, - "zAxisRotateTrack": true, - "xAxisScale": true, - "yAxisScale": true, - "genderBinding": "", - "type": "FaceTracking", - "enabled": true, - "entityId": -1040, - "componentID": -1217 - }, - { - "componentID": -1218, - "eSelectedIndex": 0, - "editMode": false, - "enabled": true, - "entityId": -1040, - "enlargeeyeFactor": 0.3, - "liquefactionParams": [ - { - "direction": 0, - "keepRatio": false, - "positionX": 364, - "positionY": 592, - "radiusX": 80, - "radiusY": 70, - "strength": 6, - "symmetry": true, - "visible": true - } - ], - "type": "LiquefactionV6", - "version": 375 - }, - { - "type": "EntityIdentifier", - "name": "大眼", - "id": -1040 - } - ] - }, - { - "id": -1033, - "name": "小脸", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1033, - "componentID": -1219 - }, - { - "cheekboneThin": 0, - "chin": 0, - "componentID": -1220, - "editMode": false, - "enabled": true, - "enlargeEye": 0, - "entityId": -1033, - "eyeAngle": 0, - "eyeDistance": 0, - "foreHead": 0, - "height": 2048, - "lastPoints": [], - "mouthHeight": 0, - "mouthPosition": 0, - "mouthSize": 0, - "mouthWidth": 0, - "noseHeight": 0, - "noseSize": 0, - "noseWing": 0, - "overallFactor": 0, - "pinchFaceEnabled": true, - "points": [ - { - "positionX": 377.0940246582031, - "positionY": 974.9481201171875, - "fixed": true - }, - { - "positionX": 414.4358825683594, - "positionY": 1168.5355224609375, - "fixed": true - }, - { - "positionX": 479.2079162597656, - "positionY": 1305.097412109375, - "fixed": true - }, - { - "positionX": 571.539306640625, - "positionY": 1419.6964111328125, - "fixed": true - }, - { - "positionX": 646.6416015625, - "positionY": 1466.5675048828125, - "fixed": true - }, - { - "positionX": 767.4573974609375, - "positionY": 1516.9371337890625, - "fixed": true - }, - { - "positionX": 889.3583984375, - "positionY": 1466.5675048828125, - "fixed": true - }, - { - "positionX": 964.4608764648438, - "positionY": 1419.696533203125, - "fixed": true - }, - { - "positionX": 1056.7938232421875, - "positionY": 1305.0975341796875, - "fixed": true - }, - { - "positionX": 1121.5655517578125, - "positionY": 1168.5355224609375, - "fixed": true - }, - { - "positionX": 1158.906982421875, - "positionY": 974.9480590820312, - "fixed": true - }, - { - "positionX": 420, - "positionY": 855, - "fixed": true - }, - { - "positionX": 506, - "positionY": 843, - "fixed": true - }, - { - "positionX": 700, - "positionY": 864, - "fixed": true - }, - { - "positionX": 499, - "positionY": 806, - "fixed": true - }, - { - "positionX": 1116, - "positionY": 855, - "fixed": true - }, - { - "positionX": 1030, - "positionY": 843, - "fixed": true - }, - { - "positionX": 836, - "positionY": 864, - "fixed": true - }, - { - "positionX": 1037, - "positionY": 806, - "fixed": true - }, - { - "positionX": 512, - "positionY": 939, - "fixed": true - }, - { - "positionX": 544, - "positionY": 962, - "fixed": true - }, - { - "positionX": 582, - "positionY": 971, - "fixed": true - }, - { - "positionX": 623, - "positionY": 969, - "fixed": true - }, - { - "positionX": 666, - "positionY": 966, - "fixed": true - }, - { - "positionX": 634, - "positionY": 926, - "fixed": true - }, - { - "positionX": 595, - "positionY": 907, - "fixed": true - }, - { - "positionX": 550, - "positionY": 913, - "fixed": true - }, - { - "positionX": 1024, - "positionY": 939, - "fixed": true - }, - { - "positionX": 992, - "positionY": 962, - "fixed": true - }, - { - "positionX": 954, - "positionY": 971, - "fixed": true - }, - { - "positionX": 913, - "positionY": 969, - "fixed": true - }, - { - "positionX": 870, - "positionY": 966, - "fixed": true - }, - { - "positionX": 902, - "positionY": 926, - "fixed": true - }, - { - "positionX": 941, - "positionY": 907, - "fixed": true - }, - { - "positionX": 986, - "positionY": 913, - "fixed": true - }, - { - "positionX": 719, - "positionY": 966, - "fixed": true - }, - { - "positionX": 708, - "positionY": 1092, - "fixed": true - }, - { - "positionX": 662.1005859375, - "positionY": 1187.38427734375, - "fixed": true - }, - { - "positionX": 705.1005859375, - "positionY": 1209.38427734375, - "fixed": true - }, - { - "positionX": 767.6176147460938, - "positionY": 1220.7552490234375, - "fixed": true - }, - { - "positionX": 830.8994140625, - "positionY": 1209.38427734375, - "fixed": true - }, - { - "positionX": 873.8994140625, - "positionY": 1187.38427734375, - "fixed": true - }, - { - "positionX": 828, - "positionY": 1092, - "fixed": true - }, - { - "positionX": 817, - "positionY": 966, - "fixed": true - }, - { - "positionX": 768, - "positionY": 1148, - "fixed": true - }, - { - "positionX": 613.1290283203125, - "positionY": 1278.2718505859375, - "fixed": true - }, - { - "positionX": 922.8709716796875, - "positionY": 1278.2718505859375, - "fixed": true - }, - { - "positionX": 766.826904296875, - "positionY": 1382.09619140625, - "fixed": true - }, - { - "positionX": 843.4019775390625, - "positionY": 1315.479248046875, - "fixed": true - }, - { - "positionX": 767.7726440429688, - "positionY": 1326.3831787109375, - "fixed": true - }, - { - "positionX": 692.5980224609375, - "positionY": 1315.479248046875, - "fixed": true - }, - { - "positionX": 670.0049438476562, - "positionY": 1271.65576171875, - "fixed": true - }, - { - "positionX": 722.720458984375, - "positionY": 1264.085205078125, - "fixed": true - }, - { - "positionX": 813.279541015625, - "positionY": 1264.085205078125, - "fixed": true - }, - { - "positionX": 865.9950561523438, - "positionY": 1271.65576171875, - "fixed": true - }, - { - "positionX": 838.5339965820312, - "positionY": 1291.795654296875, - "fixed": true - }, - { - "positionX": 767.968994140625, - "positionY": 1297.7489013671875, - "fixed": true - }, - { - "positionX": 697.4660034179688, - "positionY": 1291.795654296875, - "fixed": true - }, - { - "positionX": 768, - "positionY": 966, - "fixed": true - }, - { - "positionX": 768, - "positionY": 864, - "fixed": true - }, - { - "positionX": 580, - "positionY": 550, - "fixed": true - }, - { - "positionX": 956, - "positionY": 550, - "fixed": true - }, - { - "positionX": 768, - "positionY": 538, - "fixed": true - }, - { - "positionX": 418, - "positionY": 655, - "fixed": true - }, - { - "positionX": 1118, - "positionY": 655, - "fixed": true - }, - { - "positionX": 529, - "positionY": 1148, - "fixed": true - }, - { - "positionX": 1007, - "positionY": 1148, - "fixed": true - }, - { - "positionX": 593.6622314453125, - "positionY": 1340.677001953125, - "fixed": true - }, - { - "positionX": 942.3377685546875, - "positionY": 1340.677001953125, - "fixed": true - }, - { - "positionX": 768, - "positionY": 1056, - "fixed": true - }, - { - "positionX": 670, - "positionY": 683, - "fixed": true - }, - { - "positionX": 866, - "positionY": 683, - "fixed": true - }, - { - "positionX": 559, - "positionY": 721, - "fixed": true - }, - { - "positionX": 977, - "positionY": 721, - "fixed": true - }, - { - "positionX": 678.6865234375, - "positionY": 1352.2061767578125, - "fixed": true - }, - { - "positionX": 857.3134765625, - "positionY": 1352.2061767578125, - "fixed": true - }, - { - "positionX": 766.418701171875, - "positionY": 1266.2930908203125, - "fixed": true - }, - { - "positionX": 664.6406860351562, - "positionY": 1397.7801513671875, - "fixed": true - }, - { - "positionX": 871.3593139648438, - "positionY": 1397.7801513671875, - "fixed": true - }, - { - "positionX": 767.3281860351562, - "positionY": 1432.434814453125, - "fixed": true - }, - { - "positionX": 390.493896484375, - "positionY": 1088.270751953125, - "fixed": true - }, - { - "positionX": 443.5300598144531, - "positionY": 1235.6744384765625, - "fixed": true - }, - { - "positionX": 520.4048461914062, - "positionY": 1372.5152587890625, - "fixed": true - }, - { - "positionX": 437, - "positionY": 956, - "fixed": true - }, - { - "positionX": 462.1441345214844, - "positionY": 1049.9522705078125, - "fixed": true - }, - { - "positionX": 1145.5072021484375, - "positionY": 1088.270751953125, - "fixed": true - }, - { - "positionX": 1092.4725341796875, - "positionY": 1235.6744384765625, - "fixed": true - }, - { - "positionX": 1015.59619140625, - "positionY": 1372.515380859375, - "fixed": true - }, - { - "positionX": 1099, - "positionY": 956, - "fixed": true - }, - { - "positionX": 1073.856201171875, - "positionY": 1049.9522705078125, - "fixed": true - }, - { - "positionX": 365.8800964355469, - "positionY": 891.4121704101562, - "fixed": true - }, - { - "positionX": 1170.1202392578125, - "positionY": 891.4121704101562, - "fixed": true - }, - { - "positionX": 420, - "positionY": 787, - "fixed": true - }, - { - "positionX": 1116, - "positionY": 787, - "fixed": true - } - ], - "strength": 100, - "stretchEnabled": false, - "symmetry": true, - "thinFace": 0, - "type": "FacialReform", - "vFace": 0, - "version": 2074, - "width": 1536 - }, - { - "alignPoints": [ - 64 - ], - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isRefine": true, - "isWaitFirstFrameDetect": false, - "isAllFrameFaceDetect": false, - "xAxisTrack": true, - "yAxisTrack": true, - "xAxisRotateTrack": true, - "yAxisRotateTrack": true, - "zAxisRotateTrack": true, - "xAxisScale": true, - "yAxisScale": true, - "genderBinding": "", - "type": "FaceTracking", - "enabled": true, - "entityId": -1033, - "componentID": -1221 - }, - { - "type": "EntityIdentifier", - "name": "小脸", - "id": -1033, - "enabled": true - } - ] - }, - { - "id": -1032, - "name": "人脸形变v7", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1032, - "componentID": -1222 - }, - { - "overallFactor": 1, - "vFace": 0, - "chin": 0, - "thinFace": 0, - "cheekboneThin": 1, - "enlargeEye": 0, - "noseSize": 0.3, - "foreHead": 0, - "eyeDistance": 0, - "shortFace": 0, - "eyeAngle": 0, - "noseWing": 0, - "noseHeight": 0, - "mouthSize": 0, - "mouthHeight": 0, - "mouthWidth": 0, - "mouthPosition": 0, - "points": [ - { - "positionX": 365, - "positionY": 975, - "fixed": false - }, - { - "positionX": 397, - "positionY": 1171, - "fixed": false - }, - { - "positionX": 457, - "positionY": 1323, - "fixed": false - }, - { - "positionX": 559, - "positionY": 1446, - "fixed": false - }, - { - "positionX": 623, - "positionY": 1491, - "fixed": false - }, - { - "positionX": 768, - "positionY": 1538, - "fixed": true - }, - { - "positionX": 913, - "positionY": 1491, - "fixed": false - }, - { - "positionX": 977, - "positionY": 1446, - "fixed": false - }, - { - "positionX": 1079, - "positionY": 1323, - "fixed": false - }, - { - "positionX": 1139, - "positionY": 1171, - "fixed": false - }, - { - "positionX": 1171, - "positionY": 975, - "fixed": false - }, - { - "positionX": 420, - "positionY": 855, - "fixed": true - }, - { - "positionX": 506, - "positionY": 843, - "fixed": false - }, - { - "positionX": 700, - "positionY": 864, - "fixed": false - }, - { - "positionX": 499, - "positionY": 806, - "fixed": true - }, - { - "positionX": 1116, - "positionY": 855, - "fixed": true - }, - { - "positionX": 1030, - "positionY": 843, - "fixed": false - }, - { - "positionX": 836, - "positionY": 864, - "fixed": false - }, - { - "positionX": 1037, - "positionY": 806, - "fixed": true - }, - { - "positionX": 512, - "positionY": 939, - "fixed": true - }, - { - "positionX": 544, - "positionY": 962, - "fixed": false - }, - { - "positionX": 582, - "positionY": 971, - "fixed": false - }, - { - "positionX": 623, - "positionY": 969, - "fixed": false - }, - { - "positionX": 666, - "positionY": 966, - "fixed": false - }, - { - "positionX": 634, - "positionY": 926, - "fixed": false - }, - { - "positionX": 595, - "positionY": 907, - "fixed": false - }, - { - "positionX": 550, - "positionY": 913, - "fixed": false - }, - { - "positionX": 1024, - "positionY": 939, - "fixed": true - }, - { - "positionX": 992, - "positionY": 962, - "fixed": false - }, - { - "positionX": 954, - "positionY": 971, - "fixed": false - }, - { - "positionX": 913, - "positionY": 969, - "fixed": false - }, - { - "positionX": 870, - "positionY": 966, - "fixed": false - }, - { - "positionX": 902, - "positionY": 926, - "fixed": false - }, - { - "positionX": 941, - "positionY": 907, - "fixed": false - }, - { - "positionX": 986, - "positionY": 913, - "fixed": false - }, - { - "positionX": 719, - "positionY": 966, - "fixed": false - }, - { - "positionX": 708, - "positionY": 1092, - "fixed": false - }, - { - "positionX": 661, - "positionY": 1188, - "fixed": false - }, - { - "positionX": 704, - "positionY": 1210, - "fixed": false - }, - { - "positionX": 768, - "positionY": 1218, - "fixed": false - }, - { - "positionX": 832, - "positionY": 1210, - "fixed": false - }, - { - "positionX": 875, - "positionY": 1188, - "fixed": false - }, - { - "positionX": 828, - "positionY": 1092, - "fixed": false - }, - { - "positionX": 817, - "positionY": 966, - "fixed": false - }, - { - "positionX": 768, - "positionY": 1148, - "fixed": false - }, - { - "positionX": 612, - "positionY": 1295, - "fixed": true - }, - { - "positionX": 924, - "positionY": 1295, - "fixed": true - }, - { - "positionX": 768, - "positionY": 1404, - "fixed": false - }, - { - "positionX": 847, - "positionY": 1331, - "fixed": false - }, - { - "positionX": 768, - "positionY": 1348, - "fixed": false - }, - { - "positionX": 689, - "positionY": 1331, - "fixed": false - }, - { - "positionX": 666, - "positionY": 1286, - "fixed": false - }, - { - "positionX": 723, - "positionY": 1278, - "fixed": false - }, - { - "positionX": 813, - "positionY": 1278, - "fixed": false - }, - { - "positionX": 870, - "positionY": 1286, - "fixed": false - }, - { - "positionX": 845, - "positionY": 1310, - "fixed": false - }, - { - "positionX": 768, - "positionY": 1316, - "fixed": false - }, - { - "positionX": 691, - "positionY": 1310, - "fixed": false - }, - { - "positionX": 768, - "positionY": 966, - "fixed": false - }, - { - "positionX": 768, - "positionY": 864, - "fixed": true - }, - { - "positionX": 580, - "positionY": 550, - "fixed": false - }, - { - "positionX": 956, - "positionY": 550, - "fixed": false - }, - { - "positionX": 768, - "positionY": 538, - "fixed": false - }, - { - "positionX": 418, - "positionY": 655, - "fixed": false - }, - { - "positionX": 1118, - "positionY": 655, - "fixed": false - }, - { - "positionX": 529, - "positionY": 1148, - "fixed": true - }, - { - "positionX": 1007, - "positionY": 1148, - "fixed": true - }, - { - "positionX": 591, - "positionY": 1350, - "fixed": false - }, - { - "positionX": 945, - "positionY": 1350, - "fixed": false - }, - { - "positionX": 768, - "positionY": 1056, - "fixed": false - }, - { - "positionX": 670, - "positionY": 683, - "fixed": true - }, - { - "positionX": 866, - "positionY": 683, - "fixed": true - }, - { - "positionX": 559, - "positionY": 721, - "fixed": false - }, - { - "positionX": 977, - "positionY": 721, - "fixed": false - }, - { - "positionX": 674, - "positionY": 1372, - "fixed": true - }, - { - "positionX": 862, - "positionY": 1372, - "fixed": true - }, - { - "positionX": 768, - "positionY": 1278, - "fixed": false - } - ], - "lastPoints": [], - "strength": 100, - "symmetry": true, - "editMode": false, - "width": 1536, - "height": 2048, - "stretchEnabled": true, - "pinchFaceEnabled": true, - "type": "FacialReform", - "enabled": true, - "entityId": -1032, - "componentID": -1223, - "version": 1 - }, - { - "alignPoints": [ - 64 - ], - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isRefine": true, - "isWaitFirstFrameDetect": false, - "isAllFrameFaceDetect": false, - "xAxisTrack": true, - "yAxisTrack": true, - "xAxisRotateTrack": true, - "yAxisRotateTrack": true, - "zAxisRotateTrack": true, - "xAxisScale": true, - "yAxisScale": true, - "genderBinding": "", - "type": "FaceTracking", - "enabled": true, - "entityId": -1032, - "componentID": -1224 - }, - { - "type": "EntityIdentifier", - "name": "人脸形变v7", - "id": -1032 - } - ] - }, - { - "id": -1034, - "name": "自然瘦脸", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "eEuler": { - "x": 0, - "y": 0, - "z": 0 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -1034, - "componentID": -1225 - }, - { - "cheekboneThin": 0, - "chin": 0, - "componentID": -1226, - "editMode": false, - "enabled": true, - "enlargeEye": 0.30000000000000004, - "entityId": -1034, - "eyeAngle": 0.10000000000000009, - "eyeDistance": 0.25, - "foreHead": 0, - "height": 2048, - "lastPoints": [], - "mouthHeight": 0, - "mouthPosition": 0, - "mouthSize": 0, - "mouthWidth": 0, - "noseHeight": 0.2, - "noseSize": 0.40000000000000013, - "noseWing": 0, - "overallFactor": 0.4, - "basicFaceEyelarge": 0, - "pinchFaceEnabled": true, - "points": [ - { - "positionX": 392.0104064941406, - "positionY": 966.646728515625, - "fixed": true - }, - { - "positionX": 424.6899108886719, - "positionY": 1160.541259765625, - "fixed": true - }, - { - "positionX": 511.9487609863281, - "positionY": 1306.074462890625, - "fixed": true - }, - { - "positionX": 596.3385620117188, - "positionY": 1381.8641357421875, - "fixed": true - }, - { - "positionX": 660.0175170898438, - "positionY": 1412.9744873046875, - "fixed": true - }, - { - "positionX": 767.317138671875, - "positionY": 1491.4183349609375, - "fixed": true - }, - { - "positionX": 875.8718872070312, - "positionY": 1412.962158203125, - "fixed": true - }, - { - "positionX": 935.34716796875, - "positionY": 1379.32421875, - "fixed": true - }, - { - "positionX": 1029.7938232421875, - "positionY": 1297.689208984375, - "fixed": true - }, - { - "positionX": 1107.4666748046875, - "positionY": 1157.3028564453125, - "fixed": true - }, - { - "positionX": 1143.990478515625, - "positionY": 966.646728515625, - "fixed": true - }, - { - "positionX": 420, - "positionY": 855, - "fixed": true - }, - { - "positionX": 506, - "positionY": 839.6893920898438, - "fixed": true - }, - { - "positionX": 692.8929443359375, - "positionY": 857.0098266601562, - "fixed": true - }, - { - "positionX": 499, - "positionY": 802.6893920898438, - "fixed": true - }, - { - "positionX": 1116, - "positionY": 855, - "fixed": true - }, - { - "positionX": 1030, - "positionY": 839.6893920898438, - "fixed": true - }, - { - "positionX": 843.1070556640625, - "positionY": 857.0098266601562, - "fixed": true - }, - { - "positionX": 1037, - "positionY": 802.6893920898438, - "fixed": true - }, - { - "positionX": 513.1281127929688, - "positionY": 950.0679321289062, - "fixed": true - }, - { - "positionX": 544.6527709960938, - "positionY": 970.9148559570312, - "fixed": true - }, - { - "positionX": 585.5798950195312, - "positionY": 972.0882568359375, - "fixed": true - }, - { - "positionX": 626.4053344726562, - "positionY": 968.7205810546875, - "fixed": true - }, - { - "positionX": 666.3204345703125, - "positionY": 968.0636596679688, - "fixed": true - }, - { - "positionX": 642.5635375976562, - "positionY": 922.6239013671875, - "fixed": true - }, - { - "positionX": 599.7583618164062, - "positionY": 911.7972412109375, - "fixed": true - }, - { - "positionX": 558.2445068359375, - "positionY": 923.4270629882812, - "fixed": true - }, - { - "positionX": 1022.8718872070312, - "positionY": 950.0679321289062, - "fixed": true - }, - { - "positionX": 991.3472290039062, - "positionY": 970.9148559570312, - "fixed": true - }, - { - "positionX": 950.4201049804688, - "positionY": 972.0882568359375, - "fixed": true - }, - { - "positionX": 909.5946655273438, - "positionY": 968.7205810546875, - "fixed": true - }, - { - "positionX": 869.6795654296875, - "positionY": 968.0636596679688, - "fixed": true - }, - { - "positionX": 893.4364624023438, - "positionY": 922.6239013671875, - "fixed": true - }, - { - "positionX": 936.2416381835938, - "positionY": 911.7972412109375, - "fixed": true - }, - { - "positionX": 977.7554931640625, - "positionY": 923.4270629882812, - "fixed": true - }, - { - "positionX": 719, - "positionY": 966, - "fixed": true - }, - { - "positionX": 714.8593139648438, - "positionY": 1102.2347412109375, - "fixed": true - }, - { - "positionX": 673.3064575195312, - "positionY": 1182.699951171875, - "fixed": true - }, - { - "positionX": 711.4496459960938, - "positionY": 1203.6878662109375, - "fixed": true - }, - { - "positionX": 767.4188842773438, - "positionY": 1216.0704345703125, - "fixed": true - }, - { - "positionX": 824.5503540039062, - "positionY": 1203.6878662109375, - "fixed": true - }, - { - "positionX": 862.6935424804688, - "positionY": 1182.699951171875, - "fixed": true - }, - { - "positionX": 821.1406860351562, - "positionY": 1102.2347412109375, - "fixed": true - }, - { - "positionX": 817, - "positionY": 966, - "fixed": true - }, - { - "positionX": 767.7044067382812, - "positionY": 1138.598876953125, - "fixed": true - }, - { - "positionX": 614.888671875, - "positionY": 1251.9876708984375, - "fixed": true - }, - { - "positionX": 921.111328125, - "positionY": 1251.9876708984375, - "fixed": true - }, - { - "positionX": 766.4959716796875, - "positionY": 1357.30322265625, - "fixed": true - }, - { - "positionX": 852.8787841796875, - "positionY": 1291.0240478515625, - "fixed": true - }, - { - "positionX": 766.7779541015625, - "positionY": 1307.046630859375, - "fixed": true - }, - { - "positionX": 683.1212158203125, - "positionY": 1291.0240478515625, - "fixed": true - }, - { - "positionX": 668.7772827148438, - "positionY": 1245.9910888671875, - "fixed": true - }, - { - "positionX": 727.4692993164062, - "positionY": 1244.43408203125, - "fixed": true - }, - { - "positionX": 808.5307006835938, - "positionY": 1244.43408203125, - "fixed": true - }, - { - "positionX": 867.2227172851562, - "positionY": 1245.9910888671875, - "fixed": true - }, - { - "positionX": 851.04150390625, - "positionY": 1268.3397216796875, - "fixed": true - }, - { - "positionX": 766.278076171875, - "positionY": 1280.4998779296875, - "fixed": true - }, - { - "positionX": 684.95849609375, - "positionY": 1268.3397216796875, - "fixed": true - }, - { - "positionX": 768, - "positionY": 966, - "fixed": true - }, - { - "positionX": 768.2948608398438, - "positionY": 860.6826782226562, - "fixed": true - }, - { - "positionX": 580, - "positionY": 550, - "fixed": true - }, - { - "positionX": 956, - "positionY": 550, - "fixed": true - }, - { - "positionX": 768, - "positionY": 538, - "fixed": true - }, - { - "positionX": 418, - "positionY": 655, - "fixed": true - }, - { - "positionX": 1118, - "positionY": 655, - "fixed": true - }, - { - "positionX": 526.6063232421875, - "positionY": 1138.6806640625, - "fixed": true - }, - { - "positionX": 1010.621826171875, - "positionY": 1138.8995361328125, - "fixed": true - }, - { - "positionX": 607.0260620117188, - "positionY": 1309.3126220703125, - "fixed": true - }, - { - "positionX": 923.7181396484375, - "positionY": 1317.06689453125, - "fixed": true - }, - { - "positionX": 768, - "positionY": 1056, - "fixed": true - }, - { - "positionX": 670, - "positionY": 683, - "fixed": true - }, - { - "positionX": 866, - "positionY": 683, - "fixed": true - }, - { - "positionX": 559, - "positionY": 721, - "fixed": true - }, - { - "positionX": 977, - "positionY": 721, - "fixed": true - }, - { - "positionX": 672.9261474609375, - "positionY": 1331.5426025390625, - "fixed": true - }, - { - "positionX": 863.0738525390625, - "positionY": 1331.5426025390625, - "fixed": true - }, - { - "positionX": 766.568603515625, - "positionY": 1248.2060546875, - "fixed": true - }, - { - "positionX": 672.6199340820312, - "positionY": 1371.67333984375, - "fixed": true - }, - { - "positionX": 860.5969848632812, - "positionY": 1369.945556640625, - "fixed": true - }, - { - "positionX": 766.186767578125, - "positionY": 1416.3792724609375, - "fixed": true - }, - { - "positionX": 412.3116455078125, - "positionY": 1086.68603515625, - "fixed": true - }, - { - "positionX": 465.0056457519531, - "positionY": 1225.9320068359375, - "fixed": true - }, - { - "positionX": 567.286865234375, - "positionY": 1357.969970703125, - "fixed": true - }, - { - "positionX": 447.096435546875, - "positionY": 952.1060180664062, - "fixed": true - }, - { - "positionX": 468.86627197265625, - "positionY": 1047.931884765625, - "fixed": true - }, - { - "positionX": 1118.267578125, - "positionY": 1087.3438720703125, - "fixed": true - }, - { - "positionX": 1074.6417236328125, - "positionY": 1228.001220703125, - "fixed": true - }, - { - "positionX": 964.3988037109375, - "positionY": 1355.176513671875, - "fixed": true - }, - { - "positionX": 1088.9036865234375, - "positionY": 952.1060180664062, - "fixed": true - }, - { - "positionX": 1065.43310546875, - "positionY": 1049.132568359375, - "fixed": true - }, - { - "positionX": 367.8214111328125, - "positionY": 890.7825927734375, - "fixed": true - }, - { - "positionX": 1168.2286376953125, - "positionY": 890.78759765625, - "fixed": true - }, - { - "positionX": 420, - "positionY": 787, - "fixed": true - }, - { - "positionX": 1116, - "positionY": 787, - "fixed": true - } - ], - "strength": 100, - "stretchEnabled": false, - "symmetry": true, - "thinFace": 0, - "shortFace": 0, - "reformSubType": "nature", - "type": "FacialReform", - "vFace": 0, - "version": 5665, - "width": 1536 - }, - { - "alignPoints": [ - 64 - ], - "scalePivotPoint1": 0, - "scalePivotPoint2": 18, - "faceIndex": [ - 0, - 1, - 2, - 3, - 4 - ], - "isRefine": true, - "isWaitFirstFrameDetect": false, - "isAllFrameFaceDetect": false, - "xAxisTrack": true, - "yAxisTrack": true, - "xAxisRotateTrack": true, - "yAxisRotateTrack": true, - "zAxisRotateTrack": true, - "xAxisScale": true, - "yAxisScale": true, - "genderBinding": "", - "type": "FaceTracking", - "enabled": true, - "entityId": -1034, - "componentID": -1227 - }, - { - "type": "EntityIdentifier", - "name": "自然瘦脸", - "id": -1034, - "enabled": true - } - ] - } - ], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "enabled": true, - "entityId": -1024, - "componentID": -1301, - "objectEnabled": true - }, - { - "componentID": -1302, - "enabled": true, - "entityId": -1024, - "renderTargetKey": "RenderTarget", - "type": "Camera", - "version": 8 - }, - { - "type": "EntityIdentifier", - "name": "摄像头", - "id": -1024 - } - ] - } - ], - "components": [ - { - "anchor": { - "bottom": 0, - "left": 0, - "right": 0, - "top": 0 - }, - "offset": { - "bottom": 0, - "left": 0, - "right": 0, - "top": 0 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": false, - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "rotation": { - "w": 0, - "x": 0, - "y": 0, - "z": 0 - }, - "entityId": -1016, - "componentID": -1303, - "type": "ScreenTransform", - "enabled": true, - "version": 2, - "objectEnabled": true - }, - { - "enabled": true, - "entityId": -1016, - "tips": "提示语", - "type": "Tips", - "version": 17, - "image": "", - "componentID": -1304 - }, - { - "type": "EntityIdentifier", - "name": "拍摄模板", - "id": -1016 - } - ], - "enabled": true, - "version": 0, - "inputFormats": [ - { - "key": "DeviceCameraTexture", - "type": "TextureData", - "properties": {} - } - ] - }, - "inputSources": { - "RenderTarget": { - "key": "RenderTarget", - "path": "RenderTarget.rdt", - "hash": "1007a798a17b0b0b3b7e21c6a2e8b805", - "label": "RenderTarget.rdt", - "type": "RenderTarget", - "inputKey": "DeviceCameraTexture" - }, - "DeviceCameraTexture": { - "key": "DeviceCameraTexture", - "path": "DeviceCameraTexture.tex", - "hash": "18167426118cbf6da2972283f3318e72", - "label": "DeviceCameraTexture.tex", - "type": "TextureData" - } - } -} diff --git a/Android/tuibeauty/src/main/assets/LightCore/default/defaultExternalRender.json b/Android/tuibeauty/src/main/assets/LightCore/default/defaultExternalRender.json deleted file mode 100644 index 3b81d981..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/default/defaultExternalRender.json +++ /dev/null @@ -1,231 +0,0 @@ -{ - "componentLevel": 1, - "madeIn": "LightStudio", - "root": { - "id": -2016, - "name": "拍摄模板", - "children": [ - { - "id": -2017, - "name": "2D画板", - "children": [ - { - "id": -2018, - "name": "空对象", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "type": "ScreenTransform", - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "rotation": { - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "anchor": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "offset": { - "left": -360, - "right": 360, - "top": 640, - "bottom": -640 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 0, - "eFixSize": 3, - "eEditingMode": 0, - "eKeepRatio": true, - "objectEnabled": true, - "enabled": true, - "entityId": -2018, - "componentID": -2000 - }, - { - "key": "default_external_render", - "data": "", - "type": "ExternalRender", - "enabled": true, - "version": 1, - "entityId": -2018, - "componentID": -2004 - }, - { - "type": "EntityIdentifier", - "name": "空对象", - "id": -2018 - } - ] - } - ], - "enabled": true, - "version": 0, - "components": [ - { - "anchor": { - "bottom": -1, - "left": -1, - "right": 1, - "top": 1 - }, - "offset": { - "bottom": 0, - "left": 0, - "right": 0, - "top": 0 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 15, - "eFixSize": 0, - "eEditingMode": 1, - "eKeepRatio": false, - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "rotation": { - "w": 1, - "x": 0, - "y": 0, - "z": 0 - }, - "entityId": -2017, - "componentID": -2002, - "type": "ScreenTransform", - "enabled": true, - "version": 2, - "objectEnabled": true - }, - { - "componentID": -2003, - "enabled": true, - "entityId": -2017, - "renderTargetKey": "RenderTarget", - "type": "Camera", - "version": 2 - }, - { - "type": "EntityIdentifier", - "name": "2D画板", - "id": -2017 - } - ] - } - ], - "components": [ - { - "anchor": { - "bottom": -1, - "left": -1, - "right": 1, - "top": 1 - }, - "offset": { - "bottom": 0, - "left": 0, - "right": 0, - "top": 0 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 15, - "eFixSize": 0, - "eEditingMode": 1, - "eKeepRatio": false, - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "rotation": { - "w": 1, - "x": 0, - "y": 0, - "z": 0 - }, - "entityId": -2016, - "componentID": -2001, - "type": "ScreenTransform", - "enabled": true, - "version": 2, - "objectEnabled": true - }, - { - "type": "EntityIdentifier", - "name": "拍摄模板", - "id": -2016 - } - ], - "enabled": true, - "version": 0 - }, - "inputSources": { - "RenderTarget": { - "key": "RenderTarget", - "type": "RenderTarget", - "path": "RenderTarget.rdt", - "label": "RenderTarget.rdt", - "inputKey": "DeviceCameraTexture" - }, - "DeviceCameraTexture": { - "key": "DeviceCameraTexture", - "type": "TextureData", - "path": "DeviceCameraTexture.tex", - "label": "DeviceCameraTexture.tex" - } - }, - "preset": {}, - "properties": { - "layout": { - "width": 720, - "height": 1280 - }, - "boundsTrackerPlaceHolders": [], - "musicIDs": [], - "fonts": [], - "movieConfig": { - "sourceType": 2, - "minClipAssetCount": 1, - "maxClipAssetCount": 999, - "minImageDuration": 1000000, - "maxImageDuration": 10000000, - "minVideoDuration": 2000000, - "preferredCoverTime": 1000000 - }, - "resourceIDs": [] - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/default/defaultSliderValueForQQ.json b/Android/tuibeauty/src/main/assets/LightCore/default/defaultSliderValueForQQ.json deleted file mode 100644 index 63da9bf2..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/default/defaultSliderValueForQQ.json +++ /dev/null @@ -1,99 +0,0 @@ -{ - "defaultValueItems": [ - { - "key": "mopi", - "description": "磨皮", - "defaultValue": 0.6 - }, - { - "key": "ziranmeixing", - "description": "自然美型", - "defaultValue": 0.4 - }, - { - "key": "nvshenmeixing", - "description": "女神美型", - "defaultValue": 0.4 - }, - { - "key": "nanshenmeixing", - "description": "男神美型", - "defaultValue": 0.4 - }, - { - "key": "dayan", - "description": "大眼", - "defaultValue": 0.3 - }, - { - "key": "qingxi", - "description": "清晰", - "defaultValue": 0.2 - }, - { - "key": "meibai", - "description": "美白", - "defaultValue": 0.3 - }, - { - "key": "xiaolian", - "description": "小脸", - "defaultValue": 0.0 - }, - { - "key": "zhailian", - "description": "窄脸", - "defaultValue": 0.0 - }, - { - "key": "shouquangu", - "description": "瘦颧骨", - "defaultValue": 0.2 - }, - { - "key": "shoubi", - "description": "瘦鼻", - "defaultValue": 0.3 - }, - { - "key": "zuixing", - "description": "嘴型", - "defaultValue": 0.0 - }, - { - "key": "etou", - "description": "额头", - "defaultValue": 0.0 - }, - { - "key": "kouhong", - "description": "口红", - "defaultValue": 0.3 - }, - { - "key": "saihong", - "description": "腮红", - "defaultValue": 0.2 - }, - { - "key": "wuguanliti", - "description": "五官立体", - "defaultValue": 0.4 - }, - { - "key": "baiya", - "description": "白牙", - "defaultValue": 0.2 - }, - { - "key": "heiyanquan", - "description": "黑眼圈", - "defaultValue": 0.5 - }, - { - "key": "falingwen", - "description": "法令纹", - "defaultValue": 0.3 - } - ] -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/gan/gan_android_kernel.cl b/Android/tuibeauty/src/main/assets/LightCore/gan/gan_android_kernel.cl deleted file mode 100644 index 7c0c0d08..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/gan/gan_android_kernel.cl +++ /dev/null @@ -1,383 +0,0 @@ -#pragma OPENCL EXTENSION cl_khr_fp16 : enable -__kernel void gy_change_style_preprocess_pack_v4(__private const int global_size_dim0, - __private const int global_size_dim1, - __write_only image2d_t input_ptr, - __private const int channel_up_4, - __private const int height, - __private const int width, - __global uchar *input_camera, - __global uchar *input_style) { - __const sampler_t SAMPLER = - CLK_NORMALIZED_COORDS_FALSE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST; - int image_width_idx = get_global_id(0); - int image_height_idx = get_global_id(1); - if (image_width_idx >= global_size_dim0 || - image_height_idx >= global_size_dim1) { - return; - } - const int channel_cl = image_width_idx / width; - const int offset_input = (image_height_idx * width + image_width_idx % width)*4; - uchar4 input_camera4 = vload4(0, input_camera + offset_input); - uchar4 input_style4 = vload4(0, input_style + offset_input); - int2 coord = (int2)(image_width_idx, image_height_idx); - half4 values4 = convert_half4(input_camera4)/255.0h; - half4 values4_style = convert_half4(input_style4)/255.0h; - values4 = values4 * 2.0h - 1.0h; - values4_style = values4_style *2.0h - 1.0h; - if(channel_cl == 0){ - values4_style.w = values4.x; - }else { - values4_style.x = values4.y; - values4_style.y = values4.z; - values4_style.zw = 0.0h; - } - write_imageh(input_ptr, coord, values4_style); -}; - -__kernel void gy_change_style_postprocess2A_nostyle(__private const int global_size_dim0, - __private const int global_size_dim1, - __read_only image2d_t input_ptr, - __private const int channel_up_4, - __private const int height, - __private const int width, - __read_only image2d_t input_ptr_2, - __private const int channel_up_4_2, - __private const int height_2, - __private const int width_2, - __global uchar *output){ -__const sampler_t SAMPLER = - CLK_NORMALIZED_COORDS_FALSE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST; -int image_width_idx = get_global_id(0); -int image_height_idx = get_global_id(1); -if (image_width_idx >= global_size_dim0 || -image_height_idx >= global_size_dim1) { -return; -} -const int batch_idx = image_height_idx / height; -const int height_idx = image_height_idx % height; -const int width_idx = image_width_idx % width; -int channel_block_idx = image_width_idx / width; - -int buffer_offset = - (((batch_idx * channel_up_4 + channel_block_idx) * height + height_idx) * - width + - width_idx) * - 4; -int2 coord = (int2)(image_width_idx, image_height_idx); -half4 half4_1 = read_imageh(input_ptr, SAMPLER, coord); -half4 half4_2 = read_imageh(input_ptr_2, SAMPLER, coord); -half alpha = clamp(half4_2.x, 0.0h, 1.0h); -half4_1 = (half4_1 + 1.0h) / 2.0h; -half4_1 = clamp(half4_1, 0.0h, 1.0h); - -half4_1.w = 1.0h - alpha; -half4_1.xyz = clamp(half4_1.xyz, 0.0h, 1.0h) * half4_1.w; - -uchar4 values4 = convert_uchar4_sat(half4_1 * 255.0h); -vstore4(values4, 0, output + buffer_offset); -}; -__kernel void gy_change_style_postprocess2A(__private const int global_size_dim0, - __private const int global_size_dim1, - __read_only image2d_t input_ptr, - __private const int channel_up_4, - __private const int height, - __private const int width, - __read_only image2d_t input_ptr_2, - __private const int channel_up_4_2, - __private const int height_2, - __private const int width_2, - __global uchar *output, - __global uchar *input_style) { - __const sampler_t SAMPLER = - CLK_NORMALIZED_COORDS_FALSE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST; - int image_width_idx = get_global_id(0); - int image_height_idx = get_global_id(1); - if (image_width_idx >= global_size_dim0 || - image_height_idx >= global_size_dim1) { - return; - } - const int batch_idx = image_height_idx / height; - const int height_idx = image_height_idx % height; - const int width_idx = image_width_idx % width; - int channel_block_idx = image_width_idx / width; - - int buffer_offset = - (((batch_idx * channel_up_4 + channel_block_idx) * height + height_idx) * - width + - width_idx) * - 4; - int2 coord = (int2)(image_width_idx, image_height_idx); - half4 half4_1 = read_imageh(input_ptr, SAMPLER, coord); - half4 half4_2 = read_imageh(input_ptr_2, SAMPLER, coord); - half alpha = clamp(half4_2.x, 0.0h, 1.0h); - half4_1 = (half4_1 + 1.0h) / 2.0h; - half4_1 = clamp(half4_1, 0.0h, 1.0h); - - half4_1.w = 1.0h - alpha; - half4_1.xyz = clamp(half4_1.xyz, 0.0h, 1.0h) * half4_1.w; - - uchar4 values4 = convert_uchar4_sat(half4_1 * 255.0h); - vstore4(values4, 0, output + buffer_offset); -}; -__kernel void gender_style_preprocess(__private const int global_size_dim0, - __private const int global_size_dim1, - __write_only image2d_t input_ptr, - __private const int channel_up_4, - __private const int height, - __private const int width, - __global uchar *input_camera) { - __const sampler_t SAMPLER = - CLK_NORMALIZED_COORDS_FALSE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST; - int image_width_idx = get_global_id(0); - int image_height_idx = get_global_id(1); - - if (image_width_idx >= global_size_dim0 || - image_height_idx >= global_size_dim1) { - return; - } - const int channel_cl = image_width_idx / width; - const int offset_input = (image_height_idx * width + image_width_idx % width)*4; - uchar4 input_camera4 = vload4(0, input_camera + offset_input); - int2 coord = (int2)(image_width_idx, image_height_idx); - half4 values4 = convert_half4(input_camera4); - write_imageh(input_ptr, coord, values4); -}; -__kernel void gender_style_postprocess(__private const int global_size_dim0, - __private const int global_size_dim1, - __read_only image2d_t input_ptr, - __private const int channel_up_4, - __private const int height, - __private const int width, - __global uchar *output) { - __const sampler_t SAMPLER = - CLK_NORMALIZED_COORDS_FALSE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST; - int image_width_idx = get_global_id(0); - int image_height_idx = get_global_id(1); - if (image_width_idx >= global_size_dim0 || - image_height_idx >= global_size_dim1) { - return; - } - const int batch_idx = image_height_idx / height; - const int height_idx = image_height_idx % height; - const int width_idx = image_width_idx % width; - int channel_block_idx = image_width_idx / width; - - int buffer_offset = - (((batch_idx * channel_up_4 + channel_block_idx) * height + height_idx) * - width + - width_idx) * - 4; - int2 coord = (int2)(image_width_idx, image_height_idx); - half4 half4_1 = read_imageh(input_ptr, SAMPLER, coord); - uchar4 values4 = convert_uchar4_sat(half4_1); - vstore4(values4, 0, output + buffer_offset); -}; -__kernel void age_style_preprocess_image(__private const int global_size_dim0, - __private const int global_size_dim1, - __write_only image2d_t input_ptr, - __private const int channel_up_4, - __private const int height, - __private const int width, - __global uchar *input_camera) { - __const sampler_t SAMPLER = - CLK_NORMALIZED_COORDS_FALSE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST; - int image_width_idx = get_global_id(0); - int image_height_idx = get_global_id(1); - - if (image_width_idx >= global_size_dim0 || - image_height_idx >= global_size_dim1) { - return; - } - const int channel_cl = image_width_idx / width; - const int offset_input = (image_height_idx * width + image_width_idx % width)*4; - uchar4 input_camera4 = vload4(0, input_camera + offset_input); - int2 coord = (int2)(image_width_idx, image_height_idx); - half4 values4 = convert_half4(input_camera4); - write_imageh(input_ptr, coord, values4); -}; -__kernel void age_style_postprocess(__private const int global_size_dim0, - __private const int global_size_dim1, - __read_only image2d_t input_ptr, - __private const int channel_up_4, - __private const int height, - __private const int width, - __read_only image2d_t input_ptr_2, - __private const int channel_up_4_2, - __private const int height_2, - __private const int width_2, - __global uchar *output, - __global uchar *output_2, - __global uchar *inputmatte) { - __const sampler_t SAMPLER = - CLK_NORMALIZED_COORDS_FALSE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST; - int image_width_idx = get_global_id(0); - int image_height_idx = get_global_id(1); - if (image_width_idx >= global_size_dim0 || - image_height_idx >= global_size_dim1) { - return; - } - const int batch_idx = image_height_idx / height; - const int height_idx = image_height_idx % height; - const int width_idx = image_width_idx % width; - int channel_block_idx = image_width_idx / width; - - int buffer_offset = - (((batch_idx * channel_up_4 + channel_block_idx) * height + height_idx) * - width + - width_idx) * - 4; - int warp_offset_x = (((batch_idx * channel_up_4 + channel_block_idx) * height + height_idx) * width + width_idx)*4; - int warp_offset_y = warp_offset_x + height * width; - int2 coord = (int2)(image_width_idx, image_height_idx); - uchar4 values = convert_uchar4_sat(read_imageh(input_ptr, SAMPLER, coord)); - vstore4(values, 0, output + buffer_offset); - float4 mattevalues = convert_float4(vload4(0, inputmatte + buffer_offset))/255.0f; - half4 warphalf = read_imageh(input_ptr_2, SAMPLER, coord) * (half4)(mattevalues.x, mattevalues.x, mattevalues.x, mattevalues.x); - warphalf = (warphalf * 0.5h + 0.5h) * 255.0h; - half2 a = floor(warphalf.xy); - half2 b = fract(warphalf.xy, &a) * 255.0h; - output_2[warp_offset_x] = convert_uchar(clamp(a.x, 0.0h, 255.0h)); - output_2[warp_offset_x + 1] = convert_uchar(clamp(a.y, 0.0h, 255.0h)); - output_2[warp_offset_x + 2] = convert_uchar(clamp(b.x, 0.0h, 255.0h)); - output_2[warp_offset_x + 3] = convert_uchar(clamp(b.y, 0.0h, 255.0h)); -}; -__kernel void gy_style_preprocess_1in_scale2(__private const int global_size_dim0, - __private const int global_size_dim1, - __write_only image2d_t input_ptr, - __private const int channel_up_4, - __private const int height, - __private const int width, - __global uchar *input_camera) { - __const sampler_t SAMPLER = - CLK_NORMALIZED_COORDS_FALSE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST; - int image_width_idx = get_global_id(0); - int image_height_idx = get_global_id(1); - - if (image_width_idx >= global_size_dim0 || - image_height_idx >= global_size_dim1) { - return; - } - const int channel_cl = image_width_idx / width; - const int offset_input = (image_height_idx * width + image_width_idx % width)*4; - uchar4 input_camera4 = vload4(0, input_camera + offset_input); - int2 coord = (int2)(image_width_idx, image_height_idx); - half4 values4 = convert_half4(input_camera4)/255.0h; - values4 = values4 * 2.0h - 1.0h; - write_imageh(input_ptr, coord, values4); -}; -__kernel void gy_style_postprocess_2out_scale2(__private const int global_size_dim0, - __private const int global_size_dim1, - __read_only image2d_t input_ptr, - __private const int channel_up_4, - __private const int height, - __private const int width, - __read_only image2d_t input_ptr_2, - __private const int channel_up_4_2, - __private const int height_2, - __private const int width_2, - __global uchar *output) { - __const sampler_t SAMPLER = - CLK_NORMALIZED_COORDS_FALSE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST; - int image_width_idx = get_global_id(0); - int image_height_idx = get_global_id(1); - if (image_width_idx >= global_size_dim0 || - image_height_idx >= global_size_dim1) { - return; - } - const int batch_idx = image_height_idx / height; - const int height_idx = image_height_idx % height; - const int width_idx = image_width_idx % width; - int channel_block_idx = image_width_idx / width; - - int buffer_offset = - (((batch_idx * channel_up_4 + channel_block_idx) * height + height_idx) * - width + - width_idx) * - 4; - int2 coord = (int2)(image_width_idx, image_height_idx); - half4 half4_1 = read_imageh(input_ptr, SAMPLER, coord); - half4 half4_2 = read_imageh(input_ptr_2, SAMPLER, coord); - half alpha = clamp(half4_2.x, 0.0h, 1.0h); - half4_1 = (half4_1 + 1.0h) / 2.0h; - half4_1 = clamp(half4_1, 0.0h, 1.0h) * alpha; - half4_1.w = alpha; - uchar4 values4 = convert_uchar4_sat(half4_1 * 255.0h); - vstore4(values4, 0, output + buffer_offset); -}; - // 迪士尼/变年轻 -__kernel void gy_gan_age_style_preprocess(__private const int global_size_dim0, - __private const int global_size_dim1, - __write_only image2d_t input_ptr, - __private const int channel_up_4, - __private const int height, - __private const int width, - __global uchar *input_camera) { - __const sampler_t SAMPLER = - CLK_NORMALIZED_COORDS_FALSE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST; - int image_width_idx = get_global_id(0); - int image_height_idx = get_global_id(1); - - if (image_width_idx >= global_size_dim0 || - image_height_idx >= global_size_dim1) { - return; - } - const int channel_cl = image_width_idx / width; - const int offset_input = (image_height_idx * width + image_width_idx % width)*4; - uchar4 input_camera4 = vload4(0, input_camera + offset_input); - int2 coord = (int2)(image_width_idx, image_height_idx); - half4 values4 = convert_half4(input_camera4)/255.0h; - values4 = values4 * 2.0h - 1.0h; - write_imageh(input_ptr, coord, values4); -}; -__kernel void gy_gan_age_postGLWarp(__private const int global_size_dim0, - __private const int global_size_dim1, - __read_only image2d_t input_ptr, - __private const int channel_up_4, - __private const int height, - __private const int width, - __read_only image2d_t input_ptr_2, - __private const int channel_up_4_2, - __private const int height_2, - __private const int width_2, - __global uchar *output, - __global uchar *output_2, - __global uchar *inputmatte) { - __const sampler_t SAMPLER = - CLK_NORMALIZED_COORDS_FALSE | CLK_ADDRESS_CLAMP | CLK_FILTER_NEAREST; - int image_width_idx = get_global_id(0); - int image_height_idx = get_global_id(1); - if (image_width_idx >= global_size_dim0 || - image_height_idx >= global_size_dim1) { - return; - } - const int batch_idx = image_height_idx / height; - const int height_idx = image_height_idx % height; - const int width_idx = image_width_idx % width; - int channel_block_idx = image_width_idx / width; - - int buffer_offset = - (((batch_idx * channel_up_4 + channel_block_idx) * height + height_idx) * - width + - width_idx) * - 4; - int warp_offset_x = (((batch_idx * channel_up_4 + channel_block_idx) * height + height_idx) * width + width_idx)*4; - int warp_offset_y = warp_offset_x + height * width; - int2 coord = (int2)(image_width_idx, image_height_idx); - half4 half4_1 = read_imageh(input_ptr, SAMPLER, coord); - half alpha = clamp(half4_1.w, 0.0h, 1.0h); - half4_1.xyz = (half4_1.xyz + 1.0h) / 2.0h; - //half4_1 = half4_1 * alpha; - half4_1.xyz = half4_1.xyz * alpha; - half4_1 = clamp(half4_1, 0.0h, 1.0h); - uchar4 values = convert_uchar4_sat(half4_1 * 255.0h); - vstore4(values, 0, output + buffer_offset); - float4 mattevalues = convert_float4(vload4(0, inputmatte + buffer_offset))/255.0f; - half4 warphalf = read_imageh(input_ptr_2, SAMPLER, coord) * (half4)(mattevalues.x, mattevalues.x, mattevalues.x, mattevalues.x); - warphalf = (warphalf * 0.5h + 0.5h) * 255.0h; - half2 a = floor(warphalf.xy); - half2 b = fract(warphalf.xy, &a) * 255.0h; - output_2[warp_offset_x] = convert_uchar(clamp(a.x, 0.0h, 255.0h)); - output_2[warp_offset_x + 1] = convert_uchar(clamp(a.y, 0.0h, 255.0h)); - output_2[warp_offset_x + 2] = convert_uchar(clamp(b.x, 0.0h, 255.0h)); - output_2[warp_offset_x + 3] = convert_uchar(clamp(b.y, 0.0h, 255.0h)); -}; \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/gan/gan_ios.metallib b/Android/tuibeauty/src/main/assets/LightCore/gan/gan_ios.metallib deleted file mode 100644 index e7ba226c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/gan/gan_ios.metallib and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/gan/gan_mac.metallib b/Android/tuibeauty/src/main/assets/LightCore/gan/gan_mac.metallib deleted file mode 100644 index 11163c72..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/gan/gan_mac.metallib and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/gan/gan_simulator.metallib b/Android/tuibeauty/src/main/assets/LightCore/gan/gan_simulator.metallib deleted file mode 100644 index 9e13c5e0..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/gan/gan_simulator.metallib and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/adjustment/darkcornermask_revert.png b/Android/tuibeauty/src/main/assets/LightCore/images/adjustment/darkcornermask_revert.png deleted file mode 100644 index 92dc433e..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/adjustment/darkcornermask_revert.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/adjustment/fade_effect.png b/Android/tuibeauty/src/main/assets/LightCore/images/adjustment/fade_effect.png deleted file mode 100644 index 914d7c0a..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/adjustment/fade_effect.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/beauty_multiply_v6.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/beauty_multiply_v6.png deleted file mode 100644 index 52e4b284..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/beauty_multiply_v6.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/beauty_normal_v6.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/beauty_normal_v6.png deleted file mode 100644 index 9df0c57c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/beauty_normal_v6.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/beauty_softlight_v6.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/beauty_softlight_v6.png deleted file mode 100644 index 2fe9d275..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/beauty_softlight_v6.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/color_tone_baixi.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/color_tone_baixi.png deleted file mode 100644 index 05448ed8..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/color_tone_baixi.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/color_tone_hongrun.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/color_tone_hongrun.png deleted file mode 100644 index fcffbbcd..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/color_tone_hongrun.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/eye_lut.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/eye_lut.png deleted file mode 100644 index 8e6d6fa9..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/eye_lut.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lips_fuguhong.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lips_fuguhong.png deleted file mode 100644 index f19d78c2..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lips_fuguhong.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lips_huolicheng.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lips_huolicheng.png deleted file mode 100644 index 25922517..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lips_huolicheng.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lips_mitaose.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lips_mitaose.png deleted file mode 100644 index e2fb98b4..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lips_mitaose.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lips_shanhuju.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lips_shanhuju.png deleted file mode 100644 index 557d281a..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lips_shanhuju.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lips_wenroufen.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lips_wenroufen.png deleted file mode 100644 index 61385938..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lips_wenroufen.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/liti_guangmang.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/liti_guangmang.png deleted file mode 100644 index f22783d1..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/liti_guangmang.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/liti_junlang.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/liti_junlang.png deleted file mode 100644 index 3a990585..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/liti_junlang.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/liti_qingxin.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/liti_qingxin.png deleted file mode 100644 index 7d363ae5..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/liti_qingxin.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/liti_ziran.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/liti_ziran.png deleted file mode 100644 index 1b6ea8dd..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/liti_ziran.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lut1.jpg b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lut1.jpg deleted file mode 100644 index e40dcf91..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lut1.jpg and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lut2.jpg b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lut2.jpg deleted file mode 100644 index 05723723..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/lut2.jpg and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/mask1.jpg b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/mask1.jpg deleted file mode 100644 index 6b70669c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/mask1.jpg and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/mask2.jpg b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/mask2.jpg deleted file mode 100644 index 3d7e5a7a..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/mask2.jpg and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/mask_quzhou.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/mask_quzhou.png deleted file mode 100644 index 0ed12434..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/mask_quzhou.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/mask_quzhou_small.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/mask_quzhou_small.png deleted file mode 100644 index fc2ea477..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/mask_quzhou_small.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/saihong_chengshu.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/saihong_chengshu.png deleted file mode 100644 index cb6f6750..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/saihong_chengshu.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/saihong_haixiu.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/saihong_haixiu.png deleted file mode 100644 index 568d3be3..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/saihong_haixiu.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/saihong_jianyue.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/saihong_jianyue.png deleted file mode 100644 index 2f8cb74d..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/saihong_jianyue.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/saihong_queban.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/saihong_queban.png deleted file mode 100644 index 95ecbc82..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/saihong_queban.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/saihong_shengxia.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/saihong_shengxia.png deleted file mode 100644 index bd1cef73..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/saihong_shengxia.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/softlight_Vlian.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/softlight_Vlian.png deleted file mode 100644 index 5ec226fd..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/softlight_Vlian.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/teethMask_v6.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/teethMask_v6.png deleted file mode 100644 index b1cf999d..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/teethMask_v6.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/teethMask_v7.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/teethMask_v7.png deleted file mode 100644 index dcd2d2a6..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/teethMask_v7.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/teeth_v6.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/teeth_v6.png deleted file mode 100644 index 580494e4..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/teeth_v6.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/teeth_v7.jpg b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/teeth_v7.jpg deleted file mode 100644 index bf46bacc..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/teeth_v7.jpg and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/v9_beauty_teeth_white.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/v9_beauty_teeth_white.png deleted file mode 100755 index d1d9d072..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/v9_beauty_teeth_white.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/v9_bright_eye_map.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/v9_bright_eye_map.png deleted file mode 100644 index 9a410db6..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/v9_bright_eye_map.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/v9_face_mask.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/v9_face_mask.png deleted file mode 100644 index 4907de24..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/v9_face_mask.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/v9_face_shadow_mask.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/v9_face_shadow_mask.png deleted file mode 100644 index 414d559b..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/v9_face_shadow_mask.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/v9_skin_mask.png b/Android/tuibeauty/src/main/assets/LightCore/images/beauty/v9_skin_mask.png deleted file mode 100644 index 6c687850..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/beauty/v9_skin_mask.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/gan/ganCullingMaskAlpha.png b/Android/tuibeauty/src/main/assets/LightCore/images/gan/ganCullingMaskAlpha.png deleted file mode 100644 index 48693b5b..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/gan/ganCullingMaskAlpha.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/hair_color/dark.png b/Android/tuibeauty/src/main/assets/LightCore/images/hair_color/dark.png deleted file mode 100644 index 5e6b17f9..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/hair_color/dark.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/hair_color/light.png b/Android/tuibeauty/src/main/assets/LightCore/images/hair_color/light.png deleted file mode 100644 index 1be7fdb9..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/hair_color/light.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/liquify/mesh_data.png b/Android/tuibeauty/src/main/assets/LightCore/images/liquify/mesh_data.png deleted file mode 100644 index e69fb524..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/liquify/mesh_data.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/eyeNewMask.png b/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/eyeNewMask.png deleted file mode 100644 index 56131bc9..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/eyeNewMask.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/faceoffmask.png b/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/faceoffmask.png deleted file mode 100644 index 172bbe65..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/faceoffmask.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/faceoffnose.png b/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/faceoffnose.png deleted file mode 100644 index f5f99f04..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/faceoffnose.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/lipsMask.png b/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/lipsMask.png deleted file mode 100644 index 849ebf0c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/lipsMask.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/lipsNewMask.png b/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/lipsNewMask.png deleted file mode 100644 index 158f6d8c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/lipsNewMask.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/lipsOldMask.png b/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/lipsOldMask.png deleted file mode 100755 index 43e9d3c3..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/lipsOldMask.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/noeyegray.png b/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/noeyegray.png deleted file mode 100644 index 14a29a37..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/noeyegray.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/nomouthgray.png b/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/nomouthgray.png deleted file mode 100644 index 7119b545..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/makeup_face/nomouthgray.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/pinch_face/face_config.png b/Android/tuibeauty/src/main/assets/LightCore/images/pinch_face/face_config.png deleted file mode 100644 index 9bc02ab5..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/pinch_face/face_config.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/pinch_face/face_config_v7.png b/Android/tuibeauty/src/main/assets/LightCore/images/pinch_face/face_config_v7.png deleted file mode 100644 index 395e66ef..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/pinch_face/face_config_v7.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/smooth/facecolor.png b/Android/tuibeauty/src/main/assets/LightCore/images/smooth/facecolor.png deleted file mode 100644 index b0dddf9d..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/smooth/facecolor.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/smooth/facewhiten_natural.png b/Android/tuibeauty/src/main/assets/LightCore/images/smooth/facewhiten_natural.png deleted file mode 100644 index aeae51bb..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/smooth/facewhiten_natural.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/smooth/smooth_mask.png b/Android/tuibeauty/src/main/assets/LightCore/images/smooth/smooth_mask.png deleted file mode 100644 index 48f59a6e..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/smooth/smooth_mask.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/smooth/v7_face_lut.png b/Android/tuibeauty/src/main/assets/LightCore/images/smooth/v7_face_lut.png deleted file mode 100644 index ed0ea6aa..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/smooth/v7_face_lut.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/images/smooth/v7_facemask_new.png b/Android/tuibeauty/src/main/assets/LightCore/images/smooth/v7_facemask_new.png deleted file mode 100644 index a3bafbe1..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/images/smooth/v7_facemask_new.png and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/js/AEJSBridge.js b/Android/tuibeauty/src/main/assets/LightCore/js/AEJSBridge.js deleted file mode 100644 index 9e045e87..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/js/AEJSBridge.js +++ /dev/null @@ -1,644 +0,0 @@ -//定义Resource类 -class Resource { - constructor(path) { - this.path = path; - this.key = ""; - } -} - -/* - AEJSBridge.js 需要是一个辅助js文件,方便上层做一个简单的触发事件 - global.template对象是一个素材对象,素材相关的数据都应该挂在template对象内,方便清除 -*/ -// 解决iOS10上Object.entries未实现的问题 -(function(){ - if (!Object.entries) { - Object.entries = function( obj ){ - var ownProps = Object.keys( obj ), - i = ownProps.length, - resArray = new Array(i); // preallocate the Array - while (i--) - resArray[i] = [ownProps[i], obj[ownProps[i]]]; - - return resArray; - }; - } -}()); - -// 给Entity引入getEntity方法 -(function () { - light.EntityManager.prototype.getEntity = function (entityId) { - let entity = this.getEntityById(entityId); - if (entity.valid()) { - entity.entityId = entityId; - return entity; - }else { - return undefined; - } - } -}()); - -// 引入getComponent方法,并支持多人操作 -(function () { - - // 获取指定entity内component的方法 - light._getComponent = function (entity, type) { - // 加上valid保护,防止entity被人动态修改了 - if (!entity.valid()) { - return undefined; - } - if (!entity.hasComponent(type)) { - return undefined; - } - return entity["get" + type + "Component"](); - } - - // 素材脚本内使用这个方法来getComponent - light.getComponent = function (entity, type) { - let component = light._getComponent(entity, type); - // 遇到问题了则继续返回 - if (component == undefined) { - return undefined; - } - // 如果当前entity包含FaceTracking - let faceTracking = light._getComponent(entity, "FaceTracking"); - if (faceTracking == undefined) { - return component; - } - // console.log("js log: faceTracking is find in entity " + entity.entityId); - // 如果_entityManager出问题了,则直接返回 - if (!light._entityManager) { - return component; - } - // console.log("js log: start to expand entity " + entity.entityId); - // 支持多人的Entity, 在DecodeSystem里会被duplicate - let duplicate_entity_ids = faceTracking.duplicate_entity_id_; - let duplicate_entity_size = duplicate_entity_ids.size(); - // 如果只跟随了一个人(无论是哪一个), 则不需要proxy,直接返回当前Component - if (duplicate_entity_size == 1) { - return component; - } - - let proxy = new Proxy(component, { - //给set方法增加钩子 - set: light._setterForComponent, - get: light._getterForComponent - }); - return proxy; - } - - light._setterForComponent = function(obj, prop, value) { - // 先讲原始Component的属性进行修改 - obj[prop] = value; - - // 再实时获取faceTracking - if (!light._entityManager) { - return; - } - let entity = light._entityManager.getEntity(obj.entityId); - let faceTracking = light._getComponent(entity, "FaceTracking"); - if (faceTracking == undefined) { - return; - } - // 及其duplicate_entity_ids - let duplicate_entity_ids = faceTracking.duplicate_entity_id_; - let duplicate_entity_size = duplicate_entity_ids.size(); - // 遍历duplicate_entity_ids - for (let i = 0; i < duplicate_entity_size; i++) { - let duplicatedId = duplicate_entity_ids.get(i); - // 找到多人entity - let duplicatedEntity = light._entityManager.getEntity(duplicatedId); - if (duplicatedEntity) { - // 并修改其值 - let component = light._getComponent(duplicatedEntity, obj.type()); - if (component) { - component[prop] = value; - } - } - } - } - - light._getterForComponent = function (obj, prop) { - if (prop === "type") { - return obj.type(); - }else { - return prop in obj ? obj[prop] : undefined; - } - }; -}()); - -// 定义一些常量 -const JS_AI_DATA_REQUIRE_SMILE = "Smile"; // 微笑 -const JS_AI_DATA_REQUIRE_POUT = "Pout"; // 嘟嘟嘴 -const JS_AI_DATA_REQUIRE_AGE = "Age"; // 年龄 -const JS_AI_DATA_REQUIRE_GENDER = "Gender"; // 性别 -const JS_AI_DATA_REQUIRE_HAND_GESTURE = "Hand_Gesture"; // 手势检测 -const JS_AI_DATA_REQUIRE_EXPRESSION = "Expression"; // 表情检测 -const JS_AI_DATA_REQUIRE_BODY_GESTURE = "Body_Gesture"; // 人体检测 -const JS_AI_DATA_REQUIRE_FACE_POINT = "Face_Point"; // 人脸点 -const JS_AI_DATA_REQUIRE_HAND_POINT = "Hand_Point"; // 手势点 -const JS_AI_DATA_REQUIRE_BODY_POINT = "Body_Point"; // 身体点 -const JS_AI_DATA_REQUIRE_CAT_POINT = "Cat_Point"; // 猫脸点 -const JS_AI_DATA_REQUIRE_FACE_CLASSIFY = "Face_Classify"; // 敏感人物检测 -const JS_AI_DATA_REQUIRE_EMOTION_DETECT = "Emotion_Detect"; // 情绪检测 -const JS_AI_DATA_REQUIRE_EMOTION_SCORE_DETECT = "Emotion_Score"; // 情绪打分 - -// 默认美的EntityId -const BASIC_BEAUTY_CAMERA = -1024; -const BASIC_SMOOTH = -1025; -const BASIC_STRETCH = -1026; -const BASIC_LIQUIFY = -1027; -const BASIC_BODY = -1028; -const BASIC_LUT = -1029; -const BASIC_BEAUTY = -1030; - -// v7 相关的默认美 -const BASIC_FACIALREFORM = -1032; -const BASIC_FACIALREFORM_SMALLFACE = -1033; -const BASIC_FACIALREFORM_NATUREFACE = -1034; -const BASIC_FACIALREFORM_MALEGODFACE = -1035; -const BASIC_FACIALREFORM_GODNESSFACE = -1036; -const BASIC_FACIALREFORM_THINFACE = -1037; -const BASIC_FACIALREFORM_CHEEKBONETHIN = -1038; -const BASIC_FACIALREFORM_MOUTHSIZE = -1039; -const BASIC_LIQUIFYV6_ENLARGEYE = -1040; -const BASIC_FACIALREFORM_THINNOSE = -1041; - - -// copy from studio code: uuid.ts -function uuid(len, radix) { - // 与cms前端保持相同的生成规则 - const chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'.split(''); - const uuid = []; - let i; - radix = radix || chars.length; - if (len) { - for (i = 0; i < len; i++) uuid[i] = chars[0 | Math.random() * radix]; - } else { - let r; - uuid[8] = uuid[13] = uuid[18] = uuid[23] = '-'; - uuid[14] = '4'; - for (i = 0; i < 36; i++) { - if (!uuid[i]) { - r = 0 | Math.random() * 16; - uuid[i] = chars[(i == 19) ? (r & 0x3) | 0x8 : r]; - } - } - } - return uuid.join(''); -} - -const SUPPORT_MULTI_TEMPLATE = false; - -// 获取global对象 -var global = global || (function () { - return this; -}()); -// 当前运行时的 template 对象 -global._template = {}; -// 存储多个 template 对象,实现多 template 调用 -// 后续使用 template 的判断中,优先判断 _multiTemplateInstanceList 不为空,则运行多 template 逻辑,为空则走原有 template 逻辑 -global._multiTemplateInstanceList = {}; - -Object.defineProperty(global, 'template', { - get() { - return this._template; - }, - - set(value) { - this._template = value; - if (SUPPORT_MULTI_TEMPLATE) { - value._info_ = { - // 记录触发加载当前 template 的 script 组件 - scriptComponent: null, - // 记录触发加载当前 template 的 entity id - entityIDWithScriptComponent: -1 - }; - let template_key = uuid(); - console.error("global.template set: " + template_key); - global._multiTemplateInstanceList[template_key] = value; - } else { - console.error("global.template disable multi template"); - } - } -}); - - -// 绑定 ai事件 与 额外响应的方法 -function bindCallbackWithAIEvent(f, eventName) { - - // 多 template 逻辑 - if (Object.keys(global._multiTemplateInstanceList).length) { - Object.keys(global._multiTemplateInstanceList).forEach(function (template_key) { - let tempTemplate = global._multiTemplateInstanceList[template_key]; - if (!tempTemplate.mapOfCallbackAndEvent) { - tempTemplate.mapOfCallbackAndEvent = {}; - } - if (tempTemplate.mapOfCallbackAndEvent[eventName]) { - tempTemplate.mapOfCallbackAndEvent[eventName].push(f); - } else { - tempTemplate.mapOfCallbackAndEvent[eventName] = [f]; - } - }); - return; - } - - // 需要存在template对象 - if (!global.template) { - return; - } - if (!global.template.mapOfCallbackAndEvent) { - global.template.mapOfCallbackAndEvent = {}; - } - if (global.template.mapOfCallbackAndEvent[eventName]) { - global.template.mapOfCallbackAndEvent[eventName].push(f); - } else { - global.template.mapOfCallbackAndEvent[eventName] = [f]; - } -} - -// 根据某个事件, 触发注册进来的事件回调 -function TriggerEvent(eventName, params, entityManager, eventManager, currentTime) { - - // 多 template 逻辑,先校验 list 逻辑 - if (Object.keys(global._multiTemplateInstanceList).length) { - Object.keys(global._multiTemplateInstanceList).forEach(function (template_key) { - let tempTemplate = global._multiTemplateInstanceList[template_key]; - if (tempTemplate.mapOfCallbackAndEvent && tempTemplate.mapOfCallbackAndEvent[eventName]) { - tempTemplate.mapOfCallbackAndEvent[eventName].forEach(function (callback) { - let tempEntityManagerProxy = _createProxyForEntityManager(entityManager, tempTemplate); - callback(params, tempEntityManagerProxy, eventManager, currentTime); - }); - } - - // 并且老的素材脚本订阅了某个事件 - if (tempTemplate[eventName]) { - let tempEntityManagerProxy = _createProxyForEntityManager(entityManager, tempTemplate); - tempTemplate[eventName](params, tempEntityManagerProxy, eventManager, currentTime); - } - }); - return; - } - - if (!global.template) { - // console.log("js log: has no global.template when TriggerEvent(" + eventName + ", " + JSON.stringify(params) + ")"); - return; - } - // console.log("js log: TriggerEvent(" + eventName + ", " + JSON.stringify(params) + ")"); - // 如果有触发绑定的, 则直接 - if (global.template.mapOfCallbackAndEvent && global.template.mapOfCallbackAndEvent[eventName]) { - global.template.mapOfCallbackAndEvent[eventName].forEach(function (callback) { - callback(params, entityManager, eventManager, currentTime); - }); - } - // 并且老的素材脚本订阅了某个事件 - if (global.template[eventName]) { - global.template[eventName](params, entityManager, eventManager, currentTime); - } -} - -// 获取点位数据 -function GetAIPointDataThenFlushToJS(entityManager, eventManager, currentTime,scriptComponent) { - if (scriptComponent.aiRequire.isEmpty()) { - return; - } - for (let i = 0; i < scriptComponent.aiRequire.size(); i++) { - let aiKey = scriptComponent.aiRequire.get(i); - if (aiKey == JS_AI_DATA_REQUIRE_FACE_POINT - || aiKey == JS_AI_DATA_REQUIRE_HAND_POINT - || aiKey == JS_AI_DATA_REQUIRE_BODY_POINT - || aiKey == JS_AI_DATA_REQUIRE_CAT_POINT) { - let pointData = light.AIDataUtils.GetAIPointDataFromAIDataCenter(entityManager, aiKey); - let pointArray = []; - let size = pointData.size(); - // 转换数据, pointData 是非标准array - for (let i = 0; i < size; i++) { - let point = pointData.get(i); - pointArray.push(point); - } - let params = {}; - params[aiKey] = pointArray; - TriggerEvent("onAIDataRequire", params, entityManager, eventManager, currentTime,); - } - } -} - -// 获取分类数据 -function GetAIClassDataThenFlushToJS(entityManager, eventManager, currentTime, scriptComponent) { - if (scriptComponent.aiRequire.isEmpty()) { - return; - } - for (let i = 0; i < scriptComponent.aiRequire.size(); i++) { - let aiKey = scriptComponent.aiRequire.get(i); - if (aiKey == JS_AI_DATA_REQUIRE_HAND_GESTURE - || aiKey == JS_AI_DATA_REQUIRE_BODY_GESTURE - || aiKey == JS_AI_DATA_REQUIRE_EXPRESSION - || aiKey == JS_AI_DATA_REQUIRE_SMILE - || aiKey == JS_AI_DATA_REQUIRE_AGE - || aiKey == JS_AI_DATA_REQUIRE_POUT - || aiKey == JS_AI_DATA_REQUIRE_FACE_CLASSIFY - || aiKey == JS_AI_DATA_REQUIRE_EMOTION_DETECT) { - let eventList = light.AIDataUtils.GetJsEventListFromAIDataCenter(entityManager, aiKey); - let keys = eventList.getKeys(); - for (let i = 0; i < keys.size(); i++) { - let key = keys.get(i); - // 解析字符串类型的参数 - let value = JSON.parse(eventList.get(key)); - TriggerEvent(key, value, entityManager, eventManager, currentTime); - } - } else if (aiKey == JS_AI_DATA_REQUIRE_GENDER) { - /* - GENDER有一段特殊逻辑需要处理,为了兼容素材里的美妆 - */ - let eventList = light.AIDataUtils.GetJsEventListFromAIDataCenter(entityManager, aiKey); - let keys = eventList.getKeys(); - let size = keys.size(); - if (size == 1) { - let key = keys.get(0); - // 解析字符串类型的参数 - let value = JSON.parse(eventList.get(key)); - TriggerEvent(key, value, entityManager, eventManager, currentTime); - } else if (size == 2) { - // 如果是2的情况,必定是onMale / onFemale - // 需要先触发male - let maleValue = JSON.parse(eventList.get("onMale")); - TriggerEvent("onMale", maleValue, entityManager, eventManager, currentTime); - // 再触发female - let femaleValue = JSON.parse(eventList.get("onFemale")); - TriggerEvent("onFemale", femaleValue, entityManager, eventManager, currentTime); - } - } - } -} - -// 在ScriptSystem.cpp的configure函数内会调用该函数 -light.configure = function (entityManager, eventManager, scriptSystem) { - light._entityManager = entityManager; - // setup global.resourcePool - if (global.resourcePool) { - let inputSourcesString = light.AIDataUtils.GetDataFromDataCenter(entityManager, "inputSources"); - let inputSources = JSON.parse(inputSourcesString); - for ([sticker, content] of Object.entries(global.resourcePool)) { - for ([key, info] of Object.entries(inputSources)) { - if (info.path === undefined) { - // 后编辑嵌套模版下,会添加SubAsset_RenderTaget到inputsources,没有定义path字段 - continue; - } else if (info.path === content.path) { - content.key = info.key; - break; - } else if (info.path.lastIndexOf(content.path)!= -1 && - info.path.length == content.path.length + info.path.lastIndexOf(content.path)) { - // 绝对路径下字符串匹配,解决经过Android cut后资源路径变化 - // 绝对路径下包含文件名,且文件名+绝对路径根目录的路径长度与绝对路径长度一致 - content.key = info.key; - break; - } - } - } - } - - // 多 template 逻辑 - // 触发老素材的onTemplateInit事件 - if (Object.keys(global._multiTemplateInstanceList).length) { - Object.keys(global._multiTemplateInstanceList).forEach(function (template_key) { - - let tempTemplate = global._multiTemplateInstanceList[template_key]; - - // bind scriptComponent - if (tempTemplate._info_ && !tempTemplate._info_.scriptComponent && tempTemplate._info_.entityIDWithScriptComponent >= 0) { - let entity = light._entityManager.getEntity(tempTemplate._info_.entityIDWithScriptComponent); - if (entity) { - let tempScriptComponent = light._getComponent(entity, "Script"); - if (tempScriptComponent) { - tempTemplate._info_.scriptComponent = tempScriptComponent; - } - } - } - - // onTemplateInit - let tempEntityManagerProxy = _createProxyForEntityManager(entityManager, tempTemplate); - tempTemplate.onTemplateInit(tempEntityManagerProxy, eventManager); - }); - } else if (global.template) { - // open ai , get the specified entity or component, set the value - global.template.onTemplateInit(entityManager, eventManager); - } -} - -// 在ScriptSystem.cpp的update函数内会调用该函数 -light.update = function (deltaTime, entityManager, eventManager) { - // 需要存在template对象 - if (!global.template && !Object.keys(global._multiTemplateInstanceList).length) { - return; - } - - var hasEnabledScript = false; - // 获取脚本Entity, entityList不是一个标准的Array - let entityList = entityManager.entitiesWithComponents("Script"); - for (let i = 0; i < entityList.size(); i++) { - let sEntity = entityList.get(i); - let sComponent = light._getComponent(sEntity, "Script"); - // 过滤掉被关闭的component - if (!sComponent.enabled) { - continue; - } - hasEnabledScript = true; - - // 先分别触发点位 / 分类信息 - // 从AIDataCenter里获取 point 信息,并包装成OnAIDataRequire事件,发射到JS - GetAIPointDataThenFlushToJS(entityManager, eventManager, deltaTime / 1000, sComponent); - // 从AIDataCenter里获取 class 信息,并包装成AI事件,发射到JS - GetAIClassDataThenFlushToJS(entityManager, eventManager, deltaTime / 1000, sComponent); - } - - if (hasEnabledScript) { - TriggerEvent("onFrameUpdate", deltaTime / 1000, entityManager, eventManager, deltaTime / 1000); - } -} - -// 业务侧setAssetData可能传入非json的string,SDK内部拼接了一个key,这里取出来再传给脚本 -function convertEventData(event) { - var object = JSON.parse(event.json_data); - for (var key in object) { - if (object[key].hasOwnProperty("event_json_data_string_key")) { - object[key] = object[key]["event_json_data_string_key"]; - } - } - return object; -} - -light.receive = function (event) { - // 需要存在template对象 - if (!global.template && !Object.keys(global._multiTemplateInstanceList).length) { - return; - } - if (event.type() === "CustomDataEvent") { - // 多 template 逻辑 - if (Object.keys(global._multiTemplateInstanceList).length) { - Object.keys(global._multiTemplateInstanceList).forEach(function (template_key) { - let tempTemplate = global._multiTemplateInstanceList[template_key]; - if (event.event_type == "RhythmEvent" && tempTemplate && tempTemplate.onMusicData) { - tempTemplate.onMusicData(convertEventData(event)); - } - // 兼容老的onInputEvent事件 - if (event.event_type == "UpdateInputEvent" && tempTemplate && tempTemplate.onInputEvent) { - tempTemplate.onInputEvent(convertEventData(event)); - } - }); - } else if (global.template) { - // console.log("js log: receive event '" + event.event_type + "', and param is " + event.json_data); - // 兼容老的onMusicData事件 - if (event.event_type == "RhythmEvent" && global.template && global.template.onMusicData) { - global.template.onMusicData(convertEventData(event)); - } - // 兼容老的onInputEvent事件 - if (event.event_type == "UpdateInputEvent" && global.template && global.template.onInputEvent) { - global.template.onInputEvent(convertEventData(event)); - } - } - } -} - -// 在ScriptSystem.cpp的析构函数内会调用该函数 -light.dealloc = function () { - // 需要存在template对象 - if (!global.template) { - return; - } -} - - -// 关闭默认美 -light._disableDefaultBeauty = function (beautyEntityIdArray) { - if (!light._entityManager) { - return; - } - if (!Array.isArray(beautyEntityIdArray) || beautyEntityIdArray.length == 0) { - return; - } - beautyEntityIdArray.forEach(function (beautyEntityId) { - let entity = light._entityManager.getEntity(beautyEntityId); - if (entity) { - let st = light._getComponent(entity, "ScreenTransform"); - if (st) { - st.objectEnabled = false; - } - } - }); - - // polyfill for v7 - let polyfillForOld = [ - BASIC_FACIALREFORM, - BASIC_FACIALREFORM_SMALLFACE, - BASIC_FACIALREFORM_NATUREFACE, - BASIC_FACIALREFORM_MALEGODFACE, - BASIC_FACIALREFORM_GODNESSFACE, - BASIC_FACIALREFORM_THINFACE, - BASIC_FACIALREFORM_CHEEKBONETHIN, - BASIC_FACIALREFORM_MOUTHSIZE, - BASIC_LIQUIFYV6_ENLARGEYE, - BASIC_FACIALREFORM_THINNOSE - ]; - - let beautyMeshKeyList = {}; - beautyMeshKeyList[BASIC_STRETCH] = 0; - beautyMeshKeyList[BASIC_LIQUIFY] = 0; - - beautyEntityIdArray.forEach(function (beautyEntityId) { - beautyMeshKeyList[beautyEntityId]++; - }); - - var hasBeautyMeshKey = true; - - Object.keys(beautyMeshKeyList).forEach(function (key) { - if (hasBeautyMeshKey) { - if (beautyMeshKeyList[key] <= 0) { - hasBeautyMeshKey = false; - } - } - }); - - if (hasBeautyMeshKey) { - polyfillForOld.forEach(function (beautyEntityId) { - let entity = light._entityManager.getEntity(beautyEntityId); - if (entity) { - let st = light._getComponent(entity, "ScreenTransform"); - if (st) { - st.objectEnabled = false; - } - } - }); - // v2版本美体在形变被禁用时也被禁用 - let entity = light._entityManager.getEntity(BASIC_BODY); - if (entity) { - let body = light._getComponent(entity, "BeautyBody"); - let st = light._getComponent(entity, "ScreenTransform"); - if (body && st) { - st.objectEnabled = false; - } - } - } -} - -// 字符串转大写 -function Capitalize(string) { - let str = string.toLowerCase(); - str = str.replace(/^\S/, s => s.toUpperCase()); - return str; -} - -// 两个数组是否相等 -function isArrayEqual(list1, list2) { - if (!list1 || !list2) { - return false; - } - if (list1.length != list2.length) { - return false; - } - for (let i = 0; i < list1.length; i++) { - if (list1[i] != list2[i]) { - return false; - } - } - return true; -} - -function _createProxyForEntityManager(entityManager, template) { - var proxy = new Proxy(entityManager, { - get: function(target, property, receiver) { - switch(property) { - case 'getEntity': - return function() { - console.error("template.engityManager getEntity proxy: " + JSON.stringify(arguments)); - if (typeof(arguments["0"]) == 'number') { - let offset_id = (template && template._info_ && template._info_.scriptComponent) ? template._info_.scriptComponent.entityIDOffset : 0; - let old_id = arguments["0"]; - let new_id = old_id + offset_id; - arguments["0"] = new_id; - console.error("template.engityManager getEntity proxy run: old_id: " + old_id + " offset_id: " + offset_id + " new_id: " + new_id); - } - return target[property].apply(target, arguments); - } - break - } - return target[property].bind(target); - } - }); - return proxy; -} - -// call by ScriptSystem -function _bindCurrentTemplateWithScriptEntity_(entityIDWithScriptComponent) { - console.error("[_bindCurrentTemplateWithScriptEntity_]: entityIDWithScriptComponent: " + entityIDWithScriptComponent); - let tempTemplate = global.template; - if (!tempTemplate) { - return; - } - if (!tempTemplate._info_) { - return; - } - if (tempTemplate._info_.entityIDWithScriptComponent >= 0) { - return; - } - tempTemplate._info_.entityIDWithScriptComponent = Number(entityIDWithScriptComponent); -} diff --git a/Android/tuibeauty/src/main/assets/LightCore/js/DynamicBehavior.js b/Android/tuibeauty/src/main/assets/LightCore/js/DynamicBehavior.js deleted file mode 100644 index 54897ce6..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/js/DynamicBehavior.js +++ /dev/null @@ -1,76 +0,0 @@ -light.execute("light://js/AEJSBridge.js"); - -class DynamicBehavior { - constructor() { - this.parentEntity = null; - } - - configure(entityManager, eventManager, scriptSystem) { - var parentEntityId = DynamicBehavior.behaviorEntityMap[this.constructor.name]; - this.parentEntity = entityManager.getEntity(parentEntityId); - } - - update(deltaTime, entityManager, eventManager) { - } -} - -if (!light.BehaviorConstructors) { - light.BehaviorConstructors = []; -} -if (!light.BehaviorInstances) { - light.BehaviorInstances = []; -} - -DynamicBehavior.behaviorEntityMap = {}; -DynamicBehavior.behaviorScriptMap = {}; -DynamicBehavior.removedScripts = []; - -function bindBehaviorWithEntity(currentEntityId, currentScriptPath) { - if (light.BehaviorConstructors[light.BehaviorConstructors.length - 1]) { - var className = light.BehaviorConstructors[light.BehaviorConstructors.length - 1].name; - DynamicBehavior.behaviorEntityMap[className] = currentEntityId; - DynamicBehavior.behaviorScriptMap[className] = currentScriptPath; - } - if (DynamicBehavior.removedScripts.indexOf(currentScriptPath) != -1) { - var index = DynamicBehavior.removedScripts.indexOf(currentScriptPath); - DynamicBehavior.removedScripts.splice(index, 1); - } -} - -function addRemovedScript(scriptPath) { - DynamicBehavior.removedScripts.push(scriptPath); -} - -light.configure = function (entityManager, eventManager, scriptSystem) { - light.BehaviorConstructors.forEach((behaviorConstructor) => { - var parentEntityId = DynamicBehavior.behaviorEntityMap[behaviorConstructor.name]; - var scriptPath = DynamicBehavior.behaviorScriptMap[behaviorConstructor.name]; - if (DynamicBehavior.removedScripts.indexOf(scriptPath) == -1) { - var behaviorInstance = new behaviorConstructor(); - light.BehaviorInstances.push(behaviorInstance); - behaviorInstance.configure(entityManager, eventManager, scriptSystem); - } - }); - light.BehaviorConstructors = []; -} - -light.update = function (deltaTime, entityManager, eventManager) { - // 有新添加进来的Behavior - if (light.BehaviorConstructors.length > 0) { - light.BehaviorConstructors.forEach((behaviorConstructor) => { - var parentEntityId = DynamicBehavior.behaviorEntityMap[behaviorConstructor.name]; - var scriptPath = DynamicBehavior.behaviorScriptMap[behaviorConstructor.name]; - if (DynamicBehavior.removedScripts.indexOf(scriptPath) == -1) { - var behaviorInstance = new behaviorConstructor(); - light.BehaviorInstances.push(behaviorInstance); - behaviorInstance.configure(entityManager, eventManager, null); - } - }); - } - light.BehaviorInstances.forEach((behavior) => { - var scriptPath = DynamicBehavior.behaviorScriptMap[behavior.constructor.name]; - if (behavior.update && DynamicBehavior.removedScripts.indexOf(scriptPath) == -1) { - behavior.update(deltaTime, entityManager, eventManager); - } - }); -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/js/JSAudio.js b/Android/tuibeauty/src/main/assets/LightCore/js/JSAudio.js deleted file mode 100644 index 43b6fa41..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/js/JSAudio.js +++ /dev/null @@ -1,176 +0,0 @@ -(function () { - // 定义light.Audio变量 - light.Audio = function (src) { - // 保存当前src - this.src = src; - this.keyOfPath = null; - this.entity = null; - - // 如果已经经过了configure,则直接初始化 - if (this.inputSources && this.entityManager) { - this.init(); - }else { - // 否则,则保存下来,等待configure之后重新初始化 - this.initializeList.push(this); - } - } - - // 原型链上加个列表,用来保存configure之前的数据 - light.Audio.prototype.initializeList = new Array(); - - // 当经过configure之后,针对保留下来的数据进行重新初始化 - light.Audio.prototype.reInitAudioInList = function () { - while (light.Audio.prototype.initializeList.length > 0) { - let audio = light.Audio.prototype.initializeList.shift(); - audio.init(); - } - } - - // 新增一个sdkTime,在update时更新,在newEntity时使用 - light.Audio.prototype.sdkTime = 0; - - light.Audio.prototype.initCallback = null; - - // init里重新构建一个Entity出来 - light.Audio.prototype.init = function () { - this.keyOfPath = this.inputSources.get(this.src); - // 如果没有对应的resource,则return - if (!this.keyOfPath || this.keyOfPath.length == 0) { - return; - } - // 1. new出空壳Entity - this.entity = this.entityManager.create(); - // 2. new出所需要的Component - // 2.1 - let tc = new light.TimeControl(); - tc.updateCurrentTime(this.sdkTime); - // 2.2 - let st = new light.ScreenTransform(new light.Rect(0, 0, 0, 0), // anchor - new light.Rect(-640, -360, 360, 640), // offset(bottom, left, right, top) - new light.Vec2(0, 0), // pivot - new light.Vec3(0, 0, 0), // position - new light.Quat(1, 0, 0, 0), // rotation(w, x, y, z) - new light.Vec3(1, 1, 1), // scale - true, // enable - false); // interactive - st.objectEnabled = true; - // 2.3 - let as = new light.AudioSource(1, this.keyOfPath, 1, new light.VectorVolumeEffect()); - as.audioSourceType = 1; - // 2.4 - // 3 将component塞到空壳Entity里 - this.entity.assignComponent(st); - this.entity.assignComponent(as); - this.entity.assignComponent(tc); - // 做个保护 - if (!this.entity.valid()) { - console.error("audio log, aduio entity is not valid"); - } - this.entity.getTimeControlComponent().currentTime = 0; - if (this.initCallback) { - initCallback(); - } - console.log("JSAudio init success"); - } - - // audio.pause() - light.Audio.prototype.pause = function () { - if (!this.entity || !this.entity.valid()) return; - this.entity.getTimeControlComponent().pause = true; - } - - // audio.play() - light.Audio.prototype.play = function () { - if (!this.entity || !this.entity.valid()) return; - this.entity.getTimeControlComponent().pause = false; - } - - // audio.paused - light.Audio.prototype.__defineGetter__("paused", function(){ - if (!this.entity || !this.entity.valid()) return false; - return this.entity.getTimeControlComponent().pause; - }); - - light.Audio.prototype.disable = function () { - if (!this.entity || !this.entity.valid()) return; - this.entity.getScreenTransformComponent().objectEnabled = false; - } - - // audio.volume, value 0 - 1 - light.Audio.prototype.__defineSetter__("volume", function(val){ - if (!this.entity || !this.entity.valid()) return; - return this.entity.getAudioSourceComponent().volume = val; - }); - light.Audio.prototype.__defineGetter__("volume", function(){ - if (!this.entity || !this.entity.valid()) return 0; - return this.entity.getAudioSourceComponent().volume; - }); - - // audio.currentTime - light.Audio.prototype.__defineSetter__("currentTime", function(val){ - if (!this.entity || !this.entity.valid()) return; - return this.entity.getTimeControlComponent().currentTime = val; - }); - light.Audio.prototype.__defineGetter__("currentTime", function(){ - if (!this.entity || !this.entity.valid()) return 0; - return this.entity.getTimeControlComponent().currentTime; - }); - - // audio.duration - light.Audio.prototype.__defineGetter__("duration", function(){ - if (!this.entity || !this.entity.valid()) return 0; - return this.entity.getTimeControlComponent().getControlDuration(); - }); - - // audio.loop - light.Audio.prototype.__defineSetter__("loop", function(val){ - if (!this.entity || !this.entity.valid()) return; - return this.entity.getTimeControlComponent().loopCount = val; - }); - light.Audio.prototype.__defineGetter__("loop", function(){ - if (!this.entity || !this.entity.valid()) return 0; - return this.entity.getTimeControlComponent().loopCount; - }); - - // audio.muted - light.Audio.prototype.__defineSetter__("muted", function(val){ - if (!this.entity || !this.entity.valid()) return; - return this.entity.getScreenTransformComponent().objectEnabled = !val; - }); - light.Audio.prototype.__defineGetter__("muted", function(){ - if (!this.entity || !this.entity.valid()) return 0; - return !this.entity.getScreenTransformComponent().objectEnabled; - }); - - // todo 这里实现了audio.ended, 但是还有个ended event需要主动发起,这里可能还需要杨宗支持。 - light.Audio.prototype.__defineGetter__("ended", function(){ - if (!this.entity || !this.entity.valid()) return 0; - let tc = this.entity.getTimeControlComponent(); - return tc.currentTime > tc.getControlDuration(); - }); -}()); - -light.on("configure", function (entityManager) { - // 1. 在configure里保存entityManager以备用 - light.Audio.prototype.entityManager = entityManager; - - // 2. 在configure里保存inputSources - let inputSourcesString = light.AIDataUtils.GetDataFromDataCenter(entityManager, "inputSources"); - let inputSources = JSON.parse(inputSourcesString); - // 2.1 转换数据结构为最简单的 {path : hashkey} - let map = new Map(); - for ([key, info] of Object.entries(inputSources)) { - map.set(info.path, key); - } - light.Audio.prototype.inputSources = map - - // 3 并将之前遗留下来的audio 重新初始化 - if (light.Audio.prototype.initializeList) { - light.Audio.prototype.reInitAudioInList(); - } -}); - -// 实时更新一下currentTime -light.on("update", function (currentTime) { - light.Audio.prototype.sdkTime = currentTime; -}); \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/js/JSCallbackRegister.js b/Android/tuibeauty/src/main/assets/LightCore/js/JSCallbackRegister.js deleted file mode 100644 index 223f21cc..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/js/JSCallbackRegister.js +++ /dev/null @@ -1,182 +0,0 @@ -(function (light) { - var Callbacks = {}; - light.emit = function (event) { - var args = []; - for (var _i = 1; _i < arguments.length; _i++) { - args[_i - 1] = arguments[_i]; - } - var cbs = Callbacks[event]; - if (!cbs) return; - cbs = cbs.concat(); - cbs.forEach(function (cb) { - try { - var thisObject = cb[1] || cb[0]; - cb[0].apply(thisObject, args); - } - catch (error) { - console.error(error); - } - }); - }; - light.addListener = function (event, callback, thisObject) { - if (!event || !callback) { - return; - } - var cbs = Callbacks[event]; - if (!cbs) { - cbs = []; - Callbacks[event] = cbs; - } - cbs.push([callback, thisObject]); - }; - light.on = light.addListener; - light.removeListener = function (event, callback, thisObject) { - if (!event || !callback) { - return; - } - var cbs = Callbacks[event]; - if (!cbs) { - return; - } - var removed = 0; - for (var i = cbs.length - 1; i >= 0; i--) { - if (cbs[i][0] === callback) { - removed++; - cbs.splice(i, 1); - } - } - return removed; - }; - light.removeAllListeners = function (event) { - if (!event) { - return; - } - Callbacks[event] = []; - }; - light.once = function (event, callback, thisObject) { - var newCallback = function () { - var args = []; - for (var _i = 0; _i < arguments.length; _i++) { - args[_i] = arguments[_i]; - } - callback.apply(thisObject, args); - light.removeListener(event, newCallback); - }; - light.addListener(event, newCallback, thisObject); - }; - light.BehaviorClasses = []; - function rewriteSystemCallback(name) { - var callbacks = []; - if (light[name]) { - callbacks.push(light[name]); - } - var newCallback = function () { - var args = []; - for (var _i = 0; _i < arguments.length; _i++) { - args[_i] = arguments[_i]; - } - if (light['before' + name]) { - light['before' + name].apply(light, args); - } - callbacks.forEach(function (cb) { - try { - cb.apply(light, args); - } - catch (e) { - console.error(e); - } - }); - if (light['after' + name]) { - light['after' + name].apply(light, args); - } - }; - Object.defineProperty(light, name, { - get: function () { - return newCallback; - }, - set: function (cb) { - if (cb) { - callbacks.push(cb); - } - }, - configurable: true, - enumerable: true, - }); - } - // 兼容 light.update = function(){ } 被重复调用; - rewriteSystemCallback('configure'); - rewriteSystemCallback('update'); - rewriteSystemCallback('receive'); - rewriteSystemCallback('dealloc'); - - function patchEntity() { - var proto = light.Entity.prototype; - proto.getComponent = function (componentClazz) { - if (!this.valid()) { - return null; - } - if (!componentClazz) { - return null; - } - var componentType; - if (componentClazz.componentType) { - componentType = componentClazz.componentType; - } - else if (typeof (componentClazz) == 'string') { - componentType = componentClazz; - } - else { - return null; - } - if (!this.hasComponent(componentType)) { - return null; - } - var component = this["get" + componentType + "Component"](); - return component; - }; - Object.defineProperty(proto, 'transform', { - get: function () { - return this.getComponent(light.BasicTransform) || this.getComponent(light.ScreenTransform); - }, - configurable: true, - enumerable: false, - }); - Object.defineProperty(proto, 'screenTransform', { - get: function () { - return this.getComponent(light.ScreenTransform); - }, - configurable: true, - enumerable: false, - }); - } - - // Component Patch: Add `componentType` for all Component Classes - var methods = Object.keys(light); - for (var index = 0; index < methods.length; index++) { - var method = methods[index]; - var componentType = method; - // console.log("JS::Found Component:: " + componentType); - var componentClass = light[componentType]; - if (componentClass) { - componentClass.componentType = componentType; - } - } - - Object.defineProperty(Object.prototype, 'forEach', { - value: function (callback) { - var self = this; - if (!self.size || !self.get) { - return; - } - for (var index = 0; index < self.size(); index++) { - var it = self.get(index); - callback(it, index); - } - }, - enumerable: false, - configurable: true, - writable: true - }); - - patchEntity(); -})(light); \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/js/JSDOMAdapter.js b/Android/tuibeauty/src/main/assets/LightCore/js/JSDOMAdapter.js deleted file mode 100644 index f31cc31f..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/js/JSDOMAdapter.js +++ /dev/null @@ -1,494 +0,0 @@ -// 实现light.on()的机制 -light.configure = function(entityManager, eventManager, scriptSystem) { - light.emit("configure", entityManager, eventManager, scriptSystem); -}; - -var currentTimeStamp = 0; - -light.update = function(time, entityManager, eventManager) { - light.emit("update", time, entityManager, eventManager); - currentTimeStamp = time; -} - -var touchIdentifier = 0; - -function wxTouch(event) { - if (event.getAction() == light.TouchEvent.ACTION_DOWN) { - touchIdentifier ++; - } - this.identifier = touchIdentifier; - this.pageX = event.getX(); - this.pageY = event.getY(); - this.clientX = event.getX(); - this.clientY = event.getY(); - this.force = 1; -} - -light.receive = function (event) { - if (event.type() === "TouchEvent") { - let action = event.getAction(); - if (action === light.TouchEvent.ACTION_DOWN) { - light.emit("touchstart", event); - var touch = new wxTouch(event); - light.emit("wx_touchstart", { - touches: [touch], - changedTouches: [touch], - timestamp: currentTimeStamp, - }); - } - if (action === light.TouchEvent.ACTION_MOVE) { - var touch = new wxTouch(event); - light.emit("wx_touchmove", { - touches: [touch], - changedTouches: [touch], - timestamp: currentTimeStamp, - }); - } - if (action === light.TouchEvent.ACTION_UP) { - light.emit("touchend", event); - var touch = new wxTouch(event); - light.emit("wx_touchend", { - touches: [touch], - changedTouches: [touch], - timestamp: currentTimeStamp, - }); - light.emit("wx_touchcancel", { - touches: [touch], - changedTouches: [touch], - timestamp: currentTimeStamp, - }); - } - } -} - -// Make 'window' the global scope -self = window = this; -window.top = window.parent = window; - -(function () { - // 初始化为720 * 1280 - window.innerWidth = 720; - window.innerHeight = 1280; - - window.screen = { - availWidth: window.innerWidth, - availHeight: window.innerHeight - }; - - // 注册一个configure回调,更新一下画布大小 - light.on("configure", function(entityManager){ - window.innerWidth = light.DeviceUtils.GetSurfaceWidth(entityManager); - window.innerHeight = light.DeviceUtils.GetSurfaceHeight(entityManager); - - window.screen.availWidth = window.innerWidth; - window.screen.availHeight = window.innerHeight; - }); - - var geolocation = null; - // navigator 里也有部分信息拿不到 - window.navigator = { - language: "zh-CN", //ej.language, - userAgent: "light sdk", //ej.userAgent, - appVersion: "2.3.0", //ej.appVersion, - platform: "cross platform", //ej.platform, - }; - - window.location = { - origin: "" - } - - // Set up a "fake" HTMLElement - window.HTMLElement = function (tagName) { - this.tagName = tagName.toUpperCase(); - this.children = []; - this.style = {}; - }; - - HTMLElement.prototype.appendChild = function (element) { - }; - - HTMLElement.prototype.insertBefore = function (newElement, existingElement) { - // Just append; we don't care about order here - this.appendChild(newElement); - }; - - HTMLElement.prototype.removeChild = function (node) { - for (var i = this.children.length; i--;) { - if (this.children[i] === node) { - this.children.splice(i, 1); - } - } - }; - - HTMLElement.prototype.getBoundingClientRect = function () { - return {top: 0, left: 0, width: window.innerWidth, height: window.innerHeight}; - }; - - HTMLElement.prototype.setAttribute = function (attr, value) { - this[attr] = value; - }; - - HTMLElement.prototype.getAttribute = function (attr) { - return this[attr]; - }; - - HTMLElement.prototype.addClass = function (name) { - }; - - HTMLElement.prototype.addEventListener = function (event, method) { - if (event === 'load') { - this.onload = method; - } - }; - - HTMLElement.prototype.removeEventListener = function (event, method) { - if (event === 'load') { - this.onload = undefined; - } - }; - - function HTMLCanvasElement() { - this.canvas = getNativeCanvasImpl(); - this.tagName = "CANVAS"; - this.width_ = this.canvas.width; - this.height_ = this.canvas.height; - } - - HTMLCanvasElement.prototype = Object.create(HTMLElement.prototype); - HTMLCanvasElement.prototype.offsetLeft = 0; - HTMLCanvasElement.prototype.offsetTop = 0; - HTMLCanvasElement.prototype.offsetWidth = 0; - HTMLCanvasElement.prototype.offsetHeight = 0; - HTMLCanvasElement.prototype.getContext = function() { - return this.canvas.getContext(Array.prototype.slice.call(arguments)); - } - - Object.defineProperty(HTMLCanvasElement.prototype, 'constructor', { - value: HTMLCanvasElement, - enumerable: false, - writable: true - }); - - Object.defineProperty(HTMLCanvasElement.prototype, 'width', { - configurable: false, - enumerable: true, - get: function () { - return this.width_; - }, - set: function (value) { - } - }); - - Object.defineProperty(HTMLCanvasElement.prototype, 'height', { - configurable: false, - enumerable: true, - get: function () { - return this.height_; - }, - set: function (value) { - } - }); - - // Create the default screen canvas - window.canvas = new HTMLCanvasElement(); - HTMLCanvasElement.prototype.addEventListener = window.addEventListener = function (type, callback, useCapture) { - window.document.addEventListener(type, callback, useCapture); - }; - HTMLCanvasElement.prototype.removeEventListener = window.removeEventListener = function (type, callback) { - window.document.removeEventListener(type, callback); - }; - HTMLImageElementInternal.prototype.addEventListener = function (type, callback, useCapture) { - if (type === 'load') { - this.onload = callback; - } - }; - HTMLImageElementInternal.prototype.removeEventListener = function (event, method, useCapture) { - if (event === 'load') { - this.onload = undefined; - } - } - Object.defineProperty(HTMLImageElementInternal.prototype, 'src', { - configurable: false, - enumerable: true, - get: function () { - return this.getSrcInternal(); - }, - set: function (value) { - if (value.startsWith(RootPathGetter())) { - this.setSrcInternal(value); - } else { - this.setSrcInternal(RootPathGetter() + value); - } - } - }); - - function HTMLImageElement() { - this.image = new HTMLImageElementInternal(); - this.addEventListener = function (type, callback, useCapture) { - if (type === 'load') { - this.image.onload = callback; - } - }; - this.removeEventListener = function (event, method, useCapture) { - if (event === 'load') { - this.image.onload = undefined; - } - } - } - - HTMLImageElement.prototype = Object.create(HTMLElement.prototype); - - Object.defineProperty(HTMLImageElement.prototype, 'constructor', { - value: HTMLImageElement, - enumerable: false, - writable: true - }); - - Object.defineProperty(HTMLImageElement.prototype, 'src', { - configurable: false, - enumerable: true, - get: function () { - return this.image.getSrcInternal(); - }, - set: function (value) { - if (value.startsWith(RootPathGetter()) || value.startsWith("data:")) { - this.image.setSrcInternal(value); - } else { - this.image.setSrcInternal(RootPathGetter() + value); - } - } - }); - - Object.defineProperty(HTMLImageElement.prototype, 'width', { - configurable: false, - enumerable: true, - get: function () { - return this.image.width; - }, - set: function (value) { - this.image.width = value; - } - }); - - Object.defineProperty(HTMLImageElement.prototype, 'height', { - configurable: false, - enumerable: true, - get: function () { - return this.image.height; - }, - set: function (value) { - this.image.height = value; - } - }); - - Object.defineProperty(HTMLImageElement.prototype, 'complete', { - configurable: false, - enumerable: true, - get: function () { - return this.image.complete; - }, - set: function (value) { - this.image.complete = value; - } - }); - - Object.defineProperty(HTMLImageElement.prototype, 'onload', { - configurable: false, - enumerable: true, - set: function (value) { - this.image.onload = value; - } - }); - window.canvas.getBoundingClientRect = function () { - return { - top: this.offsetTop, left: this.offsetLeft, - width: this.offsetWidth, height: this.offsetHeight - }; - }; - window.canvas.type = 'canvas'; - window.canvas.style = { - width: window.canvas.width + 'px', - height: window.canvas.height + 'px' - }; - - // 临时方案,解决 C++ 绑定到 JS 的方法无法使用 apply 的问题 - const webglContext = window.canvas.getContext('webgl'); - webglContext.compressedTexImage2D.__proto__ = Function.prototype; - webglContext.texImage2D.__proto__ = Function.prototype; - XMLHttpRequest.prototype.send.__proto__ = Function.prototype; - // 空函数 setRequestHeader 只用于接口兼容,无实际作用 - XMLHttpRequest.prototype.setRequestHeader = function (header, value) {}; - - // The console object, - window.console = console; - - // native实现的require跟CommonJS规范的不同 - window.require = require; - window.setTimeout = setTimeoutInDom; - window.setInterval = setInterval; - window.clearTimeout = clearTimeout; - window.clearInterval = clearInterval; - // 这里的回调有两种解决方案,一是用定时器,一是走update,目前先使用update - // 将cb丢回去,代替id,用于cancel操作 - window.requestAnimationFrame = function (cb, element) { - light.once("update", cb.bind(this)); - return cb; - }; - // return value != undefined 时表明,remove成功了 - window.cancelAnimationFrame = function (id) { - return light.removeListener("update", id); - }; - - // The native Image, Audio, HttpRequest and LocalStorage class mimic the real elements - window.Image = HTMLImageElement; - window.HTMLImageElementInternal = HTMLImageElementInternal; - this.Image = HTMLImageElement; - window.Audio = light.Audio; - this.Audio = light.Audio; - - window.GetJsStacktrace = GetJsStacktrace; - - window.Event = function (type) { - this.type = type; - this.cancelBubble = false; - this.cancelable = false; - this.target = null; - this.timestamp = ej.performanceNow(); - - this.initEvent = function (type, bubbles, cancelable) { - this.type = type; - this.cancelBubble = bubbles; - this.cancelable = cancelable; - this.timestamp = ej.performanceNow(); - }; - - this.preventDefault = function () { - }; - this.stopPropagation = function () { - }; - }; - - window.HTMLVideoElement = function() { - this.canPlayType = function (type) { - return true; - } - } - - // The document object - window.document = { - readyState: 'complete', - documentElement: window, - location: window.location, - visibilityState: 'visible', - hidden: false, - style: {}, - - head: new HTMLElement('head'), - body: new HTMLElement('body'), - - events: {}, - - createElement: function (name) { - if (name === 'canvas' || name === 'CANVAS') { - return window.canvas; - } else if (name == 'audio') { - } else if (name == 'video') { - return new HTMLVideoElement(); - } else if (name === 'img') { - return new HTMLImageElement(); - } else if (name === 'input' || name === 'textarea') { - } - return new HTMLElement(name); - }, - - createElementNS: function (namespaceURI, qualifiedName) { - return this.createElement(qualifiedName); - }, - - getElementById: function (id) { - if (id === 'canvas' || id === 'CANVAS') { - return window.canvas; - } - return null; - }, - - getElementsByTagName: function (tagName) { - var elements = [], children, i; - - tagName = tagName.toLowerCase(); - - if (tagName === 'head') { - elements.push(document.head); - } else if (tagName === 'body') { - elements.push(document.body); - } else { - children = document.body.children; - for (i = 0; i < children.length; i++) { - if (children[i].tagName.toLowerCase() === tagName) { - elements.push(children[i]); - } - } - children = undefined; - } - return elements; - }, - - createEvent: function (type) { - return new window.Event(type); - }, - - addEventListener: function (type, callback, useCapture) { - if (type == 'load') { - light.on("configure", callback.bind(this)); - return; - } - if (type == 'touchstart') { - light.on("touchstart", callback.bind(this)); - return; - } - if (type == 'touchend') { - light.on("touchend", callback.bind(this)); - return; - } - if (!this.events[type]) { - this.events[type] = []; - - // call the event initializer, if this is the first time we - // bind to this event. - if (typeof (this._eventInitializers[type]) == 'function') { - this._eventInitializers[type](); - } - } - this.events[type].push(callback); - }, - - removeEventListener: function (type, callback) { - var listeners = this.events[type]; - if (!listeners) { - return; - } - - for (var i = listeners.length; i--;) { - if (listeners[i] === callback) { - listeners.splice(i, 1); - } - } - }, - - _eventInitializers: {}, - dispatchEvent: function (event) { - var listeners = this.events[event.type]; - if (!listeners) { - return; - } - - for (var i = 0; i < listeners.length; i++) { - listeners[i](event); - } - }, - - querySelector: function (name) { - return new HTMLElement("DIV"); - } - }; -}()); diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/All_68_youtu.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/All_68_youtu.txt deleted file mode 100644 index 0c1d88d5..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/All_68_youtu.txt +++ /dev/null @@ -1,68 +0,0 @@ -0 8246 -1 2057 -2 5390 -3 7258 -4 6866 -5 4801 -6 3798 -7 2849 -8 8683 -9 13693 -10 14642 -11 15645 -12 17674 -13 18066 -14 16234 -15 12901 -16 19054 -17 3892 -18 5398 -19 6118 -20 9563 -21 7993 -22 18801 -23 20295 -24 11260 -25 16242 -26 19597 -27 4321 -28 8664 -29 5891 -30 8472 -31 5826 -32 10869 -33 8476 -34 21601 -35 11950 -36 5467 -37 2492 -38 5459 -39 8221 -40 1520 -41 5474 -42 19029 -43 16315 -44 16302 -45 16311 -46 21657 -47 16321 -48 33 -49 8061 -50 4092 -51 5886 -52 14936 -53 11663 -54 10990 -55 18862 -56 13864 -57 1104 -58 3020 -59 3513 -60 28 -61 6407 -62 220 -63 12434 -64 10985 -65 12486 -66 8464 -67 1640 diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/LeftFace_youtu.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/LeftFace_youtu.txt deleted file mode 100644 index 52b3d9f5..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/LeftFace_youtu.txt +++ /dev/null @@ -1,11 +0,0 @@ -Leftface -{ -8246 920 7284 2314 4851 6921 3167 6923 4533 289 8652 1232 6890 288 9774 2035 7062 375 3161 6900 4513 8909 3914 8911 3915 8914 1423 9784 2039 9783 4510 9782 5399 883 8203 -9806 2057 4528 9805 9804 564 10223 9822 4862 2069 10224 4863 10225 10188 2301 10187 2300 7265 3267 7263 4664 7981 696 7982 3478 5486 2790 699 3188 2126 4602 2132 7039 2154 4632 -7904 5390 8518 235 8517 4838 10191 2302 10192 4840 10182 569 10170 2290 7250 3262 7249 2184 7081 4671 9998 4670 7072 286 2905 5971 3770 8643 1227 7029 2147 4623 -245 7258 3265 7260 2296 10180 1188 8584 3744 8585 1189 8679 3788 5994 1252 5993 299 9994 5378 2730 10853 1236 8656 3777 8655 3776 283 9854 2091 6959 -247 6866 3153 6869 4491 2017 4661 2113 6985 4584 9890 4583 9889 4610 2137 9924 575 9883 2108 6975 560 7886 2030 -4457 9710 4801 7225 2270 10139 2269 10138 4798 7222 3254 7220 579 7016 3194 7019 2139 9932 2141 9931 4911 6047 1311 6050 3832 8757 1310 -4913 7360 3293 7359 1262 3798 8692 1259 6005 2914 1260 6004 3187 6993 2121 9900 4927 10288 2367 10289 -8200 878 5718 3587 2849 5719 3186 6989 2118 9896 -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/RightFace_youtu.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/RightFace_youtu.txt deleted file mode 100644 index 170f3501..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/RightFace_youtu.txt +++ /dev/null @@ -1,11 +0,0 @@ -Rightface -{ -19008 11778 16562 14431 13693 16563 14030 17797 12962 20628 -15757 18168 14137 18167 12106 14642 19424 12103 16813 13758 12104 16812 14031 17801 12965 20632 15771 21020 13211 21021 -15301 20442 15645 18033 13114 20871 13113 20870 15642 18030 14098 18028 11479 17824 14038 17827 12983 20664 12985 20663 15755 16855 12155 16858 14676 19489 12154 -11147 17674 13997 17677 15335 12861 15505 12957 17793 15428 20622 15427 20621 15454 12981 20656 11475 20615 12952 17783 11460 18694 12874 -11145 18066 14109 18068 13140 20912 12032 19316 14588 19317 12033 19411 14632 16802 12096 16801 11199 20726 16222 13574 21585 12080 19388 14621 19387 14620 11183 20586 12935 17767 -18712 16234 19250 11135 19249 15682 20923 13146 20924 13143 20914 15676 20902 13134 18056 14106 17887 14057 17889 13027 20729 15514 17794 14029 12070 19373 11185 15465 20673 15466 17748 14016 -20538 12901 15372 20537 20536 11464 20955 20554 15706 12913 20956 15707 20957 20920 13145 20919 13144 18073 14111 18071 15508 18789 11596 18790 14322 16330 13634 11599 14032 12970 15446 12976 17847 12998 15476 -19054 11820 18092 13158 20942 12904 14011 17731 15377 19385 14619 19383 14618 19382 15498 17871 14052 17869 14748 19625 14747 12251 17735 12907 20548 12909 15383 17739 14013 11294 15447 17815 14035 11621 16352 -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/All_68_youtu.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/All_68_youtu.txt deleted file mode 100644 index 0c1d88d5..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/All_68_youtu.txt +++ /dev/null @@ -1,68 +0,0 @@ -0 8246 -1 2057 -2 5390 -3 7258 -4 6866 -5 4801 -6 3798 -7 2849 -8 8683 -9 13693 -10 14642 -11 15645 -12 17674 -13 18066 -14 16234 -15 12901 -16 19054 -17 3892 -18 5398 -19 6118 -20 9563 -21 7993 -22 18801 -23 20295 -24 11260 -25 16242 -26 19597 -27 4321 -28 8664 -29 5891 -30 8472 -31 5826 -32 10869 -33 8476 -34 21601 -35 11950 -36 5467 -37 2492 -38 5459 -39 8221 -40 1520 -41 5474 -42 19029 -43 16315 -44 16302 -45 16311 -46 21657 -47 16321 -48 33 -49 8061 -50 4092 -51 5886 -52 14936 -53 11663 -54 10990 -55 18862 -56 13864 -57 1104 -58 3020 -59 3513 -60 28 -61 6407 -62 220 -63 12434 -64 10985 -65 12486 -66 8464 -67 1640 diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/LeftFace_youtu.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/LeftFace_youtu.txt deleted file mode 100644 index 52b3d9f5..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/LeftFace_youtu.txt +++ /dev/null @@ -1,11 +0,0 @@ -Leftface -{ -8246 920 7284 2314 4851 6921 3167 6923 4533 289 8652 1232 6890 288 9774 2035 7062 375 3161 6900 4513 8909 3914 8911 3915 8914 1423 9784 2039 9783 4510 9782 5399 883 8203 -9806 2057 4528 9805 9804 564 10223 9822 4862 2069 10224 4863 10225 10188 2301 10187 2300 7265 3267 7263 4664 7981 696 7982 3478 5486 2790 699 3188 2126 4602 2132 7039 2154 4632 -7904 5390 8518 235 8517 4838 10191 2302 10192 4840 10182 569 10170 2290 7250 3262 7249 2184 7081 4671 9998 4670 7072 286 2905 5971 3770 8643 1227 7029 2147 4623 -245 7258 3265 7260 2296 10180 1188 8584 3744 8585 1189 8679 3788 5994 1252 5993 299 9994 5378 2730 10853 1236 8656 3777 8655 3776 283 9854 2091 6959 -247 6866 3153 6869 4491 2017 4661 2113 6985 4584 9890 4583 9889 4610 2137 9924 575 9883 2108 6975 560 7886 2030 -4457 9710 4801 7225 2270 10139 2269 10138 4798 7222 3254 7220 579 7016 3194 7019 2139 9932 2141 9931 4911 6047 1311 6050 3832 8757 1310 -4913 7360 3293 7359 1262 3798 8692 1259 6005 2914 1260 6004 3187 6993 2121 9900 4927 10288 2367 10289 -8200 878 5718 3587 2849 5719 3186 6989 2118 9896 -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/RightFace_youtu.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/RightFace_youtu.txt deleted file mode 100644 index 170f3501..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/RightFace_youtu.txt +++ /dev/null @@ -1,11 +0,0 @@ -Rightface -{ -19008 11778 16562 14431 13693 16563 14030 17797 12962 20628 -15757 18168 14137 18167 12106 14642 19424 12103 16813 13758 12104 16812 14031 17801 12965 20632 15771 21020 13211 21021 -15301 20442 15645 18033 13114 20871 13113 20870 15642 18030 14098 18028 11479 17824 14038 17827 12983 20664 12985 20663 15755 16855 12155 16858 14676 19489 12154 -11147 17674 13997 17677 15335 12861 15505 12957 17793 15428 20622 15427 20621 15454 12981 20656 11475 20615 12952 17783 11460 18694 12874 -11145 18066 14109 18068 13140 20912 12032 19316 14588 19317 12033 19411 14632 16802 12096 16801 11199 20726 16222 13574 21585 12080 19388 14621 19387 14620 11183 20586 12935 17767 -18712 16234 19250 11135 19249 15682 20923 13146 20924 13143 20914 15676 20902 13134 18056 14106 17887 14057 17889 13027 20729 15514 17794 14029 12070 19373 11185 15465 20673 15466 17748 14016 -20538 12901 15372 20537 20536 11464 20955 20554 15706 12913 20956 15707 20957 20920 13145 20919 13144 18073 14111 18071 15508 18789 11596 18790 14322 16330 13634 11599 14032 12970 15446 12976 17847 12998 15476 -19054 11820 18092 13158 20942 12904 14011 17731 15377 19385 14619 19383 14618 19382 15498 17871 14052 17869 14748 19625 14747 12251 17735 12907 20548 12909 15383 17739 14013 11294 15447 17815 14035 11621 16352 -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/apple_blendshape_asym_profile.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/apple_blendshape_asym_profile.bin deleted file mode 100644 index cdbc4e9c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/apple_blendshape_asym_profile.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/apple_blendshape_profile.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/apple_blendshape_profile.bin deleted file mode 100644 index b3a9db81..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/apple_blendshape_profile.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/apple_blendshape_sym_profile.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/apple_blendshape_sym_profile.bin deleted file mode 100644 index 6ce7c185..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/apple_blendshape_sym_profile.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/apple_mean_profile.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/apple_mean_profile.bin deleted file mode 100644 index a8fd2db8..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/apple_mean_profile.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/blend_asym_name.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/blend_asym_name.txt deleted file mode 100644 index 2db8d777..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/blend_asym_name.txt +++ /dev/null @@ -1,7 +0,0 @@ -40,8 -13,18 -35,17 -44,23 -1,33 -36,12 -21,29 diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/blend_sym_name.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/blend_sym_name.txt deleted file mode 100644 index ea04e7cb..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/blend_sym_name.txt +++ /dev/null @@ -1,8 +0,0 @@ -0 -19 -46 -41 -6 -28 -20 -38 diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/blendshape_46.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/blendshape_46.bin deleted file mode 100644 index de711074..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/blendshape_46.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/blenshape_Mat_profile.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/blenshape_Mat_profile.bin deleted file mode 100644 index d6205efa..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/blenshape_Mat_profile.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/mean.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/mean.bin deleted file mode 100644 index d4023056..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/mean.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/mean_profile.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/mean_profile.bin deleted file mode 100644 index 0d35bbac..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/mean_profile.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/mean_sample.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/mean_sample.txt deleted file mode 100644 index 3973dec4..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/mean_sample.txt +++ /dev/null @@ -1,68 +0,0 @@ -111.899,254.751 -114.466,275.96 -118.814,294.574 -122.623,311.855 -128.109,325.926 -136.088,336.422 -147.942,345.584 -169.741,360.017 -204.647,366.669 -238.933,360.017 -260.001,345.584 -271.078,336.422 -277.929,325.926 -282.921,311.855 -286.489,294.574 -291.03,275.96 -293.503,254.751 -127.534,194.338 -140.694,184.15 -157.213,179.844 -170.991,178.578 -185.382,182.162 -224.705,182.162 -238.992,178.578 -252.309,177.896 -268.535,184.15 -281.391,191.938 -205.008,212.899 -205.24,227.588 -205.506,242.034 -205.695,257.16 -178.064,270.56 -191.221,276.359 -205.26,277.02 -219.079,276.359 -232.731,269.717 -143.573,216.25 -155.903,209.306 -164.623,207.596 -180.323,217.183 -164.089,220.265 -153.59,220.308 -229.168,217.183 -241.562,207.65 -252.166,208.349 -265.526,216.25 -252.59,220.384 -242.115,219.732 -171.887,306.784 -183.323,298.53 -195.959,292.254 -205.41,294.195 -214.784,292.254 -227.087,297.946 -237.991,306.784 -229.045,314.133 -219.267,317.17 -205.317,318.559 -191.253,317.17 -180.869,314.55 -175.021,307.181 -188.634,305.73 -205.296,304.722 -219.893,305.326 -234.854,307.181 -220.053,306.031 -205.292,305.503 -189.89,306.519 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/normalise_pca_basis.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/normalise_pca_basis.bin deleted file mode 100644 index f148a10d..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/normalise_pca_basis.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/normalised_pca_basis_ROI_profile.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/normalised_pca_basis_ROI_profile.bin deleted file mode 100644 index 09469769..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/normalised_pca_basis_ROI_profile.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/profile_axis.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/profile_axis.txt deleted file mode 100644 index 762928dd..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/profile_axis.txt +++ /dev/null @@ -1,10 +0,0 @@ -8 -27 -28 -29 -30 -33 -51 -57 -62 -66 diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/profile_sym_pair.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/profile_sym_pair.txt deleted file mode 100644 index 9c8b2397..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/profile_sym_pair.txt +++ /dev/null @@ -1,241 +0,0 @@ -0,457 -1,423 -2,391 -3,361 -4,338 -5,312 -6,295 -7,284 -17,26 -18,25 -19,24 -20,23 -21,22 -31,35 -32,34 -36,45 -37,44 -38,43 -39,42 -40,47 -41,46 -48,54 -49,53 -50,52 -58,56 -59,55 -60,64 -61,63 -67,65 -68,16 -69,458 -70,459 -71,460 -72,461 -73,462 -74,463 -75,464 -76,465 -77,466 -78,467 -79,468 -80,469 -81,470 -82,471 -83,472 -84,473 -85,474 -86,475 -87,476 -88,477 -89,478 -90,479 -91,480 -92,481 -93,482 -94,483 -95,484 -96,485 -97,486 -98,487 -99,488 -100,489 -101,490 -102,491 -103,422 -104,15 -105,424 -106,425 -107,426 -108,427 -109,428 -110,429 -111,430 -112,431 -113,432 -114,433 -115,434 -116,435 -117,436 -118,437 -119,438 -120,439 -121,440 -122,441 -123,442 -124,443 -125,444 -126,445 -127,446 -128,447 -129,448 -130,449 -131,450 -132,451 -133,452 -134,453 -135,454 -136,455 -137,456 -138,390 -139,14 -140,392 -141,393 -142,394 -143,395 -144,396 -145,397 -146,398 -147,399 -148,400 -149,401 -150,402 -151,403 -152,404 -153,405 -154,406 -155,407 -156,408 -157,409 -158,410 -159,411 -160,412 -161,413 -162,414 -163,415 -164,416 -165,417 -166,418 -167,419 -168,420 -169,421 -170,360 -171,13 -172,362 -173,363 -174,364 -175,365 -176,366 -177,367 -178,368 -179,369 -180,370 -181,371 -182,372 -183,373 -184,374 -185,375 -186,376 -187,377 -188,378 -189,379 -190,380 -191,381 -192,382 -193,383 -194,384 -195,385 -196,386 -197,387 -198,388 -199,389 -200,337 -201,12 -202,339 -203,340 -204,341 -205,342 -206,343 -207,344 -208,345 -209,346 -210,347 -211,348 -212,349 -213,350 -214,351 -215,352 -216,353 -217,354 -218,355 -219,356 -220,357 -221,358 -222,359 -223,310 -224,311 -225,11 -226,313 -227,314 -228,315 -229,316 -230,317 -231,318 -232,319 -233,320 -234,321 -235,322 -236,323 -237,324 -238,325 -239,326 -240,327 -241,328 -242,329 -243,330 -244,331 -245,332 -246,333 -247,334 -248,335 -249,336 -250,290 -251,291 -252,292 -253,293 -254,294 -255,10 -256,296 -257,297 -258,298 -259,299 -260,300 -261,301 -262,302 -263,303 -264,304 -265,305 -266,306 -267,307 -268,308 -269,309 -270,280 -271,281 -272,282 -273,283 -274,9 -275,285 -276,286 -277,287 -278,288 -279,289 diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/subsetPointsto1000.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/subsetPointsto1000.txt deleted file mode 100644 index 0660ec45..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/V3/subsetPointsto1000.txt +++ /dev/null @@ -1,1000 +0,0 @@ -0,1472 -1,1817 -2,1759 -3,1869 -4,1452 -5,1452 -6,1843 -7,1391 -8,1851 -9,1822 -10,1761 -11,1851 -12,1844 -13,1391 -14,1868 -15,1727 -16,1390 -17,1867 -18,1817 -19,1868 -20,1774 -21,1475 -22,1829 -23,1829 -24,1843 -25,1843 -26,1734 -27,479 -28,888 -29,1259 -30,1287 -31,2188 -32,885 -33,2343 -34,1779 -35,2322 -36,1448 -37,2096 -38,2048 -39,229 -40,1553 -41,220 -42,1787 -43,1784 -44,1565 -45,1320 -46,1492 -47,2330 -48,2048 -49,2314 -50,1556 -51,1800 -52,2107 -53,2106 -54,2293 -55,2294 -56,2345 -57,1480 -58,1529 -59,2270 -60,1758 -61,1514 -62,1785 -63,1788 -64,1524 -65,1524 -66,1289 -67,1522 -68,217 -69,1501 -70,2078 -71,1797 -72,1603 -73,1905 -74,2321 -75,1654 -76,1598 -77,2133 -78,1304 -79,1637 -80,2263 -81,1305 -82,1602 -83,1726 -84,1586 -85,1599 -86,2403 -87,1619 -88,1729 -89,1601 -90,1582 -91,1721 -92,2325 -93,1742 -94,1719 -95,1581 -96,1520 -97,2394 -98,2255 -99,1946 -100,1966 -101,2368 -102,1961 -103,1428 -104,2252 -105,1430 -106,1424 -107,1346 -108,1952 -109,1403 -110,2015 -111,1771 -112,2208 -113,2353 -114,1367 -115,1484 -116,1487 -117,1424 -118,1484 -119,1774 -120,2367 -121,1372 -122,1691 -123,1883 -124,1372 -125,1749 -126,1478 -127,1479 -128,1859 -129,1857 -130,1870 -131,1865 -132,1865 -133,1874 -134,1866 -135,1866 -136,1867 -137,1872 -138,1879 -139,1866 -140,1864 -141,1853 -142,1845 -143,1845 -144,1833 -145,1831 -146,1824 -147,1823 -148,1830 -149,1752 -150,1754 -151,1870 -152,1849 -153,1850 -154,1823 -155,1478 -156,1749 -157,1755 -158,1827 -159,1848 -160,1871 -161,1875 -162,1875 -163,1476 -164,1827 -165,1848 -166,1871 -167,1875 -168,1823 -169,1850 -170,1849 -171,1478 -172,1832 -173,1828 -174,1828 -175,1825 -176,1826 -177,1826 -178,1826 -179,1838 -180,1775 -181,1459 -182,1515 -183,2075 -184,1434 -185,1485 -186,1372 -187,1859 -188,1861 -189,1861 -190,2066 -191,1374 -192,1480 -193,1842 -194,1862 -195,1387 -196,1387 -197,1820 -198,1809 -199,1757 -200,582 -201,285 -202,208 -203,568 -204,568 -205,1821 -206,1821 -207,1760 -208,651 -209,253 -210,282 -211,284 -212,625 -213,283 -214,638 -215,259 -216,193 -217,1107 -218,1113 -219,1151 -220,933 -221,348 -222,932 -223,343 -224,74 -225,377 -226,624 -227,898 -228,935 -229,590 -230,43 -231,897 -232,899 -233,190 -234,315 -235,484 -236,1142 -237,364 -238,600 -239,303 -240,321 -241,337 -242,265 -243,335 -244,278 -245,1098 -246,1125 -247,1128 -248,333 -249,140 -250,44 -251,298 -252,921 -253,571 -254,334 -255,910 -256,316 -257,594 -258,65 -259,786 -260,1089 -261,959 -262,67 -263,1153 -264,47 -265,1154 -266,399 -267,383 -268,1225 -269,964 -270,553 -271,867 -272,782 -273,537 -274,889 -275,533 -276,388 -277,320 -278,283 -279,326 -280,239 -281,1719 -282,327 -283,753 -284,752 -285,748 -286,98 -287,746 -288,749 -289,754 -290,109 -291,776 -292,770 -293,835 -294,166 -295,495 -296,500 -297,497 -298,764 -299,517 -300,1182 -301,122 -302,295 -303,498 -304,292 -305,1202 -306,123 -307,1100 -308,293 -309,692 -310,686 -311,688 -312,674 -313,661 -314,653 -315,653 -316,658 -317,675 -318,687 -319,674 -320,674 -321,665 -322,681 -323,673 -324,662 -325,654 -326,654 -327,261 -328,260 -329,559 -330,688 -331,256 -332,675 -333,657 -334,634 -335,260 -336,286 -337,287 -338,262 -339,655 -340,656 -341,679 -342,690 -343,287 -344,287 -345,262 -346,655 -347,656 -348,679 -349,683 -350,558 -351,260 -352,634 -353,657 -354,675 -355,645 -356,642 -357,640 -358,636 -359,636 -360,632 -361,631 -362,631 -363,631 -364,692 -365,1103 -366,266 -367,912 -368,616 -369,141 -370,650 -371,669 -372,616 -373,621 -374,1176 -375,649 -376,669 -377,141 -378,628 -379,129 -380,615 -381,338 -382,614 -383,622 -384,1477 -385,1852 -386,1821 -387,1478 -388,1473 -389,1472 -390,880 -391,2196 -392,1663 -393,1670 -394,1662 -395,1016 -396,1669 -397,2451 -398,242 -399,246 -400,1531 -401,2056 -402,1448 -403,874 -404,307 -405,213 -406,1499 -407,2071 -408,1569 -409,1495 -410,219 -411,1493 -412,1757 -413,1500 -414,218 -415,2302 -416,2057 -417,2267 -418,1603 -419,1440 -420,2144 -421,1628 -422,2153 -423,1909 -424,2085 -425,2130 -426,2131 -427,250 -428,1741 -429,2404 -430,2135 -431,2401 -432,1296 -433,1519 -434,1582 -435,1728 -436,1474 -437,1475 -438,1578 -439,1580 -440,1350 -441,1333 -442,2254 -443,1942 -444,1429 -445,2030 -446,2024 -447,1710 -448,1388 -449,1838 -450,1858 -451,1836 -452,1878 -453,1835 -454,1859 -455,1860 -456,2276 -457,1820 -458,1374 -459,625 -460,638 -461,541 -462,1821 -463,660 -464,629 -465,139 -466,466 -467,1011 -468,356 -469,339 -470,928 -471,863 -472,863 -473,300 -474,43 -475,301 -476,376 -477,192 -478,599 -479,305 -480,45 -481,308 -482,297 -483,385 -484,417 -485,914 -486,916 -487,410 -488,385 -489,447 -490,867 -491,867 -492,327 -493,389 -494,529 -495,773 -496,86 -497,775 -498,1042 -499,765 -500,852 -501,122 -502,507 -503,141 -504,666 -505,646 -506,643 -507,255 -508,253 -509,260 -510,645 -511,644 -512,644 -513,668 -514,682 -515,1105 -516,670 -517,648 -518,1760 -519,1830 -520,1821 -521,523 -522,281 -523,281 -524,280 -525,286 -526,286 -527,567 -528,676 -529,526 -530,325 -531,207 -532,659 -533,660 -534,652 -535,651 -536,550 -537,637 -538,638 -539,569 -540,660 -541,677 -542,207 -543,144 -544,253 -545,240 -546,677 -547,659 -548,320 -549,281 -550,285 -551,887 -552,1005 -553,77 -554,470 -555,471 -556,795 -557,36 -558,2432 -559,727 -560,725 -561,474 -562,347 -563,882 -564,1121 -565,342 -566,884 -567,531 -568,530 -569,351 -570,203 -571,203 -572,924 -573,899 -574,313 -575,322 -576,302 -577,601 -578,1133 -579,1122 -580,373 -581,593 -582,1141 -583,332 -584,577 -585,918 -586,1140 -587,1141 -588,1132 -589,565 -590,335 -591,1177 -592,276 -593,1156 -594,920 -595,921 -596,331 -597,1128 -598,334 -599,140 -600,45 -601,45 -602,308 -603,605 -604,298 -605,566 -606,566 -607,336 -608,565 -609,564 -610,329 -611,1129 -612,316 -613,1137 -614,436 -615,402 -616,318 -617,405 -618,707 -619,406 -620,47 -621,1155 -622,424 -623,570 -624,986 -625,433 -626,436 -627,987 -628,48 -629,917 -630,961 -631,398 -632,891 -633,1170 -634,539 -635,407 -636,282 -637,555 -638,407 -639,198 -640,709 -641,537 -642,2335 -643,991 -644,785 -645,711 -646,553 -647,1097 -648,455 -649,389 -650,583 -651,1179 -652,247 -653,802 -654,180 -655,1085 -656,88 -657,754 -658,741 -659,1223 -660,754 -661,754 -662,525 -663,747 -664,94 -665,1223 -666,187 -667,1085 -668,770 -669,1220 -670,830 -671,1070 -672,755 -673,1076 -674,83 -675,103 -676,520 -677,1062 -678,124 -679,131 -680,802 -681,517 -682,620 -683,497 -684,295 -685,160 -686,299 -687,582 -688,817 -689,522 -690,563 -691,490 -692,500 -693,789 -694,491 -695,583 -696,189 -697,895 -698,277 -699,490 -700,560 -701,1836 -702,1837 -703,264 -704,1836 -705,261 -706,261 -707,256 -708,1823 -709,262 -710,263 -711,1823 -712,143 -713,686 -714,693 -715,684 -716,688 -717,683 -718,674 -719,646 -720,681 -721,666 -722,681 -723,664 -724,678 -725,661 -726,656 -727,653 -728,654 -729,653 -730,658 -731,658 -732,680 -733,690 -734,674 -735,673 -736,672 -737,672 -738,643 -739,642 -740,634 -741,641 -742,632 -743,632 -744,631 -745,260 -746,634 -747,489 -748,675 -749,657 -750,658 -751,634 -752,635 -753,656 -754,655 -755,690 -756,693 -757,628 -758,616 -759,288 -760,622 -761,622 -762,627 -763,132 -764,792 -765,614 -766,617 -767,618 -768,626 -769,648 -770,258 -771,257 -772,669 -773,142 -774,791 -775,335 -776,258 -777,671 -778,670 -779,626 -780,614 -781,335 -782,1749 -783,1476 -784,1472 -785,1478 -786,1472 -787,1733 -788,1518 -789,1453 -790,1389 -791,1759 -792,1851 -793,1843 -794,1391 -795,1475 -796,1849 -797,1844 -798,1453 -799,1829 -800,1512 -801,1474 -802,1476 -803,1477 -804,1659 -805,1382 -806,1660 -807,2194 -808,1276 -809,1780 -810,1722 -811,1723 -812,1547 -813,2285 -814,1532 -815,1722 -816,2065 -817,2056 -818,1448 -819,2049 -820,1561 -821,1549 -822,2345 -823,1499 -824,1506 -825,2079 -826,1498 -827,1770 -828,1513 -829,2089 -830,1494 -831,2282 -832,2098 -833,1481 -834,1756 -835,1529 -836,1807 -837,1528 -838,1528 -839,1457 -840,1523 -841,1757 -842,2270 -843,1763 -844,1526 -845,2296 -846,1785 -847,2304 -848,1524 -849,1385 -850,1500 -851,1786 -852,1617 -853,2155 -854,1653 -855,1790 -856,1603 -857,1294 -858,2086 -859,1619 -860,2315 -861,1510 -862,2082 -863,1509 -864,1796 -865,2266 -866,1296 -867,1729 -868,1575 -869,1645 -870,2159 -871,2163 -872,1300 -873,1730 -874,1650 -875,1647 -876,1474 -877,1519 -878,1578 -879,2041 -880,2393 -881,1425 -882,1709 -883,1944 -884,2232 -885,1433 -886,1425 -887,2045 -888,1717 -889,1717 -890,1939 -891,1941 -892,2393 -893,1939 -894,1937 -895,1341 -896,2393 -897,2256 -898,1717 -899,1962 -900,1969 -901,1997 -902,2389 -903,1696 -904,1922 -905,1335 -906,2037 -907,1403 -908,1349 -909,1353 -910,1330 -911,2240 -912,2245 -913,1360 -914,1369 -915,1692 -916,1487 -917,1692 -918,1367 -919,1491 -920,2271 -921,1486 -922,1755 -923,1468 -924,1774 -925,1434 -926,1748 -927,1682 -928,1479 -929,1877 -930,1878 -931,1884 -932,1885 -933,1754 -934,1880 -935,1866 -936,1857 -937,1859 -938,1856 -939,1853 -940,1848 -941,1845 -942,1845 -943,1865 -944,1849 -945,1849 -946,1867 -947,1872 -948,1880 -949,1866 -950,1866 -951,1866 -952,1864 -953,1838 -954,1858 -955,1855 -956,1854 -957,1850 -958,1832 -959,1832 -960,1825 -961,1825 -962,1823 -963,1826 -964,1850 -965,1885 -966,1434 -967,1753 -968,1867 -969,1864 -970,1864 -971,1849 -972,1850 -973,1826 -974,1828 -975,1848 -976,1847 -977,1875 -978,1750 -979,1387 -980,1820 -981,1388 -982,1388 -983,1481 -984,1530 -985,1806 -986,1527 -987,1378 -988,2357 -989,1809 -990,1810 -991,1984 -992,1862 -993,1863 -994,1863 -995,1839 -996,1839 -997,1842 -998,1983 -999,1527 diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/blend_name.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/blend_name.txt deleted file mode 100644 index 4438c81f..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/blend_name.txt +++ /dev/null @@ -1,53 +0,0 @@ -40,browDownLeft -8,browDownRight -0,browInnerUp -13,browOuterUpLeft -18,browOuterUpRight -48,cheekPuff -9,cheekSquintLeft -16,cheekSquintRight -22,eyeBlinkLeft -42,eyeBlinkRight -2,eyeLookDownLeft -3,eyeLookDownRight -34,eyeLookInLeft -26,eyeLookInRight -45,eyeLookOutLeft -24,eyeLookOutRight -25,eyeLookUpLeft -14,eyeLookUpRight -37,eyeSquintLeft -30,eyeSquintRight -39,eyeWideLeft -51,eyeWideRight -43,jawForward -35,jawLeft -19,jawOpen -17,jawRight -0,mean -11,mouthClose -21,mouthDimpleLeft -29,mouthDimpleRight -44,mouthFrownLeft -23,mouthFrownRight -28,mouthFunnel -47,mouthLeft -10,mouthLowerDownLeft -27,mouthLowerDownRight -36,mouthPressLeft -12,mouthPressRight -6,mouthPucker -7,mouthRight -46,mouthRollLower -41,mouthRollUpper -20,mouthShrugLower -38,mouthShrugUpper -1,mouthSmileLeft -33,mouthSmileRight -5,mouthStretchLeft -15,mouthStretchRight -31,mouthUpperUpLeft -32,mouthUpperUpRight -4,noseSneerLeft -50,noseSneerRight -0,res diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/blenshape_Mat_clip.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/blenshape_Mat_clip.bin deleted file mode 100644 index 48a2405a..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/blenshape_Mat_clip.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/blenshape_Mat_profile.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/blenshape_Mat_profile.bin deleted file mode 100644 index ddee0773..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/blenshape_Mat_profile.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/configVEE.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/configVEE.txt deleted file mode 100644 index eae1b1ff..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/configVEE.txt +++ /dev/null @@ -1,54 +0,0 @@ -## Version Internal52ex_v_0_0_8 -# GYAppleBlendshapeName order -0 5 0.4 1.0 1.0 0.0 1.0 1.0 #GYApple_browInnerUp -1 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthSmileLeft -2 5 2.5 1.0 1.0 0.0 1.0 1.0 #GYApple_eyeLookDownLeft -3 5 2.5 1.0 1.0 0.0 1.0 1.0 #GYApple_eyeLookDownRight -4 5 0.4 1.0 1.0 0.0 1.0 1.0 #GYApple_noseSneerLeft -5 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthStretchLeft -6 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthPucker -7 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthRight -8 5 0.4 1.0 1.0 0.0 1.0 1.0 #GYApple_browDownRight -9 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_cheekSquintLeft -10 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthLowerDownLeft -11 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthClose -12 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthPressRight -13 5 0.4 1.0 1.0 0.0 1.0 1.0 #GYApple_browOuterUpLeft -14 5 2.5 1.0 1.0 0.0 1.0 1.0 #GYApple_eyeLookUpRight -15 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthStretchRight -16 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_cheekSquintRight -17 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_jawRight -18 5 0.4 1.0 1.0 0.0 1.0 1.0 #GYApple_browOuterUpRight -19 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_jawOpen -20 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthShrugLower -21 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthDimpleLeft -22 10 5 1.0 1.0 0.0 1.0 1.0 #GYApple_eyeBlinkLeft -23 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthFrownRight -24 5 2.5 1.0 1.0 0.0 1.0 1.0 #GYApple_eyeLookOutRight -25 5 2.5 1.0 1.0 0.0 1.0 1.0 #GYApple_eyeLookUpLeft -26 5 2.5 1.0 1.0 0.0 1.0 1.0 #GYApple_eyeLookInRight -27 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthLowerDownRight -28 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthFunnel -29 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthDimpleRight -30 5 2.5 1.0 1.0 0.0 1.0 1.0 #GYApple_eyeSquintRight -31 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthUpperUpLeft -32 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthUpperUpRight -33 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthSmileRight -34 5 2.5 1.0 1.0 0.0 1.0 1.0 #GYApple_eyeLookInLeft -35 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_jawLeft -36 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthPressLeft -37 5 2.5 1.0 1.0 0.0 1.0 1.0 #GYApple_eyeSquintLeft -38 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthShrugUpper -39 5 2.5 1.0 1.0 0.0 1.0 1.0 #GYApple_eyeWideLeft -40 5 0.4 1.0 1.0 0.0 1.0 1.0 #GYApple_browDownLeft -41 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthRollUpper -42 10 5 1.0 1.0 0.0 1.0 1.0 #GYApple_eyeBlinkRight -43 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_jawForward -44 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthFrownLeft -45 5 2.5 1.0 1.0 0.0 1.0 1.0 #GYApple_eyeLookOutLeft -46 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthRollLower -47 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_mouthLeft -48 5 0.4 1.0 1.0 0.0 1.0 1.0 #GYApple_cheekPuff -49 5 4.0 1.0 1.0 0.0 1.0 1.0 #GYApple_tongueOut -50 5 0.4 1.0 1.0 0.0 1.0 1.0 #GYApple_noseSneerRight -51 5 2.5 1.0 1.0 0.0 1.0 1.0 #GYApple_eyeWideRight diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/deepface.rapidmodel b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/deepface.rapidmodel deleted file mode 100644 index 2b67fbcb..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/deepface.rapidmodel and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/deepface.rapidproto.wmc b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/deepface.rapidproto.wmc deleted file mode 100644 index 8774ce53..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/deepface.rapidproto.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/fileCheck.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/fileCheck.txt deleted file mode 100644 index 6cf8c2f0..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/fileCheck.txt +++ /dev/null @@ -1,2 +0,0 @@ -b5f58bb9fc3ab2e993ce190a8d41225a -2f51241877d39f12e0ee97b3538c37ae diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/eyebrow_base.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/eyebrow_base.bin deleted file mode 100644 index d7df7dc1..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/eyebrow_base.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/eyelash_base.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/eyelash_base.bin deleted file mode 100644 index 3830cdd0..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/eyelash_base.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/face_base.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/face_base.bin deleted file mode 100644 index fa8b6393..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/face_base.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/face_exps.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/face_exps.bin deleted file mode 100644 index c42e68c7..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/face_exps.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/mouth_base.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/mouth_base.bin deleted file mode 100644 index 17eef36a..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/mouth_base.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/mouth_exps.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/mouth_exps.bin deleted file mode 100644 index 873544a8..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/mouth_exps.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/tongue_base.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/tongue_base.bin deleted file mode 100644 index 42f7d489..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/tongue_base.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/tongue_exps.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/tongue_exps.bin deleted file mode 100644 index 539b75a0..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/tongue_exps.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/tooth_down_base.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/tooth_down_base.bin deleted file mode 100644 index 52afaeb3..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/tooth_down_base.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/tooth_down_exps.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/tooth_down_exps.bin deleted file mode 100644 index a77bf7b2..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/tooth_down_exps.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/tooth_up_base.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/tooth_up_base.bin deleted file mode 100644 index bd5f0832..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/tooth_up_base.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/tooth_up_exps.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/tooth_up_exps.bin deleted file mode 100644 index e021daf2..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/kapu_res/tooth_up_exps.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/mean.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/mean.bin deleted file mode 100644 index 0668576e..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/mean.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/mean_profile.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/mean_profile.bin deleted file mode 100644 index 2627e559..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/mean_profile.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/new_triangle.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/new_triangle.txt deleted file mode 100644 index ed21c6ed..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/new_triangle.txt +++ /dev/null @@ -1,4894 +0,0 @@ -0 1 2 -2 3 0 -4 5 6 -6 7 4 -1 8 9 -9 2 1 -8 10 11 -11 9 8 -12 13 14 -14 15 12 -13 16 17 -17 14 13 -18 0 3 -3 19 18 -5 18 19 -19 6 5 -10 12 15 -15 11 10 -20 21 22 -22 23 20 -21 24 25 -25 22 21 -24 26 27 -27 25 24 -28 20 23 -23 29 28 -30 28 29 -29 31 30 -32 30 31 -31 33 32 -34 32 33 -33 35 34 -36 34 35 -35 37 36 -16 36 37 -37 17 16 -38 39 40 -38 41 42 -42 43 44 -44 45 46 -47 48 39 -49 50 51 -52 42 53 -50 53 54 -53 44 55 -54 55 56 -46 55 44 -57 56 55 -38 49 47 -58 47 49 -59 60 58 -58 61 62 -61 48 62 -63 60 64 -63 65 61 -49 59 58 -66 67 68 -69 70 71 -72 73 74 -75 76 77 -78 79 80 -79 81 80 -82 77 81 -83 80 81 -84 78 80 -85 86 87 -85 88 78 -85 89 90 -81 91 83 -77 92 91 -76 93 92 -94 95 70 -96 97 95 -98 99 100 -101 100 102 -98 103 104 -103 105 104 -106 107 108 -109 110 111 -112 108 110 -113 114 115 -116 84 83 -86 117 118 -119 120 121 -122 123 124 -95 125 126 -127 128 129 -130 131 128 -132 133 134 -135 39 136 -137 39 48 -138 40 135 -138 43 41 -139 45 43 -137 65 140 -140 141 142 -143 90 89 -144 74 73 -145 88 90 -146 73 75 -147 79 88 -148 82 79 -149 75 82 -150 102 100 -151 100 99 -152 153 154 -45 152 154 -46 154 155 -156 154 153 -157 158 57 -155 57 46 -89 159 143 -160 64 60 -104 161 98 -157 156 162 -163 162 164 -165 166 167 -168 169 170 -171 172 173 -174 175 176 -177 172 178 -179 172 180 -181 182 174 -183 134 133 -184 185 186 -167 187 165 -188 189 190 -191 188 192 -193 194 195 -195 196 193 -197 198 199 -200 197 201 -202 203 204 -205 206 207 -206 208 191 -208 204 189 -209 205 210 -211 212 213 -213 214 215 -207 210 205 -91 216 217 -218 210 219 -211 219 210 -92 220 216 -221 222 194 -223 222 224 -225 226 227 -71 228 69 -229 67 228 -68 230 231 -230 71 232 -233 71 70 -234 120 122 -234 235 236 -234 124 237 -237 97 234 -70 126 233 -173 238 239 -240 239 241 -242 182 243 -242 180 177 -243 244 245 -180 245 179 -246 247 248 -249 250 66 -251 247 252 -83 217 116 -253 254 255 -256 219 253 -66 231 257 -249 257 258 -247 258 259 -260 253 261 -261 255 262 -263 264 265 -266 133 265 -267 183 266 -133 263 265 -240 265 264 -241 266 240 -174 268 181 -269 262 268 -270 261 269 -269 176 270 -271 272 273 -274 272 275 -276 277 278 -279 280 276 -278 281 282 -283 284 285 -286 287 288 -289 290 286 -291 292 114 -286 293 289 -294 289 293 -295 288 292 -296 295 291 -297 293 296 -298 294 297 -299 300 301 -299 294 302 -303 304 305 -306 305 304 -278 305 276 -282 303 278 -276 307 279 -308 301 300 -300 309 308 -310 311 312 -312 313 314 -315 300 316 -317 318 315 -319 296 320 -321 297 319 -113 296 291 -322 323 324 -325 324 326 -327 326 328 -178 329 330 -264 331 171 -173 264 171 -332 333 334 -335 334 333 -334 336 332 -322 337 334 -337 338 336 -327 337 325 -171 339 178 -340 285 284 -341 342 343 -340 344 345 -346 347 348 -349 314 313 -350 351 352 -353 348 347 -354 352 351 -355 356 349 -306 357 307 -357 358 359 -360 361 362 -358 363 359 -363 364 360 -357 353 347 -353 363 352 -352 360 350 -279 357 347 -365 366 367 -367 368 369 -366 314 368 -356 368 314 -362 369 368 -350 362 356 -370 168 170 -371 190 189 -372 204 203 -373 189 204 -374 203 209 -375 209 218 -376 218 256 -377 256 260 -378 260 270 -379 380 381 -382 344 383 -384 385 382 -386 387 384 -388 389 386 -390 391 388 -392 393 390 -274 281 394 -343 395 396 -396 397 392 -398 200 399 -212 399 214 -398 198 400 -207 398 212 -199 401 402 -402 207 206 -399 403 404 -399 405 214 -406 195 194 -407 201 197 -408 407 409 -192 408 191 -410 206 191 -197 409 407 -410 199 402 -409 191 408 -411 412 413 -414 415 416 -417 418 419 -420 421 417 -419 422 423 -424 423 422 -413 425 411 -426 223 427 -413 428 223 -227 414 225 -225 416 429 -430 431 432 -156 431 433 -162 433 434 -164 434 435 -432 436 159 -431 437 436 -438 432 89 -439 430 438 -440 434 441 -441 433 430 -87 438 85 -442 439 87 -443 441 439 -87 118 442 -270 379 378 -444 381 380 -242 445 446 -330 177 178 -175 380 176 -175 446 447 -448 285 449 -345 449 285 -450 451 342 -344 452 345 -385 453 344 -387 454 385 -389 455 387 -391 456 389 -457 393 458 -397 458 393 -342 459 395 -395 460 397 -461 462 463 -101 464 465 -141 465 464 -466 74 467 -468 101 465 -465 64 468 -102 469 464 -142 464 469 -470 467 471 -467 472 471 -473 468 474 -64 474 468 -93 475 220 -93 466 476 -477 99 161 -478 151 99 -479 161 480 -481 480 482 -481 476 479 -477 476 466 -467 477 466 -105 480 104 -483 167 166 -483 192 484 -485 188 190 -169 485 170 -169 484 486 -192 486 484 -487 224 221 -487 193 488 -483 193 196 -488 166 489 -490 223 224 -170 491 370 -190 491 485 -492 166 493 -494 495 496 -492 496 489 -497 128 131 -498 499 497 -500 131 225 -497 501 498 -500 429 502 -503 500 502 -504 495 505 -506 507 129 -128 506 129 -508 506 499 -496 490 487 -509 490 495 -489 487 488 -510 511 512 -513 514 515 -516 517 514 -518 519 517 -520 275 271 -511 274 521 -274 522 521 -522 515 514 -523 511 521 -521 514 517 -523 517 519 -524 525 526 -527 528 529 -529 530 527 -531 532 530 -533 534 532 -535 536 534 -537 538 539 -540 541 542 -543 544 545 -373 528 524 -371 524 544 -372 529 528 -374 531 529 -375 533 531 -376 535 533 -377 538 535 -378 539 538 -546 539 547 -547 379 381 -548 549 550 -381 551 547 -552 547 551 -551 553 552 -544 526 554 -491 545 555 -370 555 541 -513 541 516 -545 554 556 -518 541 555 -556 555 545 -557 558 559 -560 561 562 -563 564 565 -566 565 564 -561 567 562 -340 568 561 -566 382 383 -566 340 561 -569 382 564 -558 384 569 -570 386 558 -571 388 570 -572 390 571 -569 559 558 -570 573 571 -574 571 573 -575 576 577 -578 576 579 -343 575 341 -343 578 579 -578 392 572 -580 572 574 -581 284 582 -568 583 567 -283 584 585 -586 587 588 -589 590 591 -592 593 586 -594 595 592 -596 591 590 -597 588 598 -594 599 590 -590 600 596 -601 592 602 -597 592 586 -603 581 604 -597 603 604 -604 582 605 -599 585 584 -605 597 604 -605 601 602 -283 605 582 -248 259 606 -405 215 214 -607 244 181 -608 179 609 -610 186 185 -608 239 238 -241 611 612 -245 613 614 -609 245 614 -615 262 255 -607 231 613 -124 616 610 -614 231 230 -609 230 232 -608 232 233 -237 610 617 -233 611 608 -126 612 611 -617 185 267 -267 612 617 -125 617 612 -618 181 268 -268 619 618 -258 607 618 -259 618 619 -606 619 615 -213 254 211 -215 620 213 -255 620 615 -615 621 606 -248 622 246 -606 623 248 -624 621 215 -625 226 130 -227 626 627 -418 227 627 -626 405 627 -623 626 625 -628 130 127 -622 625 628 -405 629 627 -627 422 418 -404 630 629 -629 424 422 -631 632 633 -194 634 406 -428 634 222 -635 412 631 -201 403 200 -425 636 637 -416 637 636 -426 638 636 -636 429 416 -509 638 427 -639 509 504 -639 502 640 -429 640 502 -403 641 630 -642 643 424 -642 630 641 -406 644 201 -634 641 644 -645 631 633 -641 631 642 -324 646 647 -326 647 648 -328 648 649 -447 444 380 -330 650 651 -652 446 653 -651 445 330 -654 446 445 -647 655 106 -112 647 106 -649 112 109 -651 115 114 -654 114 292 -292 653 654 -288 652 653 -287 444 652 -550 444 656 -548 657 553 -658 656 659 -548 658 660 -290 656 287 -310 366 661 -661 462 310 -290 309 659 -309 658 659 -662 660 658 -660 663 657 -657 661 365 -318 662 309 -664 665 666 -667 664 666 -663 666 462 -666 463 462 -449 668 448 -669 452 670 -670 453 671 -672 673 451 -458 674 457 -671 454 675 -675 455 676 -456 676 455 -457 677 456 -460 678 458 -460 679 680 -679 451 673 -669 681 668 -682 683 673 -680 684 678 -671 685 670 -674 686 677 -678 687 674 -677 688 676 -675 689 671 -676 690 675 -679 691 680 -692 673 683 -670 693 669 -448 694 584 -599 694 600 -668 695 694 -696 272 697 -698 277 699 -700 313 701 -701 311 702 -298 703 704 -705 346 706 -699 280 705 -707 349 700 -708 351 709 -709 355 707 -710 354 708 -706 348 710 -697 394 711 -711 281 698 -712 713 714 -715 691 716 -717 693 718 -718 685 719 -719 689 720 -721 687 722 -722 684 715 -723 686 721 -720 690 724 -724 688 723 -725 683 712 -726 681 717 -702 717 701 -701 718 700 -714 697 712 -715 705 722 -700 719 707 -720 707 719 -706 722 705 -724 709 720 -721 710 723 -723 708 724 -712 711 725 -692 716 691 -725 698 716 -716 699 715 -727 728 729 -730 731 732 -733 731 734 -299 735 736 -302 704 735 -732 315 730 -730 316 728 -316 736 728 -733 317 732 -600 737 596 -600 695 738 -702 461 738 -738 463 737 -596 733 734 -737 665 733 -738 726 702 -51 739 740 -741 158 742 -741 54 56 -54 739 50 -740 59 51 -59 743 160 -744 473 745 -742 163 746 -747 118 117 -748 216 220 -116 749 750 -217 751 749 -117 750 747 -746 164 752 -164 753 752 -754 367 753 -510 755 304 -304 740 306 -756 740 739 -757 756 739 -358 741 758 -746 364 742 -361 752 369 -742 758 741 -369 753 367 -754 435 440 -759 440 443 -760 442 118 -443 761 759 -365 553 657 -525 748 762 -527 751 748 -530 749 751 -532 750 749 -747 534 536 -760 536 537 -537 761 760 -754 552 553 -546 759 761 -763 473 474 -220 762 748 -526 762 764 -764 475 481 -744 482 105 -554 764 765 -765 481 482 -766 160 743 -512 743 510 -763 767 766 -523 766 512 -763 519 745 -556 765 744 -556 745 519 -728 768 729 -735 768 736 -769 770 771 -772 773 774 -111 775 109 -776 777 111 -777 115 775 -132 778 779 -263 778 773 -320 771 319 -780 319 771 -769 113 777 -339 781 329 -782 328 781 -778 336 773 -783 332 778 -773 338 774 -782 331 784 -772 784 331 -774 785 784 -782 785 327 -786 771 770 -329 787 650 -649 781 328 -650 775 115 -109 787 649 -788 321 780 -704 789 735 -704 788 790 -791 780 786 -788 792 790 -793 794 795 -796 795 797 -798 799 800 -801 800 802 -801 803 804 -805 804 803 -806 807 808 -809 810 811 -812 813 814 -815 816 817 -818 819 820 -821 807 819 -817 820 815 -796 129 793 -246 801 252 -806 251 804 -808 250 806 -816 235 96 -121 822 809 -96 817 816 -69 821 818 -94 818 817 -804 252 801 -228 808 821 -823 822 824 -824 814 823 -824 120 236 -236 812 824 -622 798 246 -793 507 825 -797 826 796 -796 628 127 -827 828 826 -622 826 828 -829 21 20 -797 830 831 -21 830 24 -832 20 28 -833 24 830 -795 833 830 -834 28 30 -799 834 800 -32 834 30 -800 835 802 -835 34 836 -836 802 835 -36 836 34 -803 837 805 -837 16 838 -838 805 837 -810 839 811 -840 813 841 -840 1 0 -839 5 4 -842 813 815 -1 842 8 -8 843 10 -820 13 843 -838 819 807 -815 843 842 -12 843 13 -16 13 838 -823 844 810 -845 814 840 -18 844 845 -845 0 18 -827 831 829 -829 799 827 -587 846 847 -846 595 848 -849 727 850 -850 729 851 -589 848 595 -731 852 734 -591 853 589 -734 854 591 -768 851 729 -789 855 768 -856 789 790 -792 856 790 -857 135 136 -858 136 137 -859 138 135 -860 139 138 -861 862 139 -863 137 140 -863 142 864 -865 143 866 -867 472 144 -868 145 865 -869 144 146 -870 147 868 -871 148 870 -871 146 149 -872 470 873 -874 875 150 -872 150 151 -152 876 437 -862 877 152 -143 878 866 -879 437 876 -879 159 436 -875 880 469 -880 142 469 -873 471 881 -471 882 881 -870 868 859 -423 643 645 -859 857 870 -857 858 869 -871 857 869 -858 863 867 -863 864 867 -864 880 882 -880 883 881 -882 880 881 -883 874 873 -874 872 873 -873 881 883 -857 871 870 -861 860 866 -860 859 868 -865 860 868 -877 884 879 -884 861 878 -879 876 877 -865 866 860 -866 878 861 -878 879 884 -858 867 869 -867 864 882 -633 632 415 -632 411 637 -411 425 637 -637 415 632 -415 420 633 -420 417 633 -417 419 645 -633 417 645 -419 423 645 -38 47 39 -38 40 41 -42 41 43 -44 43 45 -47 62 48 -49 52 50 -52 38 42 -50 52 53 -53 42 44 -54 53 55 -46 57 55 -57 158 56 -38 52 49 -58 62 47 -59 160 60 -58 60 61 -61 65 48 -63 61 60 -63 141 65 -49 51 59 -66 250 67 -69 94 70 -72 76 73 -75 73 76 -78 88 79 -79 82 81 -82 75 77 -83 84 80 -84 86 78 -85 78 86 -85 90 88 -85 438 89 -81 77 91 -77 76 92 -76 72 93 -94 96 95 -96 235 97 -98 161 99 -101 98 100 -98 101 103 -103 473 105 -106 655 107 -109 112 110 -112 106 108 -113 291 114 -116 117 84 -86 84 117 -119 122 120 -122 119 123 -95 97 125 -127 130 128 -130 226 131 -132 779 133 -135 40 39 -137 136 39 -138 41 40 -138 139 43 -139 862 45 -137 48 65 -140 65 141 -143 145 90 -144 472 74 -145 147 88 -146 144 73 -147 148 79 -148 149 82 -149 146 75 -150 875 102 -151 150 100 -152 437 153 -45 862 152 -46 45 154 -156 155 154 -157 163 158 -155 157 57 -89 432 159 -160 767 64 -104 480 161 -157 155 156 -163 157 162 -165 493 166 -168 187 169 -171 178 172 -174 182 175 -177 180 172 -179 238 172 -181 244 182 -183 184 134 -184 183 185 -167 169 187 -188 208 189 -191 208 188 -193 221 194 -195 408 196 -197 400 198 -200 400 197 -202 205 203 -205 202 206 -206 202 208 -208 202 204 -209 203 205 -211 207 212 -213 212 214 -207 211 210 -91 92 216 -218 209 210 -211 254 219 -92 93 220 -221 224 222 -223 428 222 -225 131 226 -71 229 228 -229 68 67 -68 229 230 -230 229 71 -233 232 71 -234 236 120 -234 97 235 -234 122 124 -237 125 97 -70 95 126 -173 172 238 -240 173 239 -242 175 182 -242 243 180 -243 182 244 -180 243 245 -246 252 247 -249 251 250 -251 249 247 -83 91 217 -253 219 254 -256 218 219 -66 68 231 -249 66 257 -247 249 258 -260 256 253 -261 253 255 -263 772 264 -266 183 133 -267 185 183 -133 779 263 -240 266 265 -241 267 266 -174 269 268 -269 261 262 -270 260 261 -269 174 176 -271 275 272 -274 394 272 -276 280 277 -279 346 280 -278 277 281 -283 582 284 -286 290 287 -289 308 290 -291 295 292 -286 295 293 -294 301 289 -295 286 288 -296 293 295 -297 294 293 -298 302 294 -299 316 300 -299 301 294 -303 510 304 -306 307 305 -278 303 305 -282 511 303 -276 305 307 -308 289 301 -300 318 309 -310 461 311 -312 311 313 -315 318 300 -317 664 318 -319 297 296 -321 298 297 -113 320 296 -322 335 323 -325 322 324 -327 325 326 -178 339 329 -264 772 331 -173 240 264 -332 885 333 -335 322 334 -334 337 336 -322 325 337 -337 785 338 -327 785 337 -171 331 339 -340 345 285 -341 450 342 -340 383 344 -346 279 347 -349 356 314 -350 355 351 -353 354 348 -354 353 352 -355 350 356 -306 756 357 -357 756 358 -360 364 361 -358 758 363 -363 758 364 -357 359 353 -353 359 363 -352 363 360 -279 307 357 -365 661 366 -367 366 368 -366 312 314 -356 362 368 -362 361 369 -350 360 362 -370 540 168 -371 543 190 -372 373 204 -373 371 189 -374 372 203 -375 374 209 -376 375 218 -377 376 256 -378 377 260 -379 176 380 -382 385 344 -384 387 385 -386 389 387 -388 391 389 -390 393 391 -392 397 393 -274 282 281 -343 342 395 -396 395 397 -398 400 200 -212 398 399 -398 401 198 -207 401 398 -199 198 401 -402 401 207 -399 200 403 -399 404 405 -406 407 195 -407 406 201 -408 195 407 -192 196 408 -410 402 206 -197 199 409 -410 409 199 -409 410 191 -411 632 412 -414 420 415 -417 421 418 -420 414 421 -419 418 422 -424 643 423 -413 426 425 -426 413 223 -413 412 428 -227 421 414 -225 414 416 -430 433 431 -156 153 431 -162 156 433 -164 162 434 -432 431 436 -431 153 437 -438 430 432 -439 441 430 -440 435 434 -441 434 433 -87 439 438 -442 443 439 -443 440 441 -87 86 118 -270 176 379 -444 549 381 -242 177 445 -330 445 177 -175 447 380 -175 242 446 -448 283 285 -345 452 449 -450 672 451 -344 453 452 -385 454 453 -387 455 454 -389 456 455 -391 457 456 -457 391 393 -397 460 458 -342 451 459 -395 459 460 -461 310 462 -101 102 464 -141 63 465 -466 72 74 -468 103 101 -465 63 64 -102 875 469 -142 141 464 -470 478 467 -467 74 472 -473 103 468 -64 767 474 -93 476 475 -93 72 466 -477 478 99 -478 470 151 -479 477 161 -481 479 480 -481 475 476 -477 479 476 -467 478 477 -105 482 480 -483 484 167 -483 196 192 -485 486 188 -169 486 485 -169 167 484 -192 188 486 -487 490 224 -487 221 193 -483 488 193 -488 483 166 -490 427 223 -170 485 491 -190 543 491 -492 489 166 -494 505 495 -492 494 496 -497 499 128 -498 508 499 -500 497 131 -497 500 501 -500 225 429 -503 501 500 -504 509 495 -506 886 507 -128 499 506 -508 886 506 -496 495 490 -509 427 490 -489 496 487 -510 303 511 -513 516 514 -516 518 517 -518 556 519 -520 522 275 -511 282 274 -274 275 522 -522 520 515 -523 512 511 -521 522 514 -523 521 517 -524 528 525 -527 525 528 -529 531 530 -531 533 532 -533 535 534 -535 538 536 -537 536 538 -540 370 541 -543 371 544 -373 372 528 -371 373 524 -372 374 529 -374 375 531 -375 376 533 -376 377 535 -377 378 538 -378 379 539 -546 537 539 -547 539 379 -548 551 549 -381 549 551 -552 546 547 -551 548 553 -544 524 526 -491 543 545 -370 491 555 -513 542 541 -545 544 554 -518 516 541 -556 518 555 -557 570 558 -560 566 561 -563 569 564 -566 560 565 -561 568 567 -340 284 568 -566 564 382 -566 383 340 -569 384 382 -558 386 384 -570 388 386 -571 390 388 -572 392 390 -569 563 559 -570 557 573 -574 572 571 -575 579 576 -578 580 576 -343 579 575 -343 396 578 -578 396 392 -580 578 572 -581 568 284 -568 581 583 -283 448 584 -586 593 587 -589 594 590 -592 595 593 -594 589 595 -596 734 591 -597 586 588 -594 601 599 -590 599 600 -601 594 592 -597 602 592 -603 583 581 -597 598 603 -604 581 582 -599 601 585 -605 602 597 -605 585 601 -283 585 605 -248 247 259 -405 624 215 -607 613 244 -608 238 179 -610 616 186 -608 611 239 -241 239 611 -245 244 613 -609 179 245 -615 619 262 -607 257 231 -124 123 616 -614 613 231 -609 614 230 -608 609 232 -237 124 610 -233 126 611 -126 125 612 -617 610 185 -267 241 612 -125 237 617 -618 607 181 -268 262 619 -258 257 607 -259 258 618 -606 259 619 -213 620 254 -215 621 620 -255 254 620 -615 620 621 -248 623 622 -606 621 623 -624 623 621 -625 626 226 -227 226 626 -418 421 227 -626 624 405 -623 624 626 -628 625 130 -622 623 625 -405 404 629 -627 629 422 -404 403 630 -629 630 424 -631 412 632 -194 222 634 -428 635 634 -635 428 412 -201 644 403 -425 426 636 -416 415 637 -426 427 638 -636 638 429 -509 640 638 -639 640 509 -639 503 502 -429 638 640 -403 644 641 -642 645 643 -642 424 630 -406 634 644 -634 635 641 -645 642 631 -641 635 631 -324 323 646 -326 324 647 -328 326 648 -447 652 444 -330 329 650 -652 447 446 -651 654 445 -654 653 446 -647 646 655 -112 648 647 -649 648 112 -651 650 115 -654 651 114 -292 288 653 -288 287 652 -287 656 444 -550 549 444 -548 660 657 -658 550 656 -548 550 658 -290 659 656 -310 312 366 -661 663 462 -290 308 309 -309 662 658 -662 667 660 -660 667 663 -657 663 661 -318 664 662 -664 317 665 -667 662 664 -663 667 666 -666 665 463 -449 669 668 -669 449 452 -670 452 453 -672 682 673 -458 678 674 -671 453 454 -675 454 455 -456 677 676 -457 674 677 -460 680 678 -460 459 679 -679 459 451 -669 693 681 -682 713 683 -680 691 684 -671 689 685 -674 687 686 -678 684 687 -677 686 688 -675 690 689 -676 688 690 -679 692 691 -692 679 673 -670 685 693 -448 668 694 -599 584 694 -668 681 695 -696 273 272 -698 281 277 -700 349 313 -701 313 311 -298 321 703 -705 280 346 -699 277 280 -707 355 349 -708 354 351 -709 351 355 -710 348 354 -706 346 348 -697 272 394 -711 394 281 -712 683 713 -715 684 691 -717 681 693 -718 693 685 -719 685 689 -721 686 687 -722 687 684 -723 688 686 -720 689 690 -724 690 688 -725 692 683 -726 695 681 -702 726 717 -701 717 718 -714 696 697 -715 699 705 -700 718 719 -720 709 707 -706 721 722 -724 708 709 -721 706 710 -723 710 708 -712 697 711 -692 725 716 -725 711 698 -716 698 699 -727 730 728 -730 727 731 -733 732 731 -299 302 735 -302 298 704 -732 317 315 -730 315 316 -316 299 736 -733 665 317 -600 738 737 -600 694 695 -702 311 461 -738 461 463 -596 737 733 -737 463 665 -738 695 726 -51 50 739 -741 56 158 -741 757 54 -54 757 739 -740 755 59 -59 755 743 -744 105 473 -742 158 163 -747 760 118 -748 751 216 -116 217 749 -217 216 751 -117 116 750 -746 163 164 -164 435 753 -754 365 367 -510 743 755 -304 755 740 -756 306 740 -757 358 756 -358 757 741 -746 361 364 -361 746 752 -742 364 758 -369 752 753 -754 753 435 -759 754 440 -760 761 442 -443 442 761 -365 754 553 -525 527 748 -527 530 751 -530 532 749 -532 534 750 -747 750 534 -760 747 536 -537 546 761 -754 759 552 -546 552 759 -763 745 473 -220 475 762 -526 525 762 -764 762 475 -744 765 482 -554 526 764 -765 764 481 -766 767 160 -512 766 743 -763 474 767 -523 763 766 -763 523 519 -556 554 765 -556 744 745 -728 736 768 -735 789 768 -769 776 770 -772 263 773 -111 777 775 -776 769 777 -777 113 115 -132 783 778 -263 779 778 -320 769 771 -780 321 319 -769 320 113 -339 782 781 -782 327 328 -778 332 336 -783 885 332 -773 336 338 -782 339 331 -772 774 784 -774 338 785 -782 784 785 -786 780 771 -329 781 787 -649 787 781 -650 787 775 -109 775 787 -788 703 321 -704 790 789 -704 703 788 -791 788 780 -788 791 792 -793 825 794 -796 793 795 -798 828 799 -801 798 800 -801 802 803 -805 806 804 -806 805 807 -809 822 810 -812 816 813 -815 813 816 -818 821 819 -821 808 807 -817 818 820 -796 127 129 -246 798 801 -806 250 251 -808 67 250 -816 812 235 -121 120 822 -96 94 817 -69 228 821 -94 69 818 -804 251 252 -228 67 808 -823 810 822 -824 812 814 -824 822 120 -236 235 812 -622 828 798 -793 129 507 -797 827 826 -796 826 628 -827 799 828 -622 628 826 -829 831 21 -797 795 830 -21 831 830 -832 829 20 -833 26 24 -795 794 833 -834 832 28 -799 832 834 -32 835 834 -800 834 835 -835 32 34 -836 803 802 -36 837 836 -803 836 837 -837 36 16 -838 807 805 -810 844 839 -840 814 813 -840 841 1 -839 844 5 -842 841 813 -1 841 842 -8 842 843 -820 819 13 -838 13 819 -815 820 843 -12 10 843 -823 845 844 -845 823 814 -18 5 844 -845 840 0 -827 797 831 -829 832 799 -587 593 846 -846 593 595 -849 731 727 -850 727 729 -589 853 848 -731 849 852 -591 854 853 -734 852 854 -768 855 851 -789 887 855 -856 887 789 -792 888 856 -857 859 135 -858 857 136 -859 860 138 -860 861 139 -861 884 862 -863 858 137 -863 140 142 -865 145 143 -867 882 472 -868 147 145 -869 867 144 -870 148 147 -871 149 148 -871 869 146 -872 151 470 -874 883 875 -872 874 150 -152 877 876 -862 884 877 -143 159 878 -879 436 437 -879 878 159 -875 883 880 -880 864 142 -873 470 471 -471 472 882 -889 890 891 -891 892 889 -4 7 893 -893 894 4 -892 891 895 -895 896 892 -896 895 897 -897 898 896 -899 900 901 -901 902 899 -902 901 903 -903 904 902 -905 906 890 -890 889 905 -894 893 906 -906 905 894 -898 897 900 -900 899 898 -907 908 909 -909 910 907 -910 909 911 -911 912 910 -912 911 27 -27 26 912 -913 914 908 -908 907 913 -915 916 914 -914 913 915 -917 918 916 -916 915 917 -919 920 918 -918 917 919 -921 922 920 -920 919 921 -904 903 922 -922 921 904 -923 924 925 -923 926 927 -926 928 929 -928 930 931 -932 925 933 -934 935 936 -937 938 926 -936 939 938 -938 940 928 -939 941 940 -930 928 940 -942 940 941 -923 932 934 -943 934 932 -944 943 945 -943 946 947 -947 946 933 -948 949 945 -948 947 950 -934 943 944 -951 952 953 -954 955 956 -957 958 959 -960 961 962 -963 964 965 -965 964 966 -967 966 961 -968 966 964 -969 964 963 -970 971 972 -970 963 973 -970 974 975 -966 968 976 -961 976 977 -962 977 978 -979 956 980 -981 980 982 -983 984 985 -986 987 984 -983 988 989 -989 988 990 -991 992 107 -993 994 995 -996 995 992 -997 998 999 -1000 968 969 -972 1001 1002 -119 121 1003 -1004 1005 123 -980 1006 1007 -1008 1009 1010 -1011 1010 1012 -132 134 1013 -1014 1015 925 -1016 933 925 -1017 1014 924 -1017 927 929 -1018 929 931 -1016 1019 950 -1019 1020 1021 -1022 975 974 -1023 959 958 -1024 974 973 -1025 960 959 -1026 973 965 -1027 965 967 -1028 967 960 -1029 984 987 -1030 985 984 -1031 1032 1033 -931 1032 1031 -930 1034 1032 -1035 1033 1032 -1036 942 1037 -1034 930 942 -975 1022 1038 -1039 945 949 -988 983 1040 -1036 1041 1035 -1042 1043 1041 -165 1044 1045 -168 1046 1047 -1048 1049 1050 -1051 1052 1053 -1054 1055 1050 -1056 1057 1050 -1058 1051 1059 -1060 1013 134 -184 186 1061 -1044 165 187 -1062 1063 1064 -1065 1066 1062 -1067 1068 1069 -1068 1067 1070 -1071 1072 1073 -1074 1075 1071 -1076 1077 1078 -1079 1080 1081 -1081 1065 1082 -1082 1064 1077 -1083 1084 1079 -1085 1086 1087 -1086 1088 1089 -1080 1079 1084 -976 1090 1091 -1092 1093 1084 -1085 1084 1093 -977 1091 1094 -1095 1069 1096 -1097 1098 1096 -1099 1100 1101 -955 954 1102 -1103 1102 953 -952 1104 1105 -1105 1106 955 -1107 956 955 -1108 1004 1003 -1108 1109 1110 -1108 1111 1005 -1111 1108 982 -956 1107 1006 -1049 1112 1113 -1114 1115 1112 -1116 1117 1059 -1116 1054 1057 -1117 1118 1119 -1057 1056 1118 -1120 1121 1122 -1123 951 1124 -1125 1126 1122 -968 1000 1090 -1127 1128 1129 -1130 1127 1093 -951 1131 1104 -1123 1132 1131 -1122 1133 1132 -1134 1135 1127 -1135 1136 1128 -1137 1138 1139 -1140 1138 1013 -1141 1140 1060 -1013 1138 1137 -1114 1139 1138 -1115 1114 1140 -1051 1058 1142 -1143 1142 1136 -1144 1143 1135 -1143 1144 1052 -271 273 1145 -1146 1147 1145 -1148 1149 1150 -1151 1148 1152 -1149 1153 1154 -1155 1156 1157 -1158 1159 1160 -1161 1158 1162 -1163 999 1164 -1158 1161 1165 -1166 1165 1161 -1167 1164 1159 -1168 1163 1167 -1169 1168 1165 -1170 1169 1166 -1171 1172 1173 -1171 1174 1166 -1175 1176 1177 -1178 1177 1176 -1149 1148 1176 -1153 1149 1175 -1148 1151 1179 -1180 1173 1172 -1173 1180 1181 -1182 1183 1184 -1183 1185 1186 -1187 1188 1173 -1189 1187 1190 -1191 1192 1168 -1193 1191 1169 -997 1163 1168 -1194 1195 323 -1196 1197 1195 -1198 1199 1197 -1055 1200 1201 -1139 1048 1202 -1049 1048 1139 -1203 1204 333 -335 333 1204 -1204 1203 1205 -1194 1204 1206 -1206 1205 1207 -1198 1196 1206 -1048 1055 1208 -1209 1157 1156 -341 1210 1211 -1209 1212 1213 -1214 1215 1216 -1217 1186 1185 -1218 1219 1220 -1221 1216 1215 -1222 1220 1219 -1223 1217 1224 -1178 1179 1225 -1225 1226 1227 -1228 1229 1230 -1227 1226 1231 -1231 1228 1232 -1225 1216 1221 -1221 1219 1231 -1219 1218 1228 -1151 1216 1225 -1233 1234 1235 -1234 1236 1237 -1235 1237 1185 -1224 1185 1237 -1229 1237 1236 -1218 1224 1229 -1238 1046 168 -1239 1064 1063 -1240 1078 1077 -1241 1077 1064 -1242 1083 1078 -1243 1092 1083 -1244 1130 1092 -1245 1134 1130 -1246 1144 1134 -1247 1248 1249 -1250 1251 1213 -1252 1250 1253 -1254 1252 1255 -1256 1254 1257 -1258 1256 1259 -1260 1258 1261 -1146 1262 1154 -1210 1263 1264 -1263 1260 1265 -1266 1267 1074 -1087 1089 1267 -1266 1268 1073 -1080 1087 1266 -1072 1269 1270 -1269 1081 1080 -1267 1271 1272 -1267 1089 1273 -1274 1069 1068 -1275 1071 1075 -1276 1277 1275 -1066 1065 1276 -1278 1065 1081 -1071 1275 1277 -1278 1269 1072 -1277 1276 1065 -1279 1280 1281 -1282 1283 1284 -1285 1286 1287 -1288 1285 1289 -1286 1290 1291 -1292 1291 1290 -1280 1279 1293 -1294 1295 1097 -1280 1097 1296 -1100 1099 1282 -1099 1297 1283 -1298 1299 1300 -1035 1301 1300 -1041 1302 1301 -1043 1303 1302 -1299 1038 1304 -1300 1304 1305 -1306 975 1299 -1307 1306 1298 -1308 1309 1302 -1309 1298 1301 -971 970 1306 -1310 971 1307 -1311 1307 1309 -971 1310 1001 -1144 1246 1247 -1312 1249 1248 -1116 1313 1314 -1200 1055 1054 -1053 1052 1249 -1053 1315 1313 -1316 1317 1156 -1212 1156 1317 -450 1211 1318 -1213 1212 1319 -1253 1213 1320 -1255 1253 1321 -1257 1255 1322 -1259 1257 1323 -1324 1325 1261 -1265 1261 1325 -1211 1264 1326 -1264 1265 1327 -1328 1329 1330 -986 1331 1332 -1021 1332 1331 -1333 1334 958 -1335 1331 986 -1331 1335 949 -987 1332 1336 -1020 1336 1332 -1337 1338 1334 -1334 1338 1339 -1340 1341 1335 -949 1335 1341 -978 1094 1342 -978 1343 1333 -1344 1040 985 -1345 985 1030 -1346 1347 1040 -1348 1349 1347 -1348 1346 1343 -1344 1333 1343 -1334 1333 1344 -990 988 1347 -1350 1045 1044 -1350 1351 1066 -1352 1063 1062 -1047 1046 1352 -1047 1353 1351 -1066 1351 1353 -1354 1095 1098 -1354 1355 1067 -1350 1070 1067 -1355 1356 1045 -1357 1098 1097 -1046 1238 1358 -1063 1352 1358 -492 493 1045 -494 1359 1360 -492 1356 1359 -1361 1012 1010 -498 1361 1362 -1363 1099 1012 -1361 498 501 -1363 1364 1297 -503 1364 1363 -504 505 1360 -1365 1009 507 -1010 1009 1365 -508 1362 1365 -1359 1354 1357 -1366 1360 1357 -1356 1355 1354 -1367 1368 1369 -513 515 1370 -1371 1370 1372 -1373 1372 1374 -520 271 1147 -1369 1375 1146 -1146 1375 1376 -1376 1370 515 -1377 1375 1369 -1375 1372 1370 -1377 1374 1372 -1378 1379 1380 -1381 1382 1383 -1382 1381 1384 -1385 1384 1386 -1387 1386 1388 -1389 1388 1390 -1391 1392 1393 -540 542 1394 -1395 1396 1397 -1241 1378 1383 -1239 1397 1378 -1240 1383 1382 -1242 1382 1385 -1243 1385 1387 -1244 1387 1389 -1245 1389 1393 -1246 1393 1392 -1398 1399 1392 -1399 1248 1247 -1400 1401 1402 -1248 1399 1403 -1404 1403 1399 -1403 1404 1405 -1397 1406 1379 -1358 1407 1396 -1238 1394 1407 -513 1371 1394 -1396 1408 1406 -1373 1407 1394 -1408 1396 1407 -1409 1410 1411 -1412 1413 1414 -1415 1416 1417 -1418 1417 1416 -1414 1413 1419 -1209 1414 1420 -1418 1251 1250 -1418 1414 1209 -1421 1417 1250 -1411 1421 1252 -1422 1411 1254 -1423 1422 1256 -1424 1423 1258 -1421 1411 1410 -1422 1423 1425 -1426 1425 1423 -575 577 1427 -1428 1429 1427 -1210 341 575 -1210 1429 1428 -1428 1424 1260 -1430 1426 1424 -1431 1432 1157 -1420 1419 1433 -1155 1434 1435 -1436 1437 1438 -1439 1440 1441 -1442 1436 1443 -1444 1442 1445 -1446 1441 1440 -1447 1448 1437 -1444 1441 1449 -1441 1446 1450 -1451 1452 1442 -1447 1436 1442 -1453 1454 1431 -1447 1454 1453 -1454 1455 1432 -1449 1435 1434 -1455 1454 1447 -1455 1452 1451 -1155 1432 1455 -1121 1456 1133 -1273 1089 1088 -1457 1058 1119 -1458 1459 1056 -1460 1061 186 -1458 1113 1112 -1115 1461 1462 -1118 1463 1464 -1459 1463 1118 -1465 1128 1136 -1457 1464 1104 -1005 1460 616 -1463 1105 1104 -1459 1106 1105 -1458 1107 1106 -1111 1466 1460 -1107 1458 1462 -1006 1462 1461 -1466 1141 1061 -1141 1466 1461 -1007 1461 1466 -1467 1142 1058 -1142 1467 1468 -1132 1467 1457 -1133 1468 1467 -1456 1465 1468 -1086 1085 1129 -1088 1086 1469 -1128 1465 1469 -1465 1456 1470 -1121 1120 1471 -1456 1121 1472 -1473 1088 1470 -1474 1011 1101 -1100 1475 1476 -1287 1475 1100 -1476 1475 1273 -1472 1474 1476 -1477 1008 1011 -1471 1477 1474 -1273 1475 1478 -1475 1287 1291 -1271 1478 1479 -1478 1291 1292 -1480 1481 1482 -1069 1274 1483 -1296 1096 1483 -1484 1480 1281 -1075 1074 1272 -1293 1485 1486 -1283 1486 1485 -1294 1486 1487 -1486 1283 1297 -1366 1295 1487 -639 504 1366 -639 1488 1364 -1297 1364 1488 -1272 1479 1489 -1490 1292 1491 -1490 1489 1479 -1274 1075 1492 -1483 1492 1489 -1493 1481 1480 -1489 1490 1480 -1195 1494 646 -1197 1495 1494 -1199 1496 1495 -1315 1249 1312 -1200 1497 1498 -1499 1500 1313 -1497 1200 1314 -1501 1314 1313 -1494 991 655 -996 991 1494 -1496 993 996 -1497 999 998 -1501 1164 999 -1164 1501 1500 -1159 1500 1499 -1160 1499 1312 -1401 1502 1312 -1400 1405 1503 -1504 1505 1502 -1400 1506 1504 -1162 1160 1502 -1182 1507 1235 -1507 1182 1330 -1162 1505 1181 -1181 1505 1504 -1508 1504 1506 -1506 1503 1509 -1503 1233 1507 -1190 1181 1508 -1510 1511 1512 -1513 1511 1510 -1509 1330 1511 -1511 1330 1329 -1317 1316 1514 -1515 1516 1319 -1516 1517 1320 -672 1318 1518 -1325 1324 1519 -1517 1520 1321 -1520 1521 1322 -1323 1322 1521 -1324 1323 1522 -1327 1325 1523 -1327 1524 1525 -1525 1518 1318 -1515 1514 1526 -682 1518 1527 -1524 1523 1528 -1517 1516 1529 -1519 1522 1530 -1523 1519 1531 -1522 1521 1532 -1520 1517 1533 -1521 1520 1534 -1525 1524 1535 -1536 1527 1518 -1516 1515 1537 -1316 1435 1538 -1449 1450 1538 -1514 1538 1539 -696 1540 1145 -1541 1542 1150 -1543 1544 1186 -1544 1545 1184 -1170 1546 1547 -1548 1549 1214 -1542 1548 1152 -1550 1543 1217 -1551 1552 1220 -1552 1550 1223 -1553 1551 1222 -1549 1553 1215 -1540 1554 1262 -1554 1541 1154 -1555 714 713 -1556 1557 1535 -1558 1559 1537 -1559 1560 1529 -1560 1561 1533 -1562 1563 1531 -1563 1556 1528 -1564 1562 1530 -1561 1565 1534 -1565 1564 1532 -1566 1555 1527 -1567 1558 1526 -1545 1544 1558 -1544 1543 1559 -714 1555 1540 -1556 1563 1548 -1543 1550 1560 -1561 1560 1550 -1549 1548 1563 -1565 1561 1552 -1562 1564 1553 -1564 1565 1551 -1555 1566 1554 -1536 1535 1557 -1566 1557 1541 -1557 1556 1542 -1568 1569 1570 -1571 1572 1573 -1574 1575 1573 -1171 1576 1577 -1174 1577 1546 -1572 1571 1187 -1571 1570 1188 -1188 1570 1576 -1574 1572 1189 -1450 1446 1578 -1450 1579 1539 -1545 1579 1328 -1579 1578 1329 -1446 1575 1574 -1578 1574 1512 -1579 1545 1567 -935 1580 1581 -1582 1583 1037 -1582 941 939 -939 936 1581 -1580 935 944 -944 1039 1584 -1585 1586 1340 -1583 1587 1042 -1588 1002 1001 -1589 1094 1091 -1000 1590 1591 -1090 1591 1592 -1002 1588 1590 -1587 1593 1043 -1043 1593 1594 -1595 1594 1234 -1367 1177 1596 -1177 1178 1580 -1597 1581 1580 -1598 1581 1597 -1227 1599 1582 -1587 1583 1232 -1230 1236 1593 -1583 1582 1599 -1236 1234 1594 -1595 1308 1303 -1600 1311 1308 -1601 1001 1310 -1311 1600 1602 -1233 1503 1405 -1380 1603 1589 -1381 1589 1592 -1384 1592 1591 -1386 1591 1590 -1588 1390 1388 -1601 1391 1390 -1391 1601 1602 -1595 1405 1404 -1398 1602 1600 -1604 1341 1340 -1094 1589 1603 -1379 1605 1603 -1605 1348 1342 -1585 990 1349 -1406 1606 1605 -1606 1349 1348 -1607 1584 1039 -1368 1367 1584 -1604 1607 1608 -1377 1368 1607 -1604 1586 1374 -1408 1585 1606 -1408 1374 1586 -1570 1569 1609 -1577 1576 1609 -1610 1611 1612 -1613 1614 1615 -994 993 1616 -1617 994 1618 -1618 1616 998 -132 1619 1620 -1137 1615 1620 -1192 1191 1611 -1621 1611 1191 -1610 1618 997 -1208 1201 1622 -1623 1622 1199 -1620 1615 1205 -783 1620 1203 -1615 1614 1207 -1623 1624 1202 -1613 1202 1624 -1614 1624 1625 -1623 1198 1625 -1626 1612 1611 -1201 1498 1627 -1496 1199 1622 -1498 998 1616 -993 1496 1627 -1628 1621 1193 -1546 1577 1629 -1546 1630 1628 -1631 1626 1621 -1628 1630 1632 -1633 1634 794 -1635 1636 1634 -1637 1638 1639 -1640 1641 1638 -1640 1642 1643 -1644 1643 1642 -1645 1646 1647 -809 811 1648 -1649 1650 1651 -1652 1653 1654 -1655 1656 1657 -1658 1657 1647 -1653 1652 1656 -1635 1633 1009 -1120 1126 1640 -1645 1642 1125 -1646 1645 1124 -1654 981 1110 -121 809 1659 -981 1654 1653 -954 1655 1658 -979 1653 1655 -1642 1640 1126 -1102 1658 1646 -1660 1661 1659 -1661 1660 1650 -1661 1109 1003 -1109 1661 1649 -1471 1120 1637 -1633 825 507 -1636 1635 1662 -1635 1008 1477 -1663 1662 1664 -1471 1664 1662 -1665 907 910 -1636 1666 1667 -910 912 1667 -1668 913 907 -833 1667 912 -1634 1667 833 -1669 915 913 -1639 1638 1669 -917 915 1669 -1638 1641 1670 -1670 1671 919 -1671 1670 1641 -921 919 1671 -1643 1644 1672 -1672 1673 904 -1673 1672 1644 -1648 811 839 -1674 1675 1651 -1674 889 892 -839 4 894 -1676 1652 1651 -892 896 1676 -896 898 1677 -1656 1677 902 -1673 1647 1657 -1652 1676 1677 -899 902 1677 -904 1673 902 -1660 1648 1678 -1679 1674 1650 -905 1679 1678 -1679 905 889 -1663 1665 1666 -1665 1663 1639 -1438 1680 1681 -1681 1682 1445 -1683 1684 1568 -1684 1685 1569 -1439 1445 1682 -1573 1575 1686 -1440 1439 1687 -1575 1440 1688 -1609 1569 1685 -1629 1609 1689 -1690 1630 1629 -1632 1630 1690 -1691 1015 1014 -1692 1016 1015 -1693 1014 1017 -1694 1017 1018 -1695 1018 1696 -1697 1019 1016 -1697 1698 1020 -1699 1700 1022 -1701 1023 1339 -1702 1699 1024 -1703 1025 1023 -1704 1702 1026 -1705 1704 1027 -1705 1028 1025 -1706 1707 1337 -1708 1029 1709 -1706 1030 1029 -1031 1305 1710 -1696 1031 1711 -1022 1700 1712 -1713 1710 1305 -1713 1304 1038 -1709 1336 1714 -1714 1336 1020 -1707 1715 1338 -1338 1715 1716 -1704 1693 1702 -1290 1493 1491 -1693 1704 1691 -1691 1703 1692 -1705 1703 1691 -1692 1701 1697 -1697 1701 1698 -1698 1716 1714 -1714 1715 1717 -1716 1715 1714 -1717 1707 1708 -1708 1707 1706 -1707 1717 1715 -1691 1704 1705 -1695 1700 1694 -1694 1702 1693 -1699 1702 1694 -1711 1713 1718 -1718 1712 1695 -1713 1711 1710 -1699 1694 1700 -1700 1695 1712 -1712 1718 1713 -1692 1703 1701 -1701 1716 1698 -1481 1284 1482 -1482 1485 1279 -1279 1485 1293 -1485 1482 1284 -1284 1481 1288 -1288 1481 1285 -1285 1493 1286 -1481 1493 1285 -1286 1493 1290 -923 925 932 -923 927 924 -926 929 927 -928 931 929 -932 933 946 -934 936 937 -937 926 923 -936 938 937 -938 928 926 -939 940 938 -930 940 942 -942 941 1037 -923 934 937 -943 932 946 -944 945 1039 -943 947 945 -947 933 950 -948 945 947 -948 950 1021 -934 944 935 -951 953 1124 -954 956 979 -957 959 962 -960 962 959 -963 965 973 -965 966 967 -967 961 960 -968 964 969 -969 963 972 -970 972 963 -970 973 974 -970 975 1306 -966 976 961 -961 977 962 -962 978 957 -979 980 981 -981 982 1110 -983 985 1040 -986 984 983 -983 989 986 -989 990 1340 -991 107 655 -993 995 996 -996 992 991 -997 999 1163 -1000 969 1002 -972 1002 969 -119 1003 1004 -1004 123 119 -980 1007 982 -1008 1010 1011 -1011 1012 1101 -132 1013 1619 -1014 925 924 -1016 925 1015 -1017 924 927 -1017 929 1018 -1018 931 1696 -1016 950 933 -1019 1021 950 -1022 974 1024 -1023 958 1339 -1024 973 1026 -1025 959 1023 -1026 965 1027 -1027 967 1028 -1028 960 1025 -1029 987 1709 -1030 984 1029 -1031 1033 1305 -931 1031 1696 -930 1032 931 -1035 1032 1034 -1036 1037 1042 -1034 942 1036 -975 1038 1299 -1039 949 1608 -988 1040 1347 -1036 1035 1034 -1042 1041 1036 -165 1045 493 -168 1047 187 -1048 1050 1055 -1051 1053 1059 -1054 1050 1057 -1056 1050 1113 -1058 1059 1119 -1060 134 184 -184 1061 1060 -1044 187 1047 -1062 1064 1082 -1065 1062 1082 -1067 1069 1095 -1068 1070 1276 -1071 1073 1268 -1074 1071 1268 -1076 1078 1079 -1079 1081 1076 -1081 1082 1076 -1082 1077 1076 -1083 1079 1078 -1085 1087 1080 -1086 1089 1087 -1080 1084 1085 -976 1091 977 -1092 1084 1083 -1085 1093 1129 -977 1094 978 -1095 1096 1098 -1097 1096 1296 -1099 1101 1012 -955 1102 1103 -1103 953 952 -952 1105 1103 -1105 955 1103 -1107 955 1106 -1108 1003 1109 -1108 1110 982 -1108 1005 1004 -1111 982 1007 -956 1006 980 -1049 1113 1050 -1114 1112 1049 -1116 1059 1053 -1116 1057 1117 -1117 1119 1059 -1057 1118 1117 -1120 1122 1126 -1123 1124 1125 -1125 1122 1123 -968 1090 976 -1127 1129 1093 -1130 1093 1092 -951 1104 952 -1123 1131 951 -1122 1132 1123 -1134 1127 1130 -1135 1128 1127 -1137 1139 1613 -1140 1013 1060 -1141 1060 1061 -1013 1137 1619 -1114 1138 1140 -1115 1140 1141 -1051 1142 1143 -1143 1136 1135 -1144 1135 1134 -1143 1052 1051 -271 1145 1147 -1146 1145 1262 -1148 1150 1152 -1151 1152 1214 -1149 1154 1150 -1155 1157 1432 -1158 1160 1162 -1161 1162 1180 -1163 1164 1167 -1158 1165 1167 -1166 1161 1172 -1167 1159 1158 -1168 1167 1165 -1169 1165 1166 -1170 1166 1174 -1171 1173 1188 -1171 1166 1172 -1175 1177 1367 -1178 1176 1179 -1149 1176 1175 -1153 1175 1369 -1148 1179 1176 -1180 1172 1161 -1173 1181 1190 -1182 1184 1328 -1183 1186 1184 -1187 1173 1190 -1189 1190 1510 -1191 1168 1169 -1193 1169 1170 -997 1168 1192 -1194 323 335 -1196 1195 1194 -1198 1197 1196 -1055 1201 1208 -1139 1202 1613 -1049 1139 1114 -1203 333 885 -335 1204 1194 -1204 1205 1206 -1194 1206 1196 -1206 1207 1625 -1198 1206 1625 -1048 1208 1202 -1209 1156 1212 -341 1211 450 -1209 1213 1251 -1214 1216 1151 -1217 1185 1224 -1218 1220 1223 -1221 1215 1222 -1222 1219 1221 -1223 1224 1218 -1178 1225 1597 -1225 1227 1597 -1228 1230 1232 -1227 1231 1599 -1231 1232 1599 -1225 1221 1226 -1221 1231 1226 -1219 1228 1231 -1151 1225 1179 -1233 1235 1507 -1234 1237 1235 -1235 1185 1183 -1224 1237 1229 -1229 1236 1230 -1218 1229 1228 -1238 168 540 -1239 1063 1395 -1240 1077 1241 -1241 1064 1239 -1242 1078 1240 -1243 1083 1242 -1244 1092 1243 -1245 1130 1244 -1246 1134 1245 -1247 1249 1052 -1250 1213 1253 -1252 1253 1255 -1254 1255 1257 -1256 1257 1259 -1258 1259 1261 -1260 1261 1265 -1146 1154 1153 -1210 1264 1211 -1263 1265 1264 -1266 1074 1268 -1087 1267 1266 -1266 1073 1270 -1080 1266 1270 -1072 1270 1073 -1269 1080 1270 -1267 1272 1074 -1267 1273 1271 -1274 1068 1275 -1275 1075 1274 -1276 1275 1068 -1066 1276 1070 -1278 1081 1269 -1071 1277 1072 -1278 1072 1277 -1277 1065 1278 -1279 1281 1482 -1282 1284 1288 -1285 1287 1289 -1288 1289 1282 -1286 1291 1287 -1292 1290 1491 -1280 1293 1294 -1294 1097 1280 -1280 1296 1281 -1100 1282 1289 -1099 1283 1282 -1298 1300 1301 -1035 1300 1033 -1041 1301 1035 -1043 1302 1041 -1299 1304 1300 -1300 1305 1033 -1306 1299 1298 -1307 1298 1309 -1308 1302 1303 -1309 1301 1302 -971 1306 1307 -1310 1307 1311 -1311 1309 1308 -971 1001 972 -1144 1247 1052 -1312 1248 1402 -1116 1314 1054 -1200 1054 1314 -1053 1249 1315 -1053 1313 1116 -1316 1156 1155 -1212 1317 1319 -450 1318 672 -1213 1319 1320 -1253 1320 1321 -1255 1321 1322 -1257 1322 1323 -1259 1323 1324 -1324 1261 1259 -1265 1325 1327 -1211 1326 1318 -1264 1327 1326 -1328 1330 1182 -986 1332 987 -1021 1331 948 -1333 958 957 -1335 986 989 -1331 949 948 -987 1336 1709 -1020 1332 1021 -1337 1334 1345 -1334 1339 958 -1340 1335 989 -949 1341 1608 -978 1342 1343 -978 1333 957 -1344 985 1345 -1345 1030 1337 -1346 1040 1344 -1348 1347 1346 -1348 1343 1342 -1344 1343 1346 -1334 1344 1345 -990 1347 1349 -1350 1044 1351 -1350 1066 1070 -1352 1062 1353 -1047 1352 1353 -1047 1351 1044 -1066 1353 1062 -1354 1098 1357 -1354 1067 1095 -1350 1067 1355 -1355 1045 1350 -1357 1097 1295 -1046 1358 1352 -1063 1358 1395 -492 1045 1356 -494 1360 505 -492 1359 494 -1361 1010 1362 -498 1362 508 -1363 1012 1361 -1361 501 1363 -1363 1297 1099 -503 1363 501 -504 1360 1366 -1365 507 886 -1010 1365 1362 -508 1365 886 -1359 1357 1360 -1366 1357 1295 -1356 1354 1359 -1367 1369 1175 -513 1370 1371 -1371 1372 1373 -1373 1374 1408 -520 1147 1376 -1369 1146 1153 -1146 1376 1147 -1376 515 520 -1377 1369 1368 -1375 1370 1376 -1377 1372 1375 -1378 1380 1383 -1381 1383 1380 -1382 1384 1385 -1385 1386 1387 -1387 1388 1389 -1389 1390 1393 -1391 1393 1390 -540 1394 1238 -1395 1397 1239 -1241 1383 1240 -1239 1378 1241 -1240 1382 1242 -1242 1385 1243 -1243 1387 1244 -1244 1389 1245 -1245 1393 1246 -1246 1392 1247 -1398 1392 1391 -1399 1247 1392 -1400 1402 1403 -1248 1403 1402 -1404 1399 1398 -1403 1405 1400 -1397 1379 1378 -1358 1396 1395 -1238 1407 1358 -513 1394 542 -1396 1406 1397 -1373 1394 1371 -1408 1407 1373 -1409 1411 1422 -1412 1414 1418 -1415 1417 1421 -1418 1416 1412 -1414 1419 1420 -1209 1420 1157 -1418 1250 1417 -1418 1209 1251 -1421 1250 1252 -1411 1252 1254 -1422 1254 1256 -1423 1256 1258 -1424 1258 1260 -1421 1410 1415 -1422 1425 1409 -1426 1423 1424 -575 1427 1429 -1428 1427 1430 -1210 575 1429 -1210 1428 1263 -1428 1260 1263 -1430 1424 1428 -1431 1157 1420 -1420 1433 1431 -1155 1435 1316 -1436 1438 1443 -1439 1441 1444 -1442 1443 1445 -1444 1445 1439 -1446 1440 1575 -1447 1437 1436 -1444 1449 1451 -1441 1450 1449 -1451 1442 1444 -1447 1442 1452 -1453 1431 1433 -1447 1453 1448 -1454 1432 1431 -1449 1434 1451 -1455 1447 1452 -1455 1451 1434 -1155 1455 1434 -1121 1133 1122 -1273 1088 1473 -1457 1119 1464 -1458 1056 1113 -1460 186 616 -1458 1112 1462 -1115 1462 1112 -1118 1464 1119 -1459 1118 1056 -1465 1136 1468 -1457 1104 1131 -1005 616 123 -1463 1104 1464 -1459 1105 1463 -1458 1106 1459 -1111 1460 1005 -1107 1462 1006 -1006 1461 1007 -1466 1061 1460 -1141 1461 1115 -1007 1466 1111 -1467 1058 1457 -1142 1468 1136 -1132 1457 1131 -1133 1467 1132 -1456 1468 1133 -1086 1129 1469 -1088 1469 1470 -1128 1469 1129 -1465 1470 1469 -1121 1471 1472 -1456 1472 1470 -1473 1470 1472 -1474 1101 1476 -1100 1476 1101 -1287 1100 1289 -1476 1273 1473 -1472 1476 1473 -1477 1011 1474 -1471 1474 1472 -1273 1478 1271 -1475 1291 1478 -1271 1479 1272 -1478 1292 1479 -1480 1482 1281 -1069 1483 1096 -1296 1483 1484 -1484 1281 1296 -1075 1272 1492 -1293 1486 1294 -1283 1485 1284 -1294 1487 1295 -1486 1297 1487 -1366 1487 1488 -639 1366 1488 -639 1364 503 -1297 1488 1487 -1272 1489 1492 -1490 1491 1493 -1490 1479 1292 -1274 1492 1483 -1483 1489 1484 -1493 1480 1490 -1489 1480 1484 -1195 646 323 -1197 1494 1195 -1199 1495 1197 -1315 1312 1499 -1200 1498 1201 -1499 1313 1315 -1497 1314 1501 -1501 1313 1500 -1494 655 646 -996 1494 1495 -1496 996 1495 -1497 998 1498 -1501 999 1497 -1164 1500 1159 -1159 1499 1160 -1160 1312 1502 -1401 1312 1402 -1400 1503 1506 -1504 1502 1401 -1400 1504 1401 -1162 1502 1505 -1182 1235 1183 -1507 1330 1509 -1162 1181 1180 -1181 1504 1508 -1508 1506 1513 -1506 1509 1513 -1503 1507 1509 -1190 1508 1510 -1510 1512 1189 -1513 1510 1508 -1509 1511 1513 -1511 1329 1512 -1317 1514 1515 -1515 1319 1317 -1516 1320 1319 -672 1518 682 -1325 1519 1523 -1517 1321 1320 -1520 1322 1321 -1323 1521 1522 -1324 1522 1519 -1327 1523 1524 -1327 1525 1326 -1525 1318 1326 -1515 1526 1537 -682 1527 713 -1524 1528 1535 -1517 1529 1533 -1519 1530 1531 -1523 1531 1528 -1522 1532 1530 -1520 1533 1534 -1521 1534 1532 -1525 1535 1536 -1536 1518 1525 -1516 1537 1529 -1316 1538 1514 -1449 1538 1435 -1514 1539 1526 -696 1145 273 -1541 1150 1154 -1543 1186 1217 -1544 1184 1186 -1170 1547 1193 -1548 1214 1152 -1542 1152 1150 -1550 1217 1223 -1551 1220 1222 -1552 1223 1220 -1553 1222 1215 -1549 1215 1214 -1540 1262 1145 -1554 1154 1262 -1555 713 1527 -1556 1535 1528 -1558 1537 1526 -1559 1529 1537 -1560 1533 1529 -1562 1531 1530 -1563 1528 1531 -1564 1530 1532 -1561 1534 1533 -1565 1532 1534 -1566 1527 1536 -1567 1526 1539 -1545 1558 1567 -1544 1559 1558 -714 1540 696 -1556 1548 1542 -1543 1560 1559 -1561 1550 1552 -1549 1563 1562 -1565 1552 1551 -1562 1553 1549 -1564 1551 1553 -1555 1554 1540 -1536 1557 1566 -1566 1541 1554 -1557 1542 1541 -1568 1570 1571 -1571 1573 1568 -1574 1573 1572 -1171 1577 1174 -1174 1546 1170 -1572 1187 1189 -1571 1188 1187 -1188 1576 1171 -1574 1189 1512 -1450 1578 1579 -1450 1539 1538 -1545 1328 1184 -1579 1329 1328 -1446 1574 1578 -1578 1512 1329 -1579 1567 1539 -935 1581 936 -1582 1037 941 -1582 939 1598 -939 1581 1598 -1580 944 1596 -944 1584 1596 -1585 1340 990 -1583 1042 1037 -1588 1001 1601 -1589 1091 1592 -1000 1591 1090 -1090 1592 1091 -1002 1590 1000 -1587 1043 1042 -1043 1594 1303 -1595 1234 1233 -1367 1596 1584 -1177 1580 1596 -1597 1580 1178 -1598 1597 1227 -1227 1582 1598 -1587 1232 1230 -1230 1593 1587 -1583 1599 1232 -1236 1594 1593 -1595 1303 1594 -1600 1308 1595 -1601 1310 1602 -1311 1602 1310 -1233 1405 1595 -1380 1589 1381 -1381 1592 1384 -1384 1591 1386 -1386 1590 1388 -1588 1388 1590 -1601 1390 1588 -1391 1602 1398 -1595 1404 1600 -1398 1600 1404 -1604 1340 1586 -1094 1603 1342 -1379 1603 1380 -1605 1342 1603 -1585 1349 1606 -1406 1605 1379 -1606 1348 1605 -1607 1039 1608 -1368 1584 1607 -1604 1608 1341 -1377 1607 1604 -1604 1374 1377 -1408 1606 1406 -1408 1586 1585 -1570 1609 1576 -1577 1609 1629 -1610 1612 1617 -1613 1615 1137 -994 1616 1618 -1617 1618 1610 -1618 998 997 -132 1620 783 -1137 1620 1619 -1192 1611 1610 -1621 1191 1193 -1610 997 1192 -1208 1622 1623 -1623 1199 1198 -1620 1205 1203 -783 1203 885 -1615 1207 1205 -1623 1202 1208 -1613 1624 1614 -1614 1625 1207 -1623 1625 1624 -1626 1611 1621 -1201 1627 1622 -1496 1622 1627 -1498 1616 1627 -993 1627 1616 -1628 1193 1547 -1546 1629 1630 -1546 1628 1547 -1631 1621 1628 -1628 1632 1631 -1633 794 825 -1635 1634 1633 -1637 1639 1664 -1640 1638 1637 -1640 1643 1641 -1644 1642 1645 -1645 1647 1644 -809 1648 1659 -1649 1651 1654 -1652 1654 1651 -1655 1657 1658 -1658 1647 1646 -1653 1656 1655 -1635 1009 1008 -1120 1640 1637 -1645 1125 1124 -1646 1124 953 -1654 1110 1649 -121 1659 1003 -981 1653 979 -954 1658 1102 -979 1655 954 -1642 1126 1125 -1102 1646 953 -1660 1659 1648 -1661 1650 1649 -1661 1003 1659 -1109 1649 1110 -1471 1637 1664 -1633 507 1009 -1636 1662 1663 -1635 1477 1662 -1663 1664 1639 -1471 1662 1477 -1665 910 1666 -1636 1667 1634 -910 1667 1666 -1668 907 1665 -833 912 26 -1634 833 794 -1669 913 1668 -1639 1669 1668 -917 1669 1670 -1638 1670 1669 -1670 919 917 -1671 1641 1643 -921 1671 1672 -1643 1672 1671 -1672 904 921 -1673 1644 1647 -1648 839 1678 -1674 1651 1650 -1674 892 1675 -839 894 1678 -1676 1651 1675 -892 1676 1675 -896 1677 1676 -1656 902 1657 -1673 1657 902 -1652 1677 1656 -899 1677 898 -1660 1678 1679 -1679 1650 1660 -905 1678 894 -1679 889 1674 -1663 1666 1636 -1665 1639 1668 -1438 1681 1443 -1681 1445 1443 -1683 1568 1573 -1684 1569 1568 -1439 1682 1687 -1573 1686 1683 -1440 1687 1688 -1575 1688 1686 -1609 1685 1689 -1629 1689 1719 -1690 1629 1719 -1632 1690 1720 -1691 1014 1693 -1692 1015 1691 -1693 1017 1694 -1694 1018 1695 -1695 1696 1718 -1697 1016 1692 -1697 1020 1019 -1699 1022 1024 -1701 1339 1716 -1702 1024 1026 -1703 1023 1701 -1704 1026 1027 -1705 1027 1028 -1705 1025 1703 -1706 1337 1030 -1708 1709 1717 -1706 1029 1708 -1031 1710 1711 -1696 1711 1718 -1022 1712 1038 -1713 1305 1304 -1713 1038 1712 -1709 1714 1717 -1714 1020 1698 -1707 1338 1337 -1338 1716 1339 -1721 1722 1723 -1721 1724 1722 -1721 1725 1724 -1721 1726 1725 -1721 1727 1726 -1728 1729 1730 -1730 1731 1728 -1731 1730 1732 -1732 1733 1731 -1734 1735 1736 -1736 1737 1734 -1738 1739 1740 -1740 1741 1738 -1742 1743 1744 -1744 1745 1742 -1746 1747 1748 -1748 1749 1746 -1750 1737 1751 -1751 1752 1750 -1753 1754 1755 -1755 1756 1753 -1724 1725 1757 -1757 1758 1724 -1759 1760 1761 -1761 1762 1759 -1760 1763 1764 -1764 1761 1760 -1765 1766 1767 -1767 1768 1765 -1769 1770 1771 -1771 1766 1769 -1772 1773 1774 -1774 1739 1772 -1775 1776 1777 -1777 1778 1775 -1732 1762 1734 -1734 1779 1732 -1780 1781 1782 -1782 1783 1780 -1781 1745 1772 -1772 1782 1781 -1757 1784 1763 -1763 1760 1757 -1768 1767 1785 -1785 1786 1768 -1784 1787 1788 -1788 1763 1784 -1761 1764 1789 -1789 1735 1761 -1763 1788 1790 -1790 1764 1763 -1745 1744 1773 -1773 1772 1745 -1791 1792 1793 -1793 1794 1791 -1741 1740 1795 -1795 1796 1741 -1755 1786 1797 -1797 1798 1755 -1735 1789 1746 -1746 1736 1735 -1799 1752 1800 -1800 1801 1799 -1729 1758 1759 -1759 1730 1729 -1792 1796 1802 -1802 1793 1792 -1758 1757 1760 -1760 1759 1758 -1796 1795 1765 -1765 1802 1796 -1722 1724 1758 -1758 1729 1722 -1730 1759 1762 -1762 1732 1730 -1752 1751 1803 -1803 1800 1752 -1751 1804 1742 -1742 1803 1751 -1736 1746 1749 -1749 1804 1736 -1743 1805 1806 -1806 1744 1743 -1807 1808 1770 -1770 1769 1807 -1756 1755 1798 -1798 1809 1756 -1802 1765 1768 -1768 1754 1802 -1774 1810 1808 -1808 1807 1774 -1723 1722 1729 -1729 1728 1723 -1740 1807 1769 -1769 1795 1740 -1744 1806 1811 -1811 1773 1744 -1773 1811 1810 -1810 1774 1773 -1812 1780 1783 -1783 1813 1812 -1778 1777 1792 -1792 1791 1778 -1794 1793 1753 -1753 1814 1794 -1814 1753 1756 -1756 1815 1814 -1777 1741 1796 -1796 1792 1777 -1725 1726 1784 -1784 1757 1725 -1739 1774 1807 -1807 1740 1739 -1795 1769 1766 -1766 1765 1795 -1749 1748 1805 -1805 1743 1749 -1785 1816 1817 -1817 1818 1785 -1801 1800 1780 -1780 1812 1801 -1813 1783 1776 -1776 1775 1813 -1800 1803 1781 -1781 1780 1800 -1754 1768 1786 -1786 1755 1754 -1804 1749 1743 -1743 1742 1804 -1767 1819 1816 -1816 1785 1767 -1733 1732 1779 -1779 1820 1733 -1821 1750 1752 -1752 1799 1821 -1779 1734 1737 -1737 1750 1779 -1783 1782 1738 -1738 1776 1783 -1776 1738 1741 -1741 1777 1776 -1782 1772 1739 -1739 1738 1782 -1726 1727 1787 -1787 1784 1726 -1766 1771 1819 -1819 1767 1766 -1762 1761 1735 -1735 1734 1762 -1737 1736 1804 -1804 1751 1737 -1764 1790 1822 -1822 1789 1764 -1820 1779 1750 -1750 1821 1820 -1815 1756 1809 -1809 1823 1815 -1793 1802 1754 -1754 1753 1793 -1803 1742 1745 -1745 1781 1803 -1786 1785 1818 -1818 1797 1786 -1789 1822 1747 -1747 1746 1789 -1797 1818 1824 -1818 1817 1824 -1824 1823 1809 -1809 1798 1824 -1798 1797 1824 -1825 1826 1827 -1828 1829 1830 -1831 1832 1833 -1834 1829 1835 -1836 1831 1833 -1834 1837 1838 -1826 1839 1840 -1827 1840 1841 -1842 1843 1844 -1845 1846 1847 -1845 1848 1849 -1850 1851 1852 -1853 1854 1845 -1855 1845 1847 -1846 1856 1857 -1858 1859 1860 -1858 1849 1848 -1861 1862 1863 -1864 1865 1866 -1867 1865 1868 -1869 1864 1866 -1870 1871 1872 -1873 1827 1874 -1875 1874 1876 -1874 1841 1877 -1878 1879 1880 -1881 1878 1880 -1874 1882 1876 -1854 1859 1848 -1883 1854 1884 -1881 1860 1859 -1838 1885 1886 -1887 1888 1889 -1887 1838 1886 -1890 1891 1892 -1893 1894 1839 -1895 1896 1897 -1898 1880 1879 -1895 1881 1880 -1899 1860 1881 -1897 1863 1862 -1900 1856 1901 -1858 1901 1856 -1897 1899 1895 -1899 1902 1860 -1902 1858 1860 -1897 1862 1903 -1868 1904 1905 -1864 1906 1904 -1906 1907 1904 -1906 1900 1901 -1862 1908 1903 -1907 1905 1904 -1902 1908 1905 -1905 1867 1868 -1847 1909 1910 -1847 1911 1855 -1857 1909 1846 -1912 1913 1869 -1914 1900 1912 -1900 1915 1857 -1876 1916 1875 -1876 1917 1871 -1918 1872 1919 -1872 1920 1919 -1921 1871 1917 -1922 1923 1924 -1888 1925 1922 -1925 1926 1927 -1887 1928 1888 -1844 1929 1930 -1828 1931 1831 -1851 1931 1932 -1852 1932 1933 -1934 1830 1834 -1834 1935 1934 -1934 1889 1936 -1887 1935 1838 -1887 1889 1935 -1898 1937 1896 -1938 1879 1939 -1940 1852 1941 -1853 1942 1943 -1943 1884 1853 -1883 1939 1879 -1944 1884 1945 -1946 1855 1911 -1941 1933 1947 -1863 1948 1861 -1949 1896 1937 -1928 1885 1926 -1887 1886 1928 -1932 1950 1951 -1952 1947 1933 -1932 1952 1933 -1950 1936 1953 -1889 1922 1936 -1936 1924 1953 -1830 1954 1828 -1955 1936 1950 -1936 1956 1934 -1956 1955 1954 -1931 1955 1950 -1937 1957 1958 -1957 1939 1841 -1941 1959 1940 -1942 1917 1943 -1882 1943 1917 -1877 1939 1944 -1877 1945 1882 -1921 1946 1920 -1843 1947 1929 -1960 1949 1961 -1937 1961 1949 -1962 1829 1963 -1833 1964 1965 -1836 1965 1966 -1962 1837 1835 -1967 1832 1850 -1968 1866 1969 -1885 1968 1969 -1965 1910 1909 -1967 1910 1964 -1965 1915 1966 -1962 1869 1968 -1963 1912 1962 -1926 1970 1927 -1969 1865 1970 -1861 1970 1865 -1969 1926 1885 -1971 1940 1959 -1920 1972 1971 -1850 1972 1967 -1946 1967 1972 -1973 1959 1842 -1919 1971 1973 -1829 1966 1963 -1963 1915 1914 -1974 1975 1976 -1930 1977 1974 -1973 1918 1919 -1978 1842 1979 -1980 1930 1981 -1979 1844 1980 -1841 1840 1957 -1840 1958 1957 -1839 1961 1958 -1890 1961 1894 -1982 1929 1947 -1953 1951 1950 -1976 1983 1984 -1985 1986 1987 -1924 1988 1953 -1989 1984 1983 -1989 1951 1988 -1952 1983 1982 -1988 1990 1989 -1982 1975 1977 -1890 1991 1992 -1923 1927 1993 -1970 1993 1927 -1960 1890 1992 -1993 1987 1986 -1994 1992 1991 -1923 1986 1924 -1992 1948 1960 -1995 1996 1997 -1996 1998 1997 -1999 2000 1998 -2001 1873 1875 -2002 1875 1916 -2003 1870 1918 -1916 2004 2002 -2005 2006 2007 -1998 2007 1997 -2005 2000 2008 -2009 2008 2010 -2011 2012 2013 -2014 2015 2016 -2017 2018 2015 -2019 2018 2020 -2021 2014 2016 -2022 2023 2024 -2025 2022 2024 -2026 2025 2027 -2028 2029 2023 -2018 2027 2025 -2018 2024 2015 -2015 2023 2016 -2016 2029 2021 -2030 2031 2032 -2033 2034 2035 -2036 2037 2034 -2035 2038 2039 -2034 2040 2038 -2038 2041 2042 -2043 2044 2045 -2046 2045 2044 -2037 2047 2040 -1997 2048 1995 -2007 2049 2048 -2048 2050 2046 -2051 2052 2053 -2053 2013 2012 -2036 2013 2052 -2044 2052 2046 -1995 2046 2052 -2054 2055 2056 -2057 2058 2059 -2002 2059 2001 -2060 2059 2061 -2004 2062 2063 -2004 2061 2002 -2060 2063 2064 -2063 2065 2064 -2066 2032 2067 -2066 2068 2039 -2039 2042 2066 -2058 2001 2059 -2055 2069 2056 -2070 2071 2072 -2073 2074 2075 -2076 2077 2073 -2078 2073 2079 -2080 2081 2082 -2070 2083 2081 -2084 2081 2083 -2076 2082 2081 -2085 2070 2080 -2086 2087 2085 -2088 2087 2089 -2090 1873 2091 -2092 2093 2094 -2095 2092 2096 -2096 2097 2095 -2098 2060 2064 -2099 2064 2065 -2022 2098 2028 -2028 2099 2100 -2075 2101 2102 -2103 2102 2101 -2104 2095 2097 -2105 2106 2107 -2107 2108 2026 -2106 2060 2109 -2109 2108 2106 -2079 2075 2110 -2110 2102 2104 -2111 2082 2112 -2113 2080 2111 -2114 2115 2097 -2097 2116 2104 -2112 2078 2117 -2117 2079 2118 -2118 2110 2119 -2104 2119 2110 -2086 2113 2120 -2121 1825 2090 -2122 2027 2123 -2124 2105 2125 -2126 2058 2124 -2127 2091 2126 -2125 2107 2128 -2128 2026 2122 -2129 2090 2127 -2123 2130 2131 -2130 2132 2131 -2133 2112 2134 -2134 2123 2133 -2135 2111 2133 -2136 2119 2137 -2137 2125 2136 -2137 2116 2138 -2138 2124 2137 -2138 2115 2139 -2139 2126 2138 -2140 2118 2136 -2136 2128 2140 -2134 2117 2140 -2140 2122 2134 -2139 2141 2142 -2129 2139 2142 -2133 2131 2135 -2143 2131 2132 -2135 2120 2113 -2144 2145 2146 -2147 2148 2149 -2149 2146 2147 -2150 2146 2145 -2151 2032 2031 -2147 2152 2153 -2032 2149 2067 -2148 2067 2149 -2154 2088 2155 -2077 2156 2074 -2084 2157 2077 -2158 2093 2159 -2154 2160 2161 -2158 2156 2162 -2162 2157 2163 -2164 2163 2157 -2159 2074 2156 -2093 2101 2159 -2165 2166 2167 -2071 2165 2072 -2167 2072 2165 -2083 2164 2084 -2154 2168 2165 -2167 2169 2164 -2029 2170 2171 -2003 2172 2062 -2173 2174 2172 -2172 2065 2062 -2170 2150 2171 -2175 2176 2174 -2174 2099 2065 -2100 2176 2170 -2153 2170 2176 -2177 2153 2175 -2033 2011 2013 -1981 2178 1980 -2179 2011 2178 -2035 2068 2180 -2180 2148 2181 -2178 2182 1980 -2035 2183 2033 -2180 2184 2183 -2178 2183 2184 -2185 1978 1979 -1918 2186 2003 -2187 2175 2173 -2177 2181 2148 -2184 2187 2182 -2185 2187 2173 -2185 1980 2182 -2186 2173 2172 -2188 2189 2069 -2190 2029 2171 -2191 2151 2192 -2192 2031 2188 -2193 2145 2191 -2171 2150 2193 -2190 2194 2021 -2195 2196 2197 -2192 2195 2191 -2198 2199 2055 -2200 2191 2195 -2201 2195 2197 -2202 2200 2201 -2171 2200 2190 -2199 2188 2055 -2203 2189 2204 -2205 2042 2041 -2206 2205 2207 -2207 2204 2206 -2189 2208 2069 -2189 2030 2204 -2030 2206 2204 -2066 2042 2206 -1825 2209 1826 -1828 1836 1829 -1831 1851 1832 -1834 1830 1829 -1836 1828 1831 -1834 1835 1837 -1826 1893 1839 -1827 1826 1840 -1842 1959 1843 -1845 1849 1846 -1845 1854 1848 -1850 1832 1851 -1853 1884 1854 -1855 1853 1845 -1846 1849 1856 -1858 1848 1859 -1858 1856 1849 -1861 1867 1862 -1864 1868 1865 -1867 1861 1865 -1869 1913 1864 -1870 1916 1871 -1873 1825 1827 -1875 1873 1874 -1874 1827 1841 -1878 1883 1879 -1881 1859 1878 -1874 1877 1882 -1854 1878 1859 -1883 1878 1854 -1838 1837 1885 -1890 1894 1891 -1893 1891 1894 -1895 1898 1896 -1898 1895 1880 -1895 1899 1881 -1897 1896 1863 -1900 1857 1856 -1858 1907 1901 -1897 1903 1899 -1899 1903 1902 -1902 1907 1858 -1868 1864 1904 -1864 1913 1906 -1906 1901 1907 -1906 1913 1900 -1862 1867 1908 -1907 1902 1905 -1902 1903 1908 -1905 1908 1867 -1847 1846 1909 -1847 1910 1911 -1857 1915 1909 -1912 1900 1913 -1900 1914 1915 -1876 1871 1916 -1876 1882 1917 -1918 1870 1872 -1872 1921 1920 -1921 1872 1871 -1922 1925 1923 -1888 1928 1925 -1925 1928 1926 -1844 1843 1929 -1828 1954 1931 -1851 1831 1931 -1852 1851 1932 -1934 1956 1830 -1834 1838 1935 -1934 1935 1889 -1898 1938 1937 -1938 1898 1879 -1940 1850 1852 -1853 1855 1942 -1943 1945 1884 -1883 1944 1939 -1944 1883 1884 -1946 1942 1855 -1941 1852 1933 -1863 1949 1948 -1949 1863 1896 -1928 1886 1885 -1932 1931 1950 -1952 1982 1947 -1932 1951 1952 -1889 1888 1922 -1936 1922 1924 -1830 1956 1954 -1936 1955 1956 -1931 1954 1955 -1937 1938 1957 -1957 1938 1939 -1941 1843 1959 -1942 1921 1917 -1882 1945 1943 -1877 1841 1939 -1877 1944 1945 -1921 1942 1946 -1843 1941 1947 -1960 1948 1949 -1937 1958 1961 -1962 1835 1829 -1833 1832 1964 -1836 1833 1965 -1962 1968 1837 -1967 1964 1832 -1968 1869 1866 -1885 1837 1968 -1965 1964 1910 -1967 1911 1910 -1965 1909 1915 -1962 1912 1869 -1963 1914 1912 -1969 1866 1865 -1861 1948 1970 -1969 1970 1926 -1971 1972 1940 -1920 1946 1972 -1850 1940 1972 -1946 1911 1967 -1973 1971 1959 -1919 1920 1971 -1829 1836 1966 -1963 1966 1915 -1974 1977 1975 -1930 1929 1977 -1973 1978 1918 -1978 1973 1842 -1980 1844 1930 -1979 1842 1844 -1840 1839 1958 -1839 1894 1961 -1890 1960 1961 -1982 1977 1929 -1953 1988 1951 -1976 1975 1983 -1985 1988 1986 -1924 1986 1988 -1989 1990 1984 -1989 1952 1951 -1952 1989 1983 -1988 1985 1990 -1982 1983 1975 -1890 1892 1991 -1923 1925 1927 -1970 1992 1993 -1993 1994 1987 -1994 1993 1992 -1923 1993 1986 -1992 1970 1948 -1995 2051 1996 -1996 1999 1998 -1999 2210 2000 -2001 2091 1873 -2002 2001 1875 -2003 2004 1870 -1916 1870 2004 -2005 2009 2006 -1998 2005 2007 -2005 1998 2000 -2009 2005 2008 -2011 2211 2012 -2014 2017 2015 -2017 2020 2018 -2019 2130 2018 -2021 2194 2014 -2022 2028 2023 -2025 2108 2022 -2026 2108 2025 -2028 2100 2029 -2018 2130 2027 -2018 2025 2024 -2015 2024 2023 -2016 2023 2029 -2030 2189 2031 -2033 2036 2034 -2036 2044 2037 -2035 2034 2038 -2034 2037 2040 -2038 2040 2041 -2043 2037 2044 -2046 2050 2045 -2037 2043 2047 -1997 2007 2048 -2007 2006 2049 -2048 2049 2050 -2051 1995 2052 -2053 2052 2013 -2036 2033 2013 -2044 2036 2052 -1995 2048 2046 -2054 2198 2055 -2057 2105 2058 -2002 2061 2059 -2060 2057 2059 -2004 2003 2062 -2004 2063 2061 -2060 2061 2063 -2063 2062 2065 -2066 2030 2032 -2066 2067 2068 -2039 2038 2042 -2058 2091 2001 -2055 2188 2069 -2070 2087 2071 -2073 2077 2074 -2076 2084 2077 -2078 2076 2073 -2080 2070 2081 -2070 2072 2083 -2084 2076 2081 -2076 2078 2082 -2085 2087 2070 -2086 2089 2087 -2088 2071 2087 -2090 1825 1873 -2092 2103 2093 -2095 2103 2092 -2096 2114 2097 -2098 2109 2060 -2099 2098 2064 -2022 2109 2098 -2028 2098 2099 -2075 2074 2101 -2103 2095 2102 -2104 2102 2095 -2105 2057 2106 -2107 2106 2108 -2106 2057 2060 -2109 2022 2108 -2079 2073 2075 -2110 2075 2102 -2111 2080 2082 -2113 2085 2080 -2114 2141 2115 -2097 2115 2116 -2112 2082 2078 -2117 2078 2079 -2118 2079 2110 -2104 2116 2119 -2086 2085 2113 -2121 2209 1825 -2122 2026 2027 -2124 2058 2105 -2126 2091 2058 -2127 2090 2091 -2125 2105 2107 -2128 2107 2026 -2129 2121 2090 -2123 2027 2130 -2130 2019 2132 -2133 2111 2112 -2134 2122 2123 -2135 2113 2111 -2136 2118 2119 -2137 2124 2125 -2137 2119 2116 -2138 2126 2124 -2138 2116 2115 -2139 2127 2126 -2140 2117 2118 -2136 2125 2128 -2134 2112 2117 -2140 2128 2122 -2139 2115 2141 -2129 2127 2139 -2133 2123 2131 -2143 2135 2131 -2135 2143 2120 -2144 2151 2145 -2147 2177 2148 -2149 2144 2146 -2150 2152 2146 -2151 2144 2032 -2147 2146 2152 -2032 2144 2149 -2148 2068 2067 -2154 2071 2088 -2077 2157 2156 -2084 2164 2157 -2158 2094 2093 -2154 2155 2160 -2158 2159 2156 -2162 2156 2157 -2164 2169 2163 -2159 2101 2074 -2093 2103 2101 -2165 2168 2166 -2071 2154 2165 -2167 2083 2072 -2083 2167 2164 -2154 2161 2168 -2167 2166 2169 -2029 2100 2170 -2003 2186 2172 -2173 2175 2174 -2172 2174 2065 -2170 2152 2150 -2175 2153 2176 -2174 2176 2099 -2100 2099 2176 -2153 2152 2170 -2177 2147 2153 -2033 2183 2011 -1981 2179 2178 -2179 2211 2011 -2035 2039 2068 -2180 2068 2148 -2178 2184 2182 -2035 2180 2183 -2180 2181 2184 -2178 2011 2183 -2185 2186 1978 -1918 1978 2186 -2187 2177 2175 -2177 2187 2181 -2184 2181 2187 -2185 2182 2187 -2185 1979 1980 -2186 2185 2173 -2188 2031 2189 -2190 2021 2029 -2191 2145 2151 -2192 2151 2031 -2193 2150 2145 -2190 2202 2194 -2195 2199 2196 -2192 2199 2195 -2198 2196 2199 -2200 2193 2191 -2201 2200 2195 -2202 2190 2200 -2171 2193 2200 -2199 2192 2188 -2203 2208 2189 -2206 2042 2205 -2207 2203 2204 -2030 2066 2206 -2212 2213 2214 -2215 2216 2217 -2218 2219 2220 -2221 2222 2217 -2223 2219 2218 -2221 2224 2225 -2214 2226 2227 -2213 2228 2226 -2229 2230 2231 -2232 2233 2234 -2232 2235 2236 -2237 2238 2239 -2240 2232 2241 -2242 2233 2232 -2234 2243 2244 -2245 2246 2247 -2245 2236 2235 -2248 2249 2250 -2251 2252 2253 -2254 2255 2253 -2256 2252 2251 -2257 2258 2259 -2260 2261 2213 -2262 2263 2261 -2261 2264 2228 -2265 2266 2267 -2268 2266 2265 -2261 2263 2269 -2241 2236 2247 -2270 2271 2241 -2268 2247 2246 -2224 2272 2273 -2274 2275 2276 -2274 2272 2224 -2277 2278 2279 -2280 2227 2281 -2282 2283 2284 -2285 2267 2266 -2282 2266 2268 -2286 2268 2246 -2283 2250 2249 -2287 2288 2244 -2245 2244 2288 -2283 2282 2286 -2286 2246 2289 -2289 2246 2245 -2283 2290 2250 -2255 2291 2292 -2251 2292 2293 -2293 2292 2294 -2293 2288 2287 -2250 2290 2295 -2294 2292 2291 -2289 2291 2295 -2291 2255 2254 -2233 2296 2297 -2233 2242 2298 -2243 2234 2297 -2299 2256 2300 -2301 2299 2287 -2287 2243 2302 -2263 2262 2303 -2263 2259 2304 -2305 2306 2258 -2258 2306 2307 -2308 2304 2259 -2309 2310 2311 -2276 2309 2312 -2312 2313 2314 -2274 2276 2315 -2230 2316 2317 -2215 2218 2318 -2239 2319 2318 -2238 2320 2319 -2321 2221 2216 -2221 2321 2322 -2321 2323 2275 -2274 2224 2322 -2274 2322 2275 -2285 2284 2324 -2325 2326 2267 -2327 2328 2238 -2240 2329 2330 -2329 2240 2271 -2270 2267 2326 -2331 2332 2271 -2333 2298 2242 -2328 2334 2320 -2249 2248 2335 -2336 2324 2284 -2315 2314 2273 -2274 2315 2272 -2319 2337 2338 -2339 2320 2334 -2319 2320 2339 -2338 2340 2323 -2275 2323 2309 -2323 2340 2310 -2216 2215 2341 -2342 2338 2323 -2323 2321 2343 -2343 2341 2342 -2318 2338 2342 -2324 2344 2345 -2345 2228 2326 -2328 2327 2346 -2330 2329 2304 -2269 2304 2329 -2264 2331 2326 -2264 2269 2332 -2308 2307 2333 -2231 2317 2334 -2347 2348 2336 -2324 2336 2348 -2349 2350 2217 -2219 2351 2352 -2223 2353 2351 -2349 2222 2225 -2354 2237 2220 -2355 2356 2252 -2273 2356 2355 -2351 2297 2296 -2354 2352 2296 -2351 2353 2302 -2349 2355 2256 -2350 2349 2299 -2314 2313 2357 -2356 2357 2253 -2248 2253 2357 -2356 2273 2314 -2358 2346 2327 -2307 2358 2359 -2237 2354 2359 -2333 2359 2354 -2360 2229 2346 -2306 2360 2358 -2217 2350 2353 -2350 2301 2302 -2361 2362 2363 -2316 2361 2364 -2360 2306 2305 -2365 2366 2229 -2367 2368 2316 -2366 2367 2230 -2228 2345 2226 -2226 2345 2344 -2227 2344 2348 -2277 2281 2348 -2369 2334 2317 -2340 2338 2337 -2362 2370 2371 -2372 2373 2374 -2310 2340 2375 -2376 2371 2370 -2376 2375 2337 -2339 2369 2371 -2375 2376 2377 -2369 2364 2363 -2277 2378 2379 -2311 2380 2313 -2357 2313 2380 -2347 2378 2277 -2380 2374 2373 -2381 2379 2378 -2311 2310 2374 -2378 2347 2335 -2382 2383 2384 -2384 2383 2385 -2386 2385 2387 -2388 2262 2260 -2389 2303 2262 -2390 2305 2257 -2303 2389 2391 -2392 2393 2394 -2385 2383 2393 -2392 2395 2387 -2396 2397 2395 -2398 2399 2400 -2401 2402 2403 -2404 2403 2405 -2406 2407 2405 -2408 2402 2401 -2409 2410 2411 -2412 2410 2409 -2413 2414 2412 -2415 2411 2416 -2405 2412 2414 -2405 2403 2410 -2403 2402 2411 -2402 2408 2416 -2417 2418 2419 -2420 2421 2422 -2423 2422 2424 -2421 2425 2426 -2422 2426 2427 -2426 2428 2429 -2430 2431 2432 -2433 2432 2431 -2424 2427 2434 -2383 2382 2435 -2393 2435 2436 -2435 2433 2437 -2438 2439 2440 -2439 2400 2399 -2423 2440 2399 -2432 2433 2440 -2382 2440 2433 -2441 2442 2443 -2444 2445 2446 -2389 2388 2445 -2447 2448 2445 -2391 2449 2450 -2391 2389 2448 -2447 2451 2449 -2449 2451 2452 -2453 2454 2418 -2453 2425 2455 -2425 2453 2428 -2446 2445 2388 -2443 2442 2456 -2457 2458 2459 -2460 2461 2462 -2463 2460 2464 -2465 2466 2460 -2467 2468 2469 -2457 2469 2470 -2471 2470 2469 -2463 2469 2468 -2472 2467 2457 -2473 2472 2474 -2475 2476 2474 -2477 2478 2260 -2479 2480 2481 -2482 2483 2479 -2483 2482 2484 -2485 2451 2447 -2486 2452 2451 -2409 2415 2485 -2415 2487 2486 -2461 2488 2489 -2490 2489 2488 -2491 2484 2482 -2492 2493 2494 -2493 2413 2495 -2494 2496 2447 -2496 2494 2495 -2466 2497 2461 -2497 2491 2488 -2498 2499 2468 -2500 2498 2467 -2501 2484 2502 -2484 2491 2503 -2499 2504 2465 -2504 2505 2466 -2505 2506 2497 -2491 2497 2506 -2473 2507 2500 -2508 2477 2212 -2509 2510 2414 -2511 2512 2492 -2513 2511 2446 -2514 2513 2478 -2512 2515 2493 -2515 2509 2413 -2516 2514 2477 -2510 2517 2518 -2518 2517 2519 -2520 2521 2499 -2521 2520 2510 -2522 2520 2498 -2523 2524 2506 -2524 2523 2512 -2524 2525 2503 -2525 2524 2511 -2525 2526 2502 -2526 2525 2513 -2527 2523 2505 -2523 2527 2515 -2521 2527 2504 -2527 2521 2509 -2526 2528 2529 -2516 2528 2526 -2520 2522 2517 -2530 2519 2517 -2522 2500 2507 -2531 2532 2533 -2534 2535 2536 -2535 2534 2532 -2537 2533 2532 -2538 2419 2418 -2534 2539 2540 -2418 2454 2535 -2536 2535 2454 -2541 2542 2475 -2464 2462 2543 -2471 2464 2544 -2545 2546 2481 -2541 2547 2548 -2545 2549 2543 -2549 2550 2544 -2551 2544 2550 -2546 2543 2462 -2481 2546 2489 -2552 2553 2554 -2459 2458 2552 -2553 2552 2458 -2470 2471 2551 -2541 2552 2555 -2553 2551 2556 -2416 2557 2558 -2390 2450 2559 -2560 2559 2561 -2559 2450 2452 -2558 2557 2537 -2562 2561 2563 -2561 2452 2486 -2487 2558 2563 -2539 2563 2558 -2564 2562 2539 -2420 2399 2398 -2368 2367 2565 -2566 2565 2398 -2421 2567 2455 -2567 2568 2536 -2565 2367 2569 -2421 2420 2570 -2567 2570 2571 -2565 2571 2570 -2572 2366 2365 -2305 2390 2573 -2574 2560 2562 -2564 2536 2568 -2571 2569 2574 -2572 2560 2574 -2572 2569 2367 -2573 2559 2560 -2575 2456 2576 -2577 2557 2416 -2578 2579 2538 -2579 2575 2419 -2580 2578 2533 -2557 2580 2537 -2577 2408 2581 -2582 2583 2584 -2579 2578 2582 -2585 2443 2586 -2587 2582 2578 -2588 2583 2582 -2589 2588 2587 -2557 2577 2587 -2586 2443 2575 -2590 2591 2576 -2592 2429 2428 -2593 2594 2592 -2594 2593 2591 -2576 2456 2595 -2576 2591 2417 -2417 2591 2593 -2453 2593 2428 -2212 2214 2596 -2215 2217 2223 -2218 2220 2239 -2221 2217 2216 -2223 2218 2215 -2221 2225 2222 -2214 2227 2280 -2213 2226 2214 -2229 2231 2346 -2232 2234 2235 -2232 2236 2241 -2237 2239 2220 -2240 2241 2271 -2242 2232 2240 -2234 2244 2235 -2245 2247 2236 -2245 2235 2244 -2248 2250 2254 -2251 2253 2255 -2254 2253 2248 -2256 2251 2300 -2257 2259 2303 -2260 2213 2212 -2262 2261 2260 -2261 2228 2213 -2265 2267 2270 -2268 2265 2247 -2261 2269 2264 -2241 2247 2265 -2270 2241 2265 -2224 2273 2225 -2277 2279 2281 -2280 2281 2279 -2282 2284 2285 -2285 2266 2282 -2282 2268 2286 -2283 2249 2284 -2287 2244 2243 -2245 2288 2294 -2283 2286 2290 -2286 2289 2290 -2289 2245 2294 -2255 2292 2251 -2251 2293 2300 -2293 2294 2288 -2293 2287 2300 -2250 2295 2254 -2294 2291 2289 -2289 2295 2290 -2291 2254 2295 -2233 2297 2234 -2233 2298 2296 -2243 2297 2302 -2299 2300 2287 -2287 2302 2301 -2263 2303 2259 -2263 2304 2269 -2305 2258 2257 -2258 2307 2308 -2308 2259 2258 -2309 2311 2312 -2276 2312 2315 -2312 2314 2315 -2230 2317 2231 -2215 2318 2341 -2239 2318 2218 -2238 2319 2239 -2321 2216 2343 -2221 2322 2224 -2321 2275 2322 -2285 2324 2325 -2325 2267 2285 -2327 2238 2237 -2240 2330 2242 -2329 2271 2332 -2270 2326 2331 -2331 2271 2270 -2333 2242 2330 -2328 2320 2238 -2249 2335 2336 -2336 2284 2249 -2315 2273 2272 -2319 2338 2318 -2339 2334 2369 -2319 2339 2337 -2275 2309 2276 -2323 2310 2309 -2216 2341 2343 -2323 2343 2342 -2318 2342 2341 -2324 2345 2325 -2345 2326 2325 -2328 2346 2231 -2330 2304 2308 -2269 2329 2332 -2264 2326 2228 -2264 2332 2331 -2308 2333 2330 -2231 2334 2328 -2347 2336 2335 -2324 2348 2344 -2349 2217 2222 -2219 2352 2220 -2223 2351 2219 -2349 2225 2355 -2354 2220 2352 -2355 2252 2256 -2273 2355 2225 -2351 2296 2352 -2354 2296 2298 -2351 2302 2297 -2349 2256 2299 -2350 2299 2301 -2356 2253 2252 -2248 2357 2335 -2356 2314 2357 -2358 2327 2359 -2307 2359 2333 -2237 2359 2327 -2333 2354 2298 -2360 2346 2358 -2306 2358 2307 -2217 2353 2223 -2350 2302 2353 -2361 2363 2364 -2316 2364 2317 -2360 2305 2365 -2365 2229 2360 -2367 2316 2230 -2366 2230 2229 -2226 2344 2227 -2227 2348 2281 -2277 2348 2347 -2369 2317 2364 -2340 2337 2375 -2362 2371 2363 -2372 2374 2375 -2310 2375 2374 -2376 2370 2377 -2376 2337 2339 -2339 2371 2376 -2375 2377 2372 -2369 2363 2371 -2277 2379 2278 -2311 2313 2312 -2357 2380 2378 -2380 2373 2381 -2381 2378 2380 -2311 2374 2380 -2378 2335 2357 -2382 2384 2438 -2384 2385 2386 -2386 2387 2597 -2388 2260 2478 -2389 2262 2388 -2390 2257 2391 -2303 2391 2257 -2392 2394 2396 -2385 2393 2392 -2392 2387 2385 -2396 2395 2392 -2398 2400 2598 -2401 2403 2404 -2404 2405 2407 -2406 2405 2518 -2408 2401 2581 -2409 2411 2415 -2412 2409 2495 -2413 2412 2495 -2415 2416 2487 -2405 2414 2518 -2405 2410 2412 -2403 2411 2410 -2402 2416 2411 -2417 2419 2576 -2420 2422 2423 -2423 2424 2432 -2421 2426 2422 -2422 2427 2424 -2426 2429 2427 -2430 2432 2424 -2433 2431 2437 -2424 2434 2430 -2383 2435 2393 -2393 2436 2394 -2435 2437 2436 -2438 2440 2382 -2439 2399 2440 -2423 2399 2420 -2432 2440 2423 -2382 2433 2435 -2441 2443 2585 -2444 2446 2492 -2389 2445 2448 -2447 2445 2444 -2391 2450 2390 -2391 2448 2449 -2447 2449 2448 -2449 2452 2450 -2453 2418 2417 -2453 2455 2454 -2425 2428 2426 -2446 2388 2478 -2443 2456 2575 -2457 2459 2474 -2460 2462 2464 -2463 2464 2471 -2465 2460 2463 -2467 2469 2457 -2457 2470 2458 -2471 2469 2463 -2463 2468 2465 -2472 2457 2474 -2473 2474 2476 -2475 2474 2459 -2477 2260 2212 -2479 2481 2490 -2482 2479 2490 -2483 2484 2501 -2485 2447 2496 -2486 2451 2485 -2409 2485 2496 -2415 2486 2485 -2461 2489 2462 -2490 2488 2482 -2491 2482 2488 -2492 2494 2444 -2493 2495 2494 -2494 2447 2444 -2496 2495 2409 -2466 2461 2460 -2497 2488 2461 -2498 2468 2467 -2500 2467 2472 -2501 2502 2529 -2484 2503 2502 -2499 2465 2468 -2504 2466 2465 -2505 2497 2466 -2491 2506 2503 -2473 2500 2472 -2508 2212 2596 -2509 2414 2413 -2511 2492 2446 -2513 2446 2478 -2514 2478 2477 -2512 2493 2492 -2515 2413 2493 -2516 2477 2508 -2510 2518 2414 -2518 2519 2406 -2520 2499 2498 -2521 2510 2509 -2522 2498 2500 -2523 2506 2505 -2524 2512 2511 -2524 2503 2506 -2525 2511 2513 -2525 2502 2503 -2526 2513 2514 -2527 2505 2504 -2523 2515 2512 -2521 2504 2499 -2527 2509 2515 -2526 2529 2502 -2516 2526 2514 -2520 2517 2510 -2530 2517 2522 -2522 2507 2530 -2531 2533 2538 -2534 2536 2564 -2535 2532 2531 -2537 2532 2540 -2538 2418 2531 -2534 2540 2532 -2418 2535 2531 -2536 2454 2455 -2541 2475 2459 -2464 2543 2544 -2471 2544 2551 -2545 2481 2480 -2541 2548 2542 -2545 2543 2546 -2549 2544 2543 -2551 2550 2556 -2546 2462 2489 -2481 2489 2490 -2552 2554 2555 -2459 2552 2541 -2553 2458 2470 -2470 2551 2553 -2541 2555 2547 -2553 2556 2554 -2416 2558 2487 -2390 2559 2573 -2560 2561 2562 -2559 2452 2561 -2558 2537 2540 -2562 2563 2539 -2561 2486 2563 -2487 2563 2486 -2539 2558 2540 -2564 2539 2534 -2420 2398 2570 -2368 2565 2566 -2566 2398 2598 -2421 2455 2425 -2567 2536 2455 -2565 2569 2571 -2421 2570 2567 -2567 2571 2568 -2565 2570 2398 -2572 2365 2573 -2305 2573 2365 -2574 2562 2564 -2564 2568 2574 -2571 2574 2568 -2572 2574 2569 -2572 2367 2366 -2573 2560 2572 -2575 2576 2419 -2577 2416 2408 -2578 2538 2533 -2579 2419 2538 -2580 2533 2537 -2577 2581 2589 -2582 2584 2586 -2579 2582 2586 -2585 2586 2584 -2587 2578 2580 -2588 2582 2587 -2589 2587 2577 -2557 2587 2580 -2586 2575 2579 -2590 2576 2595 -2593 2592 2428 -2594 2591 2590 -2417 2593 2453 diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/new_uv.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/new_uv.txt deleted file mode 100644 index 4436f514..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/new_uv.txt +++ /dev/null @@ -1,2599 +0,0 @@ -0.538034 0.263103 -0.551344 0.262562 -0.555155 0.266718 -0.538808 0.267614 -0.500000 0.262968 -0.512631 0.262365 -0.514027 0.268046 -0.500000 0.268151 -0.563228 0.261453 -0.566900 0.265483 -0.578740 0.260050 -0.580285 0.263723 -0.583541 0.261149 -0.584752 0.261545 -0.584119 0.262901 -0.583442 0.262992 -0.585489 0.263030 -0.584263 0.262958 -0.526694 0.262882 -0.528068 0.267910 -0.531437 0.274931 -0.520620 0.275445 -0.520888 0.269311 -0.532630 0.269108 -0.510842 0.275702 -0.512045 0.269351 -0.500000 0.274634 -0.500000 0.269333 -0.542069 0.273677 -0.544167 0.268497 -0.554508 0.271740 -0.556204 0.267525 -0.565334 0.270410 -0.567062 0.266266 -0.580229 0.267662 -0.580917 0.264200 -0.584245 0.265431 -0.583124 0.263439 -0.628045 0.504236 -0.612538 0.505828 -0.627525 0.501590 -0.644764 0.498536 -0.644500 0.501439 -0.656977 0.492702 -0.657039 0.494821 -0.666504 0.486744 -0.666541 0.489202 -0.611741 0.508582 -0.599125 0.506105 -0.611452 0.510982 -0.627403 0.511756 -0.610312 0.514546 -0.628039 0.506412 -0.644398 0.504168 -0.644614 0.507476 -0.657649 0.497200 -0.657738 0.500468 -0.666829 0.491457 -0.596194 0.509956 -0.594893 0.512773 -0.583930 0.504272 -0.585644 0.502307 -0.597798 0.508035 -0.578362 0.495931 -0.575102 0.498130 -0.587327 0.500284 -0.599730 0.273931 -0.595646 0.265780 -0.600326 0.264938 -0.583441 0.248159 -0.575440 0.234165 -0.590275 0.244408 -0.589183 0.467789 -0.595366 0.470259 -0.589438 0.472072 -0.605869 0.468626 -0.597001 0.465843 -0.607125 0.463582 -0.645194 0.464673 -0.629962 0.467190 -0.631929 0.462124 -0.619629 0.461785 -0.618254 0.466518 -0.621190 0.456413 -0.635127 0.455897 -0.655618 0.467697 -0.647720 0.458414 -0.658676 0.462498 -0.642245 0.469602 -0.661827 0.475000 -0.653040 0.472598 -0.608238 0.458783 -0.597479 0.461404 -0.588994 0.463651 -0.571649 0.241583 -0.560480 0.228045 -0.556116 0.236573 -0.544510 0.224268 -0.574651 0.480084 -0.576479 0.477587 -0.576093 0.480194 -0.574457 0.483632 -0.576057 0.482780 -0.570462 0.482950 -0.572306 0.479168 -0.566990 0.477500 -0.552152 0.031536 -0.500000 0.011334 -0.563926 0.018974 -0.677052 0.079671 -0.641540 0.037119 -0.750827 0.087999 -0.614384 0.048191 -0.791315 0.171404 -0.754180 0.193238 -0.736309 0.153161 -0.623241 0.449722 -0.638449 0.447853 -0.651940 0.450415 -0.500000 0.222575 -0.514770 0.231303 -0.500000 0.232210 -0.514948 0.222005 -0.500000 0.214139 -0.515144 0.214426 -0.548046 0.214305 -0.566269 0.218174 -0.521361 0.307081 -0.510966 0.316199 -0.508603 0.303820 -0.524052 0.318195 -0.515714 0.327528 -0.500000 0.127761 -0.521613 0.151114 -0.500000 0.151067 -0.627422 0.499941 -0.613912 0.502443 -0.600181 0.503523 -0.644455 0.496093 -0.657385 0.491117 -0.588936 0.498889 -0.580869 0.492891 -0.581275 0.491660 -0.659721 0.476728 -0.594743 0.472041 -0.652041 0.473980 -0.606035 0.469735 -0.641388 0.471164 -0.628834 0.469386 -0.617888 0.468827 -0.577679 0.480698 -0.578175 0.479860 -0.669503 0.482933 -0.670164 0.482783 -0.669535 0.484050 -0.671016 0.485643 -0.673331 0.483338 -0.672907 0.487340 -0.667480 0.494180 -0.664895 0.478544 -0.581654 0.506974 -0.574255 0.475294 -0.675237 0.481727 -0.675548 0.489233 -0.683699 0.479331 -0.500000 0.421684 -0.511105 0.410664 -0.512119 0.421006 -0.500000 0.446641 -0.513674 0.433076 -0.513326 0.445366 -0.607576 0.161983 -0.625423 0.196200 -0.592797 0.179715 -0.654625 0.305109 -0.680767 0.291659 -0.669774 0.328398 -0.660588 0.207696 -0.641987 0.171711 -0.617358 0.222192 -0.645686 0.231115 -0.635810 0.293360 -0.655842 0.278856 -0.520542 0.169552 -0.500000 0.169889 -0.518284 0.187234 -0.500000 0.188877 -0.500000 0.434560 -0.543569 0.424636 -0.556671 0.428752 -0.543905 0.439180 -0.553990 0.408669 -0.538419 0.414141 -0.531959 0.395384 -0.539701 0.382703 -0.544720 0.392513 -0.535844 0.403314 -0.563805 0.383194 -0.574609 0.385366 -0.568279 0.392429 -0.567857 0.366579 -0.557777 0.373807 -0.571721 0.410440 -0.580843 0.412703 -0.569655 0.420995 -0.579929 0.400009 -0.567640 0.403903 -0.579168 0.388687 -0.560219 0.416295 -0.591075 0.402217 -0.587742 0.388780 -0.587048 0.375149 -0.581196 0.372007 -0.585151 0.359561 -0.575566 0.351808 -0.576359 0.345318 -0.598900 0.455806 -0.610454 0.452767 -0.602750 0.392093 -0.600546 0.377850 -0.589587 0.458503 -0.530104 0.384402 -0.534927 0.374504 -0.523820 0.368896 -0.526515 0.377880 -0.517424 0.339284 -0.527162 0.328892 -0.529972 0.336806 -0.591052 0.256465 -0.596112 0.255865 -0.604029 0.252339 -0.610427 0.269590 -0.596503 0.236276 -0.582883 0.226918 -0.529661 0.222390 -0.541760 0.232994 -0.527947 0.230917 -0.531538 0.212894 -0.602626 0.201680 -0.580844 0.194110 -0.565124 0.172474 -0.558844 0.188634 -0.676698 0.250174 -0.652235 0.254902 -0.637516 0.272989 -0.630785 0.249867 -0.567111 0.293204 -0.587401 0.293152 -0.576112 0.306349 -0.595169 0.282721 -0.594592 0.272268 -0.588365 0.278821 -0.578848 0.285292 -0.614717 0.365651 -0.597343 0.362009 -0.608216 0.348803 -0.617027 0.381410 -0.606951 0.279748 -0.603589 0.291405 -0.596082 0.305887 -0.635335 0.369324 -0.631043 0.350651 -0.620526 0.332309 -0.545339 0.127844 -0.571627 0.153065 -0.544511 0.151538 -0.541705 0.169324 -0.538146 0.186483 -0.630984 0.312449 -0.644764 0.331175 -0.654245 0.354551 -0.500000 0.544765 -0.515752 0.563323 -0.500000 0.562233 -0.533331 0.546676 -0.515426 0.545492 -0.588175 0.558560 -0.569716 0.568394 -0.569127 0.553781 -0.608641 0.558710 -0.590285 0.572297 -0.551574 0.565753 -0.550723 0.548811 -0.869832 0.571682 -0.862148 0.607350 -0.842086 0.591746 -0.803492 0.275429 -0.770229 0.299352 -0.770096 0.267046 -0.835110 0.284508 -0.805071 0.306194 -0.795760 0.201176 -0.763788 0.227588 -0.836610 0.249284 -0.870455 0.264420 -0.800670 0.237978 -0.836577 0.212328 -0.876037 0.231659 -0.909965 0.253069 -0.898903 0.308877 -0.861440 0.336915 -0.861721 0.298685 -0.904757 0.275940 -0.568378 0.539625 -0.588453 0.533995 -0.587951 0.544910 -0.607160 0.534938 -0.606219 0.547337 -0.835367 0.311823 -0.821137 0.346321 -0.762880 0.478570 -0.764048 0.502382 -0.745307 0.496640 -0.739744 0.518624 -0.723374 0.509197 -0.877635 0.371147 -0.894227 0.339787 -0.862428 0.401338 -0.842965 0.374576 -0.879940 0.208651 -0.837108 0.184960 -0.917436 0.235666 -0.529485 0.067166 -0.500000 0.053324 -0.535151 0.054534 -0.552809 0.072119 -0.573550 0.065939 -0.578753 0.087439 -0.605273 0.084678 -0.656223 0.141728 -0.675670 0.178851 -0.589334 0.133034 -0.520518 0.095867 -0.500000 0.080342 -0.523602 0.080263 -0.500000 0.066933 -0.537782 0.098308 -0.547550 0.082176 -0.551588 0.101366 -0.621608 0.137375 -0.834188 0.631297 -0.500000 0.728662 -0.528107 0.687737 -0.533313 0.728966 -0.786768 0.632175 -0.814535 0.612957 -0.612027 0.572654 -0.627488 0.557290 -0.632769 0.569750 -0.716775 0.533962 -0.684984 0.536308 -0.675553 0.556898 -0.669277 0.545246 -0.646972 0.553373 -0.653718 0.563867 -0.695406 0.545596 -0.701862 0.523971 -0.625423 0.544492 -0.643558 0.528929 -0.643368 0.539445 -0.678134 0.524697 -0.684787 0.500686 -0.691486 0.516425 -0.664634 0.531349 -0.673615 0.513397 -0.731297 0.451074 -0.734120 0.481286 -0.712352 0.474341 -0.709136 0.498459 -0.696707 0.489456 -0.514102 0.458609 -0.555926 0.440495 -0.580319 0.424178 -0.569122 0.432041 -0.591922 0.416062 -0.604003 0.407126 -0.617079 0.398237 -0.634879 0.387414 -0.655465 0.376076 -0.679845 0.357473 -0.698801 0.328825 -0.704713 0.358537 -0.779233 0.670846 -0.807873 0.653312 -0.746186 0.685464 -0.753776 0.650557 -0.708006 0.697814 -0.719419 0.663936 -0.672473 0.707521 -0.684878 0.676785 -0.634190 0.714936 -0.650721 0.683168 -0.600988 0.719751 -0.617247 0.686566 -0.533566 0.563711 -0.556160 0.688309 -0.566903 0.726654 -0.587354 0.687176 -0.578025 0.373969 -0.572096 0.356928 -0.573022 0.377161 -0.577355 0.386878 -0.569971 0.396515 -0.558004 0.357761 -0.560289 0.348882 -0.561087 0.344931 -0.548812 0.378857 -0.553817 0.389232 -0.548940 0.400720 -0.558164 0.396898 -0.562264 0.400668 -0.526832 0.363311 -0.532891 0.366473 -0.524379 0.365941 -0.523238 0.344413 -0.526144 0.350860 -0.518080 0.347148 -0.533398 0.349291 -0.536025 0.342952 -0.536782 0.349698 -0.530067 0.349484 -0.530080 0.343263 -0.540750 0.345524 -0.538991 0.350402 -0.544176 0.349800 -0.523540 0.362063 -0.520082 0.363546 -0.517438 0.364495 -0.533918 0.368311 -0.512838 0.344688 -0.668822 0.475309 -0.669581 0.480134 -0.666290 0.477276 -0.672572 0.478530 -0.676642 0.475112 -0.682939 0.471851 -0.668046 0.480316 -0.669312 0.481218 -0.664131 0.471883 -0.667691 0.467266 -0.677686 0.465324 -0.672532 0.471080 -0.663497 0.454576 -0.671699 0.460694 -0.736089 0.328583 -0.692854 0.216230 -0.704479 0.254994 -0.707437 0.294268 -0.845169 0.562011 -0.819991 0.581490 -0.500000 0.689424 -0.525357 0.660802 -0.792716 0.599693 -0.762731 0.616608 -0.728875 0.632813 -0.696183 0.644594 -0.665369 0.652073 -0.632776 0.657224 -0.603363 0.659760 -0.549897 0.661298 -0.575617 0.660788 -0.789887 0.481858 -0.787966 0.453703 -0.819281 0.457649 -0.577296 0.487333 -0.576252 0.489344 -0.580419 0.471138 -0.580029 0.475595 -0.570572 0.486945 -0.577638 0.484085 -0.578478 0.478845 -0.580106 0.477171 -0.589011 0.473969 -0.567057 0.484953 -0.568009 0.490855 -0.580104 0.462367 -0.580089 0.468201 -0.577061 0.472499 -0.577176 0.477358 -0.576321 0.471086 -0.572475 0.473573 -0.574610 0.467585 -0.568845 0.473365 -0.523374 0.408496 -0.525120 0.418185 -0.529058 0.437849 -0.527579 0.428758 -0.521275 0.389069 -0.520634 0.398067 -0.510650 0.398714 -0.517848 0.376967 -0.529354 0.454342 -0.500000 0.399767 -0.500000 0.410972 -0.500000 0.387498 -0.507521 0.377823 -0.509105 0.387906 -0.506171 0.326093 -0.500000 0.325757 -0.506067 0.315745 -0.508239 0.337211 -0.500000 0.335797 -0.507550 0.342605 -0.500000 0.341060 -0.500000 0.365198 -0.500000 0.377100 -0.506204 0.307765 -0.500000 0.302181 -0.500000 0.315583 -0.507480 0.363676 -0.571739 0.527417 -0.549921 0.532340 -0.558479 0.518120 -0.500000 0.492401 -0.515344 0.508065 -0.500000 0.507820 -0.515605 0.491848 -0.530039 0.509108 -0.528487 0.489058 -0.541068 0.497381 -0.500000 0.527045 -0.533017 0.528517 -0.515327 0.526894 -0.545847 0.510436 -0.568458 0.443283 -0.580664 0.446044 -0.569886 0.452893 -0.591434 0.439887 -0.580688 0.435637 -0.592576 0.428129 -0.603103 0.434345 -0.604230 0.421094 -0.615905 0.428346 -0.616499 0.414423 -0.629627 0.422337 -0.632050 0.407564 -0.645287 0.418780 -0.663719 0.416755 -0.650349 0.399199 -0.670165 0.393807 -0.500000 0.461751 -0.514998 0.476771 -0.500000 0.479078 -0.543717 0.450325 -0.556902 0.451429 -0.543867 0.463091 -0.681981 0.417425 -0.691822 0.390778 -0.748928 0.392390 -0.730282 0.358110 -0.756061 0.361231 -0.718892 0.390425 -0.702947 0.419287 -0.726863 0.421841 -0.558282 0.463016 -0.529201 0.470287 -0.544493 0.480038 -0.736911 0.773320 -0.736811 0.727399 -0.771473 0.757188 -0.854410 0.698778 -0.856495 0.651124 -0.877985 0.680181 -0.801539 0.736935 -0.800439 0.690978 -0.826643 0.714309 -0.829962 0.672869 -0.901935 0.657368 -0.878995 0.628115 -0.772709 0.707860 -0.701295 0.739316 -0.660517 0.749491 -0.618519 0.759227 -0.695017 0.792887 -0.644328 0.809667 -0.500000 0.770452 -0.548269 0.825775 -0.500000 0.826932 -0.576671 0.765753 -0.537796 0.768035 -0.595677 0.820314 -0.906660 0.601970 -0.884257 0.582429 -0.926448 0.628084 -0.870149 0.536319 -0.888249 0.543500 -0.962339 0.536788 -0.988930 0.525683 -0.983934 0.548272 -0.941890 0.487494 -0.908691 0.488224 -0.930079 0.469397 -0.943454 0.523030 -0.975117 0.519849 -0.924832 0.507063 -0.953195 0.505099 -0.897438 0.465115 -0.948371 0.557098 -0.974127 0.577126 -0.885912 0.510362 -0.860097 0.491100 -0.909654 0.526424 -0.927368 0.542857 -0.952957 0.599906 -0.926000 0.578136 -0.905695 0.562354 -0.584107 0.320947 -0.619540 0.284332 -0.595717 0.218051 -0.609657 0.239207 -0.517016 0.202272 -0.573044 0.207192 -0.553427 0.202331 -0.623121 0.268712 -0.616278 0.255167 -0.598885 0.333933 -0.500000 0.204146 -0.534534 0.201023 -0.614550 0.301801 -0.608564 0.318876 -0.590647 0.346322 -0.579971 0.334482 -0.553591 0.301144 -0.561165 0.319807 -0.562961 0.336401 -0.539110 0.318078 -0.542182 0.329927 -0.539231 0.341154 -0.537385 0.304638 -0.547037 0.346000 -0.549268 0.352085 -0.539446 0.363755 -0.532131 0.363447 -0.535518 0.360496 -0.542845 0.370974 -0.541315 0.366207 -0.516733 0.352895 -0.521445 0.353015 -0.513007 0.354927 -0.500000 0.350270 -0.506377 0.352355 -0.547321 0.361824 -0.545905 0.359367 -0.541614 0.352219 -0.551022 0.365327 -0.540575 0.355978 -0.500000 0.038208 -0.547459 0.040747 -0.596088 0.061768 -0.635997 0.082805 -0.694566 0.146434 -0.715165 0.184218 -0.738624 0.296403 -0.738334 0.260337 -0.728851 0.221668 -0.500000 0.027476 -0.764709 0.332878 -0.755344 0.424853 -0.782823 0.366235 -0.792314 0.338018 -0.777429 0.397497 -0.758456 0.453416 -0.809939 0.380647 -0.782143 0.426661 -0.828213 0.404360 -0.844154 0.430274 -0.810921 0.428507 -0.802643 0.404790 -0.822968 0.550849 -0.796814 0.569755 -0.767585 0.588325 -0.739161 0.602984 -0.500000 0.659578 -0.523072 0.637912 -0.619678 0.636216 -0.707855 0.616838 -0.678562 0.626641 -0.648579 0.634046 -0.593292 0.638043 -0.546103 0.637986 -0.569068 0.638660 -0.800933 0.544319 -0.500000 0.638092 -0.520145 0.618316 -0.586481 0.620562 -0.745540 0.576908 -0.635091 0.618605 -0.610959 0.619246 -0.663644 0.612228 -0.718013 0.591222 -0.690508 0.603770 -0.563651 0.619752 -0.542074 0.618581 -0.773952 0.561730 -0.848031 0.529498 -0.827285 0.521753 -0.500000 0.580200 -0.516521 0.580725 -0.554485 0.582271 -0.574514 0.585845 -0.734667 0.543359 -0.758881 0.529215 -0.786618 0.510164 -0.944058 0.254724 -0.937896 0.272307 -0.596330 0.587547 -0.617196 0.587839 -0.709734 0.556591 -0.665089 0.579035 -0.687748 0.570480 -0.642189 0.586235 -0.534352 0.581255 -0.517347 0.599011 -0.500000 0.618346 -0.500000 0.599633 -0.580063 0.602831 -0.559098 0.601617 -0.779490 0.537519 -0.753497 0.552259 -0.726754 0.565992 -0.701198 0.581315 -0.626860 0.602219 -0.602294 0.602942 -0.651720 0.599777 -0.676623 0.591774 -0.536887 0.599526 -0.804930 0.516258 -0.933326 0.371868 -0.915904 0.341219 -0.938609 0.349519 -0.908020 0.375530 -0.921901 0.404392 -0.892636 0.396506 -0.887892 0.434640 -0.920924 0.441675 -0.932548 0.292166 -0.921102 0.321614 -0.853178 0.459714 -0.824251 0.486854 -0.625731 0.522114 -0.608567 0.523511 -0.657627 0.509707 -0.668628 0.501578 -0.575842 0.515951 -0.556277 0.478902 -0.553691 0.489115 -0.680532 0.493131 -0.642087 0.434489 -0.590959 0.450669 -0.613409 0.441402 -0.627127 0.437816 -0.601278 0.446005 -0.689466 0.484287 -0.696005 0.473730 -0.703341 0.451170 -0.590870 0.522595 -0.625202 0.532828 -0.643862 0.516945 -0.660656 0.520893 -0.686038 0.442444 -0.657774 0.435093 -0.673388 0.438303 -0.580512 0.455328 -0.556274 0.498573 -0.572707 0.462068 -0.562742 0.470278 -0.564790 0.508470 -0.572679 0.499932 -0.940432 0.329049 -0.833732 0.157572 -0.890298 0.175120 -0.883080 0.191315 -0.565966 0.126357 -0.547294 0.111924 -0.561804 0.109578 -0.714547 0.114311 -0.833961 0.139397 -0.778975 0.132512 -0.521277 0.110273 -0.520843 0.128611 -0.923786 0.223635 -0.633326 0.110440 -0.602280 0.109572 -0.500000 0.109062 -0.575499 0.110299 -0.571358 0.095387 -0.932104 0.216329 -0.667810 0.112754 -0.952497 0.255573 -0.956364 0.304349 -0.970346 0.285735 -0.969198 0.251384 -0.991096 0.281884 -0.508714 0.300976 -0.500000 0.294049 -0.509313 0.294199 -0.520311 0.300705 -0.520132 0.293497 -0.559943 0.287833 -0.547425 0.285983 -0.558904 0.283370 -0.574608 0.282222 -0.572235 0.278170 -0.585445 0.273002 -0.587672 0.274977 -0.589208 0.267449 -0.591348 0.270325 -0.589746 0.264362 -0.592682 0.265082 -0.500000 0.239798 -0.512168 0.244541 -0.500000 0.244747 -0.538947 0.243142 -0.550871 0.250591 -0.538181 0.247338 -0.565135 0.252709 -0.552416 0.246278 -0.566667 0.250709 -0.578627 0.254743 -0.586113 0.261125 -0.577752 0.256270 -0.587877 0.260794 -0.512897 0.239730 -0.525074 0.245363 -0.525918 0.240797 -0.500000 0.300703 -0.535691 0.295459 -0.534134 0.289603 -0.548732 0.290957 -0.532622 0.282645 -0.510026 0.285167 -0.520443 0.284657 -0.544212 0.279515 -0.500000 0.284974 -0.556731 0.277059 -0.569817 0.274572 -0.582544 0.269773 -0.584748 0.267121 -0.586361 0.263536 -0.500000 0.250599 -0.537942 0.252044 -0.550159 0.253750 -0.563294 0.255551 -0.577601 0.257964 -0.512449 0.250507 -0.525373 0.250872 -0.979532 0.507113 -0.999115 0.509996 -0.964329 0.492460 -0.945715 0.400485 -0.947805 0.371722 -0.950132 0.344071 -0.948428 0.425210 -0.954039 0.472326 -0.951305 0.451295 -0.954449 0.327455 -0.978907 0.297302 -0.614391 0.498757 -0.601984 0.496739 -0.627197 0.497566 -0.643912 0.492534 -0.656877 0.489923 -0.666477 0.485859 -0.590266 0.493685 -0.584410 0.488494 -0.651230 0.476192 -0.658828 0.478310 -0.594736 0.474689 -0.640566 0.473662 -0.605685 0.472654 -0.628419 0.472585 -0.617588 0.471872 -0.579416 0.480172 -0.580692 0.479141 -0.579214 0.480965 -0.577404 0.482557 -0.669088 0.481629 -0.669201 0.482758 -0.663934 0.479164 -0.668120 0.481021 -0.580183 0.483692 -0.581272 0.478763 -0.588938 0.476269 -0.579615 0.482451 -0.667730 0.483537 -0.500000 0.093413 -0.500000 0.307550 -0.961221 0.310125 -0.998656 0.296357 -0.461966 0.263103 -0.461192 0.267614 -0.444845 0.266718 -0.448656 0.262562 -0.485973 0.268046 -0.487369 0.262365 -0.433100 0.265483 -0.436772 0.261453 -0.419715 0.263723 -0.421260 0.260050 -0.416459 0.261149 -0.416558 0.262992 -0.415881 0.262901 -0.415248 0.261545 -0.415737 0.262958 -0.414511 0.263030 -0.473306 0.262882 -0.471932 0.267910 -0.468563 0.274931 -0.467370 0.269108 -0.479112 0.269311 -0.479380 0.275445 -0.487955 0.269351 -0.489158 0.275702 -0.457931 0.273677 -0.455833 0.268497 -0.445492 0.271740 -0.443796 0.267525 -0.434666 0.270410 -0.432938 0.266266 -0.419771 0.267662 -0.419083 0.264200 -0.415755 0.265431 -0.416876 0.263439 -0.371955 0.504236 -0.372475 0.501590 -0.387462 0.505828 -0.355500 0.501439 -0.355236 0.498536 -0.342961 0.494821 -0.343023 0.492702 -0.333459 0.489202 -0.333496 0.486744 -0.388259 0.508582 -0.400875 0.506105 -0.388548 0.510982 -0.389688 0.514546 -0.372597 0.511756 -0.371961 0.506412 -0.355602 0.504168 -0.355386 0.507476 -0.342351 0.497200 -0.342262 0.500468 -0.333171 0.491457 -0.403806 0.509956 -0.405107 0.512773 -0.416070 0.504272 -0.402202 0.508035 -0.414356 0.502307 -0.421638 0.495931 -0.424898 0.498130 -0.412673 0.500284 -0.400270 0.273931 -0.399674 0.264938 -0.404354 0.265780 -0.416559 0.248159 -0.409725 0.244408 -0.424560 0.234165 -0.410817 0.467789 -0.410562 0.472072 -0.404634 0.470259 -0.394131 0.468626 -0.392875 0.463582 -0.402999 0.465843 -0.354806 0.464673 -0.368071 0.462124 -0.370038 0.467190 -0.380371 0.461785 -0.381746 0.466518 -0.378810 0.456413 -0.364873 0.455897 -0.344382 0.467697 -0.341324 0.462498 -0.352280 0.458414 -0.357755 0.469602 -0.346960 0.472598 -0.338173 0.475000 -0.391762 0.458783 -0.402521 0.461404 -0.411006 0.463651 -0.428351 0.241583 -0.439520 0.228045 -0.443884 0.236573 -0.455490 0.224268 -0.425349 0.480084 -0.423907 0.480194 -0.423521 0.477587 -0.425543 0.483632 -0.423943 0.482780 -0.427694 0.479168 -0.429538 0.482950 -0.433010 0.477500 -0.447848 0.031536 -0.436074 0.018974 -0.322948 0.079671 -0.249173 0.087999 -0.358460 0.037119 -0.385616 0.048191 -0.208685 0.171404 -0.263691 0.153161 -0.245820 0.193238 -0.376759 0.449722 -0.348060 0.450415 -0.361551 0.447853 -0.485230 0.231303 -0.485051 0.222005 -0.484856 0.214426 -0.433731 0.218174 -0.451954 0.214305 -0.478639 0.307081 -0.491397 0.303820 -0.489034 0.316199 -0.475948 0.318195 -0.484286 0.327528 -0.478387 0.151114 -0.372578 0.499941 -0.386088 0.502443 -0.399819 0.503523 -0.355545 0.496093 -0.342615 0.491117 -0.411064 0.498889 -0.418725 0.491660 -0.419131 0.492891 -0.340279 0.476728 -0.405257 0.472041 -0.347959 0.473980 -0.393965 0.469735 -0.358612 0.471164 -0.371166 0.469386 -0.382112 0.468827 -0.422321 0.480698 -0.421825 0.479860 -0.330497 0.482933 -0.330465 0.484050 -0.329836 0.482783 -0.328984 0.485643 -0.326669 0.483338 -0.327093 0.487340 -0.332520 0.494180 -0.335105 0.478544 -0.418346 0.506974 -0.425745 0.475294 -0.324763 0.481727 -0.324452 0.489233 -0.316301 0.479331 -0.487881 0.421006 -0.488895 0.410664 -0.486674 0.445366 -0.486326 0.433076 -0.392424 0.161983 -0.407203 0.179715 -0.374577 0.196200 -0.345375 0.305109 -0.330226 0.328398 -0.319233 0.291659 -0.339412 0.207696 -0.358013 0.171711 -0.382641 0.222192 -0.354314 0.231114 -0.364189 0.293360 -0.344158 0.278856 -0.479458 0.169552 -0.481716 0.187234 -0.456431 0.424636 -0.456095 0.439180 -0.443329 0.428752 -0.446010 0.408669 -0.461581 0.414141 -0.468041 0.395384 -0.455280 0.392513 -0.460299 0.382702 -0.464156 0.403314 -0.436195 0.383194 -0.431721 0.392429 -0.425390 0.385366 -0.432143 0.366579 -0.442223 0.373807 -0.428279 0.410440 -0.430345 0.420995 -0.419157 0.412703 -0.420070 0.400009 -0.420831 0.388687 -0.432360 0.403903 -0.439781 0.416295 -0.408925 0.402217 -0.412258 0.388780 -0.412952 0.375149 -0.414849 0.359561 -0.418804 0.372007 -0.423641 0.345318 -0.424434 0.351808 -0.389546 0.452767 -0.401100 0.455806 -0.397250 0.392093 -0.399454 0.377850 -0.410413 0.458503 -0.469896 0.384402 -0.465073 0.374504 -0.476180 0.368896 -0.473485 0.377880 -0.482576 0.339284 -0.470028 0.336806 -0.472838 0.328892 -0.408948 0.256465 -0.403888 0.255865 -0.389573 0.269590 -0.395971 0.252339 -0.403497 0.236276 -0.417117 0.226918 -0.470339 0.222390 -0.472053 0.230917 -0.458240 0.232994 -0.468462 0.212894 -0.419156 0.194110 -0.397374 0.201680 -0.434876 0.172474 -0.441156 0.188634 -0.323302 0.250174 -0.347765 0.254902 -0.369215 0.249867 -0.362484 0.272989 -0.432888 0.293204 -0.423888 0.306349 -0.412599 0.293152 -0.404830 0.282721 -0.405408 0.272268 -0.411635 0.278821 -0.421152 0.285292 -0.385283 0.365651 -0.391784 0.348803 -0.402657 0.362009 -0.382973 0.381410 -0.393049 0.279748 -0.396411 0.291405 -0.403918 0.305887 -0.364665 0.369324 -0.368957 0.350651 -0.379474 0.332309 -0.454661 0.127844 -0.455489 0.151538 -0.428373 0.153065 -0.458295 0.169324 -0.461854 0.186483 -0.369016 0.312449 -0.355236 0.331175 -0.345755 0.354551 -0.484248 0.563323 -0.466669 0.546676 -0.484574 0.545492 -0.411824 0.558560 -0.430873 0.553781 -0.430284 0.568394 -0.391359 0.558710 -0.409715 0.572297 -0.449277 0.548811 -0.448426 0.565753 -0.130168 0.571682 -0.157914 0.591746 -0.137852 0.607350 -0.196508 0.275429 -0.229904 0.267046 -0.229771 0.299352 -0.164890 0.284508 -0.194929 0.306194 -0.204240 0.201176 -0.236212 0.227588 -0.163390 0.249284 -0.129545 0.264420 -0.199330 0.237978 -0.163423 0.212328 -0.123963 0.231659 -0.090035 0.253069 -0.101097 0.308877 -0.138279 0.298685 -0.138560 0.336915 -0.095243 0.275940 -0.431622 0.539625 -0.412049 0.544910 -0.411547 0.533995 -0.392840 0.534938 -0.393781 0.547337 -0.164633 0.311823 -0.178863 0.346321 -0.237120 0.478570 -0.254693 0.496640 -0.235952 0.502382 -0.276626 0.509197 -0.260256 0.518624 -0.122365 0.371147 -0.105773 0.339787 -0.137572 0.401338 -0.157035 0.374576 -0.120060 0.208651 -0.162892 0.184960 -0.082564 0.235666 -0.470515 0.067166 -0.464849 0.054534 -0.447191 0.072119 -0.426451 0.065939 -0.421247 0.087439 -0.394727 0.084678 -0.324330 0.178851 -0.343777 0.141728 -0.410666 0.133034 -0.479482 0.095867 -0.476398 0.080263 -0.462218 0.098308 -0.452450 0.082176 -0.448412 0.101366 -0.378391 0.137375 -0.165812 0.631297 -0.466687 0.728966 -0.471893 0.687737 -0.185464 0.612957 -0.213232 0.632175 -0.387973 0.572654 -0.367231 0.569750 -0.372512 0.557290 -0.283225 0.533962 -0.315016 0.536308 -0.330723 0.545246 -0.324447 0.556898 -0.353028 0.553373 -0.346282 0.563867 -0.304594 0.545596 -0.298138 0.523971 -0.374577 0.544492 -0.356632 0.539445 -0.356442 0.528929 -0.321866 0.524697 -0.308514 0.516425 -0.315213 0.500686 -0.335366 0.531349 -0.326385 0.513397 -0.268703 0.451074 -0.287648 0.474341 -0.265880 0.481286 -0.303293 0.489456 -0.290864 0.498459 -0.485898 0.458609 -0.444074 0.440495 -0.419681 0.424178 -0.430878 0.432041 -0.408078 0.416062 -0.395997 0.407126 -0.382921 0.398237 -0.365121 0.387414 -0.344535 0.376076 -0.320155 0.357473 -0.295287 0.358537 -0.301199 0.328825 -0.220767 0.670846 -0.192127 0.653312 -0.253814 0.685464 -0.246224 0.650557 -0.291994 0.697814 -0.280581 0.663936 -0.327527 0.707521 -0.315121 0.676785 -0.365810 0.714936 -0.349279 0.683168 -0.399012 0.719751 -0.382753 0.686566 -0.466434 0.563711 -0.433097 0.726654 -0.443840 0.688309 -0.412646 0.687176 -0.421975 0.373969 -0.427904 0.356928 -0.426978 0.377161 -0.430029 0.396515 -0.422645 0.386878 -0.439711 0.348882 -0.441996 0.357761 -0.438913 0.344931 -0.451188 0.378857 -0.446183 0.389232 -0.451060 0.400720 -0.441835 0.396898 -0.437736 0.400668 -0.473167 0.363311 -0.475621 0.365941 -0.467109 0.366473 -0.476761 0.344413 -0.481920 0.347148 -0.473856 0.350860 -0.466602 0.349291 -0.463218 0.349698 -0.463975 0.342952 -0.469933 0.349484 -0.469920 0.343263 -0.461009 0.350402 -0.459250 0.345524 -0.455824 0.349800 -0.476460 0.362063 -0.479918 0.363546 -0.482562 0.364495 -0.466082 0.368311 -0.487162 0.344688 -0.331178 0.475309 -0.333710 0.477276 -0.330418 0.480134 -0.327428 0.478530 -0.323358 0.475112 -0.317061 0.471851 -0.331954 0.480316 -0.330688 0.481218 -0.335868 0.471883 -0.332309 0.467266 -0.322314 0.465324 -0.327468 0.471080 -0.336503 0.454576 -0.328301 0.460694 -0.263911 0.328583 -0.295521 0.254994 -0.307146 0.216230 -0.292563 0.294268 -0.154831 0.562011 -0.180009 0.581490 -0.474643 0.660802 -0.207284 0.599693 -0.237269 0.616608 -0.271125 0.632813 -0.303817 0.644594 -0.334631 0.652073 -0.367224 0.657224 -0.396637 0.659760 -0.450103 0.661298 -0.424383 0.660788 -0.210113 0.481857 -0.180719 0.457649 -0.212034 0.453703 -0.423748 0.489344 -0.422704 0.487333 -0.419581 0.471138 -0.419970 0.475595 -0.429428 0.486945 -0.422362 0.484085 -0.421522 0.478845 -0.419894 0.477171 -0.410989 0.473969 -0.432943 0.484953 -0.431991 0.490855 -0.419896 0.462367 -0.419911 0.468201 -0.422939 0.472499 -0.422824 0.477358 -0.423678 0.471086 -0.427525 0.473573 -0.425390 0.467585 -0.431155 0.473365 -0.476626 0.408496 -0.474879 0.418185 -0.470942 0.437849 -0.472421 0.428758 -0.478725 0.389069 -0.479366 0.398067 -0.489350 0.398714 -0.482152 0.376967 -0.470646 0.454342 -0.490895 0.387906 -0.492479 0.377823 -0.493829 0.326093 -0.493933 0.315745 -0.491761 0.337211 -0.492450 0.342605 -0.493796 0.307765 -0.492520 0.363676 -0.428261 0.527417 -0.441521 0.518120 -0.450079 0.532340 -0.484656 0.508065 -0.484395 0.491848 -0.469961 0.509108 -0.471513 0.489058 -0.458932 0.497381 -0.466983 0.528517 -0.484673 0.526894 -0.454153 0.510436 -0.431542 0.443283 -0.430114 0.452893 -0.419336 0.446044 -0.408566 0.439887 -0.407424 0.428129 -0.419312 0.435637 -0.396897 0.434345 -0.395770 0.421094 -0.384095 0.428346 -0.383501 0.414423 -0.370373 0.422337 -0.367950 0.407564 -0.354713 0.418780 -0.336281 0.416755 -0.329835 0.393807 -0.349651 0.399199 -0.485002 0.476771 -0.456283 0.450325 -0.456133 0.463091 -0.443098 0.451429 -0.318019 0.417425 -0.308178 0.390778 -0.251072 0.392390 -0.243939 0.361231 -0.269718 0.358110 -0.281108 0.390425 -0.297053 0.419287 -0.273137 0.421841 -0.441718 0.463016 -0.470799 0.470287 -0.455507 0.480038 -0.263089 0.773320 -0.228527 0.757188 -0.263189 0.727399 -0.145590 0.698778 -0.122015 0.680181 -0.143505 0.651124 -0.198461 0.736935 -0.173357 0.714309 -0.199561 0.690978 -0.170038 0.672869 -0.098064 0.657368 -0.121005 0.628115 -0.227291 0.707860 -0.298705 0.739316 -0.339483 0.749491 -0.381481 0.759227 -0.304983 0.792887 -0.355672 0.809667 -0.451731 0.825775 -0.423329 0.765753 -0.462204 0.768035 -0.404323 0.820314 -0.093340 0.601970 -0.115743 0.582429 -0.073552 0.628084 -0.111751 0.543500 -0.129851 0.536319 -0.037661 0.536788 -0.016066 0.548272 -0.011070 0.525683 -0.058110 0.487494 -0.069921 0.469397 -0.091309 0.488224 -0.056546 0.523029 -0.024883 0.519849 -0.075168 0.507063 -0.046805 0.505099 -0.102562 0.465115 -0.051629 0.557098 -0.025872 0.577126 -0.114088 0.510362 -0.139903 0.491100 -0.090346 0.526424 -0.072632 0.542857 -0.047043 0.599906 -0.074000 0.578136 -0.094305 0.562354 -0.415893 0.320947 -0.380460 0.284332 -0.404283 0.218051 -0.390343 0.239207 -0.482984 0.202272 -0.446573 0.202330 -0.426956 0.207192 -0.383722 0.255167 -0.376879 0.268713 -0.401115 0.333934 -0.465466 0.201023 -0.385450 0.301801 -0.391436 0.318876 -0.409353 0.346322 -0.420029 0.334482 -0.446409 0.301144 -0.438835 0.319807 -0.437039 0.336401 -0.460890 0.318078 -0.460769 0.341154 -0.457818 0.329927 -0.462615 0.304638 -0.452963 0.346000 -0.450732 0.352085 -0.460554 0.363755 -0.464482 0.360496 -0.467869 0.363447 -0.457155 0.370974 -0.458685 0.366207 -0.478555 0.353015 -0.483267 0.352895 -0.486993 0.354927 -0.493623 0.352355 -0.452679 0.361824 -0.454095 0.359367 -0.458386 0.352219 -0.448978 0.365327 -0.459425 0.355977 -0.452541 0.040747 -0.403912 0.061768 -0.364003 0.082805 -0.284835 0.184218 -0.305434 0.146434 -0.261376 0.296403 -0.261666 0.260337 -0.271149 0.221668 -0.235291 0.332878 -0.244656 0.424853 -0.217177 0.366235 -0.207686 0.338018 -0.222571 0.397497 -0.241544 0.453416 -0.190061 0.380647 -0.217857 0.426661 -0.171787 0.404360 -0.189079 0.428507 -0.155846 0.430274 -0.197357 0.404790 -0.177032 0.550849 -0.203186 0.569755 -0.232415 0.588326 -0.260839 0.602984 -0.476928 0.637912 -0.380321 0.636216 -0.292145 0.616838 -0.321438 0.626641 -0.351421 0.634046 -0.406708 0.638043 -0.430932 0.638660 -0.453897 0.637986 -0.199067 0.544319 -0.479855 0.618316 -0.413519 0.620562 -0.254460 0.576908 -0.364909 0.618605 -0.389041 0.619246 -0.336356 0.612228 -0.281987 0.591222 -0.309492 0.603770 -0.436349 0.619752 -0.457926 0.618581 -0.226048 0.561730 -0.151969 0.529498 -0.172715 0.521753 -0.483479 0.580725 -0.445515 0.582271 -0.425486 0.585845 -0.265333 0.543359 -0.241119 0.529215 -0.213382 0.510164 -0.062104 0.272307 -0.055942 0.254724 -0.403670 0.587547 -0.382804 0.587839 -0.290266 0.556591 -0.334911 0.579035 -0.312252 0.570480 -0.357811 0.586235 -0.465648 0.581255 -0.482653 0.599011 -0.419937 0.602831 -0.440902 0.601617 -0.220510 0.537519 -0.246503 0.552259 -0.273246 0.565992 -0.298802 0.581315 -0.373140 0.602219 -0.397706 0.602943 -0.348280 0.599777 -0.323377 0.591774 -0.463113 0.599526 -0.195070 0.516258 -0.066674 0.371868 -0.061390 0.349519 -0.084096 0.341219 -0.091980 0.375530 -0.107364 0.396506 -0.078099 0.404392 -0.112108 0.434640 -0.079076 0.441675 -0.078898 0.321614 -0.067452 0.292166 -0.146822 0.459714 -0.175749 0.486854 -0.391433 0.523511 -0.374269 0.522114 -0.342373 0.509707 -0.331372 0.501578 -0.424157 0.515951 -0.443723 0.478902 -0.446309 0.489115 -0.319468 0.493131 -0.357913 0.434489 -0.409041 0.450669 -0.372873 0.437816 -0.386591 0.441402 -0.398722 0.446005 -0.310533 0.484287 -0.303995 0.473730 -0.296659 0.451170 -0.409130 0.522594 -0.374798 0.532828 -0.356138 0.516945 -0.339344 0.520893 -0.313962 0.442444 -0.342226 0.435093 -0.326612 0.438303 -0.419488 0.455328 -0.443726 0.498573 -0.427293 0.462068 -0.437258 0.470278 -0.435210 0.508470 -0.427321 0.499932 -0.059568 0.329049 -0.166268 0.157572 -0.116920 0.191315 -0.109702 0.175120 -0.434034 0.126357 -0.438196 0.109578 -0.452706 0.111924 -0.285453 0.114311 -0.166039 0.139397 -0.221026 0.132512 -0.479157 0.128611 -0.478723 0.110273 -0.076214 0.223635 -0.366674 0.110440 -0.397720 0.109572 -0.424501 0.110299 -0.428642 0.095387 -0.067896 0.216329 -0.332190 0.112754 -0.047503 0.255573 -0.043636 0.304349 -0.029654 0.285735 -0.030802 0.251384 -0.008904 0.281884 -0.491285 0.300976 -0.490687 0.294199 -0.479689 0.300705 -0.479868 0.293497 -0.440057 0.287833 -0.441096 0.283370 -0.452575 0.285983 -0.425392 0.282222 -0.427765 0.278170 -0.412328 0.274977 -0.414555 0.273002 -0.410792 0.267449 -0.408652 0.270325 -0.407318 0.265082 -0.410254 0.264362 -0.487832 0.244541 -0.461053 0.243142 -0.461819 0.247338 -0.449129 0.250591 -0.434865 0.252709 -0.433333 0.250709 -0.447584 0.246278 -0.421373 0.254743 -0.422248 0.256270 -0.413887 0.261125 -0.412123 0.260794 -0.487103 0.239730 -0.474926 0.245363 -0.474082 0.240797 -0.464309 0.295459 -0.465866 0.289603 -0.451268 0.290957 -0.467378 0.282645 -0.479557 0.284657 -0.489974 0.285167 -0.455788 0.279515 -0.443269 0.277059 -0.430183 0.274572 -0.417456 0.269773 -0.415252 0.267121 -0.413639 0.263536 -0.462058 0.252044 -0.449841 0.253750 -0.436706 0.255551 -0.422399 0.257964 -0.487551 0.250507 -0.474627 0.250872 -0.000885 0.509996 -0.020468 0.507113 -0.035671 0.492460 -0.054285 0.400485 -0.052195 0.371722 -0.049868 0.344071 -0.051572 0.425210 -0.045961 0.472326 -0.048695 0.451295 -0.045551 0.327455 -0.021093 0.297303 -0.385609 0.498757 -0.398016 0.496739 -0.372803 0.497566 -0.356088 0.492534 -0.343123 0.489923 -0.333523 0.485859 -0.409734 0.493685 -0.415590 0.488494 -0.348770 0.476192 -0.341172 0.478310 -0.405264 0.474689 -0.359434 0.473662 -0.394315 0.472654 -0.371581 0.472585 -0.382412 0.471872 -0.420584 0.480172 -0.419308 0.479141 -0.420786 0.480965 -0.422596 0.482557 -0.330912 0.481629 -0.330799 0.482758 -0.336066 0.479164 -0.331879 0.481021 -0.419817 0.483692 -0.418728 0.478763 -0.411062 0.476269 -0.420385 0.482451 -0.332270 0.483537 -0.038779 0.310125 -0.001344 0.296357 -0.356755 0.951277 -0.359171 0.976724 -0.359171 0.991079 -0.359171 0.961302 -0.359171 0.946160 -0.359171 0.931192 -0.359171 0.917589 -0.362962 0.991079 -0.362962 0.976724 -0.379000 0.976724 -0.379000 0.991079 -0.401807 0.976724 -0.401807 0.991079 -0.422294 0.961302 -0.422294 0.946160 -0.444855 0.946160 -0.444855 0.961302 -0.537398 0.961302 -0.537398 0.946160 -0.555342 0.946160 -0.555342 0.961302 -0.480919 0.946160 -0.480919 0.931192 -0.500099 0.931192 -0.500099 0.946160 -0.444855 0.931192 -0.444855 0.917589 -0.462800 0.917589 -0.462800 0.931192 -0.444855 0.976724 -0.462800 0.961302 -0.462800 0.976724 -0.621198 0.976724 -0.621198 0.961302 -0.637236 0.961302 -0.637236 0.976724 -0.362962 0.946160 -0.362962 0.961302 -0.379000 0.961302 -0.379000 0.946160 -0.401807 0.946160 -0.401807 0.961302 -0.379000 0.931192 -0.401807 0.931192 -0.598391 0.946160 -0.598391 0.931192 -0.621198 0.931192 -0.621198 0.946160 -0.577904 0.931192 -0.577904 0.917589 -0.598391 0.917589 -0.519279 0.946160 -0.519279 0.931192 -0.537398 0.931192 -0.537398 0.991079 -0.537398 0.976724 -0.555342 0.976724 -0.555342 0.991079 -0.422294 0.976724 -0.500099 0.976724 -0.500099 0.961302 -0.519279 0.961302 -0.519279 0.976724 -0.362962 0.931192 -0.637236 0.931192 -0.637236 0.946160 -0.362962 0.917589 -0.379000 0.917589 -0.422294 0.931192 -0.401807 0.917589 -0.577904 0.991079 -0.577904 0.976724 -0.598391 0.976724 -0.598391 0.991079 -0.577904 0.946160 -0.577904 0.961302 -0.641026 0.946160 -0.641026 0.961302 -0.462800 0.991079 -0.480919 0.976724 -0.480919 0.991079 -0.598391 0.961302 -0.480919 0.961302 -0.462800 0.946160 -0.480919 0.917589 -0.500099 0.917589 -0.555342 0.931192 -0.555342 0.917589 -0.641026 0.976724 -0.537398 0.917589 -0.519279 0.917589 -0.500099 0.991079 -0.519279 0.991079 -0.621198 0.991079 -0.637236 0.991079 -0.637236 0.917589 -0.641026 0.917589 -0.641026 0.931192 -0.621198 0.917589 -0.422294 0.991079 -0.444855 0.991079 -0.422294 0.917589 -0.641026 0.991079 -0.643443 0.951277 -0.817666 0.822298 -0.821579 0.812610 -0.824608 0.818206 -0.855094 0.789021 -0.851264 0.792758 -0.852297 0.789487 -0.857628 0.790684 -0.860955 0.797402 -0.856550 0.794367 -0.851248 0.790268 -0.849301 0.791547 -0.853982 0.794013 -0.846740 0.789527 -0.848212 0.788090 -0.821416 0.803677 -0.822322 0.809807 -0.826782 0.815170 -0.877666 0.816012 -0.876498 0.803359 -0.882782 0.804787 -0.842151 0.809971 -0.844745 0.804095 -0.846736 0.809089 -0.838577 0.804457 -0.841757 0.804603 -0.863269 0.799851 -0.863265 0.793395 -0.867340 0.796297 -0.843286 0.812594 -0.837491 0.809960 -0.846451 0.811768 -0.841763 0.800229 -0.844791 0.800892 -0.839880 0.799066 -0.836304 0.803927 -0.836422 0.799591 -0.835622 0.790695 -0.833615 0.794143 -0.832529 0.793835 -0.841574 0.793137 -0.839279 0.789185 -0.841777 0.790332 -0.836355 0.792516 -0.839096 0.792320 -0.844173 0.793093 -0.853504 0.842819 -0.843407 0.831325 -0.850076 0.831879 -0.824669 0.830669 -0.829569 0.824314 -0.835596 0.838275 -0.835650 0.828814 -0.831035 0.819649 -0.834350 0.808810 -0.831575 0.807785 -0.832720 0.806403 -0.834098 0.803244 -0.837069 0.823254 -0.833930 0.810695 -0.838003 0.813276 -0.844410 0.787274 -0.846965 0.787114 -0.849793 0.785365 -0.849853 0.783849 -0.851812 0.783215 -0.827042 0.789308 -0.821025 0.793658 -0.823300 0.785285 -0.820232 0.802917 -0.824316 0.793591 -0.831117 0.800188 -0.830748 0.797918 -0.832139 0.796686 -0.830566 0.802227 -0.834946 0.798133 -0.844462 0.797922 -0.842010 0.798084 -0.837557 0.796810 -0.835734 0.795629 -0.840736 0.795459 -0.837664 0.794418 -0.842050 0.796338 -0.840118 0.797330 -0.836492 0.794397 -0.849184 0.802300 -0.850620 0.807021 -0.851993 0.808940 -0.845872 0.795845 -0.843433 0.794172 -0.846533 0.797448 -0.848089 0.800330 -0.843529 0.842122 -0.843149 0.824122 -0.864025 0.839185 -0.859495 0.829240 -0.856187 0.821324 -0.848912 0.823423 -0.851943 0.781151 -0.845372 0.779693 -0.850539 0.778266 -0.846562 0.782852 -0.842934 0.785656 -0.843084 0.784974 -0.846125 0.785938 -0.879215 0.793903 -0.884710 0.793625 -0.857873 0.786675 -0.864368 0.787573 -0.869118 0.788650 -0.853159 0.786250 -0.851634 0.786296 -0.854114 0.780699 -0.826997 0.799176 -0.827801 0.803678 -0.828932 0.810007 -0.867252 0.804903 -0.871360 0.798813 -0.848592 0.816452 -0.842769 0.817485 -0.833881 0.814383 -0.837337 0.817305 -0.854304 0.813857 -0.874927 0.791541 -0.834386 0.789428 -0.829229 0.793959 -0.859654 0.782243 -0.863455 0.781991 -0.870063 0.782222 -0.856614 0.778994 -0.855363 0.786565 -0.855537 0.783379 -0.854544 0.785746 -0.824536 0.808136 -0.822600 0.802094 -0.871642 0.811142 -0.830920 0.788756 -0.825335 0.793610 -0.846885 0.793763 -0.849554 0.795748 -0.856343 0.802738 -0.853335 0.800279 -0.851861 0.797370 -0.858251 0.805448 -0.844676 0.790608 -0.843100 0.788227 -0.839663 0.786325 -0.865002 0.817400 -0.861245 0.810086 -0.868924 0.825366 -0.883066 0.784055 -0.878072 0.780706 -0.877299 0.776055 -0.879135 0.786626 -0.874144 0.832564 -0.883016 0.822113 -0.891805 0.807289 -0.890027 0.791548 -0.876684 0.784481 -0.874448 0.778472 -0.870873 0.772700 -0.854991 0.769618 -0.848264 0.775484 -0.844415 0.770153 -0.857268 0.776121 -0.865536 0.775871 -0.864881 0.770451 -0.828201 0.779529 -0.834273 0.784233 -0.840606 0.779918 -0.836233 0.774030 -0.946680 0.719178 -0.957155 0.694453 -0.959045 0.697699 -0.971157 0.683679 -0.969486 0.679035 -0.983500 0.668846 -0.831147 0.853474 -0.844444 0.857787 -0.869042 0.851831 -0.857771 0.857323 -0.978822 0.682467 -0.978077 0.698441 -0.968051 0.696654 -0.986656 0.671291 -0.986736 0.685712 -0.993040 0.675875 -0.911941 0.776454 -0.918277 0.757044 -0.923704 0.758085 -0.892055 0.969523 -0.863077 0.963159 -0.885714 0.953560 -0.867982 0.979374 -0.836951 0.970531 -0.809239 0.990549 -0.839959 0.986757 -0.904865 0.942758 -0.855774 0.931777 -0.880917 0.938148 -0.858667 0.947725 -0.834558 0.953421 -0.809473 0.938132 -0.808657 0.956450 -0.875849 0.923121 -0.897957 0.925804 -0.941643 0.847414 -0.944439 0.869606 -0.936302 0.850899 -0.923182 0.773232 -0.935400 0.770993 -0.925178 0.789303 -0.934117 0.757831 -0.943586 0.756820 -0.937421 0.786409 -0.929904 0.804052 -0.944061 0.766702 -0.941897 0.781148 -0.937915 0.796356 -0.950849 0.745512 -0.947823 0.742116 -0.956725 0.733755 -0.950090 0.729712 -0.947449 0.753433 -0.959297 0.711093 -0.972184 0.707350 -0.964385 0.720836 -0.937569 0.717872 -0.933422 0.742222 -0.925073 0.739835 -0.978293 0.921315 -0.960201 0.910282 -0.971958 0.908372 -0.831097 0.894133 -0.813359 0.872351 -0.831096 0.872858 -0.848788 0.893095 -0.846487 0.872934 -0.875156 0.866951 -0.861798 0.873408 -0.865811 0.889407 -0.879906 0.880627 -0.935849 0.820340 -0.929849 0.833157 -0.924275 0.816388 -0.965161 0.886346 -0.694288 0.906708 -0.660524 0.899257 -0.673209 0.886561 -0.725393 0.870279 -0.719405 0.847945 -0.733101 0.857162 -0.717936 0.880422 -0.708916 0.856884 -0.736368 0.893056 -0.741803 0.880459 -0.715734 0.925510 -0.705925 0.894433 -0.725963 0.911231 -0.687652 0.874430 -0.699478 0.864645 -0.704828 0.940785 -0.694748 0.958445 -0.679595 0.924933 -0.644718 0.914935 -0.668559 0.938115 -0.807527 0.827713 -0.814916 0.843025 -0.730411 0.815670 -0.723540 0.826629 -0.717977 0.815202 -0.741310 0.828782 -0.741685 0.815370 -0.753910 0.828913 -0.871143 0.907423 -0.886765 0.896819 -0.891939 0.910818 -0.725920 0.840404 -0.739159 0.844441 -0.729981 0.829355 -0.752383 0.847718 -0.813045 0.894950 -0.831608 0.916116 -0.811700 0.915850 -0.832817 0.935412 -0.852497 0.914579 -0.749429 0.864492 -0.737501 0.937644 -0.745865 0.922290 -0.729239 0.953662 -0.753970 0.814742 -0.767980 0.829534 -0.766106 0.848394 -0.754761 0.904361 -0.760129 0.888157 -0.764221 0.868401 -0.720142 0.972454 -0.805813 0.814036 -0.789057 0.937045 -0.785813 0.954462 -0.797087 0.872502 -0.795091 0.893260 -0.796920 0.847964 -0.797243 0.829265 -0.792019 0.914371 -0.793877 0.815691 -0.808579 0.973366 -0.781878 0.971279 -0.779570 0.989411 -0.759080 0.947338 -0.764806 0.930997 -0.753158 0.964099 -0.777024 0.890881 -0.779355 0.871114 -0.781247 0.848507 -0.782888 0.830434 -0.771934 0.910830 -0.767786 0.813763 -0.781829 0.814319 -0.748558 0.983025 -0.933035 0.861326 -0.930023 0.884175 -0.924412 0.872594 -0.918772 0.857995 -0.918683 0.829742 -0.925653 0.846208 -0.921610 0.893075 -0.938587 0.875329 -0.915954 0.882793 -0.910155 0.870244 -0.639167 0.881126 -0.625803 0.892469 -0.706125 0.836830 -0.695180 0.842546 -0.707129 0.818584 -0.717239 0.831725 -0.609017 0.871229 -0.621798 0.860690 -0.694441 0.822306 -0.681138 0.825870 -0.684353 0.848641 -0.655872 0.867864 -0.649648 0.841392 -0.670031 0.857669 -0.635062 0.850823 -0.666187 0.832486 -0.905144 0.896265 -0.912955 0.914954 -0.886440 0.856003 -0.896172 0.844610 -0.893660 0.869942 -0.903030 0.856658 -0.899957 0.883032 -0.911427 0.843433 -0.901093 0.793035 -0.899770 0.783929 -0.919616 0.803309 -0.912501 0.816728 -0.898208 0.817541 -0.914484 0.788346 -0.906997 0.805071 -0.889675 0.831395 -0.879918 0.843689 -0.904716 0.829958 -0.952064 0.889361 -0.951511 0.867894 -0.920833 0.932328 -0.938105 0.899039 -0.945389 0.893674 -0.928204 0.906339 -0.912232 0.958083 -0.945408 0.917460 -0.961554 0.928117 -0.952401 0.932800 -0.968274 0.925098 -0.952834 0.913405 -0.935296 0.923125 -0.942779 0.938376 -0.929432 0.946987 -0.952822 0.845201 -0.945415 0.846134 -0.944264 0.799009 -0.940332 0.819472 -0.948973 0.820540 -0.957607 0.865846 -0.814685 0.812287 -0.981006 0.666546 -0.908525 0.770726 -0.182334 0.822298 -0.175392 0.818207 -0.178421 0.812610 -0.144906 0.789021 -0.147703 0.789487 -0.148736 0.792758 -0.142372 0.790684 -0.143450 0.794367 -0.139045 0.797402 -0.148752 0.790268 -0.150699 0.791547 -0.146018 0.794013 -0.151788 0.788090 -0.153260 0.789527 -0.177678 0.809807 -0.178584 0.803677 -0.173218 0.815170 -0.122334 0.816012 -0.117218 0.804787 -0.123501 0.803359 -0.157849 0.809971 -0.153264 0.809089 -0.155255 0.804095 -0.158243 0.804603 -0.161423 0.804457 -0.136731 0.799852 -0.132660 0.796297 -0.136735 0.793394 -0.156714 0.812594 -0.162509 0.809960 -0.153549 0.811768 -0.155209 0.800892 -0.158237 0.800229 -0.160119 0.799066 -0.163578 0.799591 -0.163696 0.803927 -0.164378 0.790695 -0.167470 0.793835 -0.166385 0.794143 -0.158426 0.793137 -0.158222 0.790332 -0.160721 0.789185 -0.163645 0.792516 -0.160904 0.792320 -0.155827 0.793093 -0.146496 0.842819 -0.149924 0.831879 -0.156593 0.831325 -0.175331 0.830669 -0.170431 0.824314 -0.164404 0.838275 -0.164350 0.828814 -0.168965 0.819649 -0.165649 0.808810 -0.167280 0.806403 -0.168425 0.807785 -0.165902 0.803244 -0.162931 0.823254 -0.166070 0.810695 -0.161997 0.813276 -0.153035 0.787114 -0.155590 0.787274 -0.150207 0.785365 -0.148188 0.783215 -0.150147 0.783849 -0.172958 0.789308 -0.176700 0.785285 -0.178975 0.793658 -0.179768 0.802917 -0.175684 0.793591 -0.168883 0.800188 -0.167861 0.796686 -0.169252 0.797918 -0.169434 0.802227 -0.165054 0.798133 -0.155538 0.797922 -0.157990 0.798084 -0.162443 0.796810 -0.164265 0.795629 -0.162336 0.794418 -0.159264 0.795459 -0.157950 0.796338 -0.159882 0.797330 -0.163508 0.794397 -0.149380 0.807021 -0.150816 0.802300 -0.148007 0.808940 -0.154128 0.795845 -0.156567 0.794172 -0.153467 0.797448 -0.151911 0.800330 -0.156471 0.842122 -0.156851 0.824122 -0.135975 0.839185 -0.140505 0.829240 -0.143813 0.821324 -0.151088 0.823423 -0.148057 0.781151 -0.149461 0.778266 -0.154628 0.779693 -0.153438 0.782852 -0.156916 0.784974 -0.157066 0.785656 -0.153875 0.785938 -0.115290 0.793625 -0.120784 0.793903 -0.142127 0.786675 -0.135632 0.787573 -0.130882 0.788650 -0.146841 0.786250 -0.148366 0.786296 -0.145886 0.780699 -0.173003 0.799176 -0.172199 0.803678 -0.171068 0.810007 -0.132748 0.804903 -0.128640 0.798813 -0.157231 0.817485 -0.151408 0.816452 -0.166119 0.814383 -0.162663 0.817305 -0.145696 0.813857 -0.125073 0.791541 -0.165614 0.789428 -0.170771 0.793959 -0.136545 0.781992 -0.140346 0.782243 -0.129937 0.782222 -0.143386 0.778994 -0.144637 0.786565 -0.144463 0.783379 -0.145456 0.785746 -0.177400 0.802094 -0.175464 0.808136 -0.128358 0.811142 -0.169080 0.788757 -0.174665 0.793610 -0.153115 0.793763 -0.150446 0.795748 -0.146665 0.800279 -0.143657 0.802738 -0.148139 0.797370 -0.141749 0.805448 -0.155324 0.790608 -0.156900 0.788227 -0.160337 0.786325 -0.134998 0.817400 -0.138755 0.810086 -0.131075 0.825366 -0.116934 0.784055 -0.122701 0.776055 -0.121928 0.780706 -0.120865 0.786626 -0.125856 0.832564 -0.116984 0.822112 -0.108195 0.807289 -0.109973 0.791548 -0.123316 0.784481 -0.129127 0.772700 -0.125552 0.778472 -0.145009 0.769618 -0.155585 0.770153 -0.151736 0.775484 -0.142732 0.776121 -0.134464 0.775871 -0.135119 0.770451 -0.165727 0.784233 -0.171799 0.779529 -0.159394 0.779918 -0.163767 0.774030 -0.053320 0.719178 -0.040955 0.697699 -0.042844 0.694453 -0.028843 0.683679 -0.030514 0.679035 -0.016500 0.668846 -0.168853 0.853474 -0.155556 0.857787 -0.130958 0.851831 -0.142229 0.857323 -0.021178 0.682467 -0.031949 0.696654 -0.021923 0.698441 -0.013344 0.671291 -0.013264 0.685712 -0.006960 0.675875 -0.088059 0.776454 -0.076296 0.758085 -0.081723 0.757044 -0.107944 0.969523 -0.114286 0.953560 -0.136923 0.963159 -0.132018 0.979374 -0.163049 0.970531 -0.190761 0.990549 -0.160041 0.986757 -0.095135 0.942758 -0.144226 0.931777 -0.141333 0.947725 -0.119083 0.938148 -0.165442 0.953421 -0.190527 0.938132 -0.191343 0.956450 -0.124151 0.923121 -0.102043 0.925804 -0.058357 0.847414 -0.063698 0.850899 -0.055561 0.869606 -0.076818 0.773232 -0.074821 0.789303 -0.064600 0.770993 -0.065883 0.757831 -0.056414 0.756820 -0.070096 0.804052 -0.062579 0.786409 -0.055939 0.766702 -0.062085 0.796356 -0.058103 0.781148 -0.049151 0.745512 -0.043275 0.733755 -0.052177 0.742116 -0.049910 0.729712 -0.052551 0.753433 -0.040703 0.711093 -0.027816 0.707350 -0.035615 0.720836 -0.062431 0.717872 -0.074927 0.739835 -0.066578 0.742222 -0.021707 0.921315 -0.028042 0.908372 -0.039798 0.910282 -0.168903 0.894133 -0.168904 0.872858 -0.186641 0.872351 -0.151212 0.893095 -0.153513 0.872934 -0.138202 0.873408 -0.124844 0.866951 -0.134189 0.889407 -0.120094 0.880627 -0.064151 0.820341 -0.070151 0.833157 -0.075725 0.816388 -0.034839 0.886346 -0.305712 0.906708 -0.326791 0.886561 -0.339476 0.899257 -0.274607 0.870279 -0.266899 0.857162 -0.280595 0.847945 -0.282064 0.880422 -0.291084 0.856884 -0.263632 0.893055 -0.258197 0.880459 -0.284266 0.925510 -0.274036 0.911231 -0.294075 0.894433 -0.312348 0.874430 -0.300522 0.864645 -0.295171 0.940785 -0.305252 0.958445 -0.320405 0.924933 -0.355282 0.914935 -0.331441 0.938115 -0.192473 0.827713 -0.185084 0.843025 -0.269589 0.815670 -0.282023 0.815202 -0.276460 0.826629 -0.258690 0.828782 -0.258315 0.815370 -0.246090 0.828913 -0.128857 0.907423 -0.113235 0.896819 -0.108061 0.910817 -0.260841 0.844441 -0.274080 0.840404 -0.270019 0.829355 -0.247617 0.847718 -0.186955 0.894950 -0.188300 0.915850 -0.168393 0.916116 -0.167183 0.935412 -0.147503 0.914579 -0.250571 0.864492 -0.262499 0.937644 -0.254135 0.922290 -0.270761 0.953662 -0.246030 0.814742 -0.232020 0.829534 -0.233894 0.848394 -0.245239 0.904362 -0.239871 0.888157 -0.235779 0.868401 -0.279858 0.972454 -0.194187 0.814036 -0.210943 0.937045 -0.214187 0.954462 -0.202913 0.872503 -0.204909 0.893260 -0.203080 0.847964 -0.202757 0.829265 -0.207981 0.914371 -0.206123 0.815691 -0.218122 0.971279 -0.191420 0.973366 -0.220430 0.989411 -0.240920 0.947338 -0.235194 0.930997 -0.246842 0.964099 -0.222976 0.890881 -0.220645 0.871114 -0.218753 0.848507 -0.217112 0.830434 -0.228066 0.910830 -0.218171 0.814319 -0.232214 0.813763 -0.251442 0.983025 -0.066965 0.861326 -0.075588 0.872594 -0.069977 0.884175 -0.081228 0.857995 -0.074347 0.846208 -0.081317 0.829742 -0.078390 0.893075 -0.061413 0.875329 -0.089845 0.870244 -0.084046 0.882793 -0.360833 0.881126 -0.374197 0.892469 -0.293875 0.836830 -0.304820 0.842546 -0.292871 0.818584 -0.282761 0.831725 -0.378202 0.860690 -0.390983 0.871229 -0.305559 0.822306 -0.318862 0.825870 -0.315647 0.848641 -0.344128 0.867864 -0.329969 0.857669 -0.350352 0.841392 -0.364938 0.850823 -0.333813 0.832486 -0.087045 0.914954 -0.094856 0.896265 -0.113561 0.856003 -0.103828 0.844610 -0.106340 0.869942 -0.096970 0.856658 -0.100043 0.883032 -0.088573 0.843433 -0.098907 0.793035 -0.100230 0.783929 -0.080384 0.803309 -0.087499 0.816728 -0.101792 0.817541 -0.085516 0.788346 -0.093003 0.805071 -0.110325 0.831395 -0.120082 0.843689 -0.095284 0.829958 -0.047936 0.889361 -0.048489 0.867894 -0.079167 0.932327 -0.061895 0.899039 -0.054611 0.893674 -0.071796 0.906339 -0.087768 0.958083 -0.054592 0.917460 -0.047599 0.932800 -0.038446 0.928117 -0.031726 0.925098 -0.047166 0.913405 -0.064704 0.923125 -0.057221 0.938376 -0.070568 0.946987 -0.047178 0.845201 -0.054585 0.846134 -0.055736 0.799009 -0.059668 0.819472 -0.051027 0.820540 -0.042393 0.865846 -0.185315 0.812287 -0.018994 0.666546 -0.091475 0.770726 diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/new_vertex_index.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/new_vertex_index.txt deleted file mode 100644 index cd5560c9..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/new_vertex_index.txt +++ /dev/null @@ -1 +0,0 @@ -14 15 16 17 1173 18 19 1174 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 1 0 38 39 40 41 42 43 44 45 46 47 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 1197 222 473 219 267 474 475 476 477 478 479 480 1198 481 1199 482 1200 483 484 485 486 487 488 489 490 1201 491 1202 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 1203 522 523 1204 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 1205 539 1206 1207 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 1208 623 1209 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 1210 673 674 675 676 677 678 679 680 681 1211 682 1212 683 684 685 686 687 1213 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 1214 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 1215 1216 1217 837 838 839 1218 840 841 1219 842 1220 1221 1222 843 1223 1224 844 845 846 847 1225 848 1226 849 850 851 852 1227 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 1228 872 2 873 874 875 876 877 878 879 880 881 882 883 884 885 886 370 887 369 304 888 308 366 889 306 890 326 891 892 893 894 895 376 373 3 368 1190 896 897 375 898 899 351 900 901 902 903 332 904 905 906 907 908 909 910 911 912 340 913 914 915 916 352 917 918 919 920 921 922 923 924 925 926 927 928 4 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 1229 951 952 953 954 955 956 5 957 958 959 960 961 962 963 964 1230 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 6 981 982 983 984 985 986 987 988 989 1231 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 7 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 8 1232 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 232 1074 1075 1076 1077 1078 269 1079 1080 1081 1082 1083 1084 9 1085 1086 1087 1088 1089 1090 1091 386 204 1092 10 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1233 1107 11 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1234 1121 1122 1123 1124 1125 1126 1127 12 1128 1129 1130 1131 1132 1235 1133 1134 1135 1136 1137 1138 116 49 114 210 208 213 217 115 214 207 197 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1171 1172 13 1236 199 153 1237 1240 1239 1238 1242 1241 1244 1243 1246 1245 1247 1250 1249 1248 1252 1251 1253 1254 1255 1258 1257 1256 1260 1259 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1627 1629 1628 1631 1630 1633 1632 1635 1634 1636 1637 1638 1640 1639 1641 1642 1643 1644 1645 1646 1647 1648 1649 1651 1650 1652 1653 1654 1655 1657 1656 1658 1660 1659 1661 1663 1662 1664 1666 1665 1667 1669 1668 1670 1671 1672 1673 1674 1676 1675 1677 1679 1678 1680 1681 1682 1683 1684 1685 1686 1687 1689 1688 1690 1691 1693 1692 1694 1695 1445 1696 1490 1442 1697 1698 1700 1699 1701 1703 1702 1704 1705 1706 1708 1707 1709 1711 1710 1712 1713 1714 1715 1716 1717 1718 1719 1720 1722 1721 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1734 1733 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1746 1745 1748 1747 1749 1751 1750 1752 1754 1753 1755 1756 1757 1758 1759 1760 1761 1762 1763 1765 1764 1766 1767 1768 1770 1769 1771 1772 1774 1773 1775 1776 1777 1779 1778 1780 1782 1781 1783 1784 1785 1786 1788 1787 1790 1789 1792 1791 1793 1794 1795 1796 1797 1798 1799 1800 1802 1801 1803 1804 1806 1805 1807 1808 1809 1811 1810 1812 1814 1813 1815 1816 1817 1818 1820 1819 1821 1823 1822 1824 1825 1826 1827 1828 1830 1829 1831 1832 1833 1834 1835 1836 1837 1838 1840 1839 1841 1842 1843 1844 1845 1846 1847 1848 1849 1851 1850 1852 1853 1855 1854 1856 1858 1857 1859 1861 1860 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1874 1873 1875 1876 1878 1877 1879 1880 1881 1882 1883 1885 1884 1887 1886 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1902 1901 1903 1904 1905 1906 1907 1908 1909 1910 1912 1911 1914 1913 1915 1917 1916 1918 1919 1921 1920 1922 1923 1924 1925 1926 1928 1927 1929 1931 1930 1932 1933 1934 1936 1935 1938 1937 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1950 1949 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1965 1964 1966 1967 1968 1969 1971 1970 1973 1972 1974 1975 1976 1977 1978 1979 1980 1982 1981 1983 1985 1984 1986 1988 1987 1989 1990 1992 1991 1993 1994 1995 1996 1997 1998 1999 2001 2000 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2015 2014 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2031 2030 2033 2032 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2061 2060 2062 2063 2064 2065 2066 2067 2068 2070 2069 2071 2072 2073 2074 2075 2076 2077 2078 2079 2081 2080 2082 2084 2083 2085 2086 2087 2088 2089 2090 2091 2092 2094 2093 2095 2096 2098 2097 2099 2100 2101 2103 2102 2104 2105 2106 2107 2108 2109 1593 1592 2110 1527 1531 2111 1589 1529 2112 2113 1549 2114 2115 2116 2117 2118 1599 1596 1591 2119 2120 1598 2121 2122 1574 2124 2123 2125 1555 2126 2127 2129 2128 2130 2131 2132 2133 2134 2135 1563 2136 2137 2138 2139 1575 2140 2141 2142 2143 2144 2145 2146 2148 2147 2150 2149 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2162 2161 2163 2164 2165 2166 2168 2167 2169 2170 2172 2171 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2184 2183 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2198 2197 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2211 2210 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2233 2232 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2256 2255 2257 2259 2258 2260 2261 2263 2262 2264 2265 2267 2266 2268 2269 2270 2271 2272 2273 2274 2275 2277 2276 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 1455 2298 2300 2299 2301 1492 2302 2304 2303 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 1609 1427 2315 2316 2317 2318 2319 2321 2320 2322 2323 2325 2324 2326 2327 2329 2328 2330 2331 2333 2332 2334 2336 2335 2337 2339 2338 2340 2341 2342 2343 2344 2345 2346 2347 2349 2348 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 1272 1339 1337 1433 1431 1436 1440 1338 1437 1430 1420 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2394 2395 1422 1376 1252 2396 1270 2413 2430 2447 1249 1268 2397 2398 1266 2399 1264 2417 2434 2435 2418 2423 2440 2441 2424 2437 2454 2455 2438 2452 1240 1254 2453 2401 2419 2402 2410 2427 2428 2411 2431 2414 2415 2432 2433 2416 2449 2450 2443 2460 2461 2444 2459 16 21 2439 2456 2457 34 2406 2407 35 2400 2404 2421 2422 2405 2448 2462 2445 1250 1246 2451 1244 39 2408 2409 41 2442 2425 2446 2429 1257 2403 1260 2426 2420 2436 1242 1174 2458 17 2412 31 19 0 37 43 45 27 26 2463 23 1262 1258 1239 47 29 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 1175 223 224 225 226 227 228 229 1176 230 1177 231 232 233 1178 234 235 1179 236 1180 1181 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 1182 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 1183 301 1184 1185 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 1186 332 333 334 335 336 337 338 339 340 341 342 1187 343 344 345 346 347 348 349 350 351 352 1188 353 354 355 356 357 358 359 360 361 362 363 1189 364 365 366 367 1190 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 1191 401 1193 1192 1194 402 403 1195 1196 1165 1166 1167 1168 1169 1170 903 1197 1087 1271 1273 1272 1274 1276 1275 1277 1279 1278 1280 1281 1282 1284 1283 1286 1285 1287 1288 1290 1289 1291 1293 1292 1295 1294 1296 1298 1297 1299 1300 1301 1303 1302 1304 1306 1305 1307 1309 1308 1310 1312 1311 1313 1314 1315 1316 1318 1317 1319 1320 1321 1322 1323 1324 1326 1325 1327 1328 1329 1330 1332 1331 1333 1335 1334 1336 1338 1337 1339 1340 1341 1343 1342 1344 1345 1346 1347 1348 1349 1351 1350 1352 1353 1354 1356 1355 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1370 1369 1371 1373 1372 1374 1376 1375 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1389 1388 1390 1391 1392 1393 1394 1395 1397 1396 1398 1399 1400 1401 1402 1404 1403 1405 1406 1407 1408 1409 1411 1410 1412 1413 1414 1415 1416 1417 1418 1419 1420 1422 1421 1423 1424 1425 1426 1427 1428 1430 1429 1431 1433 1432 1434 1435 1436 1438 1437 1439 1440 1441 1443 1442 1444 1445 1175 1446 1447 1448 1449 1450 1452 1451 1176 1453 1177 1454 1456 1455 1178 1458 1457 1179 1459 1180 1181 1460 1461 1463 1462 1464 1465 1466 1467 1468 1469 1471 1470 1472 1474 1473 1475 1476 1478 1477 1479 1481 1480 1482 1484 1483 1485 1486 1487 1488 1489 1490 1492 1491 1182 1494 1493 1495 1497 1496 1498 1499 1501 1500 1502 1503 1504 1505 1506 1507 1508 1510 1509 1511 1513 1512 1514 1515 1516 1517 1518 1520 1519 1521 1522 1523 1183 1524 1184 1185 1525 1526 1527 1529 1528 1530 1531 1532 1533 1534 1535 1537 1536 1538 1539 1540 1542 1541 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1186 1555 1556 1557 1558 1559 1560 1561 1562 1563 1565 1564 1187 1566 1567 1568 1569 1570 1571 1572 1573 1575 1574 1188 1576 1578 1577 1579 1581 1580 1582 1583 1585 1584 1586 1189 1587 1588 1589 1590 1591 1190 1592 1593 1594 1595 1597 1596 1598 1599 1601 1600 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1191 1624 1192 1193 1194 1625 1626 1195 1196 2388 2389 2390 2391 2392 2393 2126 1197 2310 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/new_vn.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/new_vn.txt deleted file mode 100644 index f5c5abce..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/new_vn.txt +++ /dev/null @@ -1,2816 +0,0 @@ -0.162472 0.986304 0.028405 -0.154680 0.987852 0.014917 --0.038965 0.999145 -0.013796 -0.156901 0.986472 0.047498 -0.089735 0.993810 0.065492 -0.042973 0.996080 0.077321 -0.196070 0.980459 0.016035 -0.162744 0.986616 0.010204 -0.015734 -0.987110 0.159271 -0.015637 -0.991212 0.131359 --0.031370 -0.990164 0.136353 --0.089505 -0.989939 0.109589 --0.123686 -0.990306 0.063216 --0.117728 -0.992038 0.044721 --0.136905 -0.990085 0.031451 --0.172863 -0.983868 0.046057 --0.320745 -0.946159 0.043657 --0.075015 -0.809235 -0.582676 --0.221289 -0.796095 -0.563262 --0.324334 -0.774208 -0.543517 --0.424902 -0.726626 -0.539883 --0.486107 -0.713655 -0.504377 --0.565844 -0.677094 -0.470494 --0.656225 -0.642338 -0.395943 --0.798103 -0.528951 -0.288517 --0.889771 -0.381354 -0.250754 --0.881712 0.397987 -0.253358 --0.881712 0.397987 -0.253358 --0.639939 0.724559 -0.255915 --0.485896 0.794330 -0.364616 --0.422829 0.791504 -0.441291 --0.370459 0.790906 -0.487061 --0.339261 0.776947 -0.530335 --0.249700 0.793807 -0.554545 --0.135890 0.804734 -0.577873 --0.951390 0.269794 0.148557 --0.932126 -0.329835 0.149499 --0.890137 -0.283542 0.356734 --0.912495 0.211581 0.350124 --0.951390 0.269794 0.148557 --0.912495 0.211581 0.350124 --0.780287 0.614722 0.115196 --0.761111 0.568104 0.312998 --0.619876 0.777625 0.105138 --0.560393 0.773789 0.295315 --0.472026 0.874874 0.108569 --0.434487 0.850467 0.296524 --0.334653 0.936127 0.108044 --0.316222 0.903253 0.290066 --0.292185 0.950078 0.109450 --0.251553 0.922664 0.292253 --0.248010 0.961871 0.115306 --0.206104 0.928553 0.308726 --0.148190 0.981673 0.119823 --0.124123 0.938588 0.321942 --0.026474 -0.994868 0.097657 --0.036026 -0.932223 0.360086 --0.125407 -0.986987 0.100643 --0.125858 -0.921675 0.366980 --0.235903 -0.966219 0.103780 --0.223062 -0.902721 0.367883 --0.380474 -0.918152 0.110618 --0.349490 -0.863568 0.363464 --0.462763 -0.878622 0.117790 --0.438072 -0.824087 0.359129 --0.601496 -0.789138 0.124356 --0.563130 -0.747387 0.352559 --0.850237 -0.508643 0.135569 --0.729412 -0.672097 0.127454 --0.686572 -0.641106 0.342930 --0.814465 -0.466793 0.344602 --0.456194 -0.848555 -0.268034 --0.457814 -0.882750 -0.105633 --0.577901 -0.778004 -0.246456 --0.597267 -0.796982 -0.089957 --0.700934 -0.681289 -0.211038 --0.727719 -0.682257 -0.070363 --0.831617 -0.527361 -0.174080 --0.847480 -0.528354 -0.051181 --0.919628 0.355189 -0.167705 --0.907498 -0.385801 -0.166146 --0.926083 -0.375185 -0.040078 --0.946404 0.321481 -0.031134 --0.919628 0.355189 -0.167705 --0.946404 0.321481 -0.031134 --0.712192 0.683903 -0.158303 --0.757017 0.651715 -0.046829 --0.572573 0.795522 -0.198256 --0.627528 0.775643 -0.067725 --0.451893 0.861442 -0.231754 --0.475048 0.875879 -0.084652 --0.336898 0.908514 -0.247187 --0.339890 0.935762 -0.093935 --0.293427 0.920130 -0.259349 --0.302759 0.947712 -0.100892 --0.234715 0.933210 -0.272081 --0.253662 0.961244 -0.108003 --0.135706 0.948896 -0.284923 --0.149663 0.982048 -0.114814 --0.048476 -0.956867 -0.286454 --0.031165 -0.991936 -0.122850 --0.152319 -0.945556 -0.287616 --0.129528 -0.983798 -0.123955 --0.374252 -0.884025 -0.280065 --0.255807 -0.924067 -0.284013 --0.236314 -0.964069 -0.121356 --0.375800 -0.919572 -0.114727 --0.445532 -0.637599 0.628466 --0.568940 -0.577793 0.585203 --0.721368 -0.420063 0.550614 --0.806465 0.222406 0.547860 --0.806412 -0.257693 0.532254 --0.806465 0.222406 0.547860 --0.504236 -0.062940 0.861269 --0.632095 0.541202 0.554577 --0.403891 -0.141395 0.903814 --0.453886 0.713397 0.533903 --0.327988 0.004754 0.944670 --0.345251 0.752369 0.561019 --0.259215 0.791735 0.553140 --0.182155 0.801519 0.569549 --0.134744 0.801824 0.582171 --0.079262 0.808829 0.582678 --0.041945 -0.709562 0.703394 --0.047558 0.092202 0.994604 --0.106818 -0.705593 0.700520 --0.100750 0.040080 0.994104 --0.171166 -0.702811 0.690478 --0.146725 -0.010634 0.989120 --0.335969 -0.676105 0.655749 --0.248746 -0.688379 0.681366 --0.199977 0.044901 0.978771 --0.262616 -0.006064 0.964881 --0.089505 -0.989939 0.109589 --0.424320 -0.628333 -0.652036 --0.123686 -0.990306 0.063216 --0.474740 -0.597590 -0.646149 --0.117728 -0.992038 0.044721 --0.493373 -0.612297 -0.617799 --0.136905 -0.990085 0.031451 --0.534593 -0.585229 -0.609686 --0.172863 -0.983868 0.046057 --0.595316 -0.620911 -0.509970 --0.038965 0.999145 -0.013796 --0.320745 -0.946159 0.043657 --0.795879 -0.425964 -0.430269 --0.649120 0.641233 -0.409223 --0.038965 0.999145 -0.013796 --0.649120 0.641233 -0.409223 -0.196070 0.980459 0.016035 --0.362380 0.814212 -0.453585 -0.162744 0.986616 0.010204 --0.317845 0.770800 -0.552126 -0.154680 0.987852 0.014917 --0.314476 0.742809 -0.591050 -0.162472 0.986304 0.028405 --0.347654 0.672307 -0.653559 -0.156901 0.986472 0.047498 --0.303234 0.687416 -0.659931 -0.089735 0.993810 0.065492 --0.218580 0.679272 -0.700580 -0.042973 0.996080 0.077321 --0.114450 0.690719 -0.714009 -0.015637 -0.991212 0.131359 --0.078638 -0.703713 -0.706119 --0.031370 -0.990164 0.136353 -0.015734 -0.987110 0.159271 --0.238694 -0.687876 -0.685457 --0.348123 -0.647984 -0.677441 -0.935273 0.123342 0.331738 -0.799439 -0.188494 0.570409 -0.795727 -0.401702 -0.453270 -0.969855 -0.143042 0.197282 -0.767335 0.239828 0.594710 -0.764413 -0.243793 -0.596856 -0.043431 0.961550 -0.271175 -0.985432 0.103510 0.134939 -0.981815 -0.146621 0.120591 -0.998475 0.052888 0.015861 -0.000000 -0.520411 0.853916 -0.811315 -0.579051 -0.080425 -0.909222 -0.043731 -0.414008 -0.248843 0.216018 -0.944147 -0.907212 0.379691 -0.181111 -0.999319 0.030978 -0.020038 -0.000000 0.536440 -0.843938 -0.325108 0.932899 0.154935 -0.000000 -0.185536 -0.982637 -0.554504 -0.261038 0.790180 --0.195764 0.154706 0.968371 -0.470195 0.202398 0.859041 -0.654390 -0.358020 0.666030 -0.831825 0.388190 0.396706 -0.840732 0.410469 0.353109 -0.673899 -0.390746 0.627039 -0.090335 0.506712 0.857369 -0.613880 0.411486 0.673670 -0.974779 0.217614 0.049498 -0.782421 0.534925 0.318862 -0.578843 0.774220 0.255976 -0.998881 0.025078 0.040100 -0.624449 -0.006807 0.781036 -0.832604 -0.264574 0.486592 -0.264588 -0.619170 0.739339 -0.842460 0.159779 0.514521 -0.345733 0.331350 0.877882 -0.673642 0.219829 0.705608 -0.014205 0.246927 0.968930 -0.811315 -0.579051 -0.080425 -0.469877 -0.869255 0.153662 -0.587060 -0.092700 0.804218 -0.050753 -0.931463 0.360278 -0.322107 -0.637402 0.699976 --0.040986 -0.979681 0.196330 -0.362153 -0.562817 0.743023 -0.283911 0.769700 0.571801 --0.363149 -0.902947 0.229804 -0.305880 0.711048 0.633126 -0.980339 -0.065857 -0.186004 -0.988125 -0.126635 0.087023 -0.874349 -0.453771 -0.172063 -0.972635 -0.231511 0.019611 -0.883808 0.076850 -0.461495 --0.041145 -0.269251 0.962191 -0.012241 -0.090782 0.995796 --0.334047 0.196393 0.921869 -0.080571 0.654400 0.751844 --0.057003 -0.229789 0.971570 -0.240188 -0.008365 0.970690 -0.414488 0.018132 0.909874 -0.504080 0.108595 0.856803 -0.453759 -0.259482 0.852509 -0.462353 -0.020431 0.886461 -0.336294 -0.276221 0.900338 --0.133104 -0.273738 0.952550 --0.239875 -0.197901 0.950418 -0.107993 -0.901357 0.419395 --0.010619 -0.942404 0.334309 -0.158621 -0.337107 0.928008 -0.168679 -0.135185 0.976357 -0.208248 -0.211262 0.954987 -0.836357 0.541408 0.085937 -0.514032 -0.853765 0.082805 -0.991702 -0.018393 -0.127235 -0.930067 0.332894 -0.155423 -0.980339 -0.065857 -0.186004 -0.945801 0.023122 0.323922 -0.983726 0.139004 0.113845 -0.956982 0.152732 0.246695 -0.987661 -0.103049 0.117930 -0.925248 -0.057994 0.374904 -0.942188 0.278748 0.185960 -0.928213 -0.199751 0.313881 -0.998068 -0.047984 0.039468 -0.883613 0.377342 -0.277202 -0.857026 -0.088125 -0.507681 -0.930056 0.301244 -0.210355 -0.990995 -0.041542 0.127294 -0.970871 0.192898 0.142127 -0.903049 0.292119 -0.314911 -0.135411 0.845343 -0.516778 -0.976007 -0.019125 0.216900 -0.948433 0.031261 0.315434 -0.993055 0.019186 0.116073 -0.998230 0.058809 -0.008833 -0.979817 0.174026 0.098356 -0.963233 0.098512 0.249955 -0.949144 -0.314731 0.008420 -0.987063 -0.156154 0.036378 -0.955036 -0.019928 0.295821 -0.722771 -0.493188 0.484116 -0.872738 -0.315113 0.372870 -0.966879 -0.215946 0.136058 -0.874509 0.292685 -0.386742 -0.885194 0.459544 -0.072461 -0.708873 -0.524536 0.471551 -0.858543 -0.331088 0.391515 -0.912363 -0.407756 -0.036445 -0.717206 -0.356582 0.598719 -0.798841 -0.191054 0.570397 -0.876730 -0.232292 0.421172 -0.784802 -0.301011 0.541736 -0.722985 -0.445956 0.527651 -0.854864 -0.259556 -0.449264 -0.954108 -0.119842 0.274436 -0.904943 0.048347 0.422778 -0.983646 -0.115267 0.138398 -0.826791 0.337747 -0.449827 -0.974168 -0.067435 -0.215522 -0.218060 0.648388 -0.729412 -0.314817 0.338283 -0.886823 -0.963970 -0.095746 -0.248181 -0.377454 -0.272320 -0.885082 -0.811908 -0.050897 -0.581563 -0.829588 0.161011 -0.534658 --0.263702 -0.227403 -0.937416 -0.571997 -0.459413 -0.679529 -0.766530 -0.513944 0.385089 -0.426000 -0.737705 -0.523751 -0.461840 -0.804225 -0.374068 -0.904294 0.410753 0.116342 -0.946581 0.267392 0.180239 -0.960473 0.124329 0.249065 -0.689990 0.712175 0.129309 -0.923444 -0.376514 0.074086 -0.718538 -0.577412 0.387683 -0.874430 0.367818 0.316358 -0.750646 0.641401 -0.158539 -0.984876 -0.045132 0.167281 -0.952712 0.029208 0.302467 -0.558776 0.828105 -0.044860 -0.533907 0.795446 -0.286721 -0.955011 -0.004890 0.296529 -0.943559 0.009861 0.331058 -0.980437 -0.147465 0.130378 -0.991509 -0.108537 0.071624 --0.052148 -0.739073 -0.671604 -0.459411 -0.750313 0.475365 -0.943868 -0.163481 0.287030 -0.854879 -0.486141 0.181240 -0.845305 -0.526547 -0.090601 -0.975165 0.045730 0.216705 -0.978769 0.146769 0.143073 -0.795169 -0.458592 -0.396736 -0.902772 0.427029 0.051469 -0.974838 0.184047 0.125765 -0.960385 0.278438 0.011559 -0.986469 0.150347 0.065385 -0.700383 0.557405 0.445828 -0.208552 0.961686 0.177952 -0.707996 0.596311 0.378357 -0.443710 -0.581221 -0.682132 -0.507320 0.647338 -0.568841 -0.730003 0.281428 -0.622811 -0.381670 -0.007687 -0.924267 -0.766728 -0.068987 -0.638255 -0.779645 -0.285623 -0.557292 -0.773682 -0.573262 -0.269790 -0.670633 0.149865 0.726493 -0.707994 0.435253 0.556147 -0.700288 -0.701190 -0.133899 -0.851589 0.235924 0.468119 -0.961199 -0.141743 0.236653 -0.890321 0.066830 0.450402 -0.911067 0.109528 0.397444 -0.877985 0.185429 -0.441313 -0.427788 -0.794663 0.430706 -0.807599 -0.522163 -0.274099 -0.902848 0.035002 0.428533 -0.855854 0.007372 0.517164 -0.674183 -0.248315 0.695570 -0.794496 -0.538512 -0.280679 -0.897967 -0.439022 -0.030245 -0.829873 -0.271254 0.487578 -0.638580 -0.459766 0.617115 -0.860215 0.357054 -0.364063 -0.950058 -0.250974 0.185476 -0.882900 0.192757 0.428174 -0.971511 -0.127494 0.199778 -0.761422 -0.530030 -0.373236 -0.717172 -0.473943 -0.510924 -0.943139 -0.016745 0.331978 -0.411919 -0.424429 -0.806339 -0.967044 0.087319 0.239168 -0.764006 0.453142 0.459300 -0.594518 0.167471 0.786449 -0.641775 -0.764352 -0.062377 -0.602983 -0.739055 -0.300349 -0.817026 -0.281295 -0.503331 -0.665317 -0.603288 -0.439769 -0.684292 -0.505602 -0.525463 -0.007771 0.999793 -0.018797 -0.441738 0.795203 0.415356 -0.456620 -0.883707 -0.102762 -0.973683 0.071031 0.216555 -0.808832 -0.527754 0.259358 -0.979797 -0.199757 -0.009737 -0.973167 -0.160203 0.165167 -0.952168 -0.110378 0.284944 -0.952065 -0.147443 0.268016 -0.918086 -0.271785 0.288533 -0.964311 -0.069554 0.255473 -0.917826 -0.143113 0.370289 -0.958537 -0.175048 0.224866 -0.841135 -0.344225 0.417135 -0.508520 -0.803832 0.308644 -0.999247 0.021278 0.032455 -0.974727 -0.176852 0.136492 -0.967665 -0.136963 0.211815 -0.990546 0.028564 0.134177 -0.968637 0.161278 0.189028 -0.975529 0.145163 0.165142 -0.815992 0.072802 0.573461 -0.522162 -0.843911 0.123132 -0.272007 -0.932859 0.236190 -0.358507 -0.756918 0.546395 -0.000000 -0.979851 0.199732 -0.966254 -0.080383 -0.244728 -0.984543 -0.068120 -0.161353 -0.929267 -0.137179 -0.342994 -0.247088 -0.553282 0.795503 -0.000000 -0.824471 0.565904 -0.226966 -0.514822 0.826707 -0.000000 -0.580842 0.814017 --0.000000 -0.061781 -0.998090 -0.195494 -0.065166 -0.978537 -0.000000 0.121777 -0.992558 -0.213184 0.127287 -0.968685 -0.000000 -0.433503 -0.901152 -0.000000 -0.268335 -0.963326 -0.577971 -0.050044 -0.814521 -0.555193 -0.228180 -0.799809 -0.382520 -0.256272 -0.887695 -0.425673 0.117315 -0.897240 -0.398134 -0.063141 -0.915152 -0.212752 -0.262590 -0.941161 -0.970476 -0.179396 0.161227 -0.984517 -0.175237 0.004224 -0.894622 -0.203100 0.397997 -0.957282 -0.097370 0.272269 -0.840547 -0.282283 0.462382 -0.743031 -0.326488 0.584219 -0.777012 -0.243297 0.580568 -0.846795 -0.160731 0.507054 -0.882008 -0.357074 0.307507 -0.622322 -0.626609 0.469122 -0.516776 -0.526145 0.675362 -0.714751 -0.425683 0.554910 -0.433937 -0.467965 0.769875 -0.632902 -0.405001 0.659855 -0.642698 -0.764583 0.048511 -0.725937 -0.617826 0.302169 -0.823938 -0.524179 0.215320 -0.736140 -0.676800 0.006349 -0.913360 -0.278965 0.296566 -0.894402 -0.433765 0.109056 -0.798771 -0.348572 0.490369 -0.000000 0.234020 -0.972232 --0.000000 0.136213 -0.990680 -0.952522 -0.103807 -0.286229 -0.886554 -0.099004 -0.451907 -0.865645 -0.169427 -0.471120 -0.847409 -0.230792 -0.478155 -0.986946 -0.093294 -0.131281 -0.271403 0.125485 -0.954251 -0.475341 0.074651 -0.876629 -0.462047 0.153014 -0.873556 -0.765726 0.643162 0.002468 -0.846979 0.531597 0.005614 -0.495170 0.851507 -0.172462 -0.644685 0.748051 -0.157487 -0.336732 0.925480 -0.173489 -0.000000 0.984498 -0.175398 -0.198580 0.963748 -0.178200 -0.981824 -0.137409 -0.130924 -0.959754 0.270859 0.074215 -0.974779 0.217614 0.049498 -0.987304 0.154327 0.037611 -0.779630 -0.183352 -0.598798 -0.698758 -0.200421 -0.686708 -0.691329 -0.308203 -0.653510 -0.945573 0.324316 0.026652 -0.936383 0.349513 -0.032062 -0.963717 0.266566 0.013836 -0.586495 0.088798 -0.805070 -0.712822 0.030309 -0.700690 -0.821898 -0.017687 -0.569360 -0.802489 -0.076649 -0.591723 -0.716245 -0.065237 -0.694793 -0.798880 0.590324 -0.115359 -0.877689 0.472270 -0.081389 -0.321839 0.875730 -0.359884 -0.977758 0.209646 -0.006183 -0.508557 0.786229 -0.351017 -0.675920 0.658353 -0.331216 -0.823477 0.506817 -0.254994 -0.956572 0.279029 -0.084336 --0.000000 0.918672 -0.395021 -0.195793 0.904827 -0.378091 -0.181223 0.810249 -0.557363 -0.978314 -0.152954 -0.139664 -0.979202 -0.158832 -0.126237 -0.578335 0.191101 -0.793101 -0.974595 -0.087193 -0.206305 -0.929197 -0.005527 -0.369544 -0.988150 -0.099280 -0.117063 -0.833406 0.057156 -0.549698 -0.711627 0.126852 -0.691010 -0.992335 -0.075420 -0.097890 -0.402369 0.255777 -0.879021 -0.207205 0.310045 -0.927867 -0.000000 0.324092 -0.946026 -0.329128 0.769358 -0.547506 -0.547794 0.515189 -0.659168 -0.564792 0.354394 -0.745262 -0.832228 0.406348 -0.377197 -0.931228 0.184555 -0.314250 -0.931750 0.073189 -0.355649 -0.923846 0.286286 -0.254064 -0.970015 0.204322 -0.131623 -0.977586 0.100307 -0.185106 -0.975347 -0.007279 -0.220559 -0.990829 0.130856 -0.033684 -0.694439 0.541717 -0.473601 -0.845062 0.275866 -0.458005 -0.844664 0.162658 -0.509985 -0.544088 0.660655 -0.517207 -0.707952 0.401117 -0.581300 -0.717342 0.258658 -0.646929 -0.994631 0.101726 0.018987 -0.996921 -0.031934 -0.071622 -0.993277 -0.048923 -0.104919 -0.996232 0.038288 -0.077816 -0.337586 0.621843 -0.706645 -0.373531 0.450967 -0.810619 -0.193548 0.516283 -0.834261 -0.174113 0.678423 -0.713741 -0.000000 0.690791 -0.723054 -0.000000 0.826048 -0.563600 -0.733490 -0.178735 -0.655779 -0.861562 -0.135177 -0.489324 -0.790483 -0.119137 -0.600785 -0.913354 -0.075933 -0.400023 -0.937816 -0.157390 -0.309402 --0.000000 0.999942 0.010758 -0.631494 0.775352 -0.006745 -0.613684 0.779049 0.128357 -0.919753 0.369585 0.132142 -0.000000 0.985798 0.167938 -0.000000 0.943228 0.332146 -0.873520 0.461927 0.153577 -0.828996 0.552096 0.089198 -0.812342 0.553678 0.183141 -0.735769 0.667673 0.113389 -0.578843 0.774220 0.255976 -0.712064 0.664851 0.225694 -0.877528 0.473165 0.077843 -0.898901 0.437855 0.016149 -0.916216 0.393863 0.073623 -0.278588 0.912717 0.298892 -0.194875 0.980825 0.002514 -0.172816 0.971556 0.161907 -0.347036 0.937837 -0.005240 -0.490658 0.871343 -0.003966 -0.479383 0.866352 0.140095 -0.152147 0.934732 0.321134 -0.429060 0.858431 0.281076 -0.391840 -0.404593 -0.826297 -0.552303 -0.372971 -0.745556 -0.565795 -0.385922 -0.728657 -0.920522 -0.169987 -0.351773 -0.926517 -0.245303 -0.285295 -0.804591 -0.343269 -0.484561 -0.765735 -0.335063 -0.548983 -0.844268 -0.287049 -0.452564 -0.771428 -0.280374 -0.571217 -0.524551 -0.339003 -0.780976 -0.755147 -0.301479 -0.582119 -0.693833 -0.350667 -0.628991 -0.663535 -0.317099 -0.677621 -0.822453 -0.237097 -0.517065 -0.958184 -0.265907 0.105717 -0.856754 -0.466072 -0.220792 -0.912111 -0.365706 -0.185240 -0.960308 -0.255744 -0.111373 -0.852419 -0.497837 -0.159812 -0.940176 -0.339486 -0.028624 -0.964236 -0.171422 -0.202148 -0.930511 -0.219476 -0.293222 -0.974498 -0.219952 -0.044449 -0.929693 -0.326307 -0.170862 -0.968611 -0.246724 -0.030339 -0.962478 -0.154020 -0.223413 -0.957777 -0.225389 -0.178500 -0.864143 -0.306809 -0.398905 -0.966237 -0.229154 -0.117789 -0.925229 -0.290974 -0.243485 -0.899765 -0.322933 -0.293493 -0.947158 -0.257689 -0.191019 -0.964790 -0.218859 -0.145883 -0.930766 -0.312926 -0.189083 -0.940156 -0.288830 -0.180789 -0.858036 -0.351745 -0.374233 -0.691387 -0.082926 -0.717709 -0.199213 -0.474467 -0.857435 -0.205180 -0.414142 -0.886785 -0.574535 -0.222638 -0.787618 -0.617907 -0.143398 -0.773064 -0.205871 -0.286461 -0.935712 -0.000000 -0.084150 -0.996453 -0.394512 -0.266675 -0.879343 -0.000000 -0.405900 -0.913918 -0.000000 -0.487516 -0.873114 -0.407232 -0.429332 -0.806124 -0.376785 -0.353125 -0.856350 -0.182391 -0.417215 -0.890317 -0.259179 -0.104877 -0.960118 -0.421485 -0.123530 -0.898382 -0.116572 -0.046648 0.992086 -0.102052 -0.355485 0.929094 -0.400161 -0.485786 0.777099 --0.087014 -0.216641 0.972366 -0.337715 -0.094238 0.936519 -0.500191 -0.157026 0.851559 -0.517148 -0.060134 0.853781 -0.536556 -0.320512 0.780628 -0.569766 -0.266026 0.777558 -0.598593 -0.160543 0.784801 -0.313150 -0.228337 0.921846 -0.365719 -0.034633 0.930081 -0.113935 0.047775 0.992339 --0.151853 0.131281 0.979646 --0.159590 -0.199293 0.966858 --0.295664 -0.182014 0.937792 --0.377518 0.069114 0.923420 --0.338838 0.069631 0.938265 -0.056758 -0.010118 0.998337 -0.537091 -0.098688 0.837732 --0.122834 0.214489 0.968972 -0.257302 0.281172 0.924520 -0.118581 0.166542 0.978878 -0.111175 -0.024710 0.993494 --0.020110 0.141959 0.989668 -0.290269 0.030049 0.956473 -0.285734 0.026257 0.957949 -0.420478 0.101275 0.901633 -0.381696 0.288701 0.878043 -0.522997 0.166442 0.835926 -0.555378 0.201156 0.806902 -0.481838 0.411199 0.773788 --0.032514 0.001011 0.999471 --0.007301 0.033429 0.999414 --0.111767 0.004368 0.993725 --0.102278 0.022536 0.994501 -0.516698 -0.183732 0.836221 -0.160411 -0.050901 0.985737 -0.522162 -0.843911 0.123132 -0.226738 -0.968153 0.106161 -0.272007 -0.932859 0.236190 -0.875055 -0.461418 0.146195 -0.844157 -0.469266 0.259207 -0.272464 0.194337 0.942336 -0.094207 -0.514111 0.852534 -0.305744 0.383558 0.871438 -0.062806 0.402712 0.913169 --0.000000 -0.705940 0.708271 --0.015710 -0.898749 0.438183 --0.035565 -0.892710 0.449227 -0.354984 -0.465491 0.810743 -0.210230 -0.490514 0.845695 -0.131172 -0.704826 0.697148 --0.190848 -0.296567 0.935749 -0.461839 0.368065 0.806990 -0.159456 0.966550 0.200887 -0.169777 0.978355 0.118306 -0.955394 -0.170389 0.241227 -0.650957 -0.155011 0.743120 --0.753241 -0.432071 0.495926 -0.402970 -0.438978 0.803065 -0.406296 -0.279659 0.869893 -0.389436 0.527145 0.755286 -0.208928 0.844765 0.492668 -0.179578 0.076957 0.980729 -0.105754 0.232977 0.966715 --0.007820 0.314013 0.949386 -0.622806 -0.148465 0.768160 -0.556403 -0.185488 0.809945 -0.557076 0.060802 0.828233 -0.330708 0.653437 0.680920 -0.613350 -0.261187 0.745375 -0.000000 0.678126 0.734946 -0.703592 0.362452 0.611218 -0.738643 0.413454 0.532412 -0.809511 0.224830 0.542351 -0.857789 0.309616 0.410287 -0.743875 0.251021 0.619386 -0.750666 0.295254 0.591039 -0.638344 0.218909 0.737967 -0.407116 0.254306 0.877260 -0.652352 0.078999 0.753788 -0.189538 0.183997 0.964480 --0.067287 0.130976 0.989100 -0.186867 0.251230 0.949718 -0.197209 0.129451 0.971777 --0.074535 0.152154 0.985542 -0.675934 -0.124982 0.726287 -0.503260 -0.431155 0.748889 -0.162563 0.265781 0.950228 -0.450882 -0.047645 0.891311 -0.320954 -0.284635 0.903311 -0.412816 -0.162679 0.896169 -0.404828 -0.122604 0.906136 -0.500830 -0.054045 0.863857 -0.514229 -0.108871 0.850715 -0.281206 -0.424058 0.860871 -0.427806 -0.291341 0.855630 -0.622335 -0.262939 0.737267 -0.569411 -0.177401 0.802683 -0.634783 -0.129111 0.761828 -0.630105 -0.205338 0.748869 -0.139541 0.012086 0.990142 -0.046659 0.155473 0.986738 -0.093148 0.249081 0.963993 -0.391215 -0.277278 0.877535 -0.490202 0.100196 0.865831 -0.432521 -0.082351 0.897855 -0.146124 0.220489 0.964382 -0.121302 0.125950 0.984593 -0.208401 -0.246155 0.946560 -0.203183 -0.076174 0.976173 -0.205734 -0.474682 0.855775 -0.536834 -0.201241 0.819336 -0.403605 -0.219082 0.888317 -0.418504 -0.443508 0.792563 -0.435632 0.012315 0.900041 -0.306354 0.048397 0.950687 -0.305656 0.133435 0.942746 -0.454712 -0.026071 0.890257 -0.572893 -0.089475 0.814732 -0.023409 0.147335 0.988810 -0.085585 -0.056537 0.994725 -0.991370 0.071385 0.109949 -0.928623 -0.298812 0.219933 -0.888692 -0.301232 0.345668 -0.951615 -0.156737 0.264315 -0.956480 -0.270013 0.110628 -0.973047 -0.227614 0.037037 -0.135531 -0.057681 0.989093 -0.135119 0.014275 0.990727 -0.095565 -0.140418 0.985470 -0.203835 0.111672 0.972616 -0.122514 0.005138 0.992454 -0.193158 0.143397 0.970632 -0.975135 -0.153188 0.160142 -0.989057 -0.117960 0.088608 -0.976173 -0.088931 0.197932 -0.989521 -0.075967 0.122789 -0.931619 -0.362669 -0.023609 -0.895885 -0.441238 0.051955 -0.419251 -0.893657 0.160016 -0.660927 -0.582126 0.473608 -0.674206 -0.613708 0.410864 -0.572486 -0.387158 0.722751 -0.521485 -0.609270 0.597363 -0.602596 -0.218022 0.767688 -0.124921 -0.972579 0.196177 -0.194502 -0.942985 0.270088 -0.152245 -0.978456 0.139446 -0.261490 -0.957411 0.122421 -0.247911 -0.952633 0.176154 -0.968194 0.141781 0.206152 -0.973090 0.087820 0.213034 -0.059935 0.608160 0.791549 -0.912739 0.204290 0.353798 -0.291775 0.242568 0.925218 -0.407343 0.309380 0.859276 -0.797788 0.061213 0.599823 -0.783334 0.115514 0.610774 -0.774882 0.092609 0.625285 -0.354571 0.167878 0.919835 -0.466008 -0.060921 0.882681 -0.687165 0.085166 0.721492 -0.572905 0.252670 0.779703 -0.533049 0.134652 0.835301 -0.705935 0.181977 0.684500 -0.716139 0.068039 0.694633 -0.743304 -0.039456 0.667789 -0.647151 -0.137290 0.749898 -0.754959 -0.010245 0.655692 -0.618608 0.300711 0.725877 -0.862521 0.267079 0.429798 -0.802986 0.321261 0.502001 -0.707494 0.407376 0.577492 -0.600169 0.484712 0.636279 -0.322225 0.598285 0.733639 -0.198798 0.616384 0.761939 -0.911470 0.175135 0.372223 -0.902851 -0.105175 0.416890 -0.939701 0.045720 0.338928 -0.882144 0.341458 0.324390 -0.841291 0.304029 0.446985 -0.545103 0.213728 0.810669 -0.855397 -0.256553 0.449975 -0.849854 0.186846 0.492784 -0.872239 0.074727 0.483337 -0.832705 0.383307 0.399598 -0.805521 0.367754 0.464642 -0.821557 0.447010 0.353873 -0.828149 0.438302 0.349372 -0.824045 0.368372 0.430408 -0.819993 0.339982 0.460460 -0.342926 -0.407667 0.846291 -0.159888 -0.983513 0.084483 -0.494443 -0.421953 0.759922 -0.646791 0.131442 0.751255 -0.574833 0.212321 0.790245 -0.604003 0.068923 0.793996 -0.279992 0.486188 0.827784 -0.222130 0.209054 0.952342 -0.579463 0.219696 0.784829 -0.555154 0.231685 0.798828 -0.597792 0.237803 0.765568 -0.536458 0.210289 0.817307 -0.536505 0.339292 0.772686 -0.504888 0.156397 0.848898 -0.411729 0.095067 0.906334 -0.497181 0.020549 0.867404 -0.628408 -0.073047 0.774446 -0.629925 -0.018225 0.776442 -0.719119 -0.425915 0.549057 -0.671408 -0.294333 0.680132 -0.706163 -0.145031 0.693037 -0.752349 -0.114848 0.648676 -0.711947 -0.219099 0.667178 -0.951528 0.138503 0.274610 -0.038289 0.460032 0.887076 -0.657571 0.353783 0.665160 -0.554356 0.399226 0.730280 -0.466656 0.553238 0.690043 -0.413262 0.444997 0.794476 -0.876411 0.188844 0.442991 -0.928762 0.135746 0.344926 --0.000225 -0.275884 0.961191 --0.096840 -0.196651 0.975679 -0.433323 -0.482226 0.761373 -0.826571 -0.561856 -0.033146 --0.021490 -0.480097 0.876952 -0.301154 -0.532735 0.790886 --0.186766 0.376807 0.907268 -0.045883 -0.042532 0.998041 --0.107399 -0.187310 0.976412 --0.229855 -0.096126 0.968466 --0.133070 0.045369 0.990068 --0.178203 0.101325 0.978763 --0.198468 0.271176 0.941846 -0.111144 0.298033 0.948063 -0.103036 0.250638 0.962582 --0.166137 0.100251 0.980994 --0.259093 0.330387 0.907588 --0.200967 0.185961 0.961785 --0.147151 0.592320 0.792151 --0.187848 0.630009 0.753527 -0.773579 0.463084 0.432585 -0.770031 0.450064 0.452211 -0.364800 0.626172 0.689079 -0.592439 0.496734 0.634248 -0.350189 0.661226 0.663436 -0.593055 0.576151 0.562438 -0.609218 0.539684 0.581029 -0.613913 -0.090471 0.784172 -0.724963 0.196773 0.660083 -0.751821 0.406635 0.519050 -0.574828 0.502498 0.645809 -0.589470 0.576994 0.565335 -0.355510 0.578742 0.733942 -0.678032 0.426978 0.598300 -0.000000 0.558078 0.829789 -0.340802 -0.161094 0.926230 -0.025120 0.230992 0.972631 -0.362686 0.118073 0.924401 -0.155965 0.022409 0.987508 --0.056024 0.389638 0.919263 --0.075126 0.517712 0.852250 -0.443153 -0.559183 0.700664 -0.493946 -0.157875 0.855040 -0.318874 0.531781 0.784557 -0.360383 0.262921 0.894984 -0.576467 0.249663 0.778045 -0.090704 -0.241126 0.966246 --0.000000 0.238995 0.971021 -0.169191 -0.049974 0.984316 -0.294117 -0.148374 0.944182 -0.436826 -0.072204 0.896644 -0.107041 -0.048446 0.993074 -0.046013 -0.022958 0.998677 -0.109119 -0.370977 0.922209 -0.100464 -0.134767 0.985771 -0.136541 -0.219989 0.965899 -0.114551 0.293644 0.949027 -0.079638 0.241846 0.967041 -0.107269 0.296022 0.949139 -0.088483 0.241929 0.966251 -0.182375 0.264596 0.946957 -0.137294 0.263615 0.954808 -0.234970 0.255761 0.937750 -0.321648 0.571304 0.755086 -0.302161 0.470267 0.829185 -0.592695 0.422826 0.685515 -0.564878 0.343819 0.750134 -0.346351 0.344743 0.872464 -0.639131 0.386174 0.665118 -0.397468 0.311608 0.863087 -0.197045 0.304069 0.932049 -0.219407 0.295985 0.929652 -0.116896 0.305288 0.945058 -0.133636 0.285401 0.949046 -0.255041 0.219915 0.941590 -0.467887 0.090252 0.879168 -0.323584 0.194205 0.926055 -0.515590 0.093108 0.851761 -0.733405 -0.080458 0.675014 -0.815774 -0.117761 0.566255 -0.769188 0.005075 0.639003 -0.643300 0.039193 0.764611 -0.785054 0.153721 0.600050 -0.512303 0.381570 0.769383 -0.555682 0.492490 0.669830 -0.643430 0.423383 0.637765 -0.463910 0.177842 0.867848 -0.249436 0.203304 0.946810 -0.578548 0.262167 0.772367 -0.525889 0.434024 0.731481 -0.979121 0.167934 0.114548 -0.917294 0.326827 0.227501 -0.955021 0.246627 0.164652 -0.959754 0.270859 0.074215 -0.919753 0.369585 0.132142 -0.989438 0.111794 0.092271 -0.987304 0.154327 0.037611 -0.897135 0.289124 0.333999 -0.938986 0.221669 0.263000 -0.843659 0.364942 0.393772 -0.750200 0.476920 0.457982 -0.641751 0.575116 0.507344 -0.507983 0.652620 0.562175 -0.359227 0.711906 0.603445 -0.866911 0.423611 0.262716 -0.873520 0.461927 0.153577 -0.812342 0.553678 0.183141 -0.676628 0.636112 0.370859 -0.712064 0.664851 0.225694 -0.429060 0.858431 0.281076 -0.394027 0.807777 0.438451 -0.551681 0.726842 0.409083 -0.152147 0.934732 0.321134 -0.106112 0.760509 0.640599 -0.117054 0.876695 0.466588 --0.000000 0.881314 0.472531 -0.244938 0.854173 0.458687 -0.239225 0.744882 0.622834 -0.278588 0.912717 0.298892 -0.984132 0.098131 0.147832 -0.984399 0.064556 0.163677 -0.969379 0.058470 0.238506 -0.980826 0.016622 0.194174 -0.997602 0.008727 0.068664 -0.996036 -0.022156 0.086143 -0.998454 -0.002980 0.055500 -0.999713 -0.014538 -0.019067 -0.995594 -0.077054 -0.053431 -0.992335 -0.075420 -0.097890 -0.996530 -0.025279 0.079302 -0.988001 0.045078 0.147726 -0.995813 -0.069579 0.059286 -0.996447 -0.084122 0.004216 -0.994631 0.101726 0.018987 -0.996921 -0.031934 -0.071622 -0.999319 0.030978 -0.020038 -0.994798 0.077765 0.065804 -0.991292 -0.026727 0.128938 -0.996275 0.037079 0.077856 -0.999321 -0.005113 0.036500 -0.995075 -0.046608 0.087478 -0.992200 0.021342 0.122818 -0.369379 0.296355 0.880757 -0.533661 -0.157975 0.830813 -0.541394 -0.212669 0.813427 -0.545703 -0.136421 0.826800 -0.558704 -0.123989 0.820046 -0.493827 -0.164978 0.853766 -0.521076 -0.218911 0.824959 -0.433347 -0.216013 0.874956 -0.412263 -0.217952 0.884611 -0.472733 -0.160248 0.866512 -0.127497 -0.268986 0.954668 -0.524048 -0.129668 0.841760 -0.487935 -0.174906 0.855177 -0.503556 -0.143839 0.851905 -0.401031 -0.230390 0.886620 -0.422184 -0.112733 0.899473 -0.189510 -0.056392 0.980258 -0.370427 -0.074745 0.925850 -0.480090 -0.097288 0.871808 -0.266829 -0.264700 0.926680 -0.314747 -0.072331 0.946416 -0.528176 -0.046848 0.847842 -0.279513 0.052415 0.958710 -0.333630 0.159071 0.929187 -0.491776 -0.107345 0.864079 -0.510024 -0.042214 0.859124 -0.467665 0.068383 0.881257 -0.440876 0.091799 0.892861 -0.425466 0.206284 0.881150 -0.260209 0.152186 0.953484 -0.116536 0.115056 0.986500 -0.039888 0.133921 0.990189 -0.163977 0.250533 0.954120 -0.238424 0.225082 0.944718 -0.474657 0.273573 0.836575 -0.396413 0.326182 0.858174 -0.337373 0.394918 0.854529 -0.389566 0.314215 0.865741 -0.349729 0.215840 0.911648 -0.430468 0.270991 0.860965 -0.441822 0.257336 0.859402 -0.591462 0.024921 0.805948 -0.444120 0.384013 0.809501 -0.474125 0.357419 0.804647 -0.482730 0.339664 0.807217 -0.442963 0.376239 0.813774 -0.485837 0.286440 0.825781 -0.599856 -0.547432 0.583516 -0.420382 -0.347935 0.837986 -0.491533 0.185540 0.850864 -0.285124 0.099415 0.953321 -0.257555 -0.656935 0.708591 -0.116778 -0.964476 0.236957 --0.161050 -0.948664 0.272212 -0.679988 -0.725512 0.106064 -0.723210 -0.690505 0.013058 -0.604230 -0.665155 0.438719 -0.728616 -0.666240 0.158882 -0.469485 -0.725283 0.503536 -0.808675 -0.563239 0.169724 --0.000000 -0.753338 0.657633 -0.294532 -0.554283 0.778474 -0.477942 -0.527497 0.702366 -0.269970 -0.742928 0.612515 -0.707132 -0.423556 0.566184 -0.778178 -0.230052 0.584392 -0.474497 -0.597806 0.646127 --0.423338 -0.373675 0.825319 --0.184924 -0.277847 0.942658 -0.767109 -0.096499 0.634218 --0.219126 -0.747696 0.626845 --0.139404 -0.820284 0.554707 --0.402540 -0.870297 0.283803 -0.578989 -0.511899 0.634611 -0.178658 -0.982429 0.053983 -0.311577 -0.947225 0.075398 -0.700359 -0.659489 0.273076 -0.848874 -0.146025 0.508026 -0.787609 -0.154735 0.596431 -0.750357 -0.291234 0.593420 -0.777955 -0.203305 0.594520 -0.213397 -0.976736 0.021199 -0.352584 -0.935479 0.023762 -0.405689 -0.913821 0.018627 -0.718296 -0.686280 0.114326 -0.820306 -0.291635 0.491983 -0.786591 -0.450638 0.422138 -0.907739 -0.174697 0.381432 -0.839793 -0.190961 0.508214 -0.913823 -0.123550 0.386862 -0.906971 -0.148750 0.394052 -0.835804 -0.147852 0.528746 -0.876467 -0.018814 0.481094 -0.880023 0.113124 0.461261 -0.897615 -0.120492 0.423992 -0.949262 -0.104107 0.296755 -0.951481 -0.117590 0.284352 -0.842735 0.161447 0.513549 -0.781783 0.188119 0.594496 -0.955397 -0.101383 0.277379 -0.980411 -0.077530 0.181064 -0.971788 -0.097016 0.214977 -0.941809 -0.039726 0.333794 -0.865653 0.185218 0.465123 -0.982659 -0.098195 0.157288 -0.978451 -0.089350 0.186148 -0.936501 0.069116 0.343785 -0.966803 -0.054487 0.249646 -0.967391 0.017687 0.252668 -0.949734 0.071990 0.304668 -0.950219 0.074577 0.302525 -0.920430 0.110599 0.374936 -0.875786 0.189644 0.443885 -0.823097 0.252414 0.508722 -0.747480 0.307999 0.588566 -0.495544 0.314895 0.809492 -0.596686 0.313671 0.738632 -0.355255 0.345768 0.868469 -0.266006 0.460814 0.846694 -0.136451 0.375236 0.916831 -0.161109 0.456566 0.874981 -0.921458 0.082075 0.379709 -0.232129 0.375208 0.897405 -0.842435 0.177300 0.508791 -0.783021 0.243749 0.572245 -0.692480 0.297894 0.657063 -0.031431 0.370535 0.928287 -0.888179 0.108203 0.446576 -0.972830 0.045326 0.227042 -0.105407 0.124722 0.986577 -0.177336 0.171383 0.969113 -0.822482 0.117408 0.556542 -0.847673 0.146056 0.510018 -0.886778 0.161857 0.432928 -0.948964 -0.301971 -0.090994 -0.286029 0.254022 0.923938 -0.807421 0.148868 0.570885 -0.615899 0.312884 0.723030 -0.734384 0.237925 0.635666 -0.462401 0.351506 0.814020 -0.370477 0.315527 0.873607 -0.055093 0.126049 0.990493 -0.023191 0.308519 0.950936 --0.000000 0.314174 0.949366 -0.212040 0.315917 0.924789 -0.897043 0.110665 0.427863 -0.863195 0.130530 0.487704 -0.814622 0.187213 0.548946 -0.444158 0.283211 0.850009 -0.325221 0.301398 0.896321 -0.532102 0.293694 0.794110 -0.740516 0.256189 0.621292 -0.629069 0.302075 0.716257 -0.928657 0.105362 0.355662 -0.915417 0.136373 0.378701 -0.880974 0.143191 0.450978 -0.903481 0.132685 0.407575 -0.285123 0.315991 0.904906 -0.230096 0.303773 0.924542 -0.852540 0.143275 0.502640 -0.877777 0.136591 0.459184 -0.788875 0.212436 0.576669 -0.763419 0.239572 0.599830 -0.822163 0.170583 0.543092 -0.398228 0.324299 0.858047 -0.694640 0.285501 0.660276 -0.661606 0.322256 0.677074 -0.480778 0.342469 0.807197 -0.428053 0.361618 0.828253 -0.576362 0.338950 0.743586 -0.530224 0.372877 0.761463 -0.018625 0.288096 0.957420 -0.009958 0.252791 0.967470 -0.104869 0.307533 0.945741 -0.078777 0.295291 0.952154 -0.053276 0.255762 0.965271 -0.167833 0.306943 0.936813 -0.128444 0.275380 0.952716 -0.991425 -0.122491 0.045526 -0.992724 -0.099922 0.067191 -0.996634 -0.037722 0.072790 -0.992504 -0.091816 0.080652 -0.973415 -0.226958 -0.030879 -0.975810 -0.214272 -0.043391 -0.987323 -0.097626 0.125149 -0.988855 -0.097693 0.112347 -0.992402 -0.096037 0.076908 -0.991701 -0.126898 0.020648 -0.961730 0.108527 0.251589 -0.990351 0.039184 0.132925 -0.924877 0.157070 0.346311 -0.963051 0.091168 0.253419 -0.986819 -0.034718 0.158060 -0.960942 0.084486 0.263538 -0.935642 0.109950 0.335388 -0.282745 -0.104715 0.953462 -0.535775 -0.234386 0.811177 -0.589388 -0.256643 0.766000 -0.449490 -0.169593 0.877039 --0.111190 -0.075595 0.990920 -0.474619 0.179443 0.861706 -0.333206 0.128971 0.933991 -0.211144 -0.043071 0.976506 -0.362238 0.253581 0.896928 -0.040868 0.115464 0.992471 -0.070970 0.162739 0.984114 -0.169079 0.134369 0.976400 -0.625363 -0.132379 0.769023 -0.578756 0.138592 0.803638 -0.058598 -0.320310 0.945499 --0.033459 -0.309389 0.950347 --0.034543 -0.214007 0.976221 -0.034980 -0.178704 0.983281 -0.067747 -0.132786 0.988827 -0.303383 -0.049264 0.951594 -0.422533 -0.167907 0.890659 -0.540392 -0.203908 0.816332 -0.705472 -0.156419 0.691261 -0.618341 -0.162936 0.768835 -0.618322 -0.240357 0.748268 -0.582236 -0.121450 0.803898 -0.619356 0.024391 0.784731 -0.552689 0.028636 0.832895 -0.553958 0.266140 0.788860 -0.556197 0.313234 0.769759 -0.468868 0.326433 0.820734 -0.413106 0.305319 0.857976 -0.767420 0.226636 0.599752 -0.132858 0.293468 0.946692 -0.003481 0.177769 0.984066 -0.157791 0.207534 0.965418 -0.331575 0.313347 0.889872 -0.235697 0.270071 0.933546 -0.395499 0.226119 0.890197 -0.450724 0.317651 0.834234 -0.650242 0.288535 0.702804 -0.554397 0.193380 0.809474 -0.680161 0.177243 0.711313 -0.558374 0.317823 0.766294 -0.274145 0.363911 0.890176 -0.145614 0.352120 0.924559 --0.052277 0.204607 0.977447 -0.492279 0.328113 0.806227 -0.298709 0.245534 0.922218 -0.443271 0.429666 0.786700 -0.322561 0.393440 0.860906 -0.077765 -0.317466 0.945076 -0.028546 -0.225760 0.973765 --0.029106 -0.229035 0.972983 -0.207752 -0.243616 0.947360 -0.212145 -0.282105 0.935634 -0.574973 0.403179 0.711936 -0.410669 -0.028060 0.911353 -0.986048 -0.166444 0.002629 -0.976931 -0.200438 0.073698 -0.302690 -0.821982 0.482415 -0.642698 -0.764583 0.048511 -0.651497 -0.757932 -0.033036 -0.608910 -0.793012 0.018987 -0.736140 -0.676800 0.006349 -0.136882 -0.865396 0.482031 -0.375511 -0.644130 0.666399 -0.187464 -0.691695 0.697434 -0.901636 -0.403920 -0.154602 -0.836061 -0.538395 -0.105518 -0.720166 -0.690725 -0.065270 -0.766647 -0.639855 -0.053276 -0.751451 -0.659403 0.022548 -0.578581 -0.778603 0.242943 -0.090467 -0.955211 0.281757 -0.560650 -0.777059 0.286096 -0.623484 -0.570354 0.534756 -0.435636 -0.824828 0.360388 -0.538726 -0.777379 0.324740 -0.301075 -0.926866 0.224214 -0.403335 -0.897840 0.176647 -0.852419 -0.497837 -0.159812 -0.842469 -0.499752 -0.201231 -0.760575 -0.635420 -0.133290 -0.504243 -0.862207 0.048347 -0.542509 -0.839972 -0.011408 -0.603304 -0.787681 0.124834 -0.942989 -0.306779 -0.129070 -0.926186 -0.324616 -0.191841 -0.903698 -0.374611 -0.207355 -0.912111 -0.365706 -0.185240 -0.326284 0.223931 0.918365 -0.161267 0.287675 0.944053 -0.582554 0.093522 0.807393 -0.449101 -0.034951 0.892797 -0.502007 0.016988 0.864697 -0.569425 0.004640 0.822030 -0.279856 0.415758 0.865347 -0.520402 0.120682 0.845351 -0.523507 -0.187034 0.831239 -0.321446 -0.450555 0.832870 -0.368760 -0.350588 0.860874 -0.553930 -0.144730 0.819887 -0.590143 -0.039483 0.806333 -0.569841 -0.074161 0.818402 -0.541935 -0.029976 0.839886 -0.455481 -0.350911 0.818168 -0.450235 -0.181340 0.874302 -0.534828 -0.075282 0.841601 -0.301530 -0.314584 0.900065 -0.267894 -0.286199 0.919958 -0.202670 0.037234 0.978539 -0.193038 -0.382333 0.903636 -0.411361 -0.284396 0.865968 -0.540080 -0.184086 0.821234 -0.137328 -0.510520 0.848829 -0.360985 -0.386573 0.848676 -0.492069 -0.263536 0.829709 -0.521896 -0.007625 0.852975 -0.449188 0.133474 0.883411 -0.514373 0.062868 0.855259 -0.460235 0.346110 0.817553 -0.200144 -0.086594 0.975932 -0.179784 -0.405818 0.896097 -0.159486 -0.803197 0.573968 -0.273324 -0.398217 0.875624 -0.149033 -0.843711 0.515694 -0.088114 -0.827029 0.555211 -0.099752 -0.884946 0.454885 -0.318915 -0.580899 0.748899 -0.423441 -0.358662 0.831901 -0.043333 -0.945661 0.322255 -0.448092 -0.404572 0.797205 -0.448493 -0.440712 0.777577 -0.299209 -0.669246 0.680135 --0.122540 -0.974158 0.189739 -0.303783 -0.357245 0.883228 -0.350662 -0.485507 0.800824 -0.534816 0.047751 0.843618 -0.000000 0.285287 0.958442 -0.403088 0.792142 0.458292 -0.541664 0.322249 0.776373 -0.525565 0.299165 0.796418 -0.332302 0.869979 0.364296 -0.344800 -0.365541 0.864577 -0.556358 0.159132 0.815563 -0.543743 0.129427 0.829212 -0.246026 0.961529 0.122205 -0.225446 0.963984 0.141097 -0.513074 0.275736 0.812850 -0.192378 0.290049 0.937477 -0.373904 0.275536 0.885594 -0.405019 0.024471 0.913981 -0.151882 0.716212 0.681156 -0.502738 0.290406 0.814198 -0.416558 0.719504 0.555692 -0.370983 -0.212940 0.903896 -0.315438 -0.103865 0.943245 -0.317705 -0.462956 0.827487 -0.325197 -0.524769 0.786680 -0.396249 -0.332685 0.855750 -0.978314 -0.152954 -0.139664 -0.991702 -0.018393 -0.127235 -0.993611 -0.075002 -0.084327 -0.998637 -0.046916 -0.022885 -0.958537 -0.175048 0.224866 -0.986564 -0.131558 0.096875 -0.999539 -0.016914 0.025217 -0.999247 0.021278 0.032455 -0.998230 0.058809 -0.008833 -0.990113 -0.084685 0.111821 -0.967665 -0.136963 0.211815 -0.998475 0.052888 0.015861 -0.990546 0.028564 0.134177 -0.918086 -0.271785 0.288533 -0.952065 -0.147443 0.268016 -0.808832 -0.527754 0.259358 -0.933492 -0.358392 -0.012143 -0.856754 -0.466072 -0.220792 -0.602983 -0.739055 -0.300349 -0.641775 -0.764352 -0.062377 --0.014579 -0.830455 0.556895 -0.235328 -0.226603 0.945131 -0.045495 -0.925649 0.375639 -0.325673 -0.909223 0.259326 -0.225578 0.811454 0.539126 --0.152601 0.142907 0.977901 -0.105970 0.879846 0.463295 --0.048777 0.099731 0.993818 -0.078545 0.887802 0.453474 -0.142400 0.021935 0.989566 -0.091221 0.952673 0.289987 -0.043043 0.966657 0.252432 -0.895927 0.210812 0.390990 -0.636910 0.486887 0.597734 -0.311699 -0.183269 0.932339 --0.629701 -0.352856 0.692076 -0.204073 -0.156133 0.966425 --0.433779 -0.867287 0.244231 -0.639668 -0.173106 0.748905 --0.305733 0.928037 0.212778 --0.808044 0.579269 -0.107296 -0.604918 0.141229 0.783664 -0.663004 -0.036006 0.747749 -0.939931 -0.336558 0.057081 -0.161020 -0.375822 0.912595 -0.709305 -0.690630 -0.141131 -0.535573 0.757199 0.373914 -0.164974 0.970677 0.174840 -0.111263 0.954697 0.275997 --0.271911 0.294716 0.916082 -0.688419 0.192969 -0.699172 -0.687555 0.056848 -0.723904 -0.996715 -0.059911 -0.054501 -0.996687 -0.035079 -0.073386 -0.965697 0.100916 -0.239260 -0.868603 0.128230 -0.478629 -0.886289 -0.085181 -0.455232 -0.973709 -0.060263 -0.219679 -0.976404 0.047519 -0.210661 -0.000000 0.996979 0.077669 --0.162472 0.986304 0.028405 --0.154679 0.987852 0.014917 -0.038965 0.999145 -0.013796 --0.156901 0.986472 0.047498 --0.042973 0.996080 0.077321 --0.089735 0.993810 0.065492 --0.162744 0.986616 0.010204 --0.196070 0.980459 0.016035 --0.015734 -0.987110 0.159271 --0.015637 -0.991212 0.131359 --0.000000 -0.995300 0.096841 -0.031370 -0.990163 0.136353 -0.089505 -0.989939 0.109589 -0.123686 -0.990306 0.063216 -0.117728 -0.992038 0.044721 -0.136905 -0.990085 0.031451 -0.320744 -0.946159 0.043657 -0.172863 -0.983869 0.046057 --0.000000 -0.833038 -0.553216 -0.075015 -0.809235 -0.582676 -0.221289 -0.796095 -0.563262 -0.324334 -0.774208 -0.543517 -0.424902 -0.726626 -0.539883 -0.486107 -0.713655 -0.504377 -0.565844 -0.677094 -0.470494 -0.656225 -0.642338 -0.395943 -0.798103 -0.528951 -0.288517 -0.881712 0.397987 -0.253358 -0.889771 -0.381354 -0.250754 -0.881712 0.397987 -0.253358 -0.639939 0.724559 -0.255915 -0.485896 0.794330 -0.364616 -0.422829 0.791503 -0.441291 -0.370459 0.790906 -0.487061 -0.339261 0.776947 -0.530335 -0.249700 0.793807 -0.554545 -0.000000 0.810248 -0.586087 -0.135890 0.804734 -0.577873 -0.951390 0.269794 0.148557 -0.912495 0.211582 0.350124 -0.890137 -0.283542 0.356734 -0.932126 -0.329835 0.149499 -0.912495 0.211582 0.350124 -0.951390 0.269794 0.148557 -0.761111 0.568104 0.312998 -0.780287 0.614722 0.115196 -0.560393 0.773789 0.295315 -0.619876 0.777625 0.105138 -0.434487 0.850467 0.296524 -0.472026 0.874874 0.108569 -0.316222 0.903253 0.290066 -0.334653 0.936127 0.108044 -0.251553 0.922664 0.292253 -0.292185 0.950078 0.109450 -0.206104 0.928553 0.308726 -0.248010 0.961871 0.115306 -0.000000 0.992596 0.121460 -0.000000 0.944851 0.327501 -0.124123 0.938588 0.321942 -0.148190 0.981673 0.119823 --0.000000 -0.933771 0.357870 -0.000000 -0.995201 0.097851 -0.036026 -0.932223 0.360086 -0.026474 -0.994868 0.097657 -0.125858 -0.921675 0.366980 -0.125407 -0.986987 0.100643 -0.223062 -0.902721 0.367883 -0.235903 -0.966219 0.103780 -0.349490 -0.863568 0.363464 -0.380474 -0.918152 0.110618 -0.438072 -0.824087 0.359129 -0.462763 -0.878622 0.117790 -0.563130 -0.747387 0.352559 -0.601496 -0.789138 0.124356 -0.850237 -0.508643 0.135569 -0.814465 -0.466793 0.344602 -0.686572 -0.641106 0.342930 -0.729412 -0.672097 0.127454 -0.457814 -0.882750 -0.105633 -0.456194 -0.848555 -0.268034 -0.597267 -0.796981 -0.089957 -0.577901 -0.778004 -0.246456 -0.727719 -0.682257 -0.070363 -0.700934 -0.681289 -0.211038 -0.847480 -0.528354 -0.051181 -0.831617 -0.527361 -0.174080 -0.919628 0.355189 -0.167705 -0.946404 0.321481 -0.031134 -0.926083 -0.375185 -0.040078 -0.907498 -0.385801 -0.166146 -0.946404 0.321481 -0.031134 -0.919628 0.355189 -0.167705 -0.757017 0.651715 -0.046829 -0.712192 0.683903 -0.158303 -0.627528 0.775643 -0.067725 -0.572573 0.795522 -0.198256 -0.475048 0.875878 -0.084652 -0.451893 0.861442 -0.231754 -0.339890 0.935762 -0.093935 -0.336898 0.908514 -0.247187 -0.302759 0.947712 -0.100892 -0.293427 0.920130 -0.259348 -0.253662 0.961244 -0.108003 -0.234715 0.933210 -0.272081 --0.000000 0.956927 -0.290330 -0.000000 0.993044 -0.117743 -0.149663 0.982048 -0.114814 -0.135706 0.948896 -0.284923 -0.000000 -0.992696 -0.120646 --0.000000 -0.960036 -0.279877 -0.031165 -0.991936 -0.122850 -0.048476 -0.956867 -0.286454 -0.129528 -0.983798 -0.123955 -0.152319 -0.945556 -0.287616 -0.374252 -0.884025 -0.280065 -0.375800 -0.919572 -0.114727 -0.236314 -0.964069 -0.121356 -0.255807 -0.924067 -0.284013 -0.445532 -0.637599 0.628466 -0.568940 -0.577793 0.585203 -0.721368 -0.420063 0.550614 -0.806465 0.222406 0.547860 -0.806412 -0.257693 0.532254 -0.504236 -0.062940 0.861269 -0.806465 0.222406 0.547860 -0.403891 -0.141395 0.903814 -0.632095 0.541202 0.554577 -0.327988 0.004754 0.944670 -0.453886 0.713397 0.533903 -0.345251 0.752369 0.561019 -0.259215 0.791735 0.553140 -0.182155 0.801519 0.569549 -0.134744 0.801824 0.582171 -0.000000 0.809729 0.586805 -0.079262 0.808829 0.582678 -0.000000 0.058034 0.998315 -0.000000 -0.720096 0.693874 -0.047558 0.092202 0.994604 -0.041945 -0.709562 0.703394 -0.100750 0.040080 0.994104 -0.106818 -0.705593 0.700520 -0.146725 -0.010634 0.989120 -0.171167 -0.702810 0.690478 -0.335969 -0.676105 0.655749 -0.262616 -0.006064 0.964881 -0.199977 0.044901 0.978771 -0.248746 -0.688379 0.681366 -0.424320 -0.628333 -0.652036 -0.089505 -0.989939 0.109589 -0.474740 -0.597590 -0.646149 -0.123686 -0.990306 0.063216 -0.493373 -0.612297 -0.617799 -0.117728 -0.992038 0.044721 -0.534593 -0.585229 -0.609686 -0.136905 -0.990085 0.031451 -0.595316 -0.620911 -0.509970 -0.172863 -0.983869 0.046057 -0.038965 0.999145 -0.013796 -0.649119 0.641234 -0.409223 -0.795878 -0.425964 -0.430270 -0.320744 -0.946159 0.043657 -0.649119 0.641234 -0.409223 -0.038965 0.999145 -0.013796 -0.362380 0.814212 -0.453586 --0.196070 0.980459 0.016035 -0.317846 0.770799 -0.552125 --0.162744 0.986616 0.010204 -0.314476 0.742809 -0.591050 --0.154679 0.987852 0.014917 -0.347654 0.672307 -0.653560 --0.162472 0.986304 0.028405 -0.303234 0.687416 -0.659931 --0.156901 0.986472 0.047498 -0.218580 0.679272 -0.700580 --0.089735 0.993810 0.065492 -0.000000 0.996979 0.077669 -0.000000 0.689619 -0.724173 -0.114450 0.690719 -0.714009 --0.042973 0.996080 0.077321 -0.000000 -0.705671 -0.708540 --0.000000 -0.995300 0.096841 -0.078638 -0.703713 -0.706119 --0.015637 -0.991212 0.131359 -0.031370 -0.990163 0.136353 -0.348123 -0.647984 -0.677441 -0.238694 -0.687876 -0.685457 --0.015734 -0.987110 0.159271 --0.935273 0.123343 0.331738 --0.799439 -0.188494 0.570409 --0.795727 -0.401701 -0.453271 --0.969855 -0.143042 0.197282 --0.208552 0.961686 0.177951 -0.000000 -0.520411 0.853916 --0.248842 0.216018 -0.944147 --0.999319 0.030978 -0.020038 -0.000000 -0.185536 -0.982637 -0.198468 0.271177 0.941846 --0.974779 0.217614 0.049498 -0.000000 0.943228 0.332146 --0.624449 -0.006807 0.781036 --0.951481 -0.117590 0.284352 --0.928762 0.135746 0.344926 --0.050753 -0.931463 0.360278 -0.000000 0.035199 0.999380 -0.000000 0.733888 0.679270 --0.980339 -0.065857 -0.186004 --0.826570 -0.561857 -0.033146 --0.462047 0.153014 -0.873556 --0.883808 0.076850 -0.461495 -0.271911 0.294716 0.916082 -0.334045 0.196393 0.921870 -0.057003 -0.229789 0.971570 --0.142400 0.021935 0.989566 --0.504080 0.108595 0.856802 --0.453759 -0.259482 0.852509 --0.462352 -0.020431 0.886461 --0.663004 -0.036006 0.747750 -0.010620 -0.942404 0.334309 --0.168679 -0.135184 0.976357 -0.219126 -0.747696 0.626845 --0.980339 -0.065857 -0.186004 --0.967044 0.087320 0.239168 --0.904293 0.410753 0.116342 --0.700289 -0.701189 -0.133899 --0.930056 0.301243 -0.210355 --0.007771 0.999793 -0.018797 --0.684292 -0.505602 -0.525463 --0.971511 -0.127493 0.199777 --0.911066 0.109528 0.397444 --0.952712 0.029208 0.302467 --0.945801 0.023122 0.323922 --0.983726 0.139004 0.113845 --0.998068 -0.047984 0.039468 --0.883613 0.377342 -0.277202 --0.857026 -0.088125 -0.507681 --0.877985 0.185430 -0.441313 --0.043430 0.961550 -0.271174 --0.990995 -0.041542 0.127294 --0.903050 0.292118 -0.314911 --0.942188 0.278749 0.185960 --0.955011 -0.004890 0.296529 --0.948433 0.031262 0.315434 --0.976007 -0.019124 0.216900 --0.718538 -0.577413 0.387682 --0.991702 -0.018393 -0.127235 --0.979817 0.174027 0.098356 --0.998230 0.058809 -0.008833 --0.984876 -0.045133 0.167281 --0.949143 -0.314733 0.008420 --0.987063 -0.156154 0.036378 --0.970871 0.192898 0.142127 --0.966880 -0.215945 0.136058 --0.928213 -0.199749 0.313881 --0.955036 -0.019928 0.295821 --0.925248 -0.057994 0.374904 --0.874509 0.292685 -0.386742 --0.885194 0.459544 -0.072461 --0.708874 -0.524534 0.471551 --0.858544 -0.331088 0.391515 --0.912363 -0.407757 -0.036446 --0.717207 -0.356581 0.598719 --0.798841 -0.191054 0.570396 --0.876730 -0.232293 0.421171 --0.784802 -0.301011 0.541737 --0.854864 -0.259558 -0.449264 --0.722984 -0.445958 0.527651 --0.987661 -0.103047 0.117930 --0.904943 0.048348 0.422778 --0.872738 -0.315113 0.372870 --0.897967 -0.439022 -0.030245 --0.983646 -0.115265 0.138398 --0.722771 -0.493188 0.484115 --0.638581 -0.459765 0.617115 --0.829588 0.161011 -0.534658 --0.826790 0.337747 -0.449827 --0.314816 0.338282 -0.886823 --0.962478 -0.154020 -0.223413 --0.811908 -0.050897 -0.581563 --0.381669 -0.007687 -0.924267 --0.795169 -0.458591 -0.396737 -0.263702 -0.227402 -0.937416 -0.052148 -0.739073 -0.671604 --0.665317 -0.603288 -0.439769 --0.960473 0.124329 0.249065 --0.974838 0.184047 0.125765 --0.946581 0.267393 0.180239 --0.980437 -0.147465 0.130378 --0.689989 0.712176 0.129309 --0.923444 -0.376515 0.074086 --0.874430 0.367818 0.316358 --0.533907 0.795446 -0.286721 --0.956982 0.152731 0.246695 --0.943559 0.009861 0.331058 --0.773682 -0.573262 -0.269790 --0.767335 0.239828 0.594710 --0.963233 0.098511 0.249955 --0.991509 -0.108537 0.071624 --0.427788 -0.794663 0.430706 --0.459411 -0.750314 0.475365 --0.985432 0.103510 0.134939 --0.845305 -0.526547 -0.090601 --0.975165 0.045730 0.216705 --0.750645 0.641403 -0.158540 --0.979797 -0.199757 -0.009737 --0.836356 0.541408 0.085937 --0.902772 0.427029 0.051470 --0.978769 0.146769 0.143073 --0.986469 0.150347 0.065385 --0.960385 0.278438 0.011559 --0.558775 0.828105 -0.044860 --0.707996 0.596312 0.378357 --0.443709 -0.581221 -0.682132 --0.218060 0.648388 -0.729412 --0.730003 0.281428 -0.622811 --0.507320 0.647338 -0.568842 --0.135411 0.845343 -0.516778 --0.766727 -0.068987 -0.638255 --0.426001 -0.737705 -0.523752 --0.670633 0.149865 0.726493 --0.815992 0.072802 0.573461 --0.700383 0.557405 0.445828 --0.441738 0.795203 0.415356 --0.851589 0.235924 0.468119 --0.764006 0.453143 0.459300 --0.890321 0.066830 0.450402 --0.860215 0.357054 -0.364063 --0.807599 -0.522162 -0.274099 --0.514032 -0.853765 0.082805 --0.902848 0.035002 0.428533 --0.855854 0.007371 0.517164 --0.954109 -0.119841 0.274436 --0.794496 -0.538512 -0.280680 --0.950058 -0.250975 0.185475 --0.766529 -0.513946 0.385089 --0.411919 -0.424429 -0.806339 --0.377454 -0.272320 -0.885082 --0.717172 -0.473942 -0.510924 --0.761422 -0.530030 -0.373237 --0.779644 -0.285623 -0.557292 --0.961199 -0.141742 0.236653 --0.943139 -0.016746 0.331978 --0.817026 -0.281295 -0.503331 --0.764413 -0.243793 -0.596856 --0.594518 0.167471 0.786449 --0.829873 -0.271254 0.487578 --0.674183 -0.248315 0.695570 --0.641775 -0.764352 -0.062377 --0.940156 -0.288830 -0.180789 --0.602983 -0.739055 -0.300349 --0.930067 0.332895 -0.155423 --0.993055 0.019186 0.116073 --0.707994 0.435252 0.556147 --0.461840 -0.804225 -0.374068 --0.456620 -0.883707 -0.102762 --0.973683 0.071030 0.216555 --0.952168 -0.110378 0.284944 --0.808832 -0.527754 0.259357 --0.973167 -0.160203 0.165167 --0.917826 -0.143113 0.370289 --0.918086 -0.271785 0.288533 --0.964311 -0.069554 0.255473 --0.943868 -0.163482 0.287030 --0.952065 -0.147443 0.268016 --0.958537 -0.175048 0.224866 --0.854880 -0.486141 0.181240 --0.508520 -0.803833 0.308643 --0.841135 -0.344225 0.417135 --0.998475 0.052888 0.015861 --0.999247 0.021279 0.032455 --0.981815 -0.146620 0.120591 --0.571997 -0.459413 -0.679529 --0.967665 -0.136963 0.211815 --0.990546 0.028564 0.134177 --0.975529 0.145162 0.165142 --0.974727 -0.176852 0.136492 --0.968637 0.161278 0.189028 --0.882900 0.192757 0.428174 --0.522162 -0.843911 0.123132 --0.272007 -0.932859 0.236190 -0.000000 -0.979851 0.199732 --0.984543 -0.068119 -0.161353 --0.974168 -0.067435 -0.215522 --0.963970 -0.095746 -0.248181 --0.433937 -0.467965 0.769876 --0.516776 -0.526145 0.675362 -0.000000 -0.824471 0.565904 --0.358507 -0.756918 0.546396 --0.226966 -0.514822 0.826707 -0.000000 -0.580842 0.814017 --0.247088 -0.553282 0.795504 --0.811315 -0.579052 -0.080425 --0.000000 -0.061781 -0.998090 -0.000000 0.121777 -0.992558 --0.205180 -0.414142 -0.886785 -0.000000 -0.268335 -0.963326 --0.578335 0.191101 -0.793101 --0.586495 0.088798 -0.805070 --0.213184 0.127287 -0.968685 --0.398134 -0.063141 -0.915152 --0.425673 0.117315 -0.897240 --0.195495 -0.065166 -0.978537 --0.382520 -0.256272 -0.887695 --0.212752 -0.262590 -0.941161 --0.391840 -0.404593 -0.826297 --0.886289 -0.085181 -0.455232 --0.970476 -0.179396 0.161227 --0.957282 -0.097371 0.272269 --0.984517 -0.175237 0.004224 --0.972635 -0.231511 0.019611 --0.798771 -0.348572 0.490369 --0.777012 -0.243298 0.580568 --0.894622 -0.203100 0.397997 --0.882008 -0.357072 0.307509 --0.846795 -0.160731 0.507054 --0.622322 -0.626609 0.469122 --0.632902 -0.405001 0.659855 --0.714751 -0.425683 0.554910 --0.743031 -0.326488 0.584218 --0.642698 -0.764583 0.048511 --0.823938 -0.524178 0.215320 --0.725937 -0.617826 0.302169 --0.736140 -0.676800 0.006349 --0.894402 -0.433765 0.109056 --0.958184 -0.265907 0.105717 --0.840547 -0.282283 0.462382 --0.913360 -0.278965 0.296566 -0.000000 0.234020 -0.972232 --0.952522 -0.103807 -0.286229 --0.909222 -0.043731 -0.414008 --0.920522 -0.169987 -0.351773 --0.929267 -0.137178 -0.342994 --0.802489 -0.076649 -0.591723 --0.886554 -0.099004 -0.451907 --0.865645 -0.169427 -0.471120 --0.847409 -0.230792 -0.478155 --0.861562 -0.135177 -0.489324 --0.973709 -0.060263 -0.219679 --0.986946 -0.093294 -0.131281 --0.996715 -0.059910 -0.054501 --0.966254 -0.080383 -0.244728 --0.271403 0.125485 -0.954251 --0.798880 0.590324 -0.115359 --0.321839 0.875730 -0.359883 --0.336732 0.925480 -0.173488 --0.631494 0.775352 -0.006745 --0.495170 0.851507 -0.172462 --0.644685 0.748051 -0.157487 --0.198580 0.963748 -0.178200 -0.000000 0.984498 -0.175398 --0.988150 -0.099280 -0.117063 --0.981824 -0.137410 -0.130924 --0.979202 -0.158832 -0.126237 --0.959754 0.270860 0.074215 --0.974779 0.217614 0.049498 --0.779630 -0.183352 -0.598798 --0.555193 -0.228180 -0.799809 --0.698758 -0.200421 -0.686708 --0.877689 0.472270 -0.081389 --0.945573 0.324316 0.026652 --0.956572 0.279028 -0.084336 --0.963718 0.266565 0.013836 --0.936383 0.349513 -0.032062 --0.833406 0.057156 -0.549698 --0.711627 0.126852 -0.691010 --0.712822 0.030309 -0.700690 --0.821898 -0.017687 -0.569360 --0.716245 -0.065237 -0.694793 --0.577971 -0.050044 -0.814521 --0.823477 0.506817 -0.254994 --0.907212 0.379691 -0.181111 --0.329128 0.769358 -0.547506 --0.987304 0.154327 0.037611 --0.977758 0.209646 -0.006183 --0.544088 0.660656 -0.517207 --0.675920 0.658353 -0.331216 --0.508557 0.786229 -0.351017 --0.694439 0.541717 -0.473601 --0.832229 0.406348 -0.377197 --0.000000 0.918672 -0.395021 --0.195793 0.904827 -0.378091 --0.992335 -0.075420 -0.097891 --0.978314 -0.152954 -0.139665 --0.564792 0.354394 -0.745262 --0.931750 0.073189 -0.355649 --0.929197 -0.005527 -0.369544 --0.975347 -0.007279 -0.220559 --0.974595 -0.087193 -0.206305 --0.844664 0.162658 -0.509985 --0.717342 0.258658 -0.646929 --0.373531 0.450967 -0.810619 --0.207205 0.310045 -0.927867 --0.402369 0.255777 -0.879021 -0.000000 0.536440 -0.843938 -0.000000 0.324092 -0.946026 --0.547794 0.515189 -0.659167 --0.181223 0.810249 -0.557363 --0.931228 0.184555 -0.314251 --0.923846 0.286286 -0.254064 --0.977586 0.100307 -0.185106 --0.970015 0.204322 -0.131623 --0.845062 0.275866 -0.458005 --0.707952 0.401117 -0.581300 --0.996232 0.038288 -0.077816 --0.994631 0.101726 0.018987 --0.990829 0.130856 -0.033684 --0.996921 -0.031934 -0.071622 --0.993277 -0.048924 -0.104919 --0.337586 0.621843 -0.706645 --0.193548 0.516283 -0.834261 --0.174113 0.678423 -0.713741 -0.000000 0.826048 -0.563600 -0.000000 0.690791 -0.723054 --0.930511 -0.219477 -0.293222 --0.733490 -0.178735 -0.655779 --0.617907 -0.143398 -0.773064 --0.913354 -0.075933 -0.400023 --0.790483 -0.119137 -0.600786 --0.937816 -0.157390 -0.309402 --0.000000 0.999942 0.010758 --0.765726 0.643162 0.002469 --0.735769 0.667673 0.113389 --0.916216 0.393863 0.073623 --0.919753 0.369585 0.132142 -0.000000 0.943228 0.332146 -0.000000 0.985798 0.167938 --0.873521 0.461926 0.153577 --0.812342 0.553678 0.183141 --0.828996 0.552096 0.089198 --0.613684 0.779049 0.128357 --0.712064 0.664851 0.225694 --0.877528 0.473165 0.077843 --0.846979 0.531597 0.005614 --0.898900 0.437855 0.016149 --0.325108 0.932899 0.154935 --0.429060 0.858431 0.281076 --0.194875 0.980825 0.002514 --0.172816 0.971556 0.161907 --0.347036 0.937837 -0.005240 --0.490658 0.871343 -0.003966 --0.479383 0.866352 0.140095 --0.278588 0.912717 0.298891 --0.152147 0.934732 0.321134 --0.578843 0.774221 0.255975 --0.552303 -0.372971 -0.745556 --0.844268 -0.287048 -0.452564 --0.858036 -0.351745 -0.374233 --0.771428 -0.280374 -0.571217 --0.804591 -0.343269 -0.484561 --0.693832 -0.350667 -0.628991 --0.765735 -0.335063 -0.548983 --0.691329 -0.308203 -0.653510 --0.755147 -0.301479 -0.582119 --0.565795 -0.385922 -0.728657 --0.663535 -0.317099 -0.677620 --0.864143 -0.306809 -0.398905 --0.822453 -0.237097 -0.517065 --0.856754 -0.466072 -0.220792 --0.912110 -0.365706 -0.185240 --0.852419 -0.497838 -0.159811 --0.964236 -0.171423 -0.202148 --0.929693 -0.326307 -0.170862 --0.974497 -0.219952 -0.044449 --0.960308 -0.255743 -0.111373 --0.968611 -0.246724 -0.030339 --0.940176 -0.339486 -0.028624 --0.957777 -0.225389 -0.178500 --0.966237 -0.229154 -0.117789 --0.925229 -0.290974 -0.243485 --0.899765 -0.322933 -0.293493 --0.964790 -0.218859 -0.145883 --0.930766 -0.312926 -0.189083 --0.926517 -0.245303 -0.285295 --0.947158 -0.257689 -0.191019 --0.475341 0.074651 -0.876629 --0.687555 0.056848 -0.723904 --0.691387 -0.082926 -0.717709 --0.394512 -0.266675 -0.879343 --0.574535 -0.222638 -0.787618 --0.421485 -0.123530 -0.898382 --0.524551 -0.339003 -0.780976 -0.000000 -0.433503 -0.901152 --0.000000 0.136213 -0.990680 -0.000000 -0.084150 -0.996453 -0.000000 -0.405900 -0.913918 --0.205871 -0.286461 -0.935712 -0.000000 -0.487516 -0.873114 --0.199213 -0.474467 -0.857435 --0.407232 -0.429332 -0.806124 --0.182391 -0.417215 -0.890317 --0.376785 -0.353125 -0.856350 --0.259178 -0.104877 -0.960119 --0.313150 -0.228337 0.921846 --0.500190 -0.157025 0.851559 --0.554504 -0.261038 0.790180 --0.400162 -0.485786 0.777099 --0.517149 -0.060134 0.853780 --0.449490 -0.169593 0.877039 --0.598593 -0.160543 0.784801 --0.536557 -0.320512 0.780627 --0.569768 -0.266026 0.777557 --0.365719 -0.034633 0.930081 --0.116573 -0.046647 0.992086 -0.151854 0.131281 0.979646 -0.338837 0.069631 0.938265 -0.195765 0.154706 0.968371 -0.377517 0.069114 0.923420 --0.113935 0.047775 0.992339 --0.056759 -0.010118 0.998337 --0.391215 -0.277278 0.877535 -0.020111 0.141958 0.989668 -0.122834 0.214488 0.968972 --0.381697 0.288701 0.878043 --0.257302 0.281171 0.924521 --0.118581 0.166542 0.978878 -0.032515 0.001011 0.999471 --0.285734 0.026256 0.957949 --0.420478 0.101275 0.901633 --0.461839 0.368066 0.806990 --0.522996 0.166443 0.835926 --0.111175 -0.024710 0.993494 -0.111767 0.004368 0.993725 --0.553930 -0.144730 0.819887 --0.160411 -0.050901 0.985737 -0.007818 0.314013 0.949386 --0.650958 -0.155012 0.743119 -0.000000 -0.979851 0.199732 --0.542509 -0.839972 -0.011408 --0.522162 -0.843911 0.123132 --0.272007 -0.932859 0.236190 --0.226738 -0.968153 0.106161 --0.875054 -0.461418 0.146195 --0.411729 0.095067 0.906334 --0.290269 0.030049 0.956473 --0.094207 -0.514111 0.852534 --0.000000 -0.248752 0.968567 --0.000000 -0.510574 0.859834 --0.516698 -0.183732 0.836221 --0.305744 0.383558 0.871438 -0.014579 -0.830454 0.556897 --0.102052 -0.355485 0.929094 --0.210230 -0.490513 0.845695 --0.354984 -0.465491 0.810743 -0.035565 -0.892710 0.449227 --0.131173 -0.704827 0.697146 -0.087013 -0.216642 0.972366 -0.190848 -0.296568 0.935748 --0.159456 0.966550 0.200887 --0.169778 0.978355 0.118307 --0.955394 -0.170387 0.241226 --0.402974 -0.438977 0.803064 -0.433774 -0.867288 0.244237 --0.406295 -0.279661 0.869893 --0.481837 0.411200 0.773788 --0.179578 0.076957 0.980729 --0.556404 -0.185489 0.809944 --0.625364 -0.132380 0.769023 --0.604003 0.068922 0.793996 --0.622807 -0.148464 0.768160 -0.000000 0.701867 0.712308 -0.000000 0.673554 0.739138 --0.572893 -0.089475 0.814731 --0.671408 -0.294333 0.680132 -0.000000 -0.483484 0.875353 -0.000000 -0.261441 0.965219 --0.819993 0.339982 0.460460 --0.750666 0.295253 0.591038 --0.470195 0.202399 0.859041 --0.618608 0.300711 0.725876 --0.638344 0.218909 0.737967 --0.186867 0.251230 0.949718 --0.407116 0.254306 0.877260 --0.260208 0.152186 0.953484 --0.545103 0.213728 0.810668 --0.189538 0.183997 0.964479 --0.197209 0.129451 0.971777 -0.007301 0.033429 0.999414 --0.093148 0.249081 0.963993 -0.102278 0.022536 0.994501 --0.389567 0.314215 0.865741 --0.162563 0.265781 0.950228 --0.301532 -0.314584 0.900064 --0.320954 -0.284635 0.903311 --0.404828 -0.122604 0.906136 --0.500829 -0.054045 0.863857 --0.281205 -0.424058 0.860871 --0.492069 -0.263536 0.829709 --0.427806 -0.291341 0.855630 --0.127497 -0.268986 0.954668 --0.537090 -0.098688 0.837732 --0.487935 -0.174906 0.855177 --0.602596 -0.218022 0.767688 --0.622335 -0.262939 0.737266 --0.545703 -0.136421 0.826800 --0.558704 -0.123989 0.820047 --0.634783 -0.129111 0.761827 --0.613350 -0.261187 0.745375 --0.630105 -0.205338 0.748869 --0.450235 -0.181340 0.874302 --0.139541 0.012086 0.990143 --0.040867 0.115464 0.992471 --0.121302 0.125950 0.984593 --0.039888 0.133921 0.990189 --0.046659 0.155473 0.986738 --0.146124 0.220489 0.964382 --0.432521 -0.082351 0.897855 --0.490202 0.100196 0.865830 --0.467665 0.068383 0.881257 --0.305656 0.133435 0.942746 --0.306354 0.048397 0.950687 --0.116535 0.115056 0.986500 --0.403605 -0.219082 0.888317 --0.205734 -0.474682 0.855775 --0.370427 -0.074745 0.925850 --0.208402 -0.246155 0.946560 --0.203183 -0.076174 0.976173 --0.418504 -0.443508 0.792563 --0.454712 -0.026071 0.890257 --0.279513 0.052415 0.958710 --0.628408 -0.073047 0.774446 --0.000000 -0.008346 0.999965 --0.203835 0.111672 0.972615 --0.135119 0.014275 0.990727 --0.991371 0.071385 0.109949 --0.951615 -0.156737 0.264315 --0.928623 -0.298812 0.219933 --0.907739 -0.174697 0.381432 --0.956480 -0.270013 0.110628 --0.931619 -0.362670 -0.023609 --0.973047 -0.227614 0.037037 --0.989057 -0.117960 0.088608 --0.193158 0.143397 0.970632 --0.122514 0.005138 0.992454 --0.980411 -0.077530 0.181064 --0.975135 -0.153188 0.160142 --0.988855 -0.097694 0.112347 --0.989521 -0.075967 0.122789 --0.982659 -0.098195 0.157288 --0.836061 -0.538395 -0.105518 --0.895885 -0.441238 0.051955 -0.000000 -0.996009 0.089252 --0.178658 -0.982429 0.053983 --0.311577 -0.947225 0.075398 --0.673899 -0.390746 0.627039 --0.623484 -0.570354 0.534757 --0.572486 -0.387158 0.722751 --0.536834 -0.201241 0.819336 --0.000000 -0.973560 0.228431 -0.000000 -0.982446 0.186548 --0.152245 -0.978456 0.139445 --0.124920 -0.972579 0.196176 --0.261490 -0.957411 0.122421 --0.419251 -0.893658 0.160016 --0.247911 -0.952633 0.176154 --0.654390 -0.358020 0.666030 --0.973090 0.087820 0.213034 -0.000000 0.752840 0.658203 --0.370477 0.315527 0.873607 --0.407343 0.309381 0.859276 --0.291775 0.242568 0.925218 --0.822482 0.117408 0.556542 --0.783334 0.115514 0.610774 --0.615899 0.312884 0.723030 --0.572905 0.252670 0.779703 --0.807421 0.148868 0.570884 --0.774882 0.092609 0.625285 --0.754959 -0.010245 0.655692 --0.687165 0.085166 0.721493 --0.533049 0.134652 0.835301 --0.705935 0.181977 0.684500 --0.354572 0.167878 0.919835 --0.767420 0.226636 0.599752 --0.673642 0.219829 0.705608 --0.797788 0.061213 0.599823 --0.716139 0.068039 0.694633 --0.743304 -0.039456 0.667789 -0.000000 0.633459 0.773777 --0.703592 0.362452 0.611218 --0.897135 0.289124 0.333999 --0.843660 0.364942 0.393772 --0.750200 0.476920 0.457982 --0.641751 0.575116 0.507344 --0.507983 0.652620 0.562175 --0.359227 0.711906 0.603445 --0.466656 0.553238 0.690044 --0.106112 0.760509 0.640599 --0.911470 0.175135 0.372224 --0.652352 0.078999 0.753787 --0.939701 0.045720 0.338928 --0.821558 0.447009 0.353873 --0.882144 0.341457 0.324390 --0.841291 0.304029 0.446985 --0.902851 -0.105175 0.416890 --0.855397 -0.256553 0.449975 --0.831825 0.388190 0.396706 --0.849854 0.186846 0.492784 --0.840732 0.410468 0.353108 --0.832705 0.383307 0.399598 --0.743875 0.251021 0.619386 --0.805521 0.367754 0.464642 --0.857790 0.309616 0.410286 --0.828149 0.438302 0.349372 --0.824045 0.368373 0.430408 --0.107992 -0.901357 0.419395 --0.604230 -0.665155 0.438720 --0.158620 -0.337107 0.928008 --0.342926 -0.407667 0.846292 --0.349728 0.215840 0.911649 --0.208249 -0.211262 0.954987 -0.423338 -0.373675 0.825319 --0.159889 -0.983513 0.084483 --0.646791 0.131442 0.751255 --0.362685 0.118073 0.924402 --0.832604 -0.264574 0.486592 --0.579463 0.219696 0.784829 --0.557077 0.060803 0.828232 --0.574833 0.212321 0.790245 --0.597792 0.237803 0.765568 --0.389436 0.527145 0.755287 --0.279991 0.486188 0.827784 -0.808045 0.579269 -0.107292 --0.222128 0.209055 0.952342 --0.555378 0.201156 0.806903 --0.536459 0.210289 0.817307 --0.536505 0.339292 0.772686 --0.555155 0.231684 0.798828 --0.468868 0.326433 0.820734 --0.504888 0.156397 0.848898 --0.362238 0.253581 0.896928 --0.497181 0.020549 0.867404 --0.719119 -0.425915 0.549057 --0.750357 -0.291234 0.593420 --0.752349 -0.114848 0.648676 --0.706163 -0.145031 0.693037 --0.711947 -0.219099 0.667178 --0.951528 0.138503 0.274610 -0.000000 0.602964 0.797768 --0.912739 0.204290 0.353798 --0.862521 0.267079 0.429798 --0.802986 0.321261 0.502001 --0.707494 0.407375 0.577492 --0.747481 0.307999 0.588565 --0.554356 0.399226 0.730279 --0.600169 0.484712 0.636279 --0.322225 0.598285 0.733639 --0.059935 0.608160 0.791549 --0.198798 0.616384 0.761939 --0.924877 0.157071 0.346311 -0.000226 -0.275884 0.961191 -0.021490 -0.480096 0.876953 -0.096842 -0.196651 0.975679 -0.229856 -0.096126 0.968466 -0.295664 -0.182014 0.937792 --0.433323 -0.482227 0.761373 --0.939931 -0.336557 0.057082 --0.301151 -0.532736 0.790886 -0.147151 0.592320 0.792151 --0.111264 0.954697 0.275996 -0.186766 0.376807 0.907268 -0.107400 -0.187310 0.976412 --0.045883 -0.042531 0.998041 -0.133070 0.045369 0.990068 -0.178203 0.101325 0.978763 --0.111145 0.298032 0.948063 --0.105754 0.232976 0.966715 -0.052277 0.204607 0.977447 -0.166136 0.100251 0.980994 -0.200967 0.185960 0.961785 -0.259094 0.330387 0.907588 -0.187847 0.630008 0.753528 --0.773579 0.463084 0.432585 --0.609218 0.539684 0.581029 --0.364800 0.626172 0.689079 --0.593055 0.576151 0.562438 --0.350188 0.661226 0.663436 --0.770031 0.450064 0.452211 --0.738643 0.413454 0.532412 --0.613913 -0.090471 0.784172 --0.724962 0.196773 0.660083 --0.751822 0.406635 0.519050 --0.574828 0.502498 0.645809 --0.330708 0.653437 0.680920 --0.589470 0.576994 0.565335 --0.494443 -0.421953 0.759922 --0.355510 0.578742 0.733942 --0.592439 0.496734 0.634249 --0.678032 0.426978 0.598300 -0.000000 0.300306 0.953843 -0.000001 -0.174710 0.984620 --0.360383 0.262921 0.894984 --0.025120 0.230992 0.972631 --0.000000 0.217769 0.976000 --0.155964 0.022409 0.987509 --0.477941 -0.527498 0.702366 -0.000000 -0.619481 0.785011 -0.000000 -0.005220 0.999986 -0.000000 -0.526602 0.850112 --0.062806 0.402712 0.913169 -0.056024 0.389638 0.919263 --0.000000 0.389419 0.921061 -0.075127 0.517712 0.852250 -0.000000 0.537772 0.843090 --0.340802 -0.161094 0.926231 --0.493946 -0.157875 0.855040 --0.443153 -0.559183 0.700664 --0.318873 0.531781 0.784557 --0.576467 0.249663 0.778045 --0.058598 -0.320310 0.945499 --0.095565 -0.140418 0.985470 --0.436825 -0.072204 0.896644 --0.107042 -0.048446 0.993074 --0.085586 -0.056537 0.994725 --0.046013 -0.022958 0.998677 --0.100464 -0.134767 0.985771 -0.000000 -0.021977 0.999759 --0.000000 -0.105166 0.994455 --0.090705 -0.241126 0.966246 --0.136541 -0.219989 0.965899 --0.169191 -0.049974 0.984316 --0.212145 -0.282105 0.935634 --0.294117 -0.148374 0.944182 --0.512303 0.381570 0.769383 --0.346351 0.344743 0.872464 --0.197044 0.304069 0.932049 --0.114551 0.293644 0.949027 --0.107269 0.296022 0.949139 --0.182375 0.264596 0.946957 --0.395499 0.226119 0.890197 --0.323583 0.194205 0.926055 --0.234970 0.255761 0.937750 -0.000000 0.604493 0.796610 --0.321648 0.571304 0.755086 --0.639131 0.386174 0.665118 --0.397468 0.311608 0.863087 --0.564878 0.343819 0.750134 --0.219407 0.295985 0.929653 --0.116896 0.305288 0.945058 --0.133636 0.285401 0.949046 --0.255041 0.219915 0.941590 --0.467886 0.090252 0.879168 --0.643300 0.039193 0.764611 --0.629925 -0.018225 0.776442 --0.515591 0.093108 0.851761 --0.733405 -0.080457 0.675014 --0.815774 -0.117761 0.566255 --0.769188 0.005076 0.639003 --0.876467 -0.018814 0.481094 --0.592695 0.422826 0.685515 --0.443272 0.429666 0.786700 --0.555682 0.492490 0.669830 --0.613880 0.411486 0.673670 --0.643430 0.423383 0.637765 --0.525889 0.434024 0.731481 --0.000000 0.490721 0.871317 --0.574973 0.403179 0.711936 --0.302162 0.470267 0.829185 --0.249436 0.203304 0.946810 --0.578548 0.262167 0.772367 --0.463910 0.177842 0.867848 --0.979121 0.167934 0.114548 --0.955021 0.246627 0.164652 --0.919753 0.369585 0.132142 --0.959754 0.270860 0.074215 --0.987304 0.154327 0.037611 --0.968194 0.141781 0.206152 --0.917294 0.326827 0.227501 --0.938986 0.221668 0.263000 --0.866911 0.423611 0.262716 --0.782421 0.534925 0.318862 --0.676628 0.636112 0.370859 --0.551681 0.726842 0.409083 --0.394027 0.807777 0.438451 --0.812342 0.553678 0.183141 --0.873521 0.461926 0.153577 --0.578843 0.774221 0.255975 --0.712064 0.664851 0.225694 --0.429060 0.858431 0.281076 --0.152147 0.934732 0.321134 --0.117054 0.876695 0.466587 --0.239225 0.744882 0.622835 --0.278588 0.912717 0.298891 --0.244938 0.854173 0.458687 --0.984132 0.098132 0.147832 --0.989438 0.111794 0.092271 --0.969379 0.058470 0.238505 --0.995813 -0.069578 0.059286 --0.998637 -0.046916 -0.022885 --0.999539 -0.016914 0.025217 --0.992335 -0.075420 -0.097891 --0.995594 -0.077054 -0.053431 --0.996530 -0.025279 0.079302 --0.996447 -0.084122 0.004216 --0.994798 0.077765 0.065804 --0.994631 0.101726 0.018987 --0.999713 -0.014538 -0.019067 --0.999319 0.030978 -0.020038 --0.996921 -0.031934 -0.071622 --0.998881 0.025078 0.040100 --0.999321 -0.005114 0.036500 --0.995076 -0.046608 0.087478 --0.984399 0.064556 0.163677 --0.996275 0.037078 0.077856 --0.992200 0.021341 0.122818 --0.474657 0.273573 0.836575 --0.425466 0.206284 0.881150 --0.541394 -0.212669 0.813427 --0.569411 -0.177401 0.802683 --0.189510 -0.056392 0.980258 --0.000000 -0.086227 0.996276 --0.533661 -0.157975 0.830813 --0.503556 -0.143839 0.851905 --0.493827 -0.164978 0.853766 --0.472734 -0.160248 0.866512 --0.521076 -0.218911 0.824960 --0.238424 0.225082 0.944718 --0.000000 -0.047537 0.998870 --0.412263 -0.217952 0.884611 --0.433347 -0.216013 0.874956 --0.412816 -0.162679 0.896169 --0.514229 -0.108871 0.850715 --0.524048 -0.129669 0.841760 --0.422184 -0.112733 0.899473 --0.314747 -0.072331 0.946416 --0.480090 -0.097288 0.871808 --0.401032 -0.230390 0.886620 --0.266829 -0.264700 0.926680 --0.528176 -0.046848 0.847842 --0.435632 0.012315 0.900041 --0.333630 0.159071 0.929187 --0.510024 -0.042214 0.859124 --0.491776 -0.107345 0.864080 --0.440876 0.091799 0.892861 --0.396413 0.326182 0.858174 --0.369379 0.296355 0.880757 --0.337373 0.394918 0.854529 --0.163977 0.250533 0.954120 --0.442963 0.376239 0.813774 --0.441822 0.257336 0.859402 --0.482730 0.339664 0.807217 --0.430468 0.270991 0.860965 --0.474125 0.357419 0.804647 --0.460235 0.346110 0.817553 --0.444120 0.384013 0.809501 --0.591461 0.024921 0.805948 --0.599856 -0.547432 0.583516 --0.491533 0.185540 0.850865 --0.285123 0.099415 0.953321 --0.420382 -0.347936 0.837986 -0.402541 -0.870297 0.283803 --0.116778 -0.964476 0.236956 -0.161050 -0.948664 0.272212 --0.809511 0.224830 0.542350 --0.675934 -0.124982 0.726287 --0.503260 -0.431154 0.748889 --0.872239 0.074727 0.483337 --0.679987 -0.725512 0.106064 --0.728615 -0.666241 0.158882 --0.723210 -0.690505 0.013058 --0.808675 -0.563240 0.169724 --0.294532 -0.554282 0.778474 --0.269971 -0.742928 0.612515 --0.264587 -0.619170 0.739339 --0.469485 -0.725283 0.503536 --0.707132 -0.423556 0.566184 --0.778178 -0.230053 0.584393 -0.139404 -0.820285 0.554707 --0.257555 -0.656935 0.708591 -0.184924 -0.277847 0.942658 --0.767109 -0.096499 0.634218 --0.474497 -0.597806 0.646127 --0.578990 -0.511899 0.634611 -0.000000 -0.999718 0.023761 --0.469877 -0.869255 0.153662 --0.848874 -0.146024 0.508026 --0.787608 -0.154734 0.596431 --0.820306 -0.291635 0.491983 --0.777955 -0.203305 0.594520 -0.000000 -0.996966 0.077837 --0.213397 -0.976736 0.021199 --0.504243 -0.862207 0.048347 --0.405689 -0.913821 0.018627 --0.352584 -0.935479 0.023761 --0.718296 -0.686280 0.114327 --0.844157 -0.469266 0.259208 --0.786591 -0.450638 0.422138 --0.888692 -0.301232 0.345668 --0.839793 -0.190961 0.508214 --0.913823 -0.123550 0.386862 --0.835804 -0.147852 0.528746 --0.906971 -0.148750 0.394052 --0.897615 -0.120492 0.423992 --0.876411 0.188844 0.442991 --0.781783 0.188119 0.594497 --0.842735 0.161447 0.513549 --0.955397 -0.101383 0.277379 --0.976173 -0.088931 0.197932 --0.949262 -0.104107 0.296755 --0.941809 -0.039726 0.333794 --0.880023 0.113124 0.461261 --0.865653 0.185218 0.465123 --0.936501 0.069116 0.343785 --0.978451 -0.089350 0.186148 --0.971788 -0.097017 0.214977 --0.966803 -0.054487 0.249646 --0.967391 0.017687 0.252668 --0.921458 0.082075 0.379709 --0.950219 0.074577 0.302525 --0.888179 0.108203 0.446576 --0.920430 0.110600 0.374936 --0.000000 0.462538 0.886600 --0.413262 0.444997 0.794476 --0.842435 0.177300 0.508791 --0.875786 0.189644 0.443885 --0.783021 0.243749 0.572245 --0.823097 0.252414 0.508722 --0.657571 0.353783 0.665160 --0.266006 0.460814 0.846694 --0.038289 0.460032 0.887077 --0.161109 0.456566 0.874981 -0.000000 0.370830 0.928701 --0.232129 0.375208 0.897405 --0.495544 0.314895 0.809492 --0.355255 0.345768 0.868469 --0.596686 0.313671 0.738632 --0.692480 0.297894 0.657062 --0.212040 0.315917 0.924789 --0.104869 0.307533 0.945741 --0.031431 0.370535 0.928287 --0.136451 0.375236 0.916831 --0.991293 -0.026727 0.128938 --0.972830 0.045326 0.227042 --0.980826 0.016622 0.194174 --0.949734 0.071990 0.304668 -0.000000 0.254498 0.967073 -0.000000 0.149056 0.988829 --0.128444 0.275381 0.952716 --0.105407 0.124722 0.986577 --0.852540 0.143275 0.502640 --0.880974 0.143191 0.450978 --0.847673 0.146056 0.510018 --0.345733 0.331350 0.877881 --0.286029 0.254022 0.923937 --0.230096 0.303774 0.924542 --0.177336 0.171383 0.969113 --0.822163 0.170583 0.543093 --0.661606 0.322256 0.677074 --0.763419 0.239572 0.599830 --0.734384 0.237925 0.635666 --0.530223 0.372877 0.761463 --0.462401 0.351506 0.814020 --0.428053 0.361618 0.828253 --0.009958 0.252791 0.967470 --0.055094 0.126049 0.990493 --0.023409 0.147335 0.988810 --0.053275 0.255762 0.965271 --0.018625 0.288096 0.957420 --0.023191 0.308519 0.950936 --0.285123 0.315992 0.904906 --0.325221 0.301397 0.896321 --0.903481 0.132684 0.407575 --0.928657 0.105362 0.355662 --0.877777 0.136591 0.459184 --0.897043 0.110664 0.427863 --0.842460 0.159779 0.514521 --0.863195 0.130530 0.487704 --0.480778 0.342469 0.807197 --0.532102 0.293694 0.794110 --0.398228 0.324299 0.858047 --0.444158 0.283211 0.850009 --0.576362 0.338951 0.743586 --0.629068 0.302075 0.716257 --0.788875 0.212436 0.576669 --0.814622 0.187213 0.548946 --0.694640 0.285501 0.660276 --0.740516 0.256189 0.621292 --0.915417 0.136373 0.378701 --0.000000 0.287774 0.957698 --0.078777 0.295291 0.952154 --0.167833 0.306943 0.936813 --0.992724 -0.099922 0.067191 --0.990113 -0.084685 0.111821 --0.975810 -0.214272 -0.043391 --0.942989 -0.306779 -0.129070 --0.948964 -0.301972 -0.090994 --0.992505 -0.091816 0.080652 --0.992402 -0.096037 0.076908 --0.991701 -0.126898 0.020648 --0.996634 -0.037722 0.072790 --0.987323 -0.097626 0.125149 --0.986819 -0.034718 0.158060 --0.988001 0.045078 0.147726 --0.960942 0.084486 0.263538 --0.886778 0.161857 0.432928 --0.997602 0.008727 0.068664 --0.990351 0.039184 0.132925 --0.963051 0.091168 0.253419 --0.961730 0.108527 0.251589 --0.935642 0.109949 0.335388 --0.337715 -0.094238 0.936519 --0.535775 -0.234386 0.811177 --0.282745 -0.104715 0.953462 -0.111191 -0.075595 0.990920 --0.333207 0.128971 0.933991 --0.618322 -0.240358 0.748268 --0.589388 -0.256643 0.766000 --0.014205 0.246927 0.968930 --0.003481 0.177769 0.984066 -0.067287 0.130976 0.989100 --0.272464 0.194337 0.942336 --0.157791 0.207534 0.965418 --0.169079 0.134369 0.976400 --0.618341 -0.162936 0.768834 --0.578756 0.138592 0.803638 -0.034543 -0.214007 0.976221 -0.033459 -0.309389 0.950347 --0.034979 -0.178704 0.983281 --0.067748 -0.132786 0.988827 --0.135531 -0.057681 0.989093 --0.303383 -0.049264 0.951594 --0.466008 -0.060921 0.882681 --0.540392 -0.203908 0.816332 --0.422533 -0.167907 0.890659 --0.647151 -0.137290 0.749898 --0.552690 0.028636 0.832895 --0.582235 -0.121450 0.803898 --0.705473 -0.156419 0.691261 --0.619356 0.024392 0.784731 --0.650242 0.288535 0.702804 --0.556197 0.313234 0.769759 --0.553958 0.266141 0.788859 --0.331575 0.313347 0.889872 --0.450724 0.317651 0.834234 --0.413106 0.305319 0.857976 --0.785054 0.153721 0.600050 --0.274146 0.363911 0.890176 --0.132857 0.293468 0.946692 --0.079638 0.241846 0.967041 --0.070970 0.162739 0.984114 --0.088483 0.241929 0.966251 --0.137294 0.263615 0.954808 --0.235697 0.270071 0.933546 --0.554397 0.193380 0.809474 --0.558374 0.317823 0.766294 --0.680161 0.177243 0.711313 --0.211144 -0.043071 0.976506 -0.074536 0.152154 0.985542 --0.322562 0.393440 0.860906 --0.145614 0.352120 0.924558 --0.474619 0.179443 0.861706 --0.298710 0.245535 0.922217 --0.492280 0.328114 0.806227 --0.103037 0.250638 0.962582 --0.077765 -0.317466 0.945076 -0.159590 -0.199293 0.966858 --0.109119 -0.370977 0.922209 --0.207752 -0.243616 0.947360 -0.029106 -0.229035 0.972983 --0.028544 -0.225760 0.973765 --0.410669 -0.028060 0.911353 --0.991425 -0.122490 0.045526 --0.986047 -0.166444 0.002629 --0.973415 -0.226958 -0.030879 --0.811315 -0.579052 -0.080425 --0.375511 -0.644130 0.666399 --0.642698 -0.764583 0.048511 --0.736140 -0.676800 0.006349 --0.720166 -0.690725 -0.065270 --0.651497 -0.757932 -0.033036 --0.136883 -0.865396 0.482030 --0.187464 -0.691695 0.697434 --0.760575 -0.635421 -0.133290 --0.842469 -0.499752 -0.201231 --0.751451 -0.659404 0.022549 --0.766647 -0.639855 -0.053276 --0.194502 -0.942985 0.270088 --0.000000 -0.884468 0.466601 --0.090467 -0.955211 0.281757 --0.000000 -0.952395 0.304866 --0.302690 -0.821982 0.482415 --0.660927 -0.582126 0.473608 --0.521485 -0.609270 0.597364 --0.435636 -0.824828 0.360388 --0.301076 -0.926866 0.224215 --0.560650 -0.777059 0.286096 --0.403335 -0.897840 0.176647 --0.538726 -0.777379 0.324740 --0.852419 -0.497838 -0.159811 --0.674206 -0.613708 0.410864 --0.578581 -0.778603 0.242943 --0.603304 -0.787681 0.124834 --0.700359 -0.659489 0.273076 --0.608910 -0.793012 0.018987 --0.901636 -0.403920 -0.154602 --0.874349 -0.453772 -0.172063 --0.926186 -0.324617 -0.191842 --0.903698 -0.374611 -0.207355 --0.912110 -0.365706 -0.185240 -0.000000 -0.089376 0.995998 -0.000001 0.291104 0.956692 --0.200144 -0.086594 0.975932 --0.423441 -0.358662 0.831901 --0.523507 -0.187034 0.831239 --0.321447 -0.450555 0.832870 --0.000000 -0.423081 0.906092 --0.582554 0.093522 0.807393 --0.569425 0.004640 0.822030 --0.449100 -0.034951 0.892798 --0.303784 -0.357245 0.883228 --0.590143 -0.039483 0.806333 --0.543743 0.129427 0.829212 --0.090334 0.506712 0.857370 --0.279857 0.415758 0.865347 --0.520402 0.120681 0.845351 --0.521897 -0.007625 0.852975 --0.368761 -0.350588 0.860874 --0.587060 -0.092700 0.804218 --0.000000 -0.558750 0.829336 --0.569841 -0.074161 0.818402 --0.541934 -0.029976 0.839886 --0.455482 -0.350911 0.818167 --0.534829 -0.075283 0.841600 --0.450882 -0.047645 0.891311 --0.267895 -0.286199 0.919958 --0.202670 0.037234 0.978539 --0.411361 -0.284396 0.865968 --0.534815 0.047751 0.843619 --0.137328 -0.510520 0.848829 --0.193038 -0.382333 0.903636 --0.360985 -0.386573 0.848676 --0.540080 -0.184087 0.821235 --0.514373 0.062868 0.855259 --0.161267 0.287675 0.944053 -0.000001 0.624947 0.780667 --0.326284 0.223931 0.918365 --0.370982 -0.212940 0.903897 --0.396249 -0.332685 0.855750 --0.485837 0.286440 0.825781 --0.449188 0.133474 0.883411 --0.317706 -0.462956 0.827487 --0.159487 -0.803197 0.573968 --0.179784 -0.405818 0.896097 --0.273324 -0.398217 0.875624 --0.149034 -0.843712 0.515694 --0.088115 -0.827029 0.555211 --0.000000 -0.875116 0.483913 --0.000000 -0.444492 0.895783 --0.099752 -0.884946 0.454885 --0.318915 -0.580899 0.748899 --0.322108 -0.637402 0.699976 -0.040986 -0.979681 0.196329 --0.043333 -0.945661 0.322255 --0.448092 -0.404572 0.797205 --0.448493 -0.440712 0.777578 --0.299210 -0.669246 0.680135 --0.362153 -0.562817 0.743023 -0.363149 -0.902947 0.229804 -0.122540 -0.974158 0.189739 --0.350664 -0.485507 0.800823 --0.502738 0.290407 0.814198 --0.403088 0.792142 0.458292 --0.541664 0.322249 0.776373 --0.332302 0.869979 0.364297 --0.525565 0.299165 0.796418 --0.344800 -0.365541 0.864577 --0.502010 0.016989 0.864695 --0.283912 0.769700 0.571800 --0.556358 0.159132 0.815563 --0.513073 0.275737 0.812850 --0.246026 0.961529 0.122205 --0.225445 0.963984 0.141097 --0.405019 0.024471 0.913981 --0.305881 0.711048 0.633126 --0.192378 0.290049 0.937477 --0.151882 0.716212 0.681156 --0.373904 0.275536 0.885593 --0.416558 0.719504 0.555692 --0.315438 -0.103865 0.943245 --0.325197 -0.524769 0.786680 --0.978314 -0.152954 -0.139665 --0.991702 -0.018393 -0.127235 --0.993611 -0.075003 -0.084327 --0.986564 -0.131558 0.096875 --0.958537 -0.175048 0.224866 --0.988125 -0.126635 0.087023 --0.998230 0.058809 -0.008833 --0.990546 0.028564 0.134177 --0.967665 -0.136963 0.211815 --0.998454 -0.002981 0.055500 --0.999247 0.021279 0.032455 --0.996036 -0.022156 0.086143 --0.998475 0.052888 0.015861 --0.976931 -0.200437 0.073698 --0.952065 -0.147443 0.268016 --0.918086 -0.271785 0.288533 --0.933492 -0.358392 -0.012143 --0.808832 -0.527754 0.259357 --0.856754 -0.466072 -0.220792 --0.641775 -0.764352 -0.062377 --0.602983 -0.739055 -0.300349 --0.235328 -0.226603 0.945131 -0.133103 -0.273738 0.952550 -0.015710 -0.898749 0.438183 --0.336294 -0.276221 0.900338 --0.045495 -0.925649 0.375638 -0.041145 -0.269251 0.962191 --0.325673 -0.909224 0.259326 --0.105970 0.879846 0.463295 --0.414488 0.018132 0.909874 --0.078546 0.887802 0.453473 -0.152601 0.142907 0.977901 --0.240188 -0.008364 0.970690 --0.043044 0.966656 0.252434 --0.091221 0.952673 0.289987 -0.048777 0.099731 0.993818 --0.535574 0.757198 0.373913 --0.895928 0.210810 0.390989 --0.636911 0.486890 0.597731 --0.311699 -0.183269 0.932339 -0.753242 -0.432063 0.495931 --0.204071 -0.156128 0.966426 -0.629701 -0.352852 0.692078 --0.639668 -0.173106 0.748905 --0.225580 0.811454 0.539125 -0.305732 0.928037 0.212781 --0.604918 0.141229 0.783664 --0.208929 0.844764 0.492668 --0.161021 -0.375822 0.912595 --0.012241 -0.090782 0.995796 --0.709305 -0.690629 -0.141131 -0.239875 -0.197901 0.950418 --0.080571 0.654401 0.751843 --0.164974 0.970677 0.174840 --0.868603 0.128230 -0.478629 --0.688419 0.192968 -0.699173 --0.976404 0.047519 -0.210661 --0.996687 -0.035078 -0.073386 --0.965697 0.100916 -0.239261 diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/normalise_pca_basis.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/normalise_pca_basis.bin deleted file mode 100644 index 17d64fb7..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/normalise_pca_basis.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/normalised_pca_basis_ROI_profile.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/normalised_pca_basis_ROI_profile.bin deleted file mode 100644 index 6a0c9caa..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/normalised_pca_basis_ROI_profile.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/profile_axis.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/profile_axis.txt deleted file mode 100644 index 762928dd..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/profile_axis.txt +++ /dev/null @@ -1,10 +0,0 @@ -8 -27 -28 -29 -30 -33 -51 -57 -62 -66 diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/profile_idx.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/profile_idx.txt deleted file mode 100644 index 054ce29d..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/profile_idx.txt +++ /dev/null @@ -1,492 +0,0 @@ -0,8106 -1,2019 -2,5304 -3,7126 -4,6736 -5,4722 -6,3738 -7,2801 -8,183 -9,13469 -10,14406 -11,15390 -12,17370 -13,17760 -14,15972 -15,12687 -16,18740 -17,3832 -18,5312 -19,6020 -20,9401 -21,7856 -22,18490 -23,19961 -24,16654 -25,15980 -26,14500 -27,8342 -28,178 -29,5793 -30,8331 -31,5730 -32,10691 -33,8335 -34,21251 -35,16398 -36,5377 -37,2446 -38,5369 -39,8081 -40,1502 -41,5384 -42,18715 -43,16037 -44,13114 -45,16045 -46,16052 -47,12170 -48,32 -49,7921 -50,4028 -51,5788 -52,14696 -53,18555 -54,10809 -55,14121 -56,13636 -57,1087 -58,2968 -59,3453 -60,28 -61,6295 -62,216 -63,16929 -64,10805 -65,12282 -66,8324 -67,1614 -68,8106 -69,904 -70,7152 -71,2273 -72,4772 -73,6791 -74,3110 -75,6793 -76,4458 -77,285 -78,8510 -79,1214 -80,6760 -81,284 -82,9612 -83,1997 -84,6932 -85,371 -86,3104 -87,6770 -88,4438 -89,8767 -90,3854 -91,8769 -92,3855 -93,8772 -94,1405 -95,9622 -96,2001 -97,9621 -98,4435 -99,9620 -100,5313 -101,867 -102,8063 -103,9644 -104,2019 -105,4453 -106,9643 -107,9642 -108,553 -109,10056 -110,9660 -111,4783 -112,2031 -113,10057 -114,4784 -115,10058 -116,10021 -117,2260 -118,10020 -119,2259 -120,7133 -121,3210 -122,7131 -123,4589 -124,7844 -125,684 -126,7845 -127,3420 -128,5396 -129,2744 -130,687 -131,3131 -132,2088 -133,4527 -134,2094 -135,6909 -136,2116 -137,4557 -138,7767 -139,5304 -140,8376 -141,231 -142,8375 -143,4759 -144,10024 -145,2261 -146,10025 -147,4761 -148,10015 -149,558 -150,10003 -151,2249 -152,7118 -153,3205 -154,7117 -155,2146 -156,6951 -157,4596 -158,9836 -159,4595 -160,6942 -161,282 -162,2857 -163,5873 -164,3710 -165,8501 -166,1209 -167,6899 -168,2109 -169,4548 -170,241 -171,7126 -172,3208 -173,7128 -174,2255 -175,10013 -176,1170 -177,8442 -178,3684 -179,8443 -180,1171 -181,8537 -182,3728 -183,5896 -184,1234 -185,5895 -186,295 -187,9832 -188,5292 -189,2684 -190,10675 -191,1218 -192,8514 -193,3717 -194,8513 -195,3716 -196,279 -197,9692 -198,2053 -199,6829 -200,243 -201,6736 -202,3096 -203,6739 -204,4416 -205,1979 -206,4586 -207,2075 -208,6855 -209,4509 -210,9728 -211,4508 -212,9727 -213,4535 -214,2099 -215,9762 -216,564 -217,9721 -218,2070 -219,6845 -220,549 -221,7749 -222,1992 -223,4382 -224,9548 -225,4722 -226,7093 -227,2229 -228,9972 -229,2228 -230,9971 -231,4719 -232,7090 -233,3197 -234,7088 -235,568 -236,6886 -237,3137 -238,6889 -239,2101 -240,9770 -241,2103 -242,9769 -243,4832 -244,5949 -245,1293 -246,5952 -247,3772 -248,8615 -249,1292 -250,4834 -251,7228 -252,3236 -253,7227 -254,1244 -255,3738 -256,8550 -257,1241 -258,5907 -259,2866 -260,1242 -261,5906 -262,3130 -263,6863 -264,2083 -265,9738 -266,4848 -267,10121 -268,2326 -269,10122 -270,8060 -271,862 -272,5622 -273,3527 -274,2801 -275,5623 -276,3129 -277,6859 -278,2080 -279,9734 -280,18694 -281,11584 -282,16290 -283,14195 -284,13469 -285,16291 -286,13797 -287,17493 -288,12748 -289,20294 -290,15502 -291,17862 -292,13904 -293,17861 -294,11912 -295,14406 -296,19110 -297,11909 -298,16541 -299,13534 -300,11910 -301,16540 -302,13798 -303,17497 -304,12751 -305,20298 -306,15516 -307,20681 -308,12994 -309,20682 -310,15050 -311,20108 -312,15390 -313,17727 -314,12897 -315,20532 -316,12896 -317,20531 -318,15387 -319,17724 -320,13865 -321,17722 -322,11290 -323,17520 -324,13805 -325,17523 -326,12769 -327,20330 -328,12771 -329,20329 -330,15500 -331,16583 -332,11961 -333,16586 -334,14440 -335,19175 -336,11960 -337,10965 -338,17370 -339,13764 -340,17373 -341,15084 -342,12647 -343,15254 -344,12743 -345,17489 -346,15177 -347,20288 -348,15176 -349,20287 -350,15203 -351,12767 -352,20322 -353,11286 -354,20281 -355,12738 -356,17479 -357,11271 -358,18383 -359,12660 -360,10963 -361,17760 -362,13876 -363,17762 -364,12923 -365,20573 -366,11838 -367,19002 -368,14352 -369,19003 -370,11839 -371,19097 -372,14396 -373,16530 -374,11902 -375,16529 -376,11017 -377,20392 -378,15960 -379,13352 -380,21235 -381,11886 -382,19074 -383,14385 -384,19073 -385,14384 -386,11001 -387,20252 -388,12721 -389,17463 -390,18401 -391,15972 -392,18936 -393,10953 -394,18935 -395,15427 -396,20584 -397,12929 -398,20585 -399,15429 -400,20575 -401,11280 -402,20563 -403,12917 -404,17752 -405,13873 -406,17751 -407,12814 -408,17585 -409,15264 -410,20396 -411,15263 -412,17576 -413,11004 -414,13525 -415,16507 -416,14378 -417,19061 -418,11877 -419,17533 -420,12777 -421,15216 -422,20204 -423,12687 -424,15121 -425,20203 -426,20202 -427,11275 -428,20616 -429,20220 -430,15451 -431,12699 -432,20617 -433,15452 -434,20618 -435,20581 -436,12928 -437,20580 -438,12927 -439,17767 -440,13878 -441,17765 -442,15257 -443,18478 -444,11406 -445,18479 -446,14088 -447,16064 -448,13412 -449,11409 -450,13799 -451,12756 -452,15195 -453,12762 -454,17543 -455,12784 -456,15225 -457,18740 -458,11626 -459,17786 -460,12941 -461,15440 -462,17425 -463,13778 -464,17427 -465,15126 -466,11007 -467,19070 -468,11882 -469,17394 -470,11006 -471,20172 -472,12665 -473,17566 -474,11093 -475,13772 -476,17404 -477,15106 -478,19327 -479,14522 -480,19329 -481,14523 -482,19332 -483,12073 -484,20182 -485,12669 -486,20181 -487,15103 -488,20180 -489,15981 -490,11589 -491,18697 diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/profile_idx_21388.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/profile_idx_21388.txt deleted file mode 100644 index 054ce29d..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/profile_idx_21388.txt +++ /dev/null @@ -1,492 +0,0 @@ -0,8106 -1,2019 -2,5304 -3,7126 -4,6736 -5,4722 -6,3738 -7,2801 -8,183 -9,13469 -10,14406 -11,15390 -12,17370 -13,17760 -14,15972 -15,12687 -16,18740 -17,3832 -18,5312 -19,6020 -20,9401 -21,7856 -22,18490 -23,19961 -24,16654 -25,15980 -26,14500 -27,8342 -28,178 -29,5793 -30,8331 -31,5730 -32,10691 -33,8335 -34,21251 -35,16398 -36,5377 -37,2446 -38,5369 -39,8081 -40,1502 -41,5384 -42,18715 -43,16037 -44,13114 -45,16045 -46,16052 -47,12170 -48,32 -49,7921 -50,4028 -51,5788 -52,14696 -53,18555 -54,10809 -55,14121 -56,13636 -57,1087 -58,2968 -59,3453 -60,28 -61,6295 -62,216 -63,16929 -64,10805 -65,12282 -66,8324 -67,1614 -68,8106 -69,904 -70,7152 -71,2273 -72,4772 -73,6791 -74,3110 -75,6793 -76,4458 -77,285 -78,8510 -79,1214 -80,6760 -81,284 -82,9612 -83,1997 -84,6932 -85,371 -86,3104 -87,6770 -88,4438 -89,8767 -90,3854 -91,8769 -92,3855 -93,8772 -94,1405 -95,9622 -96,2001 -97,9621 -98,4435 -99,9620 -100,5313 -101,867 -102,8063 -103,9644 -104,2019 -105,4453 -106,9643 -107,9642 -108,553 -109,10056 -110,9660 -111,4783 -112,2031 -113,10057 -114,4784 -115,10058 -116,10021 -117,2260 -118,10020 -119,2259 -120,7133 -121,3210 -122,7131 -123,4589 -124,7844 -125,684 -126,7845 -127,3420 -128,5396 -129,2744 -130,687 -131,3131 -132,2088 -133,4527 -134,2094 -135,6909 -136,2116 -137,4557 -138,7767 -139,5304 -140,8376 -141,231 -142,8375 -143,4759 -144,10024 -145,2261 -146,10025 -147,4761 -148,10015 -149,558 -150,10003 -151,2249 -152,7118 -153,3205 -154,7117 -155,2146 -156,6951 -157,4596 -158,9836 -159,4595 -160,6942 -161,282 -162,2857 -163,5873 -164,3710 -165,8501 -166,1209 -167,6899 -168,2109 -169,4548 -170,241 -171,7126 -172,3208 -173,7128 -174,2255 -175,10013 -176,1170 -177,8442 -178,3684 -179,8443 -180,1171 -181,8537 -182,3728 -183,5896 -184,1234 -185,5895 -186,295 -187,9832 -188,5292 -189,2684 -190,10675 -191,1218 -192,8514 -193,3717 -194,8513 -195,3716 -196,279 -197,9692 -198,2053 -199,6829 -200,243 -201,6736 -202,3096 -203,6739 -204,4416 -205,1979 -206,4586 -207,2075 -208,6855 -209,4509 -210,9728 -211,4508 -212,9727 -213,4535 -214,2099 -215,9762 -216,564 -217,9721 -218,2070 -219,6845 -220,549 -221,7749 -222,1992 -223,4382 -224,9548 -225,4722 -226,7093 -227,2229 -228,9972 -229,2228 -230,9971 -231,4719 -232,7090 -233,3197 -234,7088 -235,568 -236,6886 -237,3137 -238,6889 -239,2101 -240,9770 -241,2103 -242,9769 -243,4832 -244,5949 -245,1293 -246,5952 -247,3772 -248,8615 -249,1292 -250,4834 -251,7228 -252,3236 -253,7227 -254,1244 -255,3738 -256,8550 -257,1241 -258,5907 -259,2866 -260,1242 -261,5906 -262,3130 -263,6863 -264,2083 -265,9738 -266,4848 -267,10121 -268,2326 -269,10122 -270,8060 -271,862 -272,5622 -273,3527 -274,2801 -275,5623 -276,3129 -277,6859 -278,2080 -279,9734 -280,18694 -281,11584 -282,16290 -283,14195 -284,13469 -285,16291 -286,13797 -287,17493 -288,12748 -289,20294 -290,15502 -291,17862 -292,13904 -293,17861 -294,11912 -295,14406 -296,19110 -297,11909 -298,16541 -299,13534 -300,11910 -301,16540 -302,13798 -303,17497 -304,12751 -305,20298 -306,15516 -307,20681 -308,12994 -309,20682 -310,15050 -311,20108 -312,15390 -313,17727 -314,12897 -315,20532 -316,12896 -317,20531 -318,15387 -319,17724 -320,13865 -321,17722 -322,11290 -323,17520 -324,13805 -325,17523 -326,12769 -327,20330 -328,12771 -329,20329 -330,15500 -331,16583 -332,11961 -333,16586 -334,14440 -335,19175 -336,11960 -337,10965 -338,17370 -339,13764 -340,17373 -341,15084 -342,12647 -343,15254 -344,12743 -345,17489 -346,15177 -347,20288 -348,15176 -349,20287 -350,15203 -351,12767 -352,20322 -353,11286 -354,20281 -355,12738 -356,17479 -357,11271 -358,18383 -359,12660 -360,10963 -361,17760 -362,13876 -363,17762 -364,12923 -365,20573 -366,11838 -367,19002 -368,14352 -369,19003 -370,11839 -371,19097 -372,14396 -373,16530 -374,11902 -375,16529 -376,11017 -377,20392 -378,15960 -379,13352 -380,21235 -381,11886 -382,19074 -383,14385 -384,19073 -385,14384 -386,11001 -387,20252 -388,12721 -389,17463 -390,18401 -391,15972 -392,18936 -393,10953 -394,18935 -395,15427 -396,20584 -397,12929 -398,20585 -399,15429 -400,20575 -401,11280 -402,20563 -403,12917 -404,17752 -405,13873 -406,17751 -407,12814 -408,17585 -409,15264 -410,20396 -411,15263 -412,17576 -413,11004 -414,13525 -415,16507 -416,14378 -417,19061 -418,11877 -419,17533 -420,12777 -421,15216 -422,20204 -423,12687 -424,15121 -425,20203 -426,20202 -427,11275 -428,20616 -429,20220 -430,15451 -431,12699 -432,20617 -433,15452 -434,20618 -435,20581 -436,12928 -437,20580 -438,12927 -439,17767 -440,13878 -441,17765 -442,15257 -443,18478 -444,11406 -445,18479 -446,14088 -447,16064 -448,13412 -449,11409 -450,13799 -451,12756 -452,15195 -453,12762 -454,17543 -455,12784 -456,15225 -457,18740 -458,11626 -459,17786 -460,12941 -461,15440 -462,17425 -463,13778 -464,17427 -465,15126 -466,11007 -467,19070 -468,11882 -469,17394 -470,11006 -471,20172 -472,12665 -473,17566 -474,11093 -475,13772 -476,17404 -477,15106 -478,19327 -479,14522 -480,19329 -481,14523 -482,19332 -483,12073 -484,20182 -485,12669 -486,20181 -487,15103 -488,20180 -489,15981 -490,11589 -491,18697 diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/profile_sym_pair.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/profile_sym_pair.txt deleted file mode 100644 index 9c8b2397..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/profile_sym_pair.txt +++ /dev/null @@ -1,241 +0,0 @@ -0,457 -1,423 -2,391 -3,361 -4,338 -5,312 -6,295 -7,284 -17,26 -18,25 -19,24 -20,23 -21,22 -31,35 -32,34 -36,45 -37,44 -38,43 -39,42 -40,47 -41,46 -48,54 -49,53 -50,52 -58,56 -59,55 -60,64 -61,63 -67,65 -68,16 -69,458 -70,459 -71,460 -72,461 -73,462 -74,463 -75,464 -76,465 -77,466 -78,467 -79,468 -80,469 -81,470 -82,471 -83,472 -84,473 -85,474 -86,475 -87,476 -88,477 -89,478 -90,479 -91,480 -92,481 -93,482 -94,483 -95,484 -96,485 -97,486 -98,487 -99,488 -100,489 -101,490 -102,491 -103,422 -104,15 -105,424 -106,425 -107,426 -108,427 -109,428 -110,429 -111,430 -112,431 -113,432 -114,433 -115,434 -116,435 -117,436 -118,437 -119,438 -120,439 -121,440 -122,441 -123,442 -124,443 -125,444 -126,445 -127,446 -128,447 -129,448 -130,449 -131,450 -132,451 -133,452 -134,453 -135,454 -136,455 -137,456 -138,390 -139,14 -140,392 -141,393 -142,394 -143,395 -144,396 -145,397 -146,398 -147,399 -148,400 -149,401 -150,402 -151,403 -152,404 -153,405 -154,406 -155,407 -156,408 -157,409 -158,410 -159,411 -160,412 -161,413 -162,414 -163,415 -164,416 -165,417 -166,418 -167,419 -168,420 -169,421 -170,360 -171,13 -172,362 -173,363 -174,364 -175,365 -176,366 -177,367 -178,368 -179,369 -180,370 -181,371 -182,372 -183,373 -184,374 -185,375 -186,376 -187,377 -188,378 -189,379 -190,380 -191,381 -192,382 -193,383 -194,384 -195,385 -196,386 -197,387 -198,388 -199,389 -200,337 -201,12 -202,339 -203,340 -204,341 -205,342 -206,343 -207,344 -208,345 -209,346 -210,347 -211,348 -212,349 -213,350 -214,351 -215,352 -216,353 -217,354 -218,355 -219,356 -220,357 -221,358 -222,359 -223,310 -224,311 -225,11 -226,313 -227,314 -228,315 -229,316 -230,317 -231,318 -232,319 -233,320 -234,321 -235,322 -236,323 -237,324 -238,325 -239,326 -240,327 -241,328 -242,329 -243,330 -244,331 -245,332 -246,333 -247,334 -248,335 -249,336 -250,290 -251,291 -252,292 -253,293 -254,294 -255,10 -256,296 -257,297 -258,298 -259,299 -260,300 -261,301 -262,302 -263,303 -264,304 -265,305 -266,306 -267,307 -268,308 -269,309 -270,280 -271,281 -272,282 -273,283 -274,9 -275,285 -276,286 -277,287 -278,288 -279,289 diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/subsetPointsto1000.txt b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/subsetPointsto1000.txt deleted file mode 100644 index 7924a3ef..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/subsetPointsto1000.txt +++ /dev/null @@ -1,1000 +0,0 @@ -0,1454 -1,1781 -2,1723 -3,1833 -4,1434 -5,1434 -6,1807 -7,1373 -8,1815 -9,1786 -10,1725 -11,1815 -12,1808 -13,1373 -14,1832 -15,1691 -16,1372 -17,1831 -18,1781 -19,1832 -20,1738 -21,1457 -22,1793 -23,1793 -24,1807 -25,1807 -26,1698 -27,468 -28,872 -29,1241 -30,1269 -31,2150 -32,869 -33,2302 -34,1743 -35,2281 -36,1430 -37,2058 -38,2010 -39,225 -40,1535 -41,216 -42,1751 -43,1748 -44,1545 -45,1302 -46,1474 -47,2289 -48,2010 -49,2273 -50,1538 -51,1764 -52,2069 -53,2068 -54,2252 -55,2253 -56,2304 -57,1462 -58,1511 -59,2229 -60,1722 -61,1496 -62,1749 -63,1752 -64,1506 -65,1506 -66,1271 -67,1504 -68,214 -69,1483 -70,2040 -71,1761 -72,1583 -73,1867 -74,2280 -75,1627 -76,1578 -77,2095 -78,1286 -79,1611 -80,2222 -81,1287 -82,1582 -83,1690 -84,1566 -85,1579 -86,2357 -87,0 -88,1693 -89,1581 -90,1562 -91,1685 -92,2284 -93,1706 -94,1683 -95,1561 -96,1502 -97,2348 -98,2214 -99,1908 -100,1928 -101,2327 -102,1923 -103,1410 -104,2211 -105,1412 -106,1406 -107,1328 -108,1914 -109,1385 -110,1977 -111,1735 -112,2170 -113,2312 -114,1349 -115,1466 -116,1469 -117,1406 -118,1466 -119,1738 -120,2326 -121,1354 -122,1655 -123,1845 -124,1354 -125,1713 -126,1460 -127,1461 -128,1823 -129,1821 -130,0 -131,1829 -132,1829 -133,1836 -134,1830 -135,1830 -136,1831 -137,1834 -138,1841 -139,1830 -140,1828 -141,1817 -142,1809 -143,1809 -144,1797 -145,1795 -146,1788 -147,1787 -148,1794 -149,1716 -150,1718 -151,0 -152,1813 -153,1814 -154,1787 -155,1460 -156,1713 -157,1719 -158,1791 -159,1812 -160,0 -161,1837 -162,1837 -163,1458 -164,1791 -165,1812 -166,0 -167,1837 -168,1787 -169,1814 -170,1813 -171,1460 -172,1796 -173,1792 -174,1792 -175,1789 -176,1790 -177,1790 -178,1790 -179,1802 -180,1739 -181,1441 -182,1497 -183,2037 -184,1416 -185,1467 -186,1354 -187,1823 -188,1825 -189,1825 -190,2028 -191,1356 -192,1462 -193,1806 -194,1826 -195,1369 -196,1369 -197,1784 -198,1773 -199,1721 -200,571 -201,281 -202,205 -203,557 -204,557 -205,1785 -206,1785 -207,1724 -208,639 -209,249 -210,278 -211,280 -212,613 -213,279 -214,626 -215,255 -216,191 -217,1090 -218,1096 -219,1133 -220,917 -221,344 -222,916 -223,339 -224,72 -225,373 -226,612 -227,882 -228,919 -229,579 -230,41 -231,881 -232,883 -233,188 -234,311 -235,473 -236,1124 -237,360 -238,589 -239,299 -240,317 -241,333 -242,261 -243,331 -244,274 -245,0 -246,1107 -247,1110 -248,329 -249,138 -250,42 -251,294 -252,905 -253,560 -254,330 -255,894 -256,312 -257,583 -258,63 -259,770 -260,1073 -261,943 -262,65 -263,1135 -264,45 -265,1136 -266,395 -267,379 -268,1207 -269,948 -270,542 -271,851 -272,766 -273,526 -274,873 -275,522 -276,384 -277,316 -278,279 -279,322 -280,235 -281,1683 -282,323 -283,740 -284,739 -285,735 -286,96 -287,733 -288,736 -289,741 -290,107 -291,760 -292,754 -293,819 -294,164 -295,484 -296,489 -297,486 -298,748 -299,506 -300,1164 -301,120 -302,291 -303,487 -304,288 -305,1184 -306,121 -307,1083 -308,289 -309,680 -310,674 -311,676 -312,662 -313,649 -314,641 -315,641 -316,646 -317,663 -318,675 -319,662 -320,662 -321,653 -322,669 -323,661 -324,650 -325,642 -326,642 -327,257 -328,256 -329,548 -330,676 -331,252 -332,663 -333,645 -334,622 -335,256 -336,282 -337,283 -338,258 -339,643 -340,644 -341,667 -342,678 -343,283 -344,283 -345,258 -346,643 -347,644 -348,667 -349,671 -350,547 -351,256 -352,622 -353,645 -354,663 -355,633 -356,630 -357,628 -358,624 -359,624 -360,620 -361,619 -362,619 -363,619 -364,680 -365,1086 -366,262 -367,896 -368,604 -369,139 -370,638 -371,657 -372,604 -373,609 -374,1158 -375,637 -376,657 -377,139 -378,616 -379,127 -380,603 -381,334 -382,602 -383,610 -384,1459 -385,1816 -386,1785 -387,1460 -388,1455 -389,1454 -390,864 -391,2158 -392,0 -393,1640 -394,0 -395,1000 -396,1639 -397,2405 -398,238 -399,242 -400,1513 -401,2018 -402,1430 -403,858 -404,303 -405,210 -406,1481 -407,2033 -408,1549 -409,1477 -410,0 -411,1475 -412,1721 -413,1482 -414,215 -415,2261 -416,2019 -417,2226 -418,1583 -419,1422 -420,2106 -421,1602 -422,2115 -423,1871 -424,2047 -425,2092 -426,2093 -427,246 -428,1705 -429,2358 -430,2097 -431,2355 -432,1278 -433,1501 -434,1562 -435,1692 -436,1456 -437,1457 -438,1558 -439,1560 -440,1332 -441,1315 -442,2213 -443,1904 -444,1411 -445,1992 -446,1986 -447,1674 -448,1370 -449,1802 -450,1822 -451,1800 -452,1840 -453,1799 -454,1823 -455,1824 -456,2235 -457,1784 -458,1356 -459,613 -460,626 -461,530 -462,1785 -463,648 -464,617 -465,137 -466,0 -467,995 -468,352 -469,335 -470,912 -471,847 -472,847 -473,296 -474,41 -475,297 -476,372 -477,190 -478,588 -479,301 -480,43 -481,304 -482,293 -483,381 -484,413 -485,898 -486,900 -487,406 -488,381 -489,441 -490,851 -491,851 -492,323 -493,385 -494,518 -495,757 -496,84 -497,759 -498,1026 -499,749 -500,836 -501,120 -502,496 -503,139 -504,654 -505,634 -506,631 -507,251 -508,249 -509,256 -510,633 -511,632 -512,632 -513,656 -514,670 -515,1088 -516,658 -517,636 -518,1724 -519,1794 -520,1785 -521,512 -522,277 -523,277 -524,276 -525,282 -526,282 -527,556 -528,664 -529,515 -530,321 -531,204 -532,647 -533,648 -534,640 -535,639 -536,539 -537,625 -538,626 -539,558 -540,648 -541,665 -542,204 -543,142 -544,249 -545,236 -546,665 -547,647 -548,316 -549,277 -550,281 -551,871 -552,989 -553,75 -554,459 -555,460 -556,779 -557,35 -558,2386 -559,715 -560,713 -561,463 -562,343 -563,866 -564,1103 -565,338 -566,868 -567,520 -568,519 -569,347 -570,200 -571,200 -572,908 -573,883 -574,309 -575,318 -576,298 -577,590 -578,1115 -579,1104 -580,369 -581,582 -582,1123 -583,328 -584,566 -585,902 -586,1122 -587,1123 -588,1114 -589,554 -590,331 -591,1159 -592,272 -593,1138 -594,904 -595,905 -596,327 -597,1110 -598,330 -599,138 -600,43 -601,43 -602,304 -603,594 -604,294 -605,555 -606,555 -607,332 -608,554 -609,553 -610,325 -611,1111 -612,312 -613,1119 -614,430 -615,398 -616,314 -617,401 -618,695 -619,402 -620,45 -621,1137 -622,420 -623,559 -624,970 -625,429 -626,430 -627,971 -628,46 -629,901 -630,945 -631,394 -632,875 -633,1152 -634,528 -635,403 -636,278 -637,544 -638,403 -639,196 -640,697 -641,526 -642,2294 -643,975 -644,769 -645,699 -646,542 -647,1081 -648,449 -649,385 -650,572 -651,1161 -652,243 -653,786 -654,178 -655,1069 -656,86 -657,741 -658,729 -659,1205 -660,741 -661,741 -662,514 -663,734 -664,92 -665,1205 -666,185 -667,1069 -668,754 -669,1202 -670,814 -671,1054 -672,0 -673,1060 -674,81 -675,101 -676,509 -677,1046 -678,122 -679,129 -680,786 -681,506 -682,608 -683,486 -684,291 -685,158 -686,295 -687,571 -688,801 -689,511 -690,552 -691,479 -692,489 -693,773 -694,480 -695,572 -696,187 -697,879 -698,273 -699,479 -700,549 -701,1800 -702,1801 -703,260 -704,1800 -705,257 -706,257 -707,252 -708,1787 -709,258 -710,259 -711,1787 -712,141 -713,674 -714,681 -715,672 -716,676 -717,671 -718,662 -719,634 -720,669 -721,654 -722,669 -723,652 -724,666 -725,649 -726,644 -727,641 -728,642 -729,641 -730,646 -731,646 -732,668 -733,678 -734,662 -735,661 -736,660 -737,660 -738,631 -739,630 -740,622 -741,629 -742,620 -743,620 -744,619 -745,256 -746,622 -747,478 -748,663 -749,645 -750,646 -751,622 -752,623 -753,644 -754,643 -755,678 -756,681 -757,616 -758,604 -759,284 -760,610 -761,610 -762,615 -763,130 -764,776 -765,602 -766,605 -767,606 -768,614 -769,636 -770,254 -771,253 -772,657 -773,140 -774,775 -775,331 -776,254 -777,659 -778,658 -779,614 -780,602 -781,331 -782,1713 -783,1458 -784,1454 -785,1460 -786,1454 -787,1697 -788,1500 -789,1435 -790,1371 -791,1723 -792,1815 -793,1807 -794,1373 -795,1457 -796,1813 -797,1808 -798,1435 -799,1793 -800,1494 -801,1456 -802,1458 -803,1459 -804,1632 -805,1364 -806,1633 -807,2156 -808,1258 -809,1744 -810,1686 -811,1687 -812,1529 -813,2244 -814,1514 -815,1686 -816,2027 -817,2018 -818,1430 -819,2011 -820,1542 -821,1531 -822,2304 -823,1481 -824,1488 -825,2041 -826,1480 -827,1734 -828,1495 -829,2051 -830,1476 -831,2241 -832,2060 -833,1463 -834,1720 -835,1511 -836,1771 -837,1510 -838,1510 -839,1439 -840,1505 -841,1721 -842,2229 -843,1727 -844,1508 -845,2255 -846,1749 -847,2263 -848,1506 -849,1367 -850,1482 -851,1750 -852,0 -853,2117 -854,0 -855,1754 -856,1583 -857,1276 -858,2048 -859,0 -860,2274 -861,1492 -862,2044 -863,1491 -864,1760 -865,2225 -866,1278 -867,1693 -868,1555 -869,1619 -870,2121 -871,2125 -872,1282 -873,1694 -874,1624 -875,1621 -876,1456 -877,1501 -878,1558 -879,2003 -880,2347 -881,1407 -882,1673 -883,1906 -884,2192 -885,1415 -886,1407 -887,2007 -888,1681 -889,1681 -890,1901 -891,1903 -892,2347 -893,1901 -894,1899 -895,1323 -896,2347 -897,2215 -898,1681 -899,1924 -900,1931 -901,1959 -902,2343 -903,1660 -904,1884 -905,1317 -906,1999 -907,1385 -908,1331 -909,1335 -910,1312 -911,2199 -912,2204 -913,1342 -914,1351 -915,1656 -916,1469 -917,1656 -918,1349 -919,1473 -920,2230 -921,1468 -922,1719 -923,1450 -924,1738 -925,1416 -926,1712 -927,1646 -928,1461 -929,1839 -930,1840 -931,1846 -932,1847 -933,1718 -934,1842 -935,1830 -936,1821 -937,1823 -938,1820 -939,1817 -940,1812 -941,1809 -942,1809 -943,1829 -944,1813 -945,1813 -946,1831 -947,1834 -948,1842 -949,1830 -950,1830 -951,1830 -952,1828 -953,1802 -954,1822 -955,1819 -956,1818 -957,1814 -958,1796 -959,1796 -960,1789 -961,1789 -962,1787 -963,1790 -964,1814 -965,1847 -966,1416 -967,1717 -968,1831 -969,1828 -970,1828 -971,1813 -972,1814 -973,1790 -974,1792 -975,1812 -976,1811 -977,1837 -978,1714 -979,1369 -980,1784 -981,1370 -982,1370 -983,1463 -984,1512 -985,1770 -986,1509 -987,1360 -988,2316 -989,1773 -990,1774 -991,1946 -992,1826 -993,1827 -994,1827 -995,1803 -996,1803 -997,1806 -998,1945 -999,1509 diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/zplan_res/rigging_keymap_female.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/zplan_res/rigging_keymap_female.bin deleted file mode 100644 index c3359643..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/zplan_res/rigging_keymap_female.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/zplan_res/rigging_keymap_female.csv b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/zplan_res/rigging_keymap_female.csv deleted file mode 100644 index 89b8adf6..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/zplan_res/rigging_keymap_female.csv +++ /dev/null @@ -1,122 +0,0 @@ -female,jawOpen,mouthClose,jawForward,mouthFunnel,mouthPucker,mouthLeft,mouthRight,mouthSmileLeft,mouthSmileRight,mouthFrownLeft,mouthFrownRight,mouthDimpleRight,mouthDimpleLeft,mouthStretchLeft,mouthStretchRight,mouthRollLower,mouthRollUpper,mouthShrugLower,mouthShrugUpper,mouthPressLeft,mouthPressRight,mouthLowerDownLeft,mouthLowerDownRight,mouthUpperUpLeft,mouthUpperUpRight,eyeBlinkLeft,eyeBlinkRight,eyeLookDownLeft,eyeLookDownRight,eyeLookInLeft,eyeLookInRight,eyeLookOutRight,eyeLookOutLeft,eyeLookUpLeft,eyeLookUpRight,eyeSquintRight,eyeSquintLeft,eyeWideLeft,eyeWideRight,browDownLeft,browDownRight,browInnerUp,browOuterUpLeft,browOuterUpRight,cheekPuff,cheekSquintLeft,cheekSquintRight,noseSneerLeft,noseSneerRight,jawLeft,jawRight -fc_eye_widen_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eye_widen_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyeBlinkL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyeBlinkR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -eyeBlink_Down_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -eyeBlink_Up_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -eyeBlink_Down_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -eyeBlink_Up_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eye_squintInner_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.400000006,0,0,0,0 -fc_eye_squintInner_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.400000006,0,0,0,0,0 -fc_mouth_L,0,0,0,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_cheek_blow_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -fc_cheek_blow_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -fc_mouth_Up,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_Down,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_jaw_open,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_jaw_OpenExtreme,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_jaw_L,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -fc_mouth_R,0,0,0,0,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_jaw_R,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 -fc_jawFwd,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_jawBack,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_cornerPull_R,0,0,0,0,0,0,0.5,0,1,0,0,0.300000012,0,0,0,0,0,0,0,0,0.600000024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_cornerDepress_R,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_cornerDepress_L,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_cornerPull_L,0,0,0,0,0,0.5,0,1,0,0,0,0,0.300000012,0,0,0,0,0,0,0.600000024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_stretch_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_dimple_R,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_dimple_L,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_stretch_L,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_nose_Up,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_nose_Dn,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyelidUp_Down_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyelidUp_Down_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyelidUp_Up_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyelidUp_Up_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyelidDn_Down_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyelidDn_Down_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyelidDn_Up_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyelidDn_Up_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyeUp_lookIn_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyeUp_lookOut_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyeDn_lookIn_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyeDn_lookOut_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyeDn_lookOut_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyeDn_lookIn_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyeUp_lookIn_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyeUp_lookOut_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_brow_down_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.5,0,0 -comb_McornerPull_cor,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lowerLipDepress_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_nose_wrinkle_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0 -comb_Mpurse_Mtowards_Mfunnel_oh_R,0,0,0,0.120000005,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_funnel_R,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_funnel_L,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lipsPurse_R,0,0,0,0.400000006,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lipsPurse_L,0,0,0,0.400000006,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lipsTowards_R,0,0,0,0.300000012,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lipsTowards_L,0,0,0,0.300000012,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_nose_wrinkle_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0 -comb_Mpurse_Mtowards_Mfunnel_oh_L,0,0,0,0.120000005,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lowerLipDepress_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_Mfunnel_R,0,0,0,0.400000006,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_Mfunnel_L,0,0,0,0.400000006,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_Mtowards_pucker_R,0,0,0,0.120000005,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_Mtowards_pucker_L,0,0,0,0.120000005,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_upperLipRaise_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_Jopen_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_Jopen_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_upperLipRaise_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_MlipTogether_Jopen_R,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_MlipTogether_Jopen_L,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lipsTighten_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lipsTighten_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_McornerPull_MuprLipUp_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_McornerPull_MuprLipUp_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_McornerPull_Mstretch_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_upperLipBite_half_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_upperLipBite_half_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lowerLipBite_half_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lowerLipBite_half_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_upperLipBite_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_upperLipBite_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lowerLipBite_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lowerLipBite_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_McornerPull_Mstretch_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_press_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_press_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_jaw_upperChinRaise_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.699999988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_jaw_upperChinRaise_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.699999988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_jaw_lowerChinRaise_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000012 -fc_jaw_lowerChinRaise_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000012,0 -fc_brow_down_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.5,0,0,0 -comb_brow_down_extreme_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_brow_down_extreme_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_brow_down_extreme_cor,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_brow_raiseIn_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -fc_brow_raiseIn_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -fc_brow_raiseOuter_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -fc_brow_raiseOuter_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -comb_brow_raise_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_brow_raise_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyeIn_Up_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyeIn_Down_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_MlipBite_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_MlipBite_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_chin,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_McornerPull_Jopen_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_McornerPull_Jopen_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyeIn_Up_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyeIn_Down_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_McornerDepress_Mpurse_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_McornerDepress_Mpurse_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_Mstretch_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_Mstretch_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_MlipBite_half_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_MlipBite_half_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_MlipBite_Jopen_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_MlipBite_Jopen_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mdimple_Jopen_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mdimple_Jopen_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/zplan_res/rigging_keymap_male.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/zplan_res/rigging_keymap_male.bin deleted file mode 100644 index 41da73c5..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/zplan_res/rigging_keymap_male.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/zplan_res/rigging_keymap_male.csv b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/zplan_res/rigging_keymap_male.csv deleted file mode 100644 index c16553e5..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/zplan_res/rigging_keymap_male.csv +++ /dev/null @@ -1,112 +0,0 @@ -male,jawOpen,noseSneerRight,noseSneerLeft,cheekSquintRight,cheekSquintLeft,cheekPuff,browOuterUpRight,browOuterUpLeft,browInnerUp,browDownRight,browDownLeft,mouthUpperUpRight,mouthUpperUpLeft,mouthLowerDownRight,mouthLowerDownLeft,mouthPressRight,mouthPressLeft,mouthShrugUpper,mouthShrugLower,mouthRollUpper,mouthRollLower,mouthStretchRight,mouthStretchLeft,mouthDimpleRight,mouthDimpleLeft,mouthFrownRight,mouthFrownLeft,mouthSmileRight,mouthSmileLeft,mouthRight,mouthLeft,mouthPucker,mouthFunnel,mouthClose,jawRight,jawLeft,jawForward,eyeWideLeft,eyeWideRight,eyeSquintRight,eyeSquintLeft,eyeLookUpRight,eyeLookUpLeft,eyeLookOutRight,eyeLookOutLeft,eyeLookInRight,eyeLookInLeft,eyeLookDownRight,eyeLookDownLeft,eyeBlinkRight,eyeBlinkLeft -fc_eyeBlinkL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 -fc_eyeBlinkR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 -fc_mouth_cornerPull_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_cornerPull_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_jaw_open,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_cheek_blow_R,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_cheek_blow_L,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_stretch_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_stretch_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyelidUp_Up_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -fc_brow_raiseIn_R,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_brow_raiseIn_L,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyelidUp_Up_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -fc_brow_raiseOuter_R,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_brow_raiseOuter_L,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_brow_raise_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_brow_raise_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyelidDn_Down_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0 -fc_eyelidDn_Down_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 -fc_eyeUp_lookOut_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -fc_eyeUp_lookOut_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -fc_eyeUp_lookIn_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -fc_eyeUp_lookIn_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 -fc_jaw_lowerChinRaise_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_brow_down_R,0,0.699999988,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_brow_down_L,0,0,0.699999988,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_brow_lateral_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_brow_lateral_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lipsTighten_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lipsTighten_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_dimple_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.400000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_dimple_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.400000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eye_squintInner_R,0,0,0,0.400000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0 -fc_eye_squintInner_L,0,0,0,0,0.400000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0 -fc_eye_widen_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eye_widen_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_sharpCornerPull_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_sharpCornerPull_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_press_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_press_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lipsPurse_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.400000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lipsPurse_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.400000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_funnel_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_funnel_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lipsTowards_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.300000012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lipsTowards_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.300000012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_Mtowards_pucker_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.120000005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_Mtowards_pucker_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.120000005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_Mfunnel_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.400000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_Mfunnel_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.400000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_Mtowards_Mfunnel_oh_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.120000005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_Mtowards_Mfunnel_oh_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.120000005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_nose_wrinkle_R,0,1,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_nose_wrinkle_L,0,0,1,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_Jopen_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Mpurse_Jopen_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_MlipsTogether_Jopen_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_MlipsTogether_Jopen_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_cornerDepress_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_cornerDepress_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lowerLipDepress_R,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lowerLipDepress_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_upperLipRaise_R,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_upperLipRaise_L,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_Up,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_jaw_lowerChinRaise_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.300000012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_jaw_upperChinRaise_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.400000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_jaw_upperChinRaise_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.400000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_Down,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -eyeBlink_Up_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -eyeBlink_Down_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_upperLipBite_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_upperLipBite_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lowerLipBite_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lowerLipBite_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lowerLipBite_half_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_lowerLipBite_half_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_upperLipBite_half_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_mouth_upperLipBite_half_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -eyeBlink_Up_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -eyeBlink_Down_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_jaw_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_jaw_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_jaw_fwd,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_jaw_back,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_jaw_OpenExtreme,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyelidUp_Down_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0 -fc_eyelidUp_Down_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 -fc_eyelidDn_Up_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -fc_eyelidDn_Up_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -fc_eyeDn_lookOut_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -fc_eyeDn_lookIn_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -fc_eyeDn_lookIn_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 -fc_eyeDn_lookOut_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -comb_McornerPull_Mstretch_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_McornerPull_Mstretch_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_McornerPull_MuprLipUp_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_McornerPull_MuprLipUp_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_McornerPull_MuprLipUp_cor,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_nose_Up,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_nose_Dn,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_Bdown_Blateral_BraiseOuter_cor,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_brow_down_extreme_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -comb_brow_down_extreme_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_chin,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyeIn_Up_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyeIn_Down_L,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyeIn_Up_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -fc_eyeIn_Down_R,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/zplan_res/zplanBonesFemale.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/zplan_res/zplanBonesFemale.bin deleted file mode 100644 index 52d49c7a..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/zplan_res/zplanBonesFemale.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/zplan_res/zplanBonesMale.bin b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/zplan_res/zplanBonesMale.bin deleted file mode 100644 index ae6c541b..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/AEKit3DMM.bundle/zplan_res/zplanBonesMale.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/common/align5p.tnnm b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/common/align5p.tnnm deleted file mode 100644 index f1af81bc..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/common/align5p.tnnm and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/common/align5p.tnnp.wmc b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/common/align5p.tnnp.wmc deleted file mode 100644 index fc5a5e0b..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/common/align5p.tnnp.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/config_dense.ini b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/config_dense.ini deleted file mode 100644 index 104bb3ce..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/config_dense.ini +++ /dev/null @@ -1,16 +0,0 @@ -version=400 -compute=cpu -type=dense -precision=PRECISION_AUTO - -sparse5p_model=common/align5p.tnnm -sparse5p_proto=common/align5p.tnnp.wmc -sparse5p_scale=1.3 - -sparse_model=high/align.tnnm -sparse_proto=high/align.tnnp.wmc -sparse_scale=1.1 - -dense_model=high/alignDense.tnnm -dense_proto=high/alignDense.tnnp.wmc -dense_scale=1.5 diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/config_dense_small.ini b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/config_dense_small.ini deleted file mode 100644 index e6e586a2..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/config_dense_small.ini +++ /dev/null @@ -1,16 +0,0 @@ -version=400 -compute=cpu -type=dense -precision=PRECISION_AUTO - -sparse5p_model=common/align5p.tnnm -sparse5p_proto=common/align5p.tnnp.wmc -sparse5p_scale=1.3 - -sparse_model=low/alignSmall.tnnm -sparse_proto=low/alignSmall.tnnp.wmc -sparse_scale=1.1 - -dense_model=low/alignDenseSmall.tnnm -dense_proto=low/alignDenseSmall.tnnp.wmc -dense_scale=1.5 diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/config_sparse.ini b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/config_sparse.ini deleted file mode 100644 index 749532c6..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/config_sparse.ini +++ /dev/null @@ -1,16 +0,0 @@ -version=400 -compute=cpu -type=sparse -precision=PRECISION_AUTO - -sparse5p_model=common/align5p.tnnm -sparse5p_proto=common/align5p.tnnp.wmc -sparse5p_scale=1.3 - -sparse_model=high/align.tnnm -sparse_proto=high/align.tnnp.wmc -sparse_scale=1.1 - -#dense_model=high/alignDense.tnnm -#dense_proto=high/alignDense.tnnp.wmc -dense_scale=1.5 diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/config_sparse_small.ini b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/config_sparse_small.ini deleted file mode 100644 index 8a8fa80c..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/config_sparse_small.ini +++ /dev/null @@ -1,16 +0,0 @@ -version=400 -compute=cpu -type=sparse -precision=PRECISION_AUTO - -sparse5p_model=common/align5p.tnnm -sparse5p_proto=common/align5p.tnnp.wmc -sparse5p_scale=1.3 - -sparse_model=low/alignSmall.tnnm -sparse_proto=low/alignSmall.tnnp.wmc -sparse_scale=1.1 - -#dense_model=low/alignDenseSmall.tnnm -#dense_proto=low/alignDenseSmall.tnnp.wmc -dense_scale=1.5 diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/high/align.tnnm b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/high/align.tnnm deleted file mode 100644 index b547ad74..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/high/align.tnnm and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/high/align.tnnp.wmc b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/high/align.tnnp.wmc deleted file mode 100644 index 96e5bf54..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/high/align.tnnp.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/high/alignDense.tnnm b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/high/alignDense.tnnm deleted file mode 100644 index 6a2e6219..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/high/alignDense.tnnm and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/high/alignDense.tnnp.wmc b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/high/alignDense.tnnp.wmc deleted file mode 100644 index 1191e24f..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/high/alignDense.tnnp.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/low/alignDenseSmall.tnnm b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/low/alignDenseSmall.tnnm deleted file mode 100644 index 68f97f61..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/low/alignDenseSmall.tnnm and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/low/alignDenseSmall.tnnp.wmc b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/low/alignDenseSmall.tnnp.wmc deleted file mode 100644 index f6cb7ccb..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/low/alignDenseSmall.tnnp.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/low/alignSmall.tnnm b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/low/alignSmall.tnnm deleted file mode 100644 index 9c458584..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/low/alignSmall.tnnm and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/low/alignSmall.tnnp.wmc b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/low/alignSmall.tnnp.wmc deleted file mode 100644 index c62a63b2..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-alignment-v400/low/alignSmall.tnnp.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/config.ini b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/config.ini deleted file mode 100644 index e95f9dc2..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/config.ini +++ /dev/null @@ -1,9 +0,0 @@ -version=600 - -# tnn_Face2D_人脸点位_v1.0.0_202112201200_cls_007_48x48_with_softmax.tnn3_fp16.opt.tnnm -# tnn_Face2D_人脸点位_v1.0.0_202112201200_ssd_001_dynamic_with_softmax.tnn3_fp16.opt.tnnm -# enable_dsp=1 -model1=f2d_ssd_001_dynamic.tnnm -proto1=f2d_ssd_001_dynamic.tnnp.wmc -model2=f2d_cls_007_48x48.tnnm -proto2=f2d_cls_007_48x48.tnnp.wmc diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/f2d_cls_007_48x48.tnnm b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/f2d_cls_007_48x48.tnnm deleted file mode 100644 index 4cfba998..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/f2d_cls_007_48x48.tnnm and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/f2d_cls_007_48x48.tnnp.wmc b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/f2d_cls_007_48x48.tnnp.wmc deleted file mode 100644 index d8ca5d00..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/f2d_cls_007_48x48.tnnp.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/f2d_ssd_001_dynamic.tnnm b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/f2d_ssd_001_dynamic.tnnm deleted file mode 100644 index 2b38c516..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/f2d_ssd_001_dynamic.tnnm and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/f2d_ssd_001_dynamic.tnnp.wmc b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/f2d_ssd_001_dynamic.tnnp.wmc deleted file mode 100644 index a98e2f6d..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/f2d_ssd_001_dynamic.tnnp.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/blacklist.ini b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/blacklist.ini deleted file mode 100644 index 79aaf0aa..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/blacklist.ini +++ /dev/null @@ -1,87 +0,0 @@ -21121210c -v2171a -ne2210 -2201123c -2201122c -m2101k9c -m2105k81ac -tna-an00 -hera-bd00 -hebe-bd00 -perm10 -pfjm10 -v2148a -rmx3361 -rmx3461 -v2115a -nam-al00 -rte-al00 -2109119bc -nth-an00 -rna-an00 -lsa-an00 -pfum10 -v2165a -any-an00 -pexm00 -v2073a -rmx3142 -pdvm00 -v2034a -pesm10 -v1832a -v1838a -v1829a -v1829t -redmi note 7 pro -pbem00 -pbet00 -v1809a -v1816t -v1809t -v1813bt -21121210C -V2171A -NE2210 -2201123C -2201122C -M2101K9C -M2105K81AC -TNA-AN00 -HERA-BD00 -HEBE-BD00 -PERM10 -PFJM10 -V2148A -RMX3361 -RMX3461 -V2115A -NAM-AL00 -RTE-AL00 -2109119BC -NTH-AN00 -RNA-AN00 -LSA-AN00 -PFUM10 -V2165A -ANY-AN00 -PEXM00 -V2073A -RMX3142 -PDVM00 -V2034A -PESM10 -V1832A -V1838A -V1829A -V1829T -REDMI NOTE 7 PRO -PBEM00 -PBET00 -V1809A -V1816T -V1809T -V1813BT -Redmi Note 7 -Redmi Note 7 Pro -Redmi Note 8 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/config.ini b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/config.ini deleted file mode 100644 index 2e030131..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/config.ini +++ /dev/null @@ -1,4 +0,0 @@ -version=v600-int8 - -model1=facedet_176_96_v3.tnnmodel.wmc -proto1=facedet_176_96_v3.tnnproto.wmc diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/facedet_176_96_v3.tnnmodel.wmc b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/facedet_176_96_v3.tnnmodel.wmc deleted file mode 100644 index be2d287f..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/facedet_176_96_v3.tnnmodel.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/facedet_176_96_v3.tnnproto.wmc b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/facedet_176_96_v3.tnnproto.wmc deleted file mode 100644 index fe152e12..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/facedet_176_96_v3.tnnproto.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/libhexagon_nn_skel.so b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/libhexagon_nn_skel.so deleted file mode 100644 index 1eec8c60..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/libhexagon_nn_skel.so and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/libs/arm64-v8a/libhexagon_wrapper.so b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/libs/arm64-v8a/libhexagon_wrapper.so deleted file mode 100644 index 458f5e43..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/libs/arm64-v8a/libhexagon_wrapper.so and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/libs/armeabi-v7a/libhexagon_wrapper.so b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/libs/armeabi-v7a/libhexagon_wrapper.so deleted file mode 100644 index 3df69350..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/libs/armeabi-v7a/libhexagon_wrapper.so and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/whitelist.ini b/Android/tuibeauty/src/main/assets/LightCore/models/LightFaceModel.bundle/face-detection-v600/hexagon/whitelist.ini deleted file mode 100644 index e69de29b..00000000 diff --git a/Android/tuibeauty/src/main/assets/LightCore/personface/facial_reform_triangles.txt b/Android/tuibeauty/src/main/assets/LightCore/personface/facial_reform_triangles.txt deleted file mode 100644 index db9bdbeb..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/personface/facial_reform_triangles.txt +++ /dev/null @@ -1,952 +0,0 @@ -264,431,263, -265,431,264, -266,431,265, -267,431,266, -421,432,223, -223,432,222, -222,432,269, -267,432,431, -268,432,267, -269,432,268, -258,430,257, -258,431,430, -259,431,258, -260,431,259, -261,431,260, -262,431,261, -263,431,262, -224,421,223, -251,430,429, -253,430,251, -254,430,253, -255,430,254, -256,430,255, -257,430,256, -422,421,224, -248,249,427, -252,253,251, -422,224,225, -250,429,249, -249,429,428, -249,428,427, -251,429,250, -423,226,227, -243,244,426, -244,245,426, -246,247,245, -245,247,426, -426,247,427, -247,248,427, -226,422,225, -423,422,226, -433,480,270, -223,222,434, -478,267,266, -479,268,267, -222,269,433, -480,269,268, -433,269,480, -480,268,479, -434,222,271, -477,266,265, -479,267,478, -271,222,433, -478,266,477, -476,265,264, -477,265,476, -475,264,263, -476,264,475, -474,263,262, -475,263,474, -270,480,482, -473,262,261, -474,262,473, -271,433,216, -473,261,472, -315,478,477, -316,479,478, -482,480,317, -317,480,479, -317,479,316, -314,477,476, -316,478,315, -242,243,426, -472,261,260, -315,477,314, -472,260,471, -313,476,475, -216,433,270, -314,476,313, -312,475,474, -313,475,312, -215,270,482, -312,474,311, -471,260,259, -311,474,473, -471,259,470, -310,473,472, -311,473,310, -216,270,215, -224,223,435, -310,472,309, -470,259,258, -309,472,471, -470,258,469, -309,471,308, -210,314,313, -211,314,210, -212,314,211, -212,315,314, -213,315,212, -482,317,214, -213,316,315, -317,316,214, -214,316,213, -435,223,434, -216,215,482, -209,313,312, -208,312,311, -210,313,209, -308,471,470, -30,216,31, -308,470,307, -209,312,208, -207,311,310, -469,258,257, -469,257,468, -435,434,272, -16,216,214, -208,311,207, -216,482,214, -307,470,469, -206,310,309, -207,310,206, -272,434,271, -31,216,16, -307,469,306, -205,309,308, -398,212,211, -397,212,398, -16,214,396, -214,213,396, -396,213,212, -396,212,397, -206,309,205, -399,211,210, -398,211,399, -400,210,209, -399,210,400, -400,209,325, -468,257,256, -468,256,467, -272,271,217, -325,209,208, -241,242,426, -327,400,325, -29,216,30, -217,271,216, -204,308,307, -205,308,204, -306,469,468, -325,207,353, -325,208,207, -17,16,396, -306,468,305, -353,207,206, -401,400,327, -203,307,306, -204,307,203, -353,206,205, -419,17,396, -28,216,29, -217,216,28, -467,256,466, -466,256,255, -304,468,467, -305,468,304, -31,16,17, -353,205,204, -18,17,419, -202,306,305, -203,306,202, -418,18,419, -353,204,203, -353,203,352, -18,31,17, -30,31,18, -402,401,327, -217,28,27, -304,467,303, -303,467,466, -325,353,354, -19,18,418, -201,305,304, -202,305,201, -466,255,465, -465,255,254, -352,203,202, -417,19,418, -352,202,351, -19,30,18, -29,30,19, -201,304,200, -26,217,27, -351,202,201, -200,304,303, -351,201,350, -303,466,302, -302,466,465, -20,19,417, -419,396,56, -56,396,397, -321,403,327, -218,217,26, -403,402,327, -57,397,398, -419,56,79, -465,254,464, -464,254,253, -57,56,397, -79,56,57, -20,417,416, -418,419,79, -29,19,20, -349,201,200, -350,201,349, -78,79,58, -79,57,58, -58,57,398, -325,354,355, -200,303,199, -58,398,399, -418,79,78, -240,241,426, -28,29,20, -78,58,59, -417,418,78, -199,303,302, -77,78,59, -404,403,321, -77,59,60, -59,58,399, -420,77,60, -302,465,301, -225,224,435, -21,20,416, -76,77,420, -417,78,77, -301,465,464, -21,416,415, -225,435,436, -59,399,400, -325,355,323, -416,417,77, -60,59,400, -349,200,199, -349,199,348, -420,60,61, -416,77,76, -28,20,21, -354,353,352, -96,404,321, -75,76,420, -199,302,198, -60,400,401, -436,435,272, -464,253,463, -463,253,252, -405,404,96, -323,355,356, -61,60,401, -27,28,21, -198,302,301, -21,415,414, -354,352,120, -415,416,76, -420,61,62, -415,76,75, -120,352,351, -22,21,414, -120,351,119, -61,401,402, -218,26,25, -74,75,420, -301,464,300, -436,272,273, -62,61,402, -300,464,463, -273,272,217, -348,199,198, -355,354,120, -348,198,347, -156,120,119, -420,62,63, -118,351,350, -414,415,75, -414,75,74, -119,351,118, -22,414,413, -74,420,73, -27,21,22, -62,402,63, -63,402,403, -198,301,197, -273,217,218, -406,405,96, -323,356,93, -64,420,63, -96,321,329, -73,420,72, -65,420,64, -72,420,65, -93,356,357, -355,120,121, -121,120,156, -197,301,300, -72,65,71, -22,413,23, -26,27,22, -463,252,462, -117,350,349, -414,74,73, -118,350,117, -155,156,119, -413,414,73, -462,252,251, -64,63,403, -347,198,197, -356,355,121, -64,403,404, -425,240,426, -121,156,157, -157,156,155, -23,413,412, -155,119,118, -218,25,9, -407,406,96, -347,197,346, -71,66,70, -71,65,66, -154,155,118, -300,463,299, -356,121,122, -65,64,404, -122,121,157, -413,73,72, -26,22,23, -65,404,405, -299,463,462, -117,349,116, -412,413,72, -157,155,158, -116,349,348, -153,118,117, -154,118,153, -158,155,154, -122,157,158, -197,300,196, -93,357,358, -23,411,24, -23,412,411, -66,65,405, -357,356,122, -412,72,71, -357,122,123, -25,26,23, -70,66,69, -69,66,67, -327,325,94, -66,405,406, -152,117,116, -153,117,152, -196,300,299, -94,325,323, -346,197,196, -158,154,159, -123,122,158, -411,412,71, -123,158,159, -408,407,96, -159,154,153, -96,329,101, -92,93,358, -67,66,406, -116,348,115, -115,348,347, -346,196,345, -24,411,410, -152,116,151, -411,71,70, -462,251,461, -461,251,250, -321,327,94, -151,116,115, -67,406,407, -159,153,160, -410,411,70, -329,321,95, -410,70,69, -124,357,123, -123,159,160, -25,23,24, -94,323,93, -160,153,152, -321,94,95, -358,357,124, -124,123,160, -24,410,97, -299,462,298, -69,67,68, -68,67,407, -97,410,409, -97,408,96, -151,115,150, -298,462,461, -345,196,195, -196,299,195, -114,115,347, -95,94,334, -97,96,100, -150,115,114, -409,69,68, -409,410,69, -334,94,93, -334,93,92, -10,218,9, -160,152,161, -68,407,408, -92,358,359, -195,299,298, -114,347,346, -124,160,161, -161,152,151, -409,68,408, -84,24,97, -125,124,161, -97,409,408, -150,114,149, -358,124,125, -345,195,344, -149,114,113, -8,25,24, -9,25,8, -359,358,125, -161,151,162, -8,24,84, -334,92,319, -113,114,346, -162,151,150, -125,161,162, -126,125,162, -329,95,334, -344,195,194, -149,113,148, -148,113,112, -92,359,360, -331,329,334, -461,250,460, -113,346,345, -162,150,163, -359,125,126, -331,334,81, -195,298,194, -298,461,297, -91,92,360, -163,150,149, -460,250,249, -193,344,194, -126,162,163, -360,359,126, -101,329,331, -297,461,460, -127,126,163, -319,92,91, -194,298,297, -112,113,345, -91,360,361, -82,96,101, -100,96,82, -148,112,147, -163,149,164, -8,84,85, -343,344,193, -147,112,111, -84,97,100, -81,334,80, -164,149,148, -82,101,331, -360,126,127, -239,240,425, -127,163,128, -128,163,164, -219,218,10, -84,100,83, -361,360,127, -80,334,319, -112,345,344, -164,148,165, -91,361,362, -111,112,344, -361,127,128, -219,10,11, -83,100,82, -82,331,332, -91,362,363, -147,111,146, -146,111,110, -194,297,296, -318,319,91, -128,164,129, -129,164,165, -332,331,81, -165,148,147, -362,361,128, -460,249,248, -80,319,318, -362,128,129, -192,343,193, -297,460,459, -83,82,98, -129,165,166, -146,165,147, -166,165,146, -193,194,296, -459,460,248, -364,91,363, -81,80,333, -130,129,166, -296,297,459, -342,343,192, -84,83,98, -130,362,129, -111,344,110, -110,344,343, -109,146,110, -363,362,130, -145,146,109, -85,84,98, -226,436,437, -274,436,273, -226,225,436, -98,82,86, -86,82,99, -82,332,330, -332,81,330, -330,81,333, -318,91,90, -90,91,364, -333,80,318, -8,85,384, -99,82,330, -90,364,365, -274,273,219, -145,166,146, -131,130,166, -328,333,87, -328,330,333, -131,166,167, -167,166,145, -437,436,274, -363,130,131, -219,273,218, -364,363,131, -385,8,384, -191,342,192, -108,145,109, -333,318,90, -295,193,296, -144,145,108, -132,131,167, -109,110,343, -132,167,168, -144,167,145, -364,131,132, -109,343,342, -219,11,12, -168,167,144, -85,98,86, -99,330,328, -192,193,295, -458,296,459, -365,364,132, -383,85,86, -89,333,90, -341,342,191, -384,85,383, -88,333,89, -247,459,248, -133,132,168, -295,296,458, -107,144,108, -90,365,366, -458,459,247, -365,132,133, -143,144,107, -87,333,88, -143,168,144, -133,168,169, -169,168,143, -108,109,342, -383,86,382, -366,365,133, -386,8,385, -86,99,328, -134,133,169, -382,86,381, -108,342,341, -190,341,191, -320,87,88, -294,192,295, -106,143,107, -367,90,366, -89,90,367, -320,86,328, -380,86,320, -381,86,380, -366,133,134, -380,320,379, -142,143,106, -142,169,143, -170,169,142, -320,328,87, -423,227,424, -134,169,170, -107,108,341, -7,8,386, -340,341,190, -191,192,294, -457,295,458, -326,320,88, -367,366,134, -379,320,378, -368,89,367, -135,134,170, -294,295,457, -378,320,326, -105,142,106, -246,458,247, -107,341,340, -367,134,135, -13,219,12, -220,219,13, -189,340,190, -141,170,142, -387,7,386, -141,142,105, -9,8,7, -135,170,171, -171,170,141, -457,458,246, -378,326,377, -322,89,368, -88,89,322, -106,107,340, -384,383,44, -369,322,368, -293,191,294, -44,383,382, -368,367,135, -10,9,7, -385,384,45, -368,135,136, -339,340,189, -140,171,141, -136,171,172, -45,384,44, -326,88,324, -136,135,171, -377,326,376, -104,141,105, -190,191,293, -324,88,322, -324,322,369, -339,106,340, -140,141,104, -172,171,140, -45,44,43, -43,44,382, -6,387,388, -6,7,387, -43,382,381, -105,106,339, -370,324,369, -10,7,6, -385,45,46, -386,385,46, -188,339,189, -376,326,375, -42,45,43, -46,45,42, -375,326,324, -456,294,457, -293,294,456, -375,324,179, -42,43,381, -41,46,42, -47,46,41, -386,46,47, -42,381,380, -338,105,339, -368,136,137, -139,172,140, -173,172,139, -136,172,173, -387,386,47, -139,140,104, -137,136,173, -104,105,338, -245,457,246, -48,47,41, -179,324,180, -335,324,370, -11,10,6, -369,368,137, -139,104,103, -456,457,245, -48,41,395, -395,41,40, -338,339,188, -178,375,179, -181,324,335, -180,324,181, -389,6,388, -292,190,293, -41,42,380, -387,47,48, -238,239,425, -374,375,178, -187,338,188, -11,6,5, -5,6,389, -49,48,395, -41,380,379, -189,190,292, -103,104,337, -337,104,338, -388,387,48, -138,173,139, -137,173,138, -138,139,103, -369,137,102, -40,41,379, -388,48,49, -395,40,39, -102,137,138, -50,49,395, -337,338,187, -455,293,456, -370,369,102, -138,103,102, -102,103,337, -5,389,390, -336,102,337, -292,293,455, -40,379,378, -389,388,49, -39,40,378, -424,227,228, -186,337,187, -389,49,50, -220,13,14, -395,39,38, -12,11,5, -370,102,336, -51,50,395, -291,189,292, -181,335,182, -4,5,390, -12,5,4, -336,337,186, -244,456,245, -455,456,244, -39,378,377, -4,390,391, -188,189,291, -38,39,377, -177,374,178, -37,395,38, -335,370,336, -51,389,50, -390,389,51, -51,395,52, -52,395,53, -36,395,37, -185,336,186, -53,395,36, -373,374,177, -53,36,35, -37,38,377, -37,377,376, -335,336,185, -454,292,455, -291,292,454, -4,391,392, -390,51,52, -391,390,52, -54,35,34, -54,53,35, -3,4,392, -182,335,183, -13,12,4, -274,219,275, -275,219,220, -184,335,185, -290,188,291, -36,37,376, -36,376,375, -13,4,3, -187,188,290, -183,335,184, -438,274,275, -391,52,53, -372,373,177, -437,274,438, -392,391,53, -243,455,244, -35,36,375, -454,455,243, -3,392,393, -176,372,177, -55,54,34, -35,375,374, -3,393,2, -55,34,33, -392,53,54, -227,437,438, -34,35,374, -453,291,454, -290,291,453, -393,392,54, -2,393,394, -289,187,290, -226,437,227, -34,374,373, -371,372,176, -14,13,3, -186,187,289, -2,394,1, -14,3,2, -33,34,373, -393,54,55, -220,14,15, -32,55,33, -394,393,55, -33,373,372, -175,371,176, -1,394,371, -32,33,372, -394,55,32, -220,0,174, -242,454,243, -453,454,242, -1,371,0, -32,372,371, -371,394,32, -452,290,453, -289,290,452, -185,186,288, -288,186,289, -14,2,15, -0,371,174, -174,371,175, -15,2,1, -237,238,425, -184,185,287, -287,185,288, -452,453,242, -288,289,452, -276,220,221, -481,220,174, -452,242,241, -451,288,452, -220,15,0, -15,1,0, -183,184,286, -286,184,287, -287,288,451, -439,220,276, -450,287,451, -451,452,241, -240,451,241, -182,183,285, -285,183,286, -221,220,481, -275,220,439, -181,182,284, -286,287,450, -284,182,285, -449,286,450, -180,181,283, -283,181,284, -450,451,240, -239,450,240, -179,180,282, -285,286,449, -448,285,449, -282,180,283, -236,237,425, -178,179,281, -281,179,282, -438,275,228, -228,275,439, -481,174,277, -177,178,280, -280,178,281, -284,285,448, -176,177,280, -447,284,448, -174,175,278, -175,176,279, -279,176,280, -449,450,239, -238,449,239, -278,175,279, -221,481,276, -277,174,278, -283,284,447, -446,283,447, -276,481,440, -440,481,277, -282,283,446, -227,438,228, -445,282,446, -281,282,445, -448,449,238, -237,448,238, -280,281,444, -444,281,445, -235,236,425, -278,279,442, -279,280,443, -443,280,444, -277,278,441, -439,276,440, -447,448,237, -442,279,443, -440,277,441, -441,278,442, -229,439,440, -236,447,237, -446,447,236, -445,446,235, -235,446,236, -234,235,425, -444,445,234, -234,445,235, -443,444,233, -233,444,234, -441,442,231, -442,443,232, -232,443,233, -233,234,425, -440,441,230, -228,439,229, -231,442,232, -230,441,231, -229,440,230, -232,233,425, -231,232,425, -424,230,425, -230,231,425, -229,230,424, -424,228,229, \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/personface/mask256.txt b/Android/tuibeauty/src/main/assets/LightCore/personface/mask256.txt deleted file mode 100755 index 3f84cc04..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/personface/mask256.txt +++ /dev/null @@ -1,256 +0,0 @@ -433.584, 849.546, -463.201, 844.993, -493.711, 841.404, -525.192, 841.429, -556.722, 843.648, -587.938, 847.943, -618.878, 852.810, -649.744, 857.821, -679.927, 859.855, -673.093, 829.369, -641.088, 815.353, -604.347, 809.246, -567.467, 804.885, -530.101, 804.295, -492.643, 808.421, -460.082, 825.033, -1093.564, 847.185, -1065.129, 842.603, -1035.796, 839.251, -1005.487, 839.415, -975.134, 841.728, -945.065, 846.053, -915.192, 850.893, -885.306, 855.990, -856.288, 858.291, -861.388, 828.333, -892.109, 813.674, -927.998, 807.570, -964.061, 803.146, -1000.754, 802.440, -1037.937, 805.719, -1069.479, 821.931, -509.485, 943.674, -520.094, 952.238, -531.436, 959.977, -543.605, 966.520, -556.881, 970.911, -570.585, 973.979, -584.526, 975.769, -598.633, 975.567, -612.681, 974.517, -626.657, 972.875, -640.546, 970.478, -654.328, 967.909, -667.752, 965.066, -660.513, 951.730, -650.757, 939.512, -639.334, 928.692, -625.528, 921.035, -610.592, 915.542, -594.962, 912.067, -578.839, 911.680, -562.760, 913.193, -547.094, 916.757, -532.947, 923.800, -520.296, 932.909, -1018.774, 941.280, -1008.887, 950.179, -998.089, 958.244, -986.493, 965.230, -973.634, 969.950, -960.263, 973.304, -946.620, 975.361, -932.812, 975.315, -919.036, 974.411, -905.330, 972.929, -891.708, 970.847, -878.085, 968.693, -864.804, 966.076, -871.348, 952.565, -880.361, 940.049, -891.177, 928.948, -904.566, 920.970, -919.069, 915.063, -934.344, 911.199, -950.134, 910.384, -965.946, 911.510, -981.322, 914.828, -995.318, 921.659, -1007.871, 930.566, -771.428, 1157.202, -770.439, 1109.412, -769.514, 1061.696, -768.561, 1014.029, -767.714, 966.230, -725.365, 966.692, -713.351, 1044.018, -696.189, 1119.724, -668.288, 1168.330, -672.341, 1194.678, -712.791, 1215.482, -770.998, 1223.905, -828.518, 1213.834, -867.969, 1192.008, -871.573, 1165.735, -842.732, 1118.334, -823.370, 1043.322, -809.008, 966.562, -743.730, 1017.495, -719.897, 1068.484, -792.749, 1017.073, -817.708, 1067.565, -606.777, 1297.078, -618.479, 1317.005, -632.313, 1336.469, -647.644, 1355.139, -664.946, 1372.310, -684.603, 1387.073, -706.498, 1398.548, -730.164, 1405.974, -755.051, 1409.734, -780.397, 1410.350, -804.597, 1408.036, -828.034, 1402.724, -849.934, 1393.888, -869.798, 1381.203, -887.211, 1365.448, -902.161, 1347.512, -915.209, 1328.296, -926.840, 1308.503, -936.454, 1287.838, -919.336, 1284.753, -899.601, 1283.598, -879.236, 1281.889, -858.975, 1279.772, -839.147, 1277.976, -819.736, 1278.123, -805.459, 1280.975, -791.933, 1284.914, -778.138, 1288.333, -763.962, 1285.711, -750.086, 1282.495, -735.510, 1280.317, -714.182, 1281.807, -692.684, 1285.098, -670.668, 1288.454, -648.299, 1291.057, -626.490, 1292.798, -613.973, 1299.481, -629.845, 1308.016, -647.341, 1316.257, -665.405, 1324.031, -683.666, 1330.995, -702.171, 1336.592, -720.987, 1340.963, -740.131, 1344.245, -759.464, 1346.316, -778.916, 1346.975, -796.904, 1345.026, -814.673, 1341.843, -832.174, 1337.478, -849.298, 1332.037, -866.130, 1325.412, -882.696, 1317.561, -899.091, 1309.054, -914.897, 1300.279, -929.220, 1291.040, -914.592, 1292.685, -898.012, 1295.510, -880.822, 1298.412, -863.621, 1301.062, -846.637, 1303.430, -829.751, 1305.939, -812.929, 1308.688, -796.136, 1311.424, -779.175, 1313.474, -760.682, 1312.453, -742.265, 1310.608, -723.778, 1308.779, -705.245, 1307.253, -686.589, 1305.875, -667.681, 1304.132, -648.716, 1302.062, -630.526, 1300.057, -362.240, 940.762, -364.777, 980.855, -368.497, 1020.941, -374.055, 1060.867, -380.949, 1100.682, -389.073, 1140.027, -398.296, 1179.214, -408.518, 1217.977, -420.759, 1256.211, -435.796, 1293.312, -455.010, 1328.442, -477.853, 1361.417, -503.923, 1392.044, -531.981, 1420.944, -561.659, 1448.057, -592.774, 1473.807, -625.200, 1497.809, -659.350, 1519.060, -695.837, 1535.841, -734.737, 1545.705, -774.900, 1548.549, -814.104, 1544.231, -851.795, 1533.065, -886.812, 1515.266, -919.298, 1493.021, -949.918, 1468.159, -979.219, 1441.589, -1007.106, 1413.827, -1033.455, 1384.433, -1058.013, 1353.437, -1079.405, 1320.228, -1097.413, 1285.036, -1111.515, 1248.109, -1122.841, 1210.339, -1132.253, 1171.994, -1140.655, 1133.256, -1147.944, 1094.252, -1153.932, 1054.866, -1158.492, 1015.278, -1161.128, 975.798, -1162.647, 936.210, -1145.613, 803.615, -1054.769, 670.997, -920.224, 583.326, -762.460, 553.949, -601.000, 587.394, -464.921, 678.514, -374.940, 813.436, -587.739, 940.877, -942.896, 940.594, -549.387, 942.655, -552.987, 957.197, -561.877, 969.254, -574.705, 976.990, -589.517, 979.229, -604.059, 975.629, -616.116, 966.739, -623.853, 953.911, -626.091, 939.099, -622.492, 924.557, -613.601, 912.500, -600.773, 904.763, -585.961, 902.525, -571.419, 906.125, -559.362, 915.015, -551.626, 927.843, -980.717, 940.955, -977.700, 955.401, -969.384, 967.592, -957.036, 975.674, -942.535, 978.415, -928.089, 975.398, -915.897, 967.082, -907.816, 954.734, -905.075, 940.233, -908.092, 925.787, -916.408, 913.595, -928.756, 905.514, -943.257, 902.773, -957.703, 905.790, -969.895, 914.106, -977.976, 926.454, diff --git a/Android/tuibeauty/src/main/assets/LightCore/personface/model.txt b/Android/tuibeauty/src/main/assets/LightCore/personface/model.txt deleted file mode 100644 index 154b489f..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/personface/model.txt +++ /dev/null @@ -1,90 +0,0 @@ -156.88185140529998,528.1364190166 -169.5493300902,595.3714981903 -181.24238733779998,649.9390986791 -191.9610231481,695.7369062322 -214.372716206,738.6114494734 -238.7332521385,776.6138855281 -277.71010963049997,811.6930572709 -311.814859936,843.8489647018 -351.7661388653,868.2095006343 -398.53836785569996,876.97929357 -445.3105968461,866.2606577596999 -491.10840439919997,841.9001218272 -528.1364190166,807.7953715217 -558.3434835729,769.792935467 -585.6272838172999,734.7137637242 -605.1157125633,690.8647990457 -618.7576126855,645.0669914926 -630.4506699331,592.4482338784 -633.373934245,524.2387332674 -199.75639464649998,446.2850182834 -239.7076735758,444.3361754088 -280.6333739424,448.23386115799997 -321.559074309,456.0292326564 -362.48477467559997,458.9524969683 -327.4056029328,433.6175395985 -283.55663825429997,425.8221681001 -239.7076735758,425.8221681001 -595.3714981903,445.3105968461 -555.4202192609999,444.3361754088 -515.4689403317,452.1315469072 -484.28745433809996,457.0036540937 -438.489646785,460.9013398429 -464.7990255921,435.56638247309996 -508.64799027059996,422.89890378819996 -559.3179050102,422.89890378819996 -241.6565164504,508.699147396 -260.1705237591,520.3922046435999 -285.5054811289,524.2898903928 -309.8660170614,522.3410475182 -336.1753958685,512.5712545825 -317.6613885598,493.0572472738 -287.4543240035,483.3130329008 -263.093788071,489.1595615246 -291.3520097527,504.7503045214 -291.3520097527,502.80146164679996 -558.3434835729,504.8270402095 -537.8806333896,519.443361769 -511.5712545825,526.2643118300999 -487.21071865,522.3154689555 -460.9013398429,513.5456760198 -481.3641900262,492.0828258365 -508.64799027059996,484.28745433809996 -534.9573690777,488.1851400873 -508.64799027059996,502.80146164679996 -508.64799027059996,500.8526187722 -370.280146174,512.5456760198 -366.3824604248,600.2436053768 -340.0730816177,649.9390986791 -370.280146174,668.4531059878 -400.4872107303,672.350791737 -428.745432412,666.5042631132 -458.9524969683,647.0158343672 -432.6431181612,601.2180268141 -430.6942752866,513.5200974571 -400.4872107303,636.2971985569 -312.7892813733,719.1230207274 -489.1595615246,717.1741778528 -335.2009744312,743.4835566598999 -364.4336175502,759.0742996567 -399.51278929299997,766.8696711550999 -434.5919610358,758.0998782194 -464.7990255921,741.5347137853 -442.38733253419997,736.6626065987999 -401.4616321676,741.5347137853 -352.7405603026,736.6626065987999 -346.8940316788,713.2764921035999 -379.0499391097,710.3532277917 -401.4616321676,714.2509135409 -421.9244823509,713.2764921035999 -454.08038978179997,713.2764921035999 -442.38733253419997,729.8416565377 -400.4872107303,731.7904994122999 -354.6894031772,727.8928136631 -400.4872107303,512.5456760198 -404.3848964795,460.9013398429 -400.4872107303,692.8136419203 -205.60292327029998,205.60292327029998 -398.53836785569996,275.7612667559 -598.2947625022,197.8075517719 -400.4872107303,356.63824605179997 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/personface/model256.txt b/Android/tuibeauty/src/main/assets/LightCore/personface/model256.txt deleted file mode 100644 index 0e0eefa8..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/personface/model256.txt +++ /dev/null @@ -1,256 +0,0 @@ -432.475, 848.994, -461.562, 844.168, -491.590, 840.335, -522.698, 840.116, -553.946, 842.295, -584.868, 846.585, -615.543, 851.575, -646.112, 856.828, -676.019, 859.175, -670.245, 829.473, -637.634, 816.072, -601.051, 809.629, -564.348, 805.091, -526.997, 804.002, -489.836, 808.380, -457.551, 824.670, -1094.468, 847.581, -1066.140, 842.476, -1036.797, 838.590, -1006.414, 838.267, -975.893, 840.401, -945.674, 844.718, -915.664, 849.759, -885.633, 855.173, -856.375, 857.703, -860.599, 827.663, -892.148, 813.638, -928.048, 807.322, -964.107, 802.950, -1000.948, 802.103, -1038.210, 806.112, -1070.255, 822.337, -510.825, 943.167, -521.076, 952.046, -532.203, 960.006, -544.263, 966.674, -557.483, 971.228, -571.189, 974.343, -585.173, 976.053, -599.330, 975.833, -613.417, 974.682, -627.417, 972.871, -641.322, 970.357, -655.110, 967.645, -668.471, 964.588, -661.337, 951.562, -651.572, 939.759, -640.056, 929.406, -626.333, 921.845, -611.473, 916.410, -595.910, 912.965, -579.838, 912.361, -563.795, 913.670, -548.157, 917.060, -533.967, 923.730, -521.391, 932.550, -1019.397, 940.804, -1009.661, 949.843, -998.901, 957.990, -987.262, 964.979, -974.365, 969.801, -960.915, 973.165, -947.167, 975.148, -933.247, 975.098, -919.368, 974.114, -905.559, 972.503, -891.828, 970.311, -878.107, 968.000, -864.769, 965.157, -871.274, 951.984, -880.373, 939.943, -891.338, 929.390, -904.690, 921.622, -919.156, 915.922, -934.398, 912.225, -950.173, 911.303, -966.025, 912.277, -981.516, 915.421, -995.761, 921.829, -1008.491, 930.368, -770.502, 1154.874, -769.515, 1107.421, -768.555, 1060.044, -767.571, 1012.679, -766.645, 965.119, -724.033, 965.534, -711.864, 1042.516, -695.144, 1118.539, -666.935, 1168.111, -671.466, 1195.469, -712.689, 1215.954, -770.314, 1223.018, -826.612, 1214.521, -866.408, 1192.945, -870.220, 1165.754, -841.345, 1117.391, -822.719, 1041.854, -808.322, 965.293, -742.690, 1016.125, -718.896, 1067.169, -791.592, 1015.754, -816.472, 1066.396, -616.752, 1306.256, -630.298, 1320.571, -644.967, 1334.470, -660.521, 1347.781, -677.317, 1359.802, -695.363, 1369.934, -714.418, 1377.697, -734.194, 1382.642, -754.460, 1385.182, -774.825, 1385.707, -794.217, 1384.375, -813.375, 1381.115, -831.897, 1375.502, -849.588, 1367.141, -866.138, 1356.479, -881.317, 1344.018, -895.255, 1330.393, -908.294, 1316.317, -920.213, 1301.365, -904.115, 1296.905, -886.158, 1293.388, -867.629, 1289.224, -848.910, 1284.820, -830.339, 1280.815, -811.849, 1278.969, -799.203, 1281.579, -787.096, 1285.229, -774.608, 1288.483, -761.872, 1285.621, -749.512, 1282.320, -736.593, 1280.035, -716.486, 1282.696, -696.295, 1287.455, -675.812, 1292.503, -655.313, 1297.120, -635.308, 1300.911, -624.491, 1307.638, -640.377, 1309.820, -656.943, 1311.980, -673.931, 1313.912, -690.927, 1315.526, -707.824, 1316.916, -724.611, 1318.450, -741.266, 1320.247, -757.783, 1321.974, -774.462, 1322.984, -789.960, 1321.422, -805.225, 1319.243, -820.589, 1316.982, -836.071, 1314.938, -851.642, 1313.013, -867.271, 1310.913, -882.866, 1308.564, -898.080, 1306.012, -912.642, 1303.546, -898.080, 1306.012, -882.866, 1308.563, -867.271, 1310.913, -851.642, 1313.013, -836.071, 1314.938, -820.589, 1316.982, -805.225, 1319.243, -789.960, 1321.422, -774.462, 1322.984, -757.783, 1321.974, -741.266, 1320.247, -724.611, 1318.450, -707.824, 1316.916, -690.927, 1315.526, -673.931, 1313.912, -656.943, 1311.980, -640.377, 1309.820, -359.815, 942.925, -362.621, 982.893, -366.627, 1022.846, -372.588, 1062.631, -380.069, 1102.273, -388.811, 1141.387, -398.617, 1180.310, -409.241, 1218.879, -421.581, 1256.982, -436.462, 1294.045, -455.393, 1329.184, -477.953, 1362.198, -503.787, 1392.809, -531.731, 1421.573, -561.393, 1448.413, -592.661, 1473.742, -625.278, 1497.146, -659.666, 1517.582, -696.281, 1533.406, -735.049, 1542.566, -775.008, 1545.249, -814.199, 1541.347, -852.023, 1530.853, -887.236, 1513.705, -919.812, 1491.882, -950.355, 1467.196, -979.508, 1440.750, -1007.133, 1413.024, -1033.137, 1383.584, -1057.237, 1352.494, -1078.147, 1319.181, -1095.770, 1283.969, -1109.741, 1247.157, -1121.362, 1209.601, -1131.469, 1171.534, -1140.795, 1133.121, -1148.966, 1094.358, -1155.694, 1055.183, -1160.711, 1015.746, -1163.581, 976.431, -1165.226, 937.015, -1145.688, 801.786, -1054.321, 669.189, -919.157, 581.645, -760.775, 552.481, -599.554, 586.191, -463.771, 677.589, -374.097, 812.761, -588.063, 941.019, -943.384, 940.497, -549.770, 942.483, -553.245, 957.025, -562.021, 969.131, -574.761, 976.957, -589.527, 979.311, -604.069, 975.836, -616.175, 967.061, -624.001, 954.320, -626.355, 939.555, -622.880, 925.012, -614.105, 912.907, -601.364, 905.081, -586.599, 902.726, -572.056, 906.201, -559.951, 914.977, -552.125, 927.717, -980.554, 940.691, -977.650, 954.900, -969.530, 966.917, -957.429, 974.911, -943.190, 977.667, -928.981, 974.763, -916.964, 966.643, -908.969, 954.542, -906.214, 940.303, -909.118, 926.094, -917.238, 914.077, -929.339, 906.082, -943.578, 903.327, -957.787, 906.230, -969.804, 914.351, -977.799, 926.452, diff --git a/Android/tuibeauty/src/main/assets/LightCore/personface/model256_old.txt b/Android/tuibeauty/src/main/assets/LightCore/personface/model256_old.txt deleted file mode 100755 index bf48f883..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/personface/model256_old.txt +++ /dev/null @@ -1,256 +0,0 @@ -199.75639464649998, 446.2850182834, -219.73203411114997, 445.3105968461, -239.7076735758, 444.3361754088, -260.1705237591, 446.28501828339995, -280.6333739424, 448.23386115799997, -301.0962241257, 452.1315469072, -321.559074309, 456.0292326564, -342.02192449229995, 457.49086481234997, -362.48477467559997, 458.9524969683, -344.9451888042, 446.2850182834, -327.4056029328, 433.6175395985, -305.48112059355, 429.71985384929997, -283.55663825429997, 425.8221681001, -261.63215591504996, 425.8221681001, -239.7076735758, 425.8221681001, -219.73203411114997, 436.05359319175, -595.3714981903, 445.3105968461, -575.39585872565, 444.82338612745, -555.4202192609999, 444.3361754088, -535.4445797963499, 448.23386115799997, -515.4689403317, 452.1315469072, -499.87819733489994, 454.56760050045, -484.28745433809996, 457.0036540937, -461.38855056155, 458.9524969683, -438.489646785, 460.9013398429, -451.64433618855, 448.23386115799997, -464.7990255921, 435.56638247309996, -486.72350793135, 429.23264313065, -508.64799027059996, 422.89890378819996, -533.9829476404, 422.89890378819996, -559.3179050102, 422.89890378819996, -577.34470160025, 434.10475031715, -241.6565164504, 506.699147396, -247.82785221996667, 510.5968331452, -253.9991879895333, 514.4945188944, -260.1705237591, 518.3922046435999, -268.61550954903333, 519.6914332266666, -277.06049533896663, 520.9906618097333, -285.5054811289, 522.2898903928, -293.6256597730667, 521.6402761012666, -301.7458384172333, 520.9906618097333, -309.8660170614, 520.3410475182, -318.6358099971, 517.4177832063, -327.4056029328, 514.4945188944, -336.1753958685, 511.5712545825, -330.00406009893334, 505.3999188129333, -323.83272432936667, 499.22858304336665, -317.6613885598, 493.0572472738, -307.59236704103336, 486.80917581613335, -297.52334552226665, 483.56110435846665, -287.4543240035, 483.3130329008, -279.3341453593333, 483.26187577540003, -271.2139667151667, 485.21071865, -263.093788071, 489.1595615246, -254.94803086413333, 493.0060901484, -247.80227365726668, 498.8526187722, -558.3434835729, 501.8270402095, -551.5225335118, 506.699147396, -544.7015834507, 511.57125458250005, -537.8806333896, 516.443361769, -529.1108404539, 518.7170117893667, -520.3410475182, 520.9906618097333, -511.5712545825, 523.2643118300999, -503.4510759383333, 522.6146975385666, -495.3308972941667, 521.9650832470334, -487.21071865, 521.3154689555, -478.44092571429996, 518.3922046436, -469.6711327786, 515.4689403317, -460.9013398429, 512.5456760198, -467.722289904, 504.7247259587, -474.5432399651, 497.9037758976, -481.3641900262, 492.0828258365, -490.45879010766663, 488.4843686703666, -499.5533901891333, 484.8859115042333, -508.64799027059996, 484.28745433809996, -517.4177832063, 483.58668292116664, -526.187576142, 484.8859115042333, -534.9573690777, 488.1851400873, -543.7527405761, 491.7324401280333, -550.5481120745001, 497.2797401687667, -400.4872107303, 636.2971985569, -400.4872107303, 605.359317922625, -400.4872107303, 574.42143728835, -400.4872107303, 543.483556654075, -400.4872107303, 512.5456760198, -370.280146174, 512.5456760198, -368.3313032994, 556.3946406983, -366.3824604248, 600.2436053768, -339.8395377777778, 635.6516444444444, -340.0730816177, 649.9390986791, -370.280146174, 668.4531059878, -400.4872107303, 672.350791737, -428.745432412, 666.5042631132, -458.9524969683, 647.0158343672, -459.8395377777778, 635.6516444444444, -432.6431181612, 601.2180268141, -431.6686967239, 557.3690621356, -430.6942752866, 513.5200974571, -383.10337777777784, 544.4153333333333, -373.7637333333333, 574.7134666666667, -415.72599999999994, 544.4729955555555, -424.9130666666667, 574.8199555555555, -312.7892813733, 719.1230207274, -320.25984572593336, 728.2431993715667, -327.73041007856665, 737.3633780157332, -335.2009744312, 743.4835566598999, -344.9451888042, 748.6804709921666, -354.6894031772, 753.8773853244332, -364.4336175502, 759.0742996567, -376.1266747978, 763.6727568228333, -387.8197320454, 766.2712139889666, -399.51278929299997, 766.8696711550999, -411.20584654059996, 765.9464068432, -422.8989037882, 763.0231425313, -434.5919610358, 758.0998782194, -444.66098255456666, 753.5781567413667, -454.73000407333336, 749.0564352633334, -464.7990255921, 741.5347137853, -473.9192042362667, 734.4145351411333, -481.0393828804333, 725.2943564969667, -489.1595615246, 717.1741778528, -477.466504277, 715.8749492697333, -465.77344702939996, 714.5757206866666, -454.08038978179997, 713.2764921035999, -443.3617539715, 713.2764921035999, -432.6431181612, 713.2764921035999, -421.9244823509, 713.2764921035999, -415.1035322898, 713.6012992493667, -408.2825822287, 713.9261063951333, -401.4616321676, 714.2509135409, -393.99106781496664, 712.9516849578333, -386.52050346233335, 711.6524563747666, -379.0499391097, 710.3532277917, -368.3313032994, 711.3276492289999, -357.6126674891, 712.3020706663, -346.8940316788, 713.2764921035999, -335.52578157696666, 715.2253349782, -324.15753147513334, 717.1741778528, -312.7892813733, 719.1230207274, -320.77953715916, 722.63093790168, -328.76979294502, 726.13885507596, -336.76004873088, 729.6467722502399, -344.75030451674, 733.1546894245199, -352.7405603026, 736.6626065987999, -364.92082826884996, 737.880633395425, -377.1010962351, 739.0986601920499, -389.28136420135, 740.316686988675, -401.4616321676, 741.5347137853, -411.69305725925, 740.316686988675, -421.9244823509, 739.0986601920499, -432.15590744254996, 737.880633395425, -442.38733253419997, 736.6626065987999, -451.74177833228, 732.7649208495999, -461.09622413036, 728.8672351004, -470.45066992844, 724.9695493511999, -479.80511572652, 721.071863602, -489.1595615246, 717.1741778528, -479.80511572652, 719.70767358978, -470.45066992844, 722.24116932676, -461.09622413036, 724.77466506374, -451.74177833228, 727.30816080072, -442.38733253419997, 729.8416565377, -431.912302083225, 730.32886725635, -421.43727163225, 730.816077975, -410.962241181275, 731.30328869365, -400.4872107303, 731.7904994122999, -389.03775884202497, 730.816077975, -377.58830695375, 729.8416565376999, -366.138855065475, 728.8672351004, -354.6894031772, 727.8928136631, -346.30937881642, 726.13885507596, -337.92935445564, 724.38489648882, -329.54933009486, 722.63093790168, -321.16930573408, 720.87697931454, -156.88185140529998, 528.1364190166, -161.10434430026666, 550.5481120745001, -165.3268371952333, 572.9598051324, -169.5493300902, 595.3714981903, -173.4470158394, 613.5606983532333, -177.34470158859997, 631.7498985161667, -181.24238733779998, 649.9390986791, -185.60170524295, 672.83800245565, -191.9610231481, 695.7369062322, -203.16686967705, 719.1741778528, -214.372716206, 738.6114494734, -226.55298417225, 757.6126675007499, -238.7332521385, 776.6138855281, -258.22168088449996, 795.1534713995, -277.71010963049997, 811.6930572709, -294.76248478325, 827.77101098635, -311.814859936, 843.8489647018, -331.79049940065, 856.02923266805, -351.7661388653, 868.2095006343, -375.15225336049997, 872.59439710215, -398.53836785569996, 876.97929357, -421.9244823509, 871.61997566485, -445.3105968461, 866.2606577596999, -468.20950062265, 854.08038979345, -491.10840439919997, 841.9001218272, -509.6224117079, 824.84774667445, -528.1364190166, 807.7953715217, -543.23995129475, 788.79415349435, -558.3434835729, 769.792935467, -571.9853836950999, 752.2533495956, -585.6272838172999, 734.7137637242, -598.3714981902999, 715.7892813849501, -605.1157125633, 690.8647990457, -611.9366626244, 667.96589526915, -618.7576126855, 645.0669914926, -622.6552984347001, 627.5274056211999, -626.5529841839, 609.9878197498, -630.4506699331, 592.4482338784, -631.4250913704, 569.7117336747333, -632.3995128077, 546.9752334710666, -633.373934245, 524.2387332674, -632.3136, 457.47591111111115, -601.208888888889, 373.8371288888889, -518.26536000000004, 312.3112222222222, -403.34909333333326, 290.1991644444445, -287.7152888888889, 312.4116266666667, -202.35713333333334, 375.0226666666666, -171.35615555555557, 459.7183111111111, -287.9373777777778, 501.0660888888888, -507.95444444444445, 501.0646222222222, -264.8947333333333, 501.9576888888888, -266.9899555555556, 510.70786666666675, -272.27423555555555, 517.9901777777778, -279.9431022222222, 522.6959111111111, -288.82902222222225, 524.1087555555556, -297.5791777777778, 522.0135111111111, -304.86148444444444, 516.7292444444445, -309.56722666666667, 509.0603555555556, -310.98002222222226, 500.1744444444444, -308.88481777777776, 491.4242888888889, -303.6005333333333, 484.14198222222217, -295.9316666666667, 479.43622222222217, -287.0457777777778, 478.0234222222222, -278.2955777777778, 480.11864444444444, -271.0132888888889, 485.40293333333335, -266.3075422222222, 493.0717955555556, -530.8797333333333, 501.0732444444444, -529.1313333333334, 509.8457333333333, -524.1589777777779, 517.2813333333334, -516.7196, 522.2481333333334, -507.9458222222222, 523.989911111111, -499.1733333333333, 522.2415111111111, -491.7377333333333, 517.2691555555556, -486.7709333333333, 509.8297777777778, -485.0291555555555, 501.056, -486.7775555555556, 492.2835288888889, -491.7499111111111, 484.8479111111111, -499.1892888888889, 479.88111111111107, -507.96306666666663, 478.13933333333335, -516.7355333333334, 479.88773333333336, -524.1711555555555, 484.86008888888887, -529.1379555555555, 492.2994666666667, \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/personface/model_v6.txt b/Android/tuibeauty/src/main/assets/LightCore/personface/model_v6.txt deleted file mode 100644 index c0948656..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/personface/model_v6.txt +++ /dev/null @@ -1,90 +0,0 @@ -364.0, 974.5, -380.0, 1095.0, -398.0, 1172.0, -421.0, 1249.0, -456.0, 1323.0, -502.0, 1390.0, -560.0, 1447.0, -624.0, 1492.0, -696.0, 1524.0, -774.0, 1539.0, -851.0, 1527.0, -921.0, 1491.0, -984.0, 1440.0, -1034.0, 1377.0, -1081.0, 1312.0, -1116.0, 1240.0, -1138.0, 1164.0, -1155.0, 1088.0, -1169.0, 968.0, -420.0, 856.0, -505.0, 842.0, -566.0, 845.0, -626.0, 856.0, -699.0, 863.0, -644.0, 815.0, -571.0, 802.0, -499.0, 806.0, -1113.0, 850.0, -1043.0, 839.0, -965.0, 841.0, -905.0, 852.0, -831.0, 859.0, -886.0, 812.0, -959.0, 798.0, -1048.0, 805.0, -513.0, 938.0, -544.0, 963.0, -583.0, 971.0, -624.0, 969.0, -665.0, 967.0, -634.0, 926.0, -595.0, 907.0, -551.0, 913.0, -588.625, 944.25, -583.771, 936.5021, -1021.0, 938.0, -990.0, 963.0, -951.0, 971.0, -910.0, 969.0, -869.0, 967.0, -900.0, 926.0, -939.0, 907.0, -983.0, 913.0, -945.375, 944.25, -937.1252, 935.7339, -722.12915, 963.1427, -715.3668, 1098.121, -670.9901, 1192.5953, -712.1477, 1213.3158, -771.2527, 1219.9127, -829.4121, 1213.4009, -870.1232, 1192.1124, -824.67645, 1097.9504, -813.4994, 963.77057, -772.77277, 1152.2971, -622.0, 1300.0, -913.0, 1299.0, -661.0, 1340.0, -710.0, 1371.0, -768.0, 1379.0, -827.0, 1373.0, -879.0, 1339.0, -836.1306500000001, 1311.7138, -767.0964, 1319.4322, -696.22825, 1313.8366999999998, -671.0, 1293.0, -725.0, 1284.0, -768.0, 1292.0, -806.0, 1284.0, -857.0, 1289.0, -835.5952500000001, 1311.51745, -767.0868, 1320.3833, -696.7471499999999, 1313.59665, -764.4428, 965.6573000000001, -765.0, 861.0, -766.4716000000001, 1255.3844, -466.0, 556.1496480000001, -751.42488, 585.9900499999999, -1058.0, 559.7614559999993, -763.9424, 706.8413600000002 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/personface/model_v6_openmouth.txt b/Android/tuibeauty/src/main/assets/LightCore/personface/model_v6_openmouth.txt deleted file mode 100644 index 9161bccc..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/personface/model_v6_openmouth.txt +++ /dev/null @@ -1,90 +0,0 @@ -371.41, 987.49, -382.77, 1106.15, -400.36, 1183.58, -426.56, 1259.02, -466.10, 1328.51, -517.58, 1390.34, -576.75, 1443.95, -638.37, 1492.96, -706.65, 1530.89, -784.55, 1543.43, -859.22, 1527.89, -922.00, 1486.49, -977.00, 1433.54, -1029.37, 1376.34, -1073.56, 1311.71, -1106.29, 1241.37, -1127.44, 1166.71, -1140.65, 1091.30, -1145.37, 976.39, -445.78, 857.04, -503.71, 850.10, -562.54, 849.14, -621.25, 854.36, -679.39, 858.56, -638.31, 813.34, -567.33, 802.53, -496.15, 809.16, -1082.90, 849.68, -1026.76, 844.20, -969.86, 844.80, -913.21, 851.38, -856.98, 856.83, -895.54, 811.30, -964.43, 798.49, -1033.66, 803.32, -518.08, 944.94, -549.36, 963.14, -587.10, 973.00, -626.21, 971.26, -664.08, 963.48, -638.33, 927.44, -596.89, 914.47, -553.32, 920.58, -591.82, 945.75, -591.67, 947.29, -1015.54, 940.29, -985.98, 959.64, -949.34, 970.25, -910.97, 969.10, -873.64, 961.96, -898.03, 925.97, -938.19, 911.89, -980.93, 916.73, -943.90, 942.94, -944.03, 944.44, -717.13, 965.44, -715.44, 1102.90, -666.26, 1181.05, -711.01, 1216.00, -775.95, 1225.77, -838.65, 1214.94, -880.84, 1178.89, -830.98, 1102.14, -821.92, 964.68, -776.19, 1163.90, -621.95, 1295.94, -926.83, 1288.98, -648.76, 1348.57, -704.38, 1385.81, -779.85, 1395.74, -853.84, 1382.33, -903.99, 1341.12, -856.32, 1329.70, -777.87, 1343.60, -697.92, 1331.69, -680.95, 1291.24, -740.19, 1287.00, -776.49, 1294.29, -812.33, 1286.37, -869.88, 1289.21, -848.10, 1305.19, -776.70, 1314.23, -703.21, 1306.86, -769.52, 965.06, -768.18, 857.70, -776.22, 1260.03, -459.42, 445.94, -764.48, 632.57, -1054.09, 447.03, -763.09, 704.34, diff --git a/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model.txt b/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model.txt deleted file mode 100644 index 7a725248..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model.txt +++ /dev/null @@ -1,77 +0,0 @@ -171,457 -186,549 -214,620 -262,678 -292,699 -360,721 -428,699 -458,678 -506,620 -534,549 -549,457 -197,401 -237,395 -328,405 -234,378 -523,401 -483,395 -392,405 -486,378 -240,440 -255,451 -273,455 -292,454 -312,453 -297,434 -279,425 -258,428 -480,440 -465,451 -447,455 -428,454 -408,453 -423,434 -441,425 -462,428 -337,453 -332,512 -310,557 -330,567 -360,571 -390,567 -410,557 -388,512 -383,453 -360,538 -287,607 -433,607 -360,658 -397,624 -360,632 -323,624 -312,603 -339,599 -381,599 -408,603 -396,614 -360,617 -324,614 -360,453 -360,405 -256,300 -464,300 -360,264 -186,382 -534,382 -248,538 -472,538 -263,633 -457,633 -360,495 -314,320 -406,320 -262,338 -458,338 -316,643 -404,643 -360,599 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_ratio.txt b/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_ratio.txt deleted file mode 100644 index 1cd03122..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_ratio.txt +++ /dev/null @@ -1,77 +0,0 @@ -1.0 -1.0 -1.0 -1.0 -1.0 -1.0 -1.0 -1.0 -1.0 -1.0 -1.0 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -1.0 -1.0 -1.0 -1.0 -1.0 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_ratio_v7.txt b/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_ratio_v7.txt deleted file mode 100644 index bbed3395..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_ratio_v7.txt +++ /dev/null @@ -1,94 +0,0 @@ -1.0 -1.0 -1.0 -1.0 -1.0 -1.0 -1.0 -1.0 -1.0 -1.0 -1.0 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -1.0 -1.0 -1.0 -1.0 -1.0 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -0.5 -1.0 -1.0 -1.0 -0.5 -0.5 -1.0 -1.0 -1.0 -0.5 -0.5 -1.0 -1.0 -0.5 -0.5 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_sub_index.txt b/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_sub_index.txt deleted file mode 100644 index be985691..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_sub_index.txt +++ /dev/null @@ -1,77 +0,0 @@ -0 -2 -4 -6 -7 -9 -11 -12 -14 -16 -18 -19 -20 -23 -26 -27 -28 -31 -34 -35 -36 -37 -38 -39 -40 -41 -42 -45 -46 -47 -48 -49 -50 -51 -52 -55 -56 -57 -58 -59 -60 -61 -62 -63 -64 -65 -66 -69 -72 -73 -74 -75 -76 -78 -79 -80 -81 -82 -83 -84 -131 -132 -133 -134 -135 -136 -137 -138 -139 -140 -141 -142 -143 -144 -145 -146 -147 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_sub_index_v7.txt b/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_sub_index_v7.txt deleted file mode 100644 index 9f731117..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_sub_index_v7.txt +++ /dev/null @@ -1,94 +0,0 @@ -0 -2 -4 -6 -7 -9 -11 -12 -14 -16 -18 -19 -20 -23 -26 -27 -28 -31 -34 -35 -36 -37 -38 -39 -40 -41 -42 -45 -46 -47 -48 -49 -50 -51 -52 -55 -56 -57 -58 -59 -60 -61 -62 -63 -64 -65 -66 -69 -72 -73 -74 -75 -76 -78 -79 -80 -81 -82 -83 -84 -131 -132 -133 -134 -135 -136 -137 -138 -139 -140 -141 -142 -143 -144 -145 -146 -147 -148 -149 -150 -1 -3 -5 -151 -152 -17 -15 -13 -153 -154 -155 -156 -157 -158 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_symmetric.txt b/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_symmetric.txt deleted file mode 100644 index 75853370..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_symmetric.txt +++ /dev/null @@ -1,33 +0,0 @@ -0,10 -1,9 -2,8 -3,7 -4,6 -11,15 -12,16 -13,17 -14,18 -19,27 -20,28 -21,29 -22,30 -23,31 -24,32 -25,33 -26,34 -35,43 -36,42 -37,41 -38,40 -45,46 -50,48 -51,54 -52,53 -57,55 -60,61 -63,64 -65,66 -67,68 -70,71 -72,73 -74,75 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_symmetric_v7.txt b/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_symmetric_v7.txt deleted file mode 100644 index 9ef45d3f..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_symmetric_v7.txt +++ /dev/null @@ -1,41 +0,0 @@ -0,10 -1,9 -2,8 -3,7 -4,6 -11,15 -12,16 -13,17 -14,18 -19,27 -20,28 -21,29 -22,30 -23,31 -24,32 -25,33 -26,34 -35,43 -36,42 -37,41 -38,40 -45,46 -50,48 -51,54 -52,53 -57,55 -60,61 -63,64 -65,66 -67,68 -70,71 -72,73 -74,75 -77,78 -80,85, -81,86, -82,87, -83,88, -84,89, -90,91, -92,93, \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_triangles.txt b/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_triangles.txt deleted file mode 100644 index c6a3b183..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_triangles.txt +++ /dev/null @@ -1,136 +0,0 @@ -0,63,11, -63,72,14, -63,14,11, -0,11,19, -1,0,19, -1,19,20, -1,20,65, -1,65,2, -2,65,45, -2,45,67, -2,67,3, -3,67,4, -4,67,74, -4,74,47, -4,47,5, -11,19,26, -11,26,12, -11,12,14, -12,26,25, -12,25,13, -12,13,14, -13,25,24, -13,24,23, -13,23,35, -13,35,59, -13,59,72, -13,72,14, -19,20,26, -20,65,21, -20,21,25, -20,25,26, -21,65,22, -21,22,24, -21,24,25, -22,65,36, -22,36,23, -22,23,24, -23,36,35, -35,36,69, -35,69,58, -35,58,59, -36,65,37, -36,37,44, -36,44,42, -36,42,69, -37,65,45, -37,45,38, -37,38,44, -38,45,51, -38,51,52, -38,52,39, -38,39,44, -39,52,76, -45,67,74, -45,74,50, -45,50,57, -45,57,51, -74,47,49, -74,49,50, -49,50,56, -50,56,57, -51,52,57, -52,56,57, -52,56,76, -59,70,72, -59,70,71, -60,63,72, -60,72,70, -70,60,62, -62,70,71, -15,64,18, -64,73,18, -10,64,15, -10,27,9, -10,15,27, -9,27,28, -9,28,66, -9,66,8, -8,66,46, -8,46,68, -8,68,7, -7,68,6, -6,68,75, -6,75,47, -6,47,5, -15,27,34, -15,34,16, -15,16,18, -16,34,33, -16,33,17, -16,17,18, -17,33,32, -17,32,31, -17,31,43, -17,43,59, -17,59,73, -17,73,18, -27,28,34, -28,66,29, -28,29,33, -28,33,34, -29,66,30, -29,30,32, -29,32,33, -30,66,42, -30,42,31, -30,31,32, -31,42,43, -43,42,69, -43,69,58, -43,58,59, -42,66,41, -42,41,44, -41,66,46, -41,46,40, -41,40,44, -40,46,54, -40,54,53, -40,53,39, -40,39,44, -39,53,76, -46,68,75, -46,75,48, -46,48,55, -46,55,54, -75,47,49, -75,49,48, -49,48,56, -48,56,55, -54,53,55, -53,56,55, -53,56,76, -59,71,73, -61,64,73, -61,73,71, -71,61,62, \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_triangles_v7.txt b/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_triangles_v7.txt deleted file mode 100644 index a1eca170..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_triangles_v7.txt +++ /dev/null @@ -1,162 +0,0 @@ -0,11,90, -11,90,92, -63,90,92, -11,14,92, -14,72,92, -63,72,92, -0,11,83, -11,19,83, -83,84,19, -0,80,83, -80,83,84, -1,80,84, -84,19,20, -1,84,65, -20,65,84, -1,65,81, -2,65,81, -2,65,67, -65,45,67, -2,67,82, -3,67,82, -3,67,4, -4,67,77, -67,74,77, -77,74,47, -47,77,79, -4,79,5, -4,77,79, -11,19,26, -11,26,12, -11,12,14, -12,26,25, -12,25,13, -12,13,14, -13,25,24, -13,24,23, -13,23,35, -13,35,59, -13,59,72, -13,72,14, -19,20,26, -20,65,21, -20,21,25, -20,25,26, -21,65,22, -21,22,24, -21,24,25, -22,65,36, -22,36,23, -22,23,24, -23,36,35, -35,36,69, -35,69,58, -35,58,59, -36,65,37, -36,37,44, -36,44,42, -36,42,69, -37,65,45, -37,45,38, -37,38,44, -38,45,51, -38,51,52, -38,52,39, -38,39,44, -39,52,76, -45,67,74, -45,74,50, -45,50,57, -45,57,51, -74,47,49, -74,49,50, -49,50,56, -50,56,57, -51,52,57, -52,56,57, -52,56,76, -59,70,72, -59,70,71, -60,63,72, -60,72,70, -70,60,62, -62,70,71, -15,18,93, -18,73,93, -64,73,93, -10,15,91, -15,91,93, -64,91,93, -27,88,89, -9,85,89, -10,85,88, -85,88,89, -10,15,88, -15,27,88, -9,66,89, -28,66,89, -27,28,89, -8,66,86, -9,66,86, -8,66,68, -66,46,68, -7,68,87, -8,68,87, -7,68,6, -6,68,78, -68,75,78, -6,78,79, -6,79,5, -47,75,78, -47,78,79, -15,27,34, -15,34,16, -15,16,18, -16,34,33, -16,33,17, -16,17,18, -17,33,32, -17,32,31, -17,31,43, -17,43,59, -17,59,73, -17,73,18, -27,28,34, -28,66,29, -28,29,33, -28,33,34, -29,66,30, -29,30,32, -29,32,33, -30,66,42, -30,42,31, -30,31,32, -31,42,43, -43,42,69, -43,69,58, -43,58,59, -42,66,41, -42,41,44, -41,66,46, -41,46,40, -41,40,44, -40,46,54, -40,54,53, -40,53,39, -40,39,44, -39,53,76, -46,68,75, -46,75,48, -46,48,55, -46,55,54, -75,47,49, -75,49,48, -49,48,56, -48,56,55, -54,53,55, -53,56,55, -53,56,76, -59,71,73, -61,64,73, -61,73,71, -71,61,62, \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_v7.txt b/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_v7.txt deleted file mode 100644 index 5a18769d..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/personface/pinface_model_v7.txt +++ /dev/null @@ -1,94 +0,0 @@ -171,457 -186,549 -214,620 -262,678 -292,699 -360,721 -428,699 -458,678 -506,620 -534,549 -549,457 -197,401 -237,395 -328,405 -234,378 -523,401 -483,395 -392,405 -486,378 -240,440 -255,451 -273,455 -292,454 -312,453 -297,434 -279,425 -258,428 -480,440 -465,451 -447,455 -428,454 -408,453 -423,434 -441,425 -462,428 -337,453 -332,512 -310,557 -330,567 -360,571 -390,567 -410,557 -388,512 -383,453 -360,538 -287,607 -433,607 -360,658 -397,624 -360,632 -323,624 -312,603 -339,599 -381,599 -408,603 -396,614 -360,617 -324,614 -360,453 -360,405 -272,258 -448,258 -360,252 -196,307 -524,307 -248,538 -472,538 -277,633 -443,633 -360,495 -314,320 -406,320 -262,338 -458,338 -316,643 -404,643 -360,599 -308,662 -412,662 -360,679 -177,513 -195,585 -233,649 -205,448 -213,494 -543,513 -525,585 -487,649 -515,448 -507,494 -169,417 -551,417 -197,369 -523,369 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_adjustments.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_adjustments.bin deleted file mode 100644 index 17895779..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_adjustments.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_alpha_boxblur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_alpha_boxblur.bin deleted file mode 100644 index 3cd1ea20..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_alpha_boxblur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_alphabinaryzation.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_alphabinaryzation.bin deleted file mode 100644 index 74206049..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_alphabinaryzation.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_avatar2d.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_avatar2d.bin deleted file mode 100644 index 1ec553f2..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_avatar2d.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_body.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_body.bin deleted file mode 100644 index 81b7b78d..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_body.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_face.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_face.bin deleted file mode 100644 index f7056192..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_face.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_face_deep_smooth.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_face_deep_smooth.bin deleted file mode 100644 index 7d653717..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_face_deep_smooth.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_face_lut.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_face_lut.bin deleted file mode 100644 index d27d81bf..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_face_lut.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_face_skincolor_contrast.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_face_skincolor_contrast.bin deleted file mode 100644 index b0904177..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_face_skincolor_contrast.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_face_v6.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_face_v6.bin deleted file mode 100644 index 820af9d2..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_face_v6.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_face_v8.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_face_v8.bin deleted file mode 100644 index 922877e8..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_face_v8.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_facefeature_teethwhiten.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_facefeature_teethwhiten.bin deleted file mode 100644 index f8f20f12..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_facefeature_teethwhiten.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_facefeature_teethwhiten_v6.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_facefeature_teethwhiten_v6.bin deleted file mode 100644 index b9b57a8e..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_facefeature_teethwhiten_v6.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_multi_face.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_multi_face.bin deleted file mode 100644 index 18dd294a..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_beauty_multi_face.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_border.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_border.bin deleted file mode 100644 index 1bc65d6f..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_border.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_boxblur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_boxblur.bin deleted file mode 100644 index e4d4dac0..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_boxblur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_brush.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_brush.bin deleted file mode 100644 index 0a3748bd..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_brush.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_buffing.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_buffing.bin deleted file mode 100644 index 7cce15df..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_buffing.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cartoon_originblur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cartoon_originblur.bin deleted file mode 100644 index 9996f3af..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cartoon_originblur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cartoon_revert.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cartoon_revert.bin deleted file mode 100644 index 6731785b..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cartoon_revert.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cartoon_sobel.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cartoon_sobel.bin deleted file mode 100644 index c7ef9ea3..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cartoon_sobel.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cartoon_stylization.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cartoon_stylization.bin deleted file mode 100644 index 145c77c0..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cartoon_stylization.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cartoon_yellow.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cartoon_yellow.bin deleted file mode 100644 index 89d1f65c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cartoon_yellow.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cartoon_yellow_blur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cartoon_yellow_blur.bin deleted file mode 100644 index b2e47d8e..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cartoon_yellow_blur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_color_pencil.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_color_pencil.bin deleted file mode 100644 index a2e44d34..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_color_pencil.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_color_reverse.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_color_reverse.bin deleted file mode 100644 index c4f13a18..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_color_reverse.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_color_setter.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_color_setter.bin deleted file mode 100644 index 69932967..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_color_setter.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_copy_tex.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_copy_tex.bin deleted file mode 100644 index fea92df2..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_copy_tex.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_crazy_face_face_off.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_crazy_face_face_off.bin deleted file mode 100644 index ad556dfa..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_crazy_face_face_off.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_crazy_face_skin_color.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_crazy_face_skin_color.bin deleted file mode 100644 index 38503487..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_crazy_face_skin_color.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_crazy_face_transform.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_crazy_face_transform.bin deleted file mode 100644 index c0b1c331..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_crazy_face_transform.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cubes.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cubes.bin deleted file mode 100644 index 6132b595..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_cubes.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_defocus.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_defocus.bin deleted file mode 100644 index ac07331d..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_defocus.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_denoise.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_denoise.bin deleted file mode 100644 index 4f4e1dc8..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_denoise.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_div_alpha.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_div_alpha.bin deleted file mode 100644 index 89139e7b..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_div_alpha.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_draw_mask.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_draw_mask.bin deleted file mode 100644 index 7c2862ae..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_draw_mask.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_draw_point.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_draw_point.bin deleted file mode 100644 index c6fbd35d..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_draw_point.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_dynamic_stroke.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_dynamic_stroke.bin deleted file mode 100644 index 26ababa3..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_dynamic_stroke.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_effect_blend.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_effect_blend.bin deleted file mode 100644 index 44902853..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_effect_blend.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_effect_blur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_effect_blur.bin deleted file mode 100644 index c55c4490..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_effect_blur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_effectcomic_avgcolor.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_effectcomic_avgcolor.bin deleted file mode 100644 index 94f36210..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_effectcomic_avgcolor.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_effectcomic_dot.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_effectcomic_dot.bin deleted file mode 100644 index ba0ac1d2..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_effectcomic_dot.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_effectcomic_first.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_effectcomic_first.bin deleted file mode 100644 index 4d9a7fc0..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_effectcomic_first.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_epm.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_epm.bin deleted file mode 100644 index 1fec860c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_epm.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_faceinset_blend.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_faceinset_blend.bin deleted file mode 100644 index 0790266c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_faceinset_blend.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_fast_sticker.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_fast_sticker.bin deleted file mode 100644 index 2a4efc62..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_fast_sticker.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_fsgaussian_blur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_fsgaussian_blur.bin deleted file mode 100644 index 778e4732..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_fsgaussian_blur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gan_bsmooth.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gan_bsmooth.bin deleted file mode 100644 index 6aaa48f4..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gan_bsmooth.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gan_crop.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gan_crop.bin deleted file mode 100644 index 42ba9bad..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gan_crop.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gan_face_line.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gan_face_line.bin deleted file mode 100644 index aeed5a65..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gan_face_line.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gan_mask_mix.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gan_mask_mix.bin deleted file mode 100644 index 37c902f7..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gan_mask_mix.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_ganstyle.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_ganstyle.bin deleted file mode 100644 index 5f7fa748..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_ganstyle.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_ganstyle_ext.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_ganstyle_ext.bin deleted file mode 100644 index 0b1c9cef..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_ganstyle_ext.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gaussian_blur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gaussian_blur.bin deleted file mode 100644 index 67d5479f..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gaussian_blur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gpuimagelookup.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gpuimagelookup.bin deleted file mode 100644 index 05b3ded3..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gpuimagelookup.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gray_pencil.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gray_pencil.bin deleted file mode 100644 index ba4d9a03..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_gray_pencil.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_hair_image.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_hair_image.bin deleted file mode 100644 index d48051b3..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_hair_image.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_hair_lut.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_hair_lut.bin deleted file mode 100644 index 0b3cb263..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_hair_lut.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_headinset_blend.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_headinset_blend.bin deleted file mode 100644 index 6e109055..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_headinset_blend.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_kira_alpha.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_kira_alpha.bin deleted file mode 100644 index 0f818d94..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_kira_alpha.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_kira_blend.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_kira_blend.bin deleted file mode 100644 index f41f1db6..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_kira_blend.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_kira_multi_color.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_kira_multi_color.bin deleted file mode 100644 index a3a11dcf..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_kira_multi_color.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_lut.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_lut.bin deleted file mode 100644 index f4332f45..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_lut.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_eye.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_eye.bin deleted file mode 100644 index 40ffe0f4..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_eye.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_eye_ext.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_eye_ext.bin deleted file mode 100644 index 058b0599..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_eye_ext.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_eyebrow.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_eyebrow.bin deleted file mode 100644 index 40ffe0f4..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_eyebrow.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_eyebrow_ext.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_eyebrow_ext.bin deleted file mode 100644 index 058b0599..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_eyebrow_ext.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_face.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_face.bin deleted file mode 100644 index 151a809e..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_face.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_face_ext.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_face_ext.bin deleted file mode 100644 index 82cd694c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_face_ext.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_face_v7.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_face_v7.bin deleted file mode 100644 index 60749a05..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_face_v7.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_face_v7_ext.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_face_v7_ext.bin deleted file mode 100644 index af89a5bf..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_face_v7_ext.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_iris.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_iris.bin deleted file mode 100644 index 4793c5d7..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_iris.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_lips.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_lips.bin deleted file mode 100644 index 931e3710..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_lips.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_lips_addshimmer.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_lips_addshimmer.bin deleted file mode 100644 index 438a6962..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_lips_addshimmer.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_lips_ext.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_lips_ext.bin deleted file mode 100644 index 235cd484..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_lips_ext.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_lips_shimmer.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_lips_shimmer.bin deleted file mode 100644 index 5be5a49a..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_lips_shimmer.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_nose_occlusion.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_nose_occlusion.bin deleted file mode 100644 index 55117516..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_makeup_nose_occlusion.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_mask.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_mask.bin deleted file mode 100644 index a032eabd..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_mask.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_mask_mix.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_mask_mix.bin deleted file mode 100644 index 087a71fd..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_mask_mix.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_mask_step.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_mask_step.bin deleted file mode 100644 index c85e95a4..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_mask_step.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_max.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_max.bin deleted file mode 100644 index 4e33b22d..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_max.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_maximum.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_maximum.bin deleted file mode 100644 index b2683b15..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_maximum.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_mean_blur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_mean_blur.bin deleted file mode 100644 index d3defd90..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_mean_blur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_moona_pencil.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_moona_pencil.bin deleted file mode 100644 index c837416b..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_moona_pencil.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_mosaic.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_mosaic.bin deleted file mode 100644 index 5bf3cc19..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_mosaic.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_mosaic_mix.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_mosaic_mix.bin deleted file mode 100644 index dfe31e75..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_mosaic_mix.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_paint.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_paint.bin deleted file mode 100644 index 413c6725..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_paint.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_pinch_face.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_pinch_face.bin deleted file mode 100644 index 498fb422..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_pinch_face.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_pinch_face_v7.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_pinch_face_v7.bin deleted file mode 100644 index e13a2b2d..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_pinch_face_v7.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_pre_multi.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_pre_multi.bin deleted file mode 100644 index 3fc926be..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_pre_multi.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_reshape_combine.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_reshape_combine.bin deleted file mode 100644 index af7de064..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_reshape_combine.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_reshape_face.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_reshape_face.bin deleted file mode 100644 index 7f9a2a6e..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_reshape_face.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_reshape_face_v7.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_reshape_face_v7.bin deleted file mode 100644 index 97eb0da0..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_reshape_face_v7.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_reshape_feature.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_reshape_feature.bin deleted file mode 100644 index 531d9ac2..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_reshape_feature.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_reshape_feature_v7.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_reshape_feature_v7.bin deleted file mode 100644 index 4b99c6a5..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_reshape_feature_v7.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_reshape_init.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_reshape_init.bin deleted file mode 100644 index 103222dd..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_reshape_init.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_resize.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_resize.bin deleted file mode 100644 index c16c0a77..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_resize.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_seg_stroke.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_seg_stroke.bin deleted file mode 100644 index f35d2c27..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_seg_stroke.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_selfinnov_sketch.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_selfinnov_sketch.bin deleted file mode 100644 index d75a5821..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_selfinnov_sketch.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_simple.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_simple.bin deleted file mode 100644 index 498fb422..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_simple.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothfirstblur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothfirstblur.bin deleted file mode 100644 index 6a607111..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothfirstblur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothfirstblurmix.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothfirstblurmix.bin deleted file mode 100644 index b7bf3948..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothfirstblurmix.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothmultifacemask.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothmultifacemask.bin deleted file mode 100644 index f955ea54..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothmultifacemask.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothsecondblurborder1.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothsecondblurborder1.bin deleted file mode 100644 index 4f95e0ed..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothsecondblurborder1.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothsecondblurborder2.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothsecondblurborder2.bin deleted file mode 100644 index d25f3b88..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothsecondblurborder2.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothsecondborderblur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothsecondborderblur.bin deleted file mode 100644 index 244aada6..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothsecondborderblur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothsmoothprocess.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothsmoothprocess.bin deleted file mode 100644 index 47002375..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_smoothsmoothprocess.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_sticker.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_sticker.bin deleted file mode 100644 index 01b01df4..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_sticker.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_style.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_style.bin deleted file mode 100644 index eb9b54c1..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_style.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_style_warp.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_style_warp.bin deleted file mode 100644 index d7561ae1..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_style_warp.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_stylized_cartoon.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_stylized_cartoon.bin deleted file mode 100644 index 718c4518..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_stylized_cartoon.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_stylized_cyberpunk_darkfilter.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_stylized_cyberpunk_darkfilter.bin deleted file mode 100644 index dedf0430..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_stylized_cyberpunk_darkfilter.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_stylized_cyberpunk_highlight.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_stylized_cyberpunk_highlight.bin deleted file mode 100644 index fe2beb8e..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_stylized_cyberpunk_highlight.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_stylized_gan_cartoon_sobel_gray.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_stylized_gan_cartoon_sobel_gray.bin deleted file mode 100644 index c7ef9ea3..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_stylized_gan_cartoon_sobel_gray.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_stylized_gan_quantization.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_stylized_gan_quantization.bin deleted file mode 100644 index 55350373..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_stylized_gan_quantization.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_stylized_gan_wuse.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_stylized_gan_wuse.bin deleted file mode 100644 index 5993cf3c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_stylized_gan_wuse.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_texture.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_texture.bin deleted file mode 100644 index 7908e27b..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_texture.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_transform.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_transform.bin deleted file mode 100644 index 498fb422..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_transform.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_uv_unfold.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_uv_unfold.bin deleted file mode 100644 index 07dca4bb..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_uv_unfold.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v7smooth_border_sub.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v7smooth_border_sub.bin deleted file mode 100644 index dc1f08d4..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v7smooth_border_sub.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v7smooth_brighten.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v7smooth_brighten.bin deleted file mode 100644 index 27ce0abf..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v7smooth_brighten.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v7smooth_facemask.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v7smooth_facemask.bin deleted file mode 100644 index 1f85db35..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v7smooth_facemask.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v7smooth_firstblur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v7smooth_firstblur.bin deleted file mode 100644 index 706f2cd8..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v7smooth_firstblur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v7smooth_secondblur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v7smooth_secondblur.bin deleted file mode 100644 index afa2364f..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v7smooth_secondblur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v7smooth_smooth.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v7smooth_smooth.bin deleted file mode 100644 index a68b323c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v7smooth_smooth.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beauty_realtime_skin_segment.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beauty_realtime_skin_segment.bin deleted file mode 100644 index eb99e6a6..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beauty_realtime_skin_segment.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beauty_sharpen_edge.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beauty_sharpen_edge.bin deleted file mode 100644 index 97010855..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beauty_sharpen_edge.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beauty_sharpen_my.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beauty_sharpen_my.bin deleted file mode 100644 index 5130f0d7..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beauty_sharpen_my.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_bright_eye_remove_pouch_white_teeth.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_bright_eye_remove_pouch_white_teeth.bin deleted file mode 100644 index bd20a18c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_bright_eye_remove_pouch_white_teeth.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_crop_face_gauss.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_crop_face_gauss.bin deleted file mode 100644 index 04d4241f..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_crop_face_gauss.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_laugh_line.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_laugh_line.bin deleted file mode 100644 index 0f6cf1fd..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_laugh_line.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_median_blur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_median_blur.bin deleted file mode 100644 index 02d38d6b..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_median_blur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_my_box.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_my_box.bin deleted file mode 100644 index 7fb7bb1e..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_my_box.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_process_variance.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_process_variance.bin deleted file mode 100644 index e7ebcc85..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_process_variance.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_variance.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_variance.bin deleted file mode 100644 index 3d17792f..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_v9beautysub_variance.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_var.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_var.bin deleted file mode 100644 index cb888d16..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_var.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_wireframe.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_wireframe.bin deleted file mode 100644 index ce94f1ca..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_wireframe.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_youtu_basic_beauty.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_youtu_basic_beauty.bin deleted file mode 100644 index 9e9c7795..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/fs_youtu_basic_beauty.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/sticker_blend_opt.frag b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/sticker_blend_opt.frag deleted file mode 100644 index 922306ba..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/sticker_blend_opt.frag +++ /dev/null @@ -1,138 +0,0 @@ -precision highp float; - -varying vec2 v_textureCoordinate; -varying vec4 v_param; - -uniform float u_preMultiplied; -uniform float u_alpha; -uniform float u_blendMode; - -uniform sampler2D u_texture0; -uniform sampler2D u_texture1; - -float v1021(float x, float y) -{ - return 1.0 - (1.0 - x) * (1.0 - y); -} -vec3 f1021(vec3 x,vec3 y) -{ - return vec3(v1021(x.r, y.r), v1021(x.g, y.g), v1021(x.b, y.b)); -} -vec3 f1021(vec3 x, vec3 y, float z) -{ - return f1021(x, y) * z + x * (1.0 - z); -} - -float v1017(float x, float y) -{ - return x < 0.5 ? 2.0 * x * y: 1.0 - 2.0 * (1.0 - x) * (1.0 - y); -} -vec3 f1017(vec3 x, vec3 y) -{ - return vec3(v1017(x.r, y.r), v1017(x.g, y.g), v1017(x.b, y.b)); -} -vec3 f1017(vec3 x, vec3 y, float z) -{ - return f1017(x, y) * z + x * (1.0 - z ); -} - -void main() -{ - if (v_param.z < 1.0) { - lowp vec4 tmpvar_2; - tmpvar_2 = texture2D(u_texture0, v_textureCoordinate); - gl_FragColor = tmpvar_2; - } else if (v_param.z < 2.0) { - lowp vec4 texColor; - texColor = texture2D(u_texture1, v_textureCoordinate / v_param.w); - float blendMode = u_blendMode; - bool preMultiplied = (u_preMultiplied == 1.0); - float texAlpha = u_alpha; - - vec3 resultFore = texColor.rgb; - if (preMultiplied && texColor.a > 0.0) { - texColor.rgb = texColor.rgb / texColor.a; - } - vec3 vOne = vec3(1.0, 1.0, 1.0); - vec3 vZero = vec3(0.0, 0.0, 0.0); - lowp vec4 canvasColor; - canvasColor = texture2D(u_texture0, v_param.xy); - if (blendMode == 2.0) { //multiply - resultFore = canvasColor.rgb * texColor.rgb; - } else if (blendMode == 3.0){ //screen - vec3 a = vOne - canvasColor.rgb; - vec3 b = vOne - texColor.rgb; - resultFore = vOne - a * b; - } else if (blendMode == 4.0){ //overlay - resultFore = 2.0 * canvasColor.rgb * texColor.rgb; - resultFore.r = step(0.5, canvasColor.r) * (1.0 - 2.0 * (1.0 - canvasColor.r) * (1.0 - texColor.r)) + (1.0 - step(0.5, canvasColor.r)) * resultFore.r; - resultFore.g = step(0.5, canvasColor.g) * (1.0 - 2.0 * (1.0 - canvasColor.g) * (1.0 - texColor.g)) + (1.0 - step(0.5, canvasColor.g)) * resultFore.g; - resultFore.b = step(0.5, canvasColor.b) * (1.0 - 2.0 * (1.0 - canvasColor.b) * (1.0 - texColor.b)) + (1.0 - step(0.5, canvasColor.b)) * resultFore.b; - } else if (blendMode == 5.0){ //hardlight - resultFore = 2.0 * canvasColor.rgb * texColor.rgb; - resultFore.r = step(0.5, texColor.r) * (1.0 - 2.0 * (1.0 - canvasColor.r) * (1.0 - texColor.r)) + (1.0 - step(0.5, texColor.r)) * resultFore.r; - resultFore.g = step(0.5, texColor.g) * (1.0 - 2.0 * (1.0 - canvasColor.g) * (1.0 - texColor.g)) + (1.0 - step(0.5, texColor.g)) * resultFore.g; - resultFore.b = step(0.5, texColor.b) * (1.0 - 2.0 * (1.0 - canvasColor.b) * (1.0 - texColor.b)) + (1.0 - step(0.5, texColor.b)) * resultFore.b; - } else if (blendMode == 6.0){ //softlight - resultFore = 2.0 * canvasColor.rgb * texColor.rgb + canvasColor.rgb * canvasColor.rgb * (vOne - 2.0 * texColor.rgb); - resultFore.r = step(0.5, texColor.r) * (2.0 * canvasColor.r * (1.0 - texColor.r) + (2.0 * texColor.r - 1.0) * sqrt(canvasColor.r)) + (1.0 - step(0.5, texColor.r)) * resultFore.r; - resultFore.g = step(0.5, texColor.g) * (2.0 * canvasColor.g * (1.0 - texColor.g) + (2.0 * texColor.g - 1.0) * sqrt(canvasColor.g)) + (1.0 - step(0.5, texColor.g)) * resultFore.g; - resultFore.b = step(0.5, texColor.b) * (2.0 * canvasColor.b * (1.0 - texColor.b) + (2.0 * texColor.b - 1.0) * sqrt(canvasColor.b)) + (1.0 - step(0.5, texColor.b)) * resultFore.b; - } else if (blendMode == 7.0){ //divide - resultFore = vOne; - if (texColor.r > 0.0) { - resultFore.r = canvasColor.r / texColor.r; - } - if (texColor.g > 0.0) { - resultFore.g = canvasColor.g / texColor.g; - } - if (texColor.b > 0.0) { - resultFore.b = canvasColor.b / texColor.b; - } - resultFore = min(vOne, resultFore); - } else if (blendMode == 8.0){ //add - resultFore = canvasColor.rgb + texColor.rgb; - resultFore = min(vOne, resultFore); - } else if (blendMode == 9.0){ //substract - resultFore = canvasColor.rgb - texColor.rgb; - resultFore = max(vZero, resultFore); - } else if (blendMode == 10.0){ //diff - resultFore = abs(canvasColor.rgb - texColor.rgb); - } else if (blendMode == 11.0){ //darken - resultFore = min(canvasColor.rgb, texColor.rgb); - } else if (blendMode == 12.0){ //lighten - resultFore = max(canvasColor.rgb, texColor.rgb); - } else if (blendMode == 13.0) { - if (preMultiplied == false) { - texColor.rgb = texColor.rgb * texColor.a; - } - texColor = texColor * texAlpha; - gl_FragColor = canvasColor * (1.0 - texColor.a) + texColor; - return; - } else if (blendMode == 14.0) { - if (preMultiplied == false) { - texColor.rgb = texColor.rgb * texColor.a; - } - texColor = texColor * texAlpha; - vec3 r = f1021(canvasColor.rgb, clamp(texColor.rgb * (1.0 / texColor.a), 0.0, 1.0), 1.0); - vec3 resultFore = canvasColor.rgb * (1.0 - texColor.a) + r.rgb * texColor.a; - gl_FragColor = vec4(resultFore, 1.0); - return; - } else if (blendMode == 15.0) { - if (preMultiplied == false) { - texColor.rgb = texColor.rgb * texColor.a; - } - texColor = texColor * texAlpha; - vec3 r = f1017(canvasColor.rgb, clamp(texColor.rgb * (1.0 / texColor.a), 0.0, 1.0), 1.0); - vec3 resultFore = canvasColor.rgb * (1.0 - texColor.a) + r.rgb * texColor.a; - gl_FragColor = vec4(resultFore, 1.0); - return; - } - texColor.a = texColor.a * texAlpha; - - vec4 c = vec4(resultFore.rgb * texColor.a, texColor.a); - gl_FragColor = c + canvasColor * (1.0 - c.a); - - } - -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/sticker_blend_opt.vert b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/sticker_blend_opt.vert deleted file mode 100644 index 5ff3ee46..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/sticker_blend_opt.vert +++ /dev/null @@ -1,23 +0,0 @@ -precision highp float; -attribute vec4 a_position; -attribute vec2 a_textureCoordinate; -attribute vec2 a_index; -varying vec2 v_textureCoordinate; -varying vec4 v_param; - -uniform mat4 u_mvp; -void main() { - v_param.z = a_index.x; - if (a_index.x < 1.0) { - v_textureCoordinate = a_textureCoordinate; - gl_Position = a_position; - v_param.xy = vec2(0.0, 0.0); - v_param.w = 0.0; - } else { - vec4 pt = u_mvp * a_position; - v_textureCoordinate = a_textureCoordinate / pt.w; - gl_Position = pt / pt.w; - v_param.xy = pt.xy / pt.w * 0.5 + 0.5; - v_param.w = 1.0 / pt.w; - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/sticker_opt.frag b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/sticker_opt.frag deleted file mode 100644 index 17fd5fad..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/sticker_opt.frag +++ /dev/null @@ -1,38 +0,0 @@ -precision lowp float; - -varying lowp vec3 v_param; - -uniform sampler2D u_texture0; -uniform sampler2D u_texture1; -uniform sampler2D u_texture2; -uniform sampler2D u_texture3; -uniform sampler2D u_texture4; -uniform sampler2D u_texture5; -uniform sampler2D u_texture6; -uniform sampler2D u_texture7; - - - -void main() -{ - vec4 color = vec4(0.0, 0.0, 0.0, 0.0); - if (v_param.z < 1.0) { - color = texture2D(u_texture0, v_param.xy); - } else if (v_param.z < 2.0) { - color = texture2D(u_texture1, v_param.xy); - } else if (v_param.z < 3.0) { - color = texture2D(u_texture2, v_param.xy); - } else if (v_param.z < 4.0) { - color = texture2D(u_texture3, v_param.xy); - } else if (v_param.z < 5.0) { - color = texture2D(u_texture4, v_param.xy); - } else if (v_param.z < 6.0) { - color = texture2D(u_texture5, v_param.xy); - } else if (v_param.z < 7.0) { - color = texture2D(u_texture6, v_param.xy); - } else if (v_param.z < 8.0) { - color = texture2D(u_texture7, v_param.xy); - } - - gl_FragColor = color; -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/sticker_opt.vert b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/sticker_opt.vert deleted file mode 100644 index 6ba6e770..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/sticker_opt.vert +++ /dev/null @@ -1,16 +0,0 @@ -precision lowp float; -attribute vec4 a_position; -attribute vec2 a_textureCoordinate; -attribute vec2 a_index; -varying lowp vec3 v_param; -uniform mat4 u_mvp; -void main() { - v_param.z = a_index.x; - v_param.xy = a_textureCoordinate; - if (a_index.x < 1.0) { - gl_Position = a_position; - } else { - vec4 pt = u_mvp * a_position; - gl_Position = pt / pt.w; - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_avatar2d.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_avatar2d.bin deleted file mode 100644 index a1c0400d..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_avatar2d.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_beauty_body_v2.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_beauty_body_v2.bin deleted file mode 100644 index 0e6335ec..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_beauty_body_v2.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_beauty_face.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_beauty_face.bin deleted file mode 100644 index 2a05f144..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_beauty_face.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_beauty_face_deep_smooth.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_beauty_face_deep_smooth.bin deleted file mode 100644 index bf2817b5..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_beauty_face_deep_smooth.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_beauty_face_v6.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_beauty_face_v6.bin deleted file mode 100644 index f7e8ae2a..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_beauty_face_v6.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_beauty_face_v8.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_beauty_face_v8.bin deleted file mode 100644 index 6a7790a9..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_beauty_face_v8.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_beauty_facefeature_teethwhiten.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_beauty_facefeature_teethwhiten.bin deleted file mode 100644 index 7c9cbb79..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_beauty_facefeature_teethwhiten.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_boxblur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_boxblur.bin deleted file mode 100644 index a23bddf0..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_boxblur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_brush.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_brush.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_brush.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_buffing.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_buffing.bin deleted file mode 100644 index 85c05222..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_buffing.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cartoon_originblur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cartoon_originblur.bin deleted file mode 100644 index c2f5f40c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cartoon_originblur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cartoon_revert.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cartoon_revert.bin deleted file mode 100644 index c2f5f40c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cartoon_revert.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cartoon_sobel.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cartoon_sobel.bin deleted file mode 100644 index 04481426..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cartoon_sobel.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cartoon_stylization.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cartoon_stylization.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cartoon_stylization.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cartoon_yellow.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cartoon_yellow.bin deleted file mode 100644 index c2f5f40c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cartoon_yellow.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cartoon_yellow_blur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cartoon_yellow_blur.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cartoon_yellow_blur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_color_pencil.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_color_pencil.bin deleted file mode 100644 index c2f5f40c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_color_pencil.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_color_reverse.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_color_reverse.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_color_reverse.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_color_setter.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_color_setter.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_color_setter.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_copy_tex.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_copy_tex.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_copy_tex.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_crazy_face_face_off.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_crazy_face_face_off.bin deleted file mode 100644 index f6d692b8..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_crazy_face_face_off.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_crazy_face_skin_color.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_crazy_face_skin_color.bin deleted file mode 100644 index c18d53f9..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_crazy_face_skin_color.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_crazy_face_transform.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_crazy_face_transform.bin deleted file mode 100644 index c18d53f9..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_crazy_face_transform.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cubes.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cubes.bin deleted file mode 100644 index aa9aafc9..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_cubes.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_defocus.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_defocus.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_defocus.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_denoise.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_denoise.bin deleted file mode 100644 index 47b4429a..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_denoise.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_draw_mask.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_draw_mask.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_draw_mask.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_draw_point.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_draw_point.bin deleted file mode 100644 index 4d65379b..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_draw_point.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_effectcomic_avgcolor.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_effectcomic_avgcolor.bin deleted file mode 100644 index c2f5f40c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_effectcomic_avgcolor.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_effectcomic_dot.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_effectcomic_dot.bin deleted file mode 100644 index c2f5f40c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_effectcomic_dot.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_effectcomic_first.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_effectcomic_first.bin deleted file mode 100644 index c2f5f40c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_effectcomic_first.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_epm.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_epm.bin deleted file mode 100644 index ecdf86fe..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_epm.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_faceinset_blend.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_faceinset_blend.bin deleted file mode 100644 index c18d53f9..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_faceinset_blend.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_fast_sticker.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_fast_sticker.bin deleted file mode 100644 index bb7268d5..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_fast_sticker.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_gan_bsmooth.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_gan_bsmooth.bin deleted file mode 100644 index 964ef74d..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_gan_bsmooth.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_gan_face_line.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_gan_face_line.bin deleted file mode 100644 index 8ba031e9..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_gan_face_line.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_ganstyle.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_ganstyle.bin deleted file mode 100644 index edaa8c89..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_ganstyle.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_gray_pencil.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_gray_pencil.bin deleted file mode 100644 index c2f5f40c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_gray_pencil.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_hair_image.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_hair_image.bin deleted file mode 100644 index a6d57106..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_hair_image.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_hair_lut.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_hair_lut.bin deleted file mode 100644 index 585bd85a..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_hair_lut.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_headinset_blend.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_headinset_blend.bin deleted file mode 100644 index a788468a..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_headinset_blend.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_kira_alpha.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_kira_alpha.bin deleted file mode 100644 index 52299805..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_kira_alpha.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_kira_multi_color.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_kira_multi_color.bin deleted file mode 100644 index 7fb30031..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_kira_multi_color.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_liquify_v6.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_liquify_v6.bin deleted file mode 100644 index 3c4fc060..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_liquify_v6.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_eye.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_eye.bin deleted file mode 100644 index 2a05f144..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_eye.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_eyebrow.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_eyebrow.bin deleted file mode 100644 index 2a05f144..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_eyebrow.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_face.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_face.bin deleted file mode 100644 index bedc77be..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_face.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_face_v7.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_face_v7.bin deleted file mode 100644 index 7f3c59f8..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_face_v7.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_iris.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_iris.bin deleted file mode 100644 index a4f51d1b..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_iris.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_lips.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_lips.bin deleted file mode 100644 index 2bf9edf0..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_lips.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_lips_addshimmer.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_lips_addshimmer.bin deleted file mode 100644 index 2bf9edf0..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_lips_addshimmer.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_lips_shimmer.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_lips_shimmer.bin deleted file mode 100644 index 2bf9edf0..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_lips_shimmer.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_nose_occlusion.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_nose_occlusion.bin deleted file mode 100644 index c2a51320..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_makeup_nose_occlusion.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_mask.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_mask.bin deleted file mode 100644 index c2f5f40c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_mask.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_max.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_max.bin deleted file mode 100644 index 25944153..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_max.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_maximum.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_maximum.bin deleted file mode 100644 index 15c7e171..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_maximum.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_mean_blur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_mean_blur.bin deleted file mode 100644 index f9952f9a..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_mean_blur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_moona_pencil.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_moona_pencil.bin deleted file mode 100644 index c2f5f40c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_moona_pencil.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_mosaic.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_mosaic.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_mosaic.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_mosaic_mix.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_mosaic_mix.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_mosaic_mix.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_paint.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_paint.bin deleted file mode 100644 index b86e152c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_paint.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_pinch_face.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_pinch_face.bin deleted file mode 100644 index 48825072..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_pinch_face.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_reshape_combine.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_reshape_combine.bin deleted file mode 100644 index 9ff8ccb6..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_reshape_combine.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_seg_stroke.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_seg_stroke.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_seg_stroke.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_simple.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_simple.bin deleted file mode 100644 index c2f5f40c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_simple.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothfirstblur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothfirstblur.bin deleted file mode 100644 index f2586af7..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothfirstblur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothfirstblurmix.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothfirstblurmix.bin deleted file mode 100644 index ea4e0bc1..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothfirstblurmix.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothmultifacemask.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothmultifacemask.bin deleted file mode 100644 index f1340a22..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothmultifacemask.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothsecondblurborder1.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothsecondblurborder1.bin deleted file mode 100644 index c247670b..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothsecondblurborder1.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothsecondblurborder2.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothsecondblurborder2.bin deleted file mode 100644 index c247670b..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothsecondblurborder2.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothsecondborderblur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothsecondborderblur.bin deleted file mode 100644 index c247670b..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothsecondborderblur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothsmoothprocess.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothsmoothprocess.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_smoothsmoothprocess.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_sticker.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_sticker.bin deleted file mode 100644 index c33298a9..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_sticker.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_style_warp.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_style_warp.bin deleted file mode 100644 index dc6869ee..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_style_warp.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_stylized_cartoon.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_stylized_cartoon.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_stylized_cartoon.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_stylized_cyberpunk_darkfilter.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_stylized_cyberpunk_darkfilter.bin deleted file mode 100644 index 9285cee7..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_stylized_cyberpunk_darkfilter.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_stylized_cyberpunk_highlight.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_stylized_cyberpunk_highlight.bin deleted file mode 100644 index c2f5f40c..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_stylized_cyberpunk_highlight.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_stylized_gan_cartoon_sobel_gray.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_stylized_gan_cartoon_sobel_gray.bin deleted file mode 100644 index 04481426..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_stylized_gan_cartoon_sobel_gray.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_transform.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_transform.bin deleted file mode 100644 index 15c00c0a..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_transform.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_uv_unfold.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_uv_unfold.bin deleted file mode 100644 index 7b43853a..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_uv_unfold.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v7smooth_border_sub.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v7smooth_border_sub.bin deleted file mode 100644 index c5a269cf..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v7smooth_border_sub.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v7smooth_brighten.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v7smooth_brighten.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v7smooth_brighten.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v7smooth_facemask.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v7smooth_facemask.bin deleted file mode 100644 index cb047186..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v7smooth_facemask.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v7smooth_firstblur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v7smooth_firstblur.bin deleted file mode 100644 index 3ac5c5c9..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v7smooth_firstblur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v7smooth_secondblur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v7smooth_secondblur.bin deleted file mode 100644 index 3ac5c5c9..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v7smooth_secondblur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v7smooth_smooth.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v7smooth_smooth.bin deleted file mode 100644 index 12d0d01a..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v7smooth_smooth.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beauty_realtime_skin_segment.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beauty_realtime_skin_segment.bin deleted file mode 100644 index 74f03647..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beauty_realtime_skin_segment.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beauty_sharpen_edge.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beauty_sharpen_edge.bin deleted file mode 100644 index 48629d80..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beauty_sharpen_edge.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beauty_sharpen_my.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beauty_sharpen_my.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beauty_sharpen_my.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_bright_eye_remove_pouch_white_teeth.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_bright_eye_remove_pouch_white_teeth.bin deleted file mode 100644 index 74f03647..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_bright_eye_remove_pouch_white_teeth.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_crop_face_gauss.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_crop_face_gauss.bin deleted file mode 100644 index 7edc470b..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_crop_face_gauss.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_laugh_line.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_laugh_line.bin deleted file mode 100644 index 74f03647..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_laugh_line.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_median_blur.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_median_blur.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_median_blur.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_my_box.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_my_box.bin deleted file mode 100644 index f226ed17..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_my_box.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_process_variance.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_process_variance.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_process_variance.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_variance.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_variance.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/essl/vs_v9beautysub_variance.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/temp/fs_shaka_custom1.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/temp/fs_shaka_custom1.bin deleted file mode 100644 index 983b5ed3..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/temp/fs_shaka_custom1.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/temp/fs_shaka_distortion.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/temp/fs_shaka_distortion.bin deleted file mode 100644 index dfa7e466..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/temp/fs_shaka_distortion.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/temp/fs_shaka_triple_fade_transform.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/temp/fs_shaka_triple_fade_transform.bin deleted file mode 100644 index 32c0fe7e..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/temp/fs_shaka_triple_fade_transform.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/temp/vs_shaka_custom1.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/temp/vs_shaka_custom1.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/temp/vs_shaka_custom1.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/temp/vs_shaka_distortion.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/temp/vs_shaka_distortion.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/temp/vs_shaka_distortion.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/shaders/temp/vs_shaka_triple_fade_transform.bin b/Android/tuibeauty/src/main/assets/LightCore/shaders/temp/vs_shaka_triple_fade_transform.bin deleted file mode 100644 index 3a4cf360..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightCore/shaders/temp/vs_shaka_triple_fade_transform.bin and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightCore/template.json b/Android/tuibeauty/src/main/assets/LightCore/template.json deleted file mode 100644 index 8b908b01..00000000 --- a/Android/tuibeauty/src/main/assets/LightCore/template.json +++ /dev/null @@ -1,149 +0,0 @@ -{ - "root": { - "id": 16, - "name": "拍摄模板", - "children": [ - { - "id": 17, - "name": "2D画板", - "children": [], - "enabled": true, - "version": 0, - "components": [ - { - "anchor": { - "bottom": -1, - "left": -1, - "right": 1, - "top": 1 - }, - "offset": { - "bottom": 0, - "left": 0, - "right": 0, - "top": 0 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 15, - "eFixSize": 0, - "eEditingMode": 1, - "eKeepRatio": false, - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "rotation": { - "w": 0, - "x": 0, - "y": 0, - "z": 0 - }, - "entityId": 17, - "componentID": 2, - "type": "ScreenTransform", - "enabled": true, - "version": 2, - "objectEnabled": true - }, - { - "componentID": 3, - "enabled": true, - "entityId": 17, - "renderTargetKey": "RenderTarget", - "type": "Camera", - "version": 2 - }, - { - "type": "EntityIdentifier", - "name": "2D画板", - "id": 17 - } - ] - } - ], - "components": [ - { - "anchor": { - "bottom": -1, - "left": -1, - "right": 1, - "top": 1 - }, - "offset": { - "bottom": 0, - "left": 0, - "right": 0, - "top": 0 - }, - "pivot": { - "x": 0, - "y": 0 - }, - "ePinToEdge": 15, - "eFixSize": 0, - "eEditingMode": 1, - "eKeepRatio": false, - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "scale": { - "x": 1, - "y": 1, - "z": 1 - }, - "rotation": { - "w": 0, - "x": 0, - "y": 0, - "z": 0 - }, - "entityId": 16, - "componentID": 1, - "type": "ScreenTransform", - "enabled": true, - "version": 2, - "objectEnabled": true - }, - { - "type": "EntityIdentifier", - "name": "拍摄模板", - "id": 16 - } - ], - "enabled": true, - "version": 0, - "inputFormats": [ - { - "key": "DeviceCameraTexture", - "type": "TextureData", - "properties": {} - } - ] - }, - "inputSources": { - "RenderTarget": { - "key": "RenderTarget", - "path": "RenderTarget.rdt", - "label": "RenderTarget.rdt", - "type": "RenderTarget", - "inputKey": "DeviceCameraTexture" - }, - "DeviceCameraTexture": { - "key": "DeviceCameraTexture", - "path": "DeviceCameraTexture.tex", - "label": "DeviceCameraTexture.tex", - "type": "TextureData" - } - } -} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/3d.tnnm b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/3d.tnnm deleted file mode 100644 index e6c40bec..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/3d.tnnm and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/3d.tnnp.wmc b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/3d.tnnp.wmc deleted file mode 100644 index d1383f60..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/3d.tnnp.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/LightHandModel.txt b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/LightHandModel.txt deleted file mode 100644 index ae40e5b4..00000000 --- a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/LightHandModel.txt +++ /dev/null @@ -1,9 +0,0 @@ -"predetect" = "20191231_blazenet_thin_maxpool_preDet_binaryhand_multiscale_softmax_ckpt_99.onnx.opt.onnx" -"detect_veryhigh" = "0328_centernet_29M_submit" -"detect_high" = "未分类_handDet_43ea36ce992d11eb9b9c16092c74a2f2.opt.tnnm" -"detect" = "0328_centernet_14M_submit" -"track" = "tracking_v1.onnx.opt.onnx" -"keypoint" = "hand_keypoint_v3.5_single.onnx.opt.onnx" -"classify" = "test_newbackbone3_cleandata_112.onnx.opt.onnx" -"lr_classify" = "tnn_HandPose3D_3D手势_v0.0.7_202203170000_only_lr_22M.opt.tnnm" -"3d" = "202204170000_pose_root_shape_prune_channels_epoch203_fp16" \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/classify.rapidmodel b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/classify.rapidmodel deleted file mode 100644 index bc3a46a3..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/classify.rapidmodel and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/classify.rapidproto.wmc b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/classify.rapidproto.wmc deleted file mode 100644 index 3114f8b8..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/classify.rapidproto.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/config.ini b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/config.ini deleted file mode 100644 index 6ddeff67..00000000 --- a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/config.ini +++ /dev/null @@ -1,14 +0,0 @@ -version=v0.2.0 - -detect_proto_file=detect.rapidproto.wmc -detect_model_file=detect.rapidmodel -tracking_proto_file=track.rapidproto.wmc -tracking_model_file=track.rapidmodel -keypoints_proto_file=keypoint.rapidproto.wmc -keypoints_model_file=keypoint.rapidmodel -classify_proto_file=classify.rapidproto.wmc -classify_model_file=classify.rapidmodel -lr_classify_proto_file=lr_classify.tnnp.wmc -lr_classify_model_file=lr_classify.tnnm -keypoints3d_proto_file=3d.tnnp.wmc -keypoints3d_model_file=3d.tnnm diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/config_high.ini b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/config_high.ini deleted file mode 100644 index c3c4d677..00000000 --- a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/config_high.ini +++ /dev/null @@ -1,14 +0,0 @@ -version=v0.2.0 - -detect_proto_file=detect_high.rapidproto.wmc -detect_model_file=detect_high.rapidmodel -tracking_proto_file=track.rapidproto.wmc -tracking_model_file=track.rapidmodel -keypoints_proto_file=keypoint.rapidproto.wmc -keypoints_model_file=keypoint.rapidmodel -classify_proto_file=classify.rapidproto.wmc -classify_model_file=classify.rapidmodel -lr_classify_proto_file=lr_classify.tnnp.wmc -lr_classify_model_file=lr_classify.tnnm -keypoints3d_proto_file=3d.tnnp.wmc -keypoints3d_model_file=3d.tnnm \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/config_veryhigh.ini b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/config_veryhigh.ini deleted file mode 100644 index e816edf4..00000000 --- a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/config_veryhigh.ini +++ /dev/null @@ -1,14 +0,0 @@ -version=v0.2.0 - -detect_proto_file=detect_veryhigh.rapidproto.wmc -detect_model_file=detect_veryhigh.rapidmodel -tracking_proto_file=track.rapidproto.wmc -tracking_model_file=track.rapidmodel -keypoints_proto_file=keypoint.rapidproto.wmc -keypoints_model_file=keypoint.rapidmodel -classify_proto_file=classify.rapidproto.wmc -classify_model_file=classify.rapidmodel -lr_classify_proto_file=lr_classify.tnnp.wmc -lr_classify_model_file=lr_classify.tnnm -keypoints3d_proto_file=3d.tnnp.wmc -keypoints3d_model_file=3d.tnnm \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/detect.rapidmodel b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/detect.rapidmodel deleted file mode 100644 index 0a8594f4..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/detect.rapidmodel and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/detect.rapidproto.wmc b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/detect.rapidproto.wmc deleted file mode 100644 index 32e324e3..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/detect.rapidproto.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/detect_high.rapidmodel b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/detect_high.rapidmodel deleted file mode 100644 index 08571c1e..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/detect_high.rapidmodel and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/detect_high.rapidproto.wmc b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/detect_high.rapidproto.wmc deleted file mode 100644 index 2c537f99..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/detect_high.rapidproto.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/detect_veryhigh.rapidmodel b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/detect_veryhigh.rapidmodel deleted file mode 100644 index 1a7e7364..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/detect_veryhigh.rapidmodel and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/detect_veryhigh.rapidproto.wmc b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/detect_veryhigh.rapidproto.wmc deleted file mode 100644 index b362fd56..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/detect_veryhigh.rapidproto.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/keypoint.rapidmodel b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/keypoint.rapidmodel deleted file mode 100644 index 9a25262f..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/keypoint.rapidmodel and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/keypoint.rapidproto.wmc b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/keypoint.rapidproto.wmc deleted file mode 100644 index 621b1a9b..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/keypoint.rapidproto.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/lr_classify.tnnm b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/lr_classify.tnnm deleted file mode 100644 index bca70ddd..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/lr_classify.tnnm and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/lr_classify.tnnp.wmc b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/lr_classify.tnnp.wmc deleted file mode 100644 index 97a4c362..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/lr_classify.tnnp.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/ref_T.txt b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/ref_T.txt deleted file mode 100644 index 760a7a28..00000000 --- a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/ref_T.txt +++ /dev/null @@ -1 +0,0 @@ --0.04570137806799218 -0.012754962977026975 0.02273671127692659 0.04996855285607957 -0.019138391834488414 0.016550405996791397 -0.03812869378411529 -0.013938034766084855 -0.004135583040305885 -0.07080759729799993 -0.017947390175469757 -0.006352651151343518 0.04996855285607957 -0.019138391834488414 0.016550405996791397 -0.044691888535757916 -0.01765942848354524 0.019907946811108412 -0.07587456092039524 -0.019520757001926105 0.02550245532908612 0.04996855285607957 -0.019138391834488414 0.016550405996791397 -0.018818419203804535 -0.009198063014039803 0.05975974800007637 -0.03583282734150962 -0.009259887730839057 0.07225852296723809 0.04996855285607957 -0.019138391834488414 0.016550405996791397 -0.03176700157273067 -0.01518097068162317 0.043223599029879586 -0.06008127657474341 -0.01724797793994243 0.048322137531932055 0.04996855285607957 -0.019138391834488414 0.016550405996791397 0.025878846053437543 -0.0036160572926127073 -0.009262441291291345 0.006245605512160121 -0.004507343844155711 -0.03296199453722565 -0.09296350958498327 -0.016648967602297865 -0.006238534392114099 -0.09877920115428518 -0.018268652769208284 0.029446969331822073 -0.05169972854824753 -0.008568731836391437 0.08259043036954833 -0.08360178945157416 -0.015559866115127106 0.055955951704301315 -0.015972133839826368 0.0009256273173016954 -0.0474861128365613 -0.05633014726548784 -0.016966875387580224 0.023487663071589986 0.03933978365858391 -0.023350304245041663 0.017301357791454794 -0.04875746298161095 -0.018149947176638107 -0.003384631245642488 -0.08143636649549559 -0.022159302586023007 -0.005601699356680121 0.03933978365858391 -0.023350304245041663 0.017301357791454794 -0.05532065773325357 -0.02187134089409849 0.02065889860577181 -0.08650333011789088 -0.023732669412479354 0.026253407123749517 0.03933978365858391 -0.023350304245041663 0.017301357791454794 -0.02944718840130019 -0.013409975424593053 0.06051069979473976 -0.04646159653900527 -0.013471800141392307 0.07300947476190149 0.03933978365858391 -0.023350304245041663 0.017301357791454794 -0.042395770770226326 -0.01939288309217642 0.04397455082454299 -0.07071004577223906 -0.02145989035049568 0.04907308932659546 0.03933978365858391 -0.023350304245041663 0.017301357791454794 0.015250076855941888 -0.007827969703165957 -0.008511489496627948 -0.004383163685335534 -0.00871925625470896 -0.03221104274256226 -0.10359227878247892 -0.020860880012851114 -0.005487582597450701 -0.10940797035178085 -0.022480565179761533 0.03019792112648547 -0.062328497745743186 -0.012780644246944686 0.08334138216421173 -0.09423055864906982 -0.019771778525680357 0.05670690349896472 -0.026600903037322023 -0.003286285093251554 -0.0467351610418979 -0.049909527750536885 -0.019951725659610096 0.03366041053874039 0.045760403173534865 -0.026335154517071534 0.02747410525860519 -0.042336843466659994 -0.021134797448667978 0.006788116221507913 -0.07501574698054464 -0.025144152858052875 0.00457104811047028 0.045760403173534865 -0.026335154517071534 0.02747410525860519 -0.04890003821830262 -0.02485619116612836 0.03083164607292221 -0.08008271060293994 -0.026717519684509226 0.036426154590899915 0.045760403173534865 -0.026335154517071534 0.02747410525860519 -0.023026568886349238 -0.016394825696622924 0.07068344726189016 -0.04004097702405432 -0.016456650413422178 0.08318222222905189 0.045760403173534865 -0.026335154517071534 0.02747410525860519 -0.035975151255275374 -0.02237773336420629 0.05414729829169339 -0.06428942625728812 -0.02444474062252555 0.05924583679374586 0.045760403173534865 -0.026335154517071534 0.02747410525860519 0.02167069637089284 -0.010812819975195828 0.0016612579705224534 0.0020374558296154185 -0.011704106526738832 -0.022038295275411852 -0.09717165926752797 -0.023845730284880986 0.0046851648696997 -0.10298735083682989 -0.025465415451791405 0.040370668593635875 -0.055907878230792234 -0.015765494518974556 0.09351412963136213 -0.08780993913411886 -0.02275662879771023 0.06687965096611512 -0.02018028352237107 -0.0062711353652814255 -0.0365624135747475 -0.040083303606378705 -0.015972498947343365 0.031227117951907427 0.055586627317693045 -0.022355927804804804 0.02504081267177223 -0.032510619322501814 -0.017155570736401247 0.004354823634674952 -0.06518952283638646 -0.021164926145786148 0.002137755523637319 0.055586627317693045 -0.022355927804804804 0.02504081267177223 -0.03907381407414444 -0.02087696445386163 0.02839835348608925 -0.07025648645878176 -0.022738292972242495 0.033992862004066954 0.055586627317693045 -0.022355927804804804 0.02504081267177223 -0.013200344742191058 -0.012415598984356194 0.06825015467505721 -0.03021475287989614 -0.012477423701155448 0.08074892964221893 0.055586627317693045 -0.022355927804804804 0.02504081267177223 -0.026148927111117194 -0.01839850665193956 0.05171400570486043 -0.05446320211312993 -0.02046551391025882 0.056812544206912896 0.055586627317693045 -0.022355927804804804 0.02504081267177223 0.03149692051505102 -0.0068335932629290976 -0.0007720346163105074 0.011863679973773598 -0.007724879814472101 -0.024471587862244813 -0.08734543512336979 -0.019866503572614255 0.002251872282866739 -0.09316112669267171 -0.021486188739524674 0.037937376006802914 -0.046081654086634054 -0.011786267806707827 0.09108083704452917 -0.07798371498996068 -0.018777402085443498 0.06444635837928216 -0.01035405937821289 -0.002291908653014695 -0.03899570616158046 -0.07245899839554339 -0.022902578784916392 0.0401840442436696 0.023210932528528364 -0.02928600764237783 0.033997738963534405 -0.0648863141116665 -0.024085650573974274 0.013311749926437126 -0.09756521762555113 -0.02809500598335917 0.011094681815399493 0.023210932528528364 -0.02928600764237783 0.033997738963534405 -0.07144950886330911 -0.027807044291434657 0.03735527977785143 -0.10263218124794643 -0.029668372809815522 0.04294978829582913 0.023210932528528364 -0.02928600764237783 0.033997738963534405 -0.045576039531355736 -0.01934567882192922 0.07720708096681939 -0.06259044766906081 -0.019407503538728475 0.0897058559339811 0.023210932528528364 -0.02928600764237783 0.033997738963534405 -0.058524621900281876 -0.025328586489512587 0.0606709319966226 -0.08683889690229461 -0.027395593747831848 0.06576947049867507 0.023210932528528364 -0.02928600764237783 0.033997738963534405 -0.0008787742741136612 -0.013763673100502125 0.008184891675451667 -0.020512014815391083 -0.014654959652045128 -0.01551466157048264 -0.11972112991253447 -0.026796583410187282 0.011208798574628913 -0.1255368214818364 -0.0284162685770977 0.04689430229856509 -0.07845734887579874 -0.018716347644280852 0.10003776333629134 -0.11035940977912537 -0.025707481923016525 0.07340328467104433 -0.04272975416737757 -0.009221988490587722 -0.03003877986981829 -0.08057105145625448 -0.017161950794472015 0.04679239681826525 0.015098879467817267 -0.023545379651933453 0.04060609153813005 -0.07299836717237759 -0.018345022583529897 0.019920102501032773 -0.10567727068626223 -0.022354377992914794 0.01770303438999514 0.015098879467817267 -0.023545379651933453 0.04060609153813005 -0.07956156192402021 -0.02206641630099028 0.043963632352447074 -0.11074423430865754 -0.023927744819371145 0.049558140870424774 0.015098879467817267 -0.023545379651933453 0.04060609153813005 -0.05368809259206683 -0.013605050831484843 0.08381543354141502 -0.07070250072977191 -0.013666875548284097 0.09631420850857675 0.015098879467817267 -0.023545379651933453 0.04060609153813005 -0.06663667496099297 -0.01958795849906821 0.06727928457121825 -0.09495094996300571 -0.02165496575738747 0.07237782307327072 0.015098879467817267 -0.023545379651933453 0.04060609153813005 -0.008990827334824758 -0.008023045110057747 0.014793244250047313 -0.02862406787610218 -0.008914331661600751 -0.008906308995886993 -0.12783318297324558 -0.021055955419742905 0.01781715114922456 -0.13364887454254748 -0.022675640586653324 0.053502654873160735 -0.08656940193650983 -0.012975719653836476 0.10664611591088699 -0.11847146283983646 -0.019966853932572148 0.08001163724563998 -0.05084180722808867 -0.0034813605001433445 -0.02343042729522264 -0.06696281486139735 -0.017353156700920684 0.05558437534994679 0.028707116062674398 -0.023736585558382123 0.049398070069811596 -0.05939013057752046 -0.018536228489978566 0.028712081032714318 -0.0920690340914051 -0.022545583899363467 0.026495012921676685 0.028707116062674398 -0.023736585558382123 0.049398070069811596 -0.06595332532916308 -0.02225762220743895 0.05275561088412862 -0.09713599771380041 -0.024118950725819814 0.05835011940210632 0.028707116062674398 -0.023736585558382123 0.049398070069811596 -0.0400798559972097 -0.013796256737933513 0.09260741207309657 -0.057094264134914786 -0.013858081454732767 0.10510618704025829 0.028707116062674398 -0.023736585558382123 0.049398070069811596 -0.05302843836613584 -0.01977916440551688 0.0760712631028998 -0.08134271336814858 -0.02184617166383614 0.08116980160495227 0.028707116062674398 -0.023736585558382123 0.049398070069811596 0.0046174092600323735 -0.008214251016506417 0.023585222781728858 -0.015015831281245048 -0.00910553756804942 -0.00011433046420544768 -0.11422494637838844 -0.021247161326191574 0.026609129680906105 -0.12004063794769035 -0.022866846493101993 0.06229463340484227 -0.0729611653416527 -0.013166925560285146 0.11543809444256853 -0.10486322624497933 -0.020158059839020817 0.08880361577732152 -0.03723357063323154 -0.003672566406592014 -0.014638448763541097 -0.06183588791251117 -0.022757959126689764 0.04910767137981266 0.03383404301156058 -0.029141387984151203 0.04292136609967746 -0.05426320362863428 -0.023941030915747646 0.022235377062580185 -0.08694210714251892 -0.027950386325132547 0.02001830895154255 0.03383404301156058 -0.029141387984151203 0.04292136609967746 -0.060826398380276904 -0.02766242463320803 0.046278906913994486 -0.09200907076491421 -0.029523753151588894 0.051873415431972186 0.03383404301156058 -0.029141387984151203 0.04292136609967746 -0.03495292904832352 -0.019201059163702593 0.08613070810296244 -0.051967337186028605 -0.019262883880501847 0.09862948307012416 0.03383404301156058 -0.029141387984151203 0.04292136609967746 -0.04790151141724966 -0.02518396683128596 0.06959455913276566 -0.0762157864192624 -0.02725097408960522 0.07469309763481813 0.03383404301156058 -0.029141387984151203 0.04292136609967746 0.009744336208918555 -0.013619053442275496 0.017108518811594725 -0.009888904332358867 -0.0145103399938185 -0.006591034434339581 -0.10909801942950226 -0.026651963751960654 0.02013242571077197 -0.11491371099880418 -0.028271648918871073 0.05581792943470815 -0.06783423839276652 -0.018571727986054228 0.1089613904724344 -0.09973629929609315 -0.025562862264789897 0.08232691180718739 -0.032106643684345355 -0.009077368832361094 -0.02111515273367523 -0.0349640223251465 -0.014841061554736917 0.03900352830984156 0.06070590859892525 -0.021224490412198357 0.03281722302970636 -0.027391338041269607 -0.016024133343794798 0.012131233992609083 -0.060070241555154245 -0.020033488753179698 0.00991416588157145 0.06070590859892525 -0.021224490412198357 0.03281722302970636 -0.03395453279291223 -0.01974552706125518 0.036174763844023385 -0.06513720517754955 -0.02160685557963605 0.041769272362001085 0.06070590859892525 -0.021224490412198357 0.03281722302970636 -0.00808106346095885 -0.011284161591749746 0.07602656503299134 -0.025095471598663932 -0.011345986308549001 0.08852534000015305 0.06070590859892525 -0.021224490412198357 0.03281722302970636 -0.021029645829884987 -0.01726706925933311 0.05949041606279456 -0.049343920831897724 -0.019334076517652374 0.06458895456484703 0.06070590859892525 -0.021224490412198357 0.03281722302970636 0.03661620179628323 -0.0057021558703226494 0.007004375741623624 0.016982961255005806 -0.006593442421865653 -0.016695177504310682 -0.08222615384213758 -0.01873506618000781 0.01002828264080087 -0.0880418454114395 -0.020354751346918228 0.04571378636473704 -0.040962372805401846 -0.010654830414101379 0.0988572474024633 -0.07286443370872847 -0.017645964692837048 0.07222276873721628 -0.005234778096980683 -0.0011604712604082468 -0.03121929580364633 -0.04408530141106652 -0.02022548627973161 0.041107203430304017 0.05158462951300523 -0.02660891513719305 0.03492089815016882 -0.03651261712718963 -0.021408558068789493 0.014234909113071542 -0.06919152064107427 -0.02541791347817439 0.012017841002033909 0.05158462951300523 -0.02660891513719305 0.03492089815016882 -0.043075811878832256 -0.025129951786249875 0.03827843896448584 -0.07425848426346957 -0.02699128030463074 0.043872947482463544 0.05158462951300523 -0.02660891513719305 0.03492089815016882 -0.017202342546878874 -0.01666858631674444 0.0781302401534538 -0.034216750684583956 -0.016730411033543693 0.09062901512061552 0.05158462951300523 -0.02660891513719305 0.03492089815016882 -0.03015092491580501 -0.022651493984327805 0.06159409118325702 -0.05846519991781775 -0.024718501242647066 0.06669262968530948 0.05158462951300523 -0.02660891513719305 0.03492089815016882 0.027494922710363204 -0.011086580595317343 0.009108050862086083 0.007861682169085782 -0.011977867146860346 -0.014591502383848223 -0.09134743292805761 -0.0241194909050025 0.012131957761263329 -0.09716312449735953 -0.02573917607191292 0.0478174614851995 -0.05008365189132187 -0.01603925513909607 0.10096092252292577 -0.0819857127946485 -0.023030389417831743 0.07432644385767875 -0.014356057182900707 -0.00654489598540294 -0.029115620683183872 -0.03424761929370763 -0.0074808752344534815 0.04406948294115809 0.06142231163036412 -0.013864304091914921 0.03788317766102289 -0.026674935009830737 -0.008663947023511363 0.017197188623925615 -0.059353838523715376 -0.012673302432896261 0.014980120512887982 0.06142231163036412 -0.013864304091914921 0.03788317766102289 -0.03323812976147336 -0.012385340740971747 0.041240718475339916 -0.06442080214611068 -0.014246669259352612 0.046835226993317616 0.06142231163036412 -0.013864304091914921 0.03788317766102289 -0.007364660429519981 -0.003923975271466309 0.08109251966430786 -0.024379068567225062 -0.003985799988265565 0.09359129463146959 0.06142231163036412 -0.013864304091914921 0.03788317766102289 -0.020313242798446117 -0.009906882939049675 0.06455637069411109 -0.048627517800458854 -0.011973890197368938 0.06965490919616356 0.06142231163036412 -0.013864304091914921 0.03788317766102289 0.0373326048277221 0.001658030449960786 0.012070330372940155 0.017699364286444676 0.0007667438984177823 -0.01162922287299415 -0.08150975081069872 -0.011374879859724372 0.015094237272117401 -0.08732544238000063 -0.012994565026634791 0.05077974099605358 -0.04024596977396298 -0.003294644093817943 0.10392320203377983 -0.07214803067728962 -0.010285778372553614 0.07728872336853282 -0.004518375065541813 0.006199715059875189 -0.0261533411723298 -0.026866535556819646 -0.0005436528028558298 0.041769498351490485 0.06880339536725211 -0.006927081660317269 0.03558319307135529 -0.01929385127294276 -0.001726724591913711 0.01489720403425801 -0.05197275478682739 -0.005736080001298611 0.012680135923220377 0.06880339536725211 -0.006927081660317269 0.03558319307135529 -0.025857046024585377 -0.005448118309374095 0.03894073388567231 -0.0570397184092227 -0.007309446827754961 0.04453524240365001 0.06880339536725211 -0.006927081660317269 0.03558319307135529 1.6423307368000628e-05 0.003013247160131342 0.07879253507464026 -0.016997984830337078 0.0029514224433320867 0.09129131004180199 0.06880339536725211 -0.006927081660317269 0.03558319307135529 -0.012932159061558134 -0.002969660507452024 0.062256386104443485 -0.04124643406357087 -0.0050366677657712865 0.06735492460649595 0.06880339536725211 -0.006927081660317269 0.03558319307135529 0.04471368856461008 0.008595252881558439 0.00977034578327255 0.025080448023332657 0.007703966330015434 -0.013929207462661755 -0.07412866707381073 -0.00443765742812672 0.012794252682449797 -0.07994435864311265 -0.006057342595037139 0.048479756406385965 -0.032864886037075 0.0036425783377797083 0.10162321744411223 -0.06476694694040162 -0.0033485559409559616 0.07498873877886522 0.002862708671346168 0.013136937491472841 -0.028453325761997404 -0.02742939918806723 -0.008015527250344481 0.03816080367695004 0.06824053173600453 -0.01439895610780592 0.03197449839681484 -0.019856714904190338 -0.009198599039402362 0.011288509359717563 -0.05253561841807498 -0.013207954448787262 0.00907144124867993 0.06824053173600453 -0.01439895610780592 0.03197449839681484 -0.02641990965583296 -0.012919992756862746 0.035332039211131865 -0.05760258204047028 -0.014781321275243613 0.040926547729109565 0.06824053173600453 -0.01439895610780592 0.03197449839681484 -0.0005464403238795816 -0.0044586272873573096 0.07518384040009982 -0.017560848461584663 -0.004520452004156564 0.08768261536726155 0.06824053173600453 -0.01439895610780592 0.03197449839681484 -0.013495022692805716 -0.010441534954940674 0.05864769142990304 -0.041809297694818455 -0.012508542213259938 0.0637462299319555 0.06824053173600453 -0.01439895610780592 0.03197449839681484 0.0441508249333625 0.0011233784340697866 0.006161651108732104 0.024517584392085075 0.0002320918825267828 -0.017537902137202202 -0.07469153070505832 -0.011909531875615371 0.00918555800790935 -0.08050722227436023 -0.01352921704252579 0.04487106173184552 -0.03342774966832258 -0.0038292961097089427 0.09801452276957179 -0.06532981057164922 -0.010820430388444612 0.07138004410432477 0.002299845040098586 0.005665063043984189 -0.03206202043653785 -0.019949522268952125 0.0027571829402602936 0.03978419017270604 0.07572040865511963 -0.003626245917201145 0.033597884892570845 -0.012376837985075237 0.0015741111512024124 0.012911895855473567 -0.04505574149895987 -0.002435244258182487 0.010694827744435934 0.07572040865511963 -0.003626245917201145 0.033597884892570845 -0.018940032736717856 -0.0021472825662579714 0.03695542570688787 -0.05012270512135518 -0.004008611084638837 0.04254993422486557 0.07572040865511963 -0.003626245917201145 0.033597884892570845 0.006933436595235522 0.006314082903247465 0.07680722689585581 -0.010080971542469558 0.00625225818644821 0.08930600186301754 0.07572040865511963 -0.003626245917201145 0.033597884892570845 -0.006015145773690613 0.00033117523566409974 0.06027107792565904 -0.03432942077570335 -0.001735832022655163 0.06536961642771151 0.07572040865511963 -0.003626245917201145 0.033597884892570845 0.0516307018524776 0.011896088624674561 0.007785037604488107 0.03199746131120018 0.011004802073131557 -0.0159145156414462 -0.06721165378594321 -0.0011368216850105965 0.010808944503665353 -0.07302734535524513 -0.002756506851921015 0.04649444822760153 -0.025947872749207478 0.006943414080895832 0.09963790926532778 -0.0578499336525341 -4.7720197839838056e-05 0.07300343060008077 0.00977972195921369 0.016437773234588962 -0.030438633940781848 -0.03344906433520977 0.009171730882345134 0.041448562571081364 0.06222086658886198 0.0027883020248836952 0.03526225729094617 -0.02587638005133288 0.007988659093287253 0.01457626825384889 -0.05855528356521752 0.003979303683902353 0.012359200142811257 0.06222086658886198 0.0027883020248836952 0.03526225729094617 -0.032439574802975504 0.004267265375826869 0.03861979810526319 -0.06362224718761282 0.002405936857446003 0.04421430662324089 0.06222086658886198 0.0027883020248836952 0.03526225729094617 -0.006566105471022123 0.012728630845332305 0.07847159929423114 -0.023580513608727205 0.012666806128533051 0.09097037426139287 0.06222086658886198 0.0027883020248836952 0.03526225729094617 -0.01951468783994826 0.00674572317774894 0.061935450324034365 -0.047828962841961 0.004678715919429677 0.06703398882608683 0.06222086658886198 0.0027883020248836952 0.03526225729094617 0.038131159786219955 0.0183106365667594 0.00944941000286343 0.018497919244942533 0.017419350015216398 -0.014250143243070876 -0.08071119585220085 0.005277726257074244 0.012473316902040676 -0.08652688742150277 0.003658041090163825 0.048158820625976845 -0.03944741481546512 0.013357962022980672 0.10130228166370311 -0.07134947571879174 0.006366827744245003 0.0746678029984561 -0.0037198201070439557 0.022852321176673802 -0.028774261542406525 -0.021168106035845836 0.01148481432763076 0.03569543758135235 0.07450182488822592 0.005101385470169322 0.029509132301217156 -0.013595421751968947 0.01030174253857288 0.008823143264119877 -0.04627432526585358 0.00629238712918798 0.006606075153082244 0.07450182488822592 0.005101385470169322 0.029509132301217156 -0.020158616503611566 0.0065803488211124955 0.03286667311553418 -0.05134128888824889 0.00471902030273163 0.03846118163351188 0.07450182488822592 0.005101385470169322 0.029509132301217156 0.005714852828341811 0.015041714290617932 0.07271847430450212 -0.011299555309363269 0.014979889573818676 0.08521724927166385 0.07450182488822592 0.005101385470169322 0.029509132301217156 -0.007233729540584323 0.009058806623034567 0.05618232533430535 -0.03554800454259706 0.006991799364715304 0.06128086383635782 0.07450182488822592 0.005101385470169322 0.029509132301217156 0.05041211808558389 0.02062372001204503 0.0036962850131344177 0.030778877544306468 0.019732433460502026 -0.020003268232799888 -0.06843023755283692 0.00759080970235987 0.006720191912311664 -0.07424592912213884 0.005971124535449452 0.04240569563624784 -0.027166456516101188 0.0156710454682663 0.0955491566739741 -0.05906851741942781 0.00867991118953063 0.06891467800872708 0.008561138192319979 0.02516540462195943 -0.03452738653213554 -0.041213456626899625 0.021626115947891246 0.017705436165431233 0.054456474297172125 0.015242687090429807 0.011519130885296039 -0.033640772343022735 0.020443044158833364 -0.009166858151801242 -0.06631967585690737 0.016433688749448463 -0.011383926262838875 0.054456474297172125 0.015242687090429807 0.011519130885296039 -0.04020396709466536 0.01672165044137298 0.014876671699613056 -0.07138663947930268 0.014860321922992116 0.020471180217590763 0.054456474297172125 0.015242687090429807 0.011519130885296039 -0.014330497762711978 0.025183015910878417 0.054728472888581015 -0.03134490590041706 0.025121191194079164 0.06722724785574273 0.054456474297172125 0.015242687090429807 0.011519130885296039 -0.027279080131638114 0.01920010824329505 0.03819232391838423 -0.05559335513365085 0.01713310098497579 0.0432908624204367 0.054456474297172125 0.015242687090429807 0.011519130885296039 0.0303667674945301 0.030765021632305514 -0.014293716402786701 0.010733526953252678 0.02987373508076251 -0.037993269648721004 -0.08847558814389071 0.017732111322620356 -0.011269809503609455 -0.09429127971319262 0.016112426155709937 0.024415694220326717 -0.047211807107154974 0.025812347088526783 0.07755915525805297 -0.0791138680104816 0.018821212809791113 0.05092467659280596 -0.01148421239873381 0.03530670624221992 -0.05251738794805666 -0.04491468188734444 0.022428399846228627 0.005194962458860566 0.05075524903672731 0.01604497098876719 -0.0009913428212746283 -0.03734199760346755 0.021245328057170745 -0.02167733185837191 -0.07002090111735218 0.017235972647785848 -0.023894399969409542 0.05075524903672731 0.01604497098876719 -0.0009913428212746283 -0.04390519235511017 0.017523934339710362 0.0023661979930423896 -0.07508786473974749 0.015662605821329497 0.007960706511020096 0.05075524903672731 0.01604497098876719 -0.0009913428212746283 -0.018031723023156792 0.0259852998092158 0.04221799918201034 -0.035046131160861874 0.025923475092416545 0.054716774149172066 0.05075524903672731 0.01604497098876719 -0.0009913428212746283 -0.03098030539208293 0.020002392141632432 0.025681850211813566 -0.059294580394095665 0.01793538488331317 0.030780388713866035 0.05075524903672731 0.01604497098876719 -0.0009913428212746283 0.026665542234085286 0.031567305530642895 -0.02680419010935737 0.007032301692807864 0.03067601897909989 -0.050503743355291675 -0.09217681340433553 0.018534395220957737 -0.023780283210180123 -0.09799250497363744 0.016914710054047318 0.01190522051375605 -0.05091303236759979 0.026614630986864167 0.06504868155148232 -0.08281509327092643 0.019623496708128494 0.038414202886235295 -0.015185437659178624 0.036108990140557296 -0.06502786165462732 -0.029016599271328554 0.02104545878174939 0.0034585691530377126 0.0666533316527432 0.014662029924287952 -0.0027277361270974815 -0.021443914987451664 0.019862386992691508 -0.023413725164194762 -0.0541228185013363 0.015853031583306608 -0.025630793275232395 0.0666533316527432 0.014662029924287952 -0.0027277361270974815 -0.028007109739094285 0.016140993275231125 0.0006298046872195364 -0.059189782123731605 0.01427966475685026 0.0062243132051972416 0.0666533316527432 0.014662029924287952 -0.0027277361270974815 -0.002133640407140907 0.024602358744736562 0.04048160587618749 -0.01914804854484599 0.024540534027937308 0.05298038084334922 0.0666533316527432 0.014662029924287952 -0.0027277361270974815 -0.015082222776067042 0.018619451077153196 0.023945456905990713 -0.04339649777807978 0.016552443818833935 0.029043995408043182 0.0666533316527432 0.014662029924287952 -0.0027277361270974815 0.04256362485010117 0.030184364466163658 -0.02854058341518022 0.02293038430882375 0.029293077914620654 -0.05224013666111453 -0.07627873078831965 0.0171514541564785 -0.025516676516002975 -0.08209442235762156 0.015531768989568082 0.010168827207933197 -0.0350149497515839 0.025231689922384927 0.06331228824565946 -0.06691701065491054 0.018240555643649257 0.036677809580412446 0.0007126449568372606 0.03472604907607806 -0.06676425496045017 -0.026706629482488652 0.019636089419002963 0.0165203988760579 0.0689633014415831 0.013252660561541525 0.010334093595922704 -0.019133945198611765 0.01845301762994508 -0.010351895441174576 -0.051812848712496404 0.014443662220560182 -0.012568963552212209 0.0689633014415831 0.013252660561541525 0.010334093595922704 -0.025697139950254383 0.014731623912484698 0.013691634410239722 -0.0568798123348917 0.012870295394103833 0.01928614292821743 0.0689633014415831 0.013252660561541525 0.010334093595922704 0.0001763293816989947 0.023192989381990135 0.05354343559920768 -0.016838078756006084 0.02313116466519088 0.0660422105663694 0.0689633014415831 0.013252660561541525 0.010334093595922704 -0.01277225298722714 0.01721008171440677 0.0370072866290109 -0.04108652798923988 0.015143074456087507 0.04210582513106337 0.0689633014415831 0.013252660561541525 0.010334093595922704 0.04487359463894107 0.02877499510341723 -0.015478753692160035 0.02524035409766365 0.027883708551874227 -0.03917830693809434 -0.07396876099947974 0.015742084793732073 -0.012454846792982789 -0.07978445256878165 0.014122399626821654 0.023230656930953383 -0.032704979962744005 0.023822320559638503 0.07637411796867964 -0.06460704086607064 0.01683118628090283 0.04973963930343263 0.0030226147456771622 0.03331667971333163 -0.05370242523742999 -0.03973439074306477 0.017347443132002007 -0.013687826285090797 0.05593554018100698 0.010964014274540568 -0.01987413156522599 -0.03216170645918788 0.016164371342944125 -0.04056012060232327 -0.06484060997307252 0.012155015933559226 -0.042777188713360906 0.05593554018100698 0.010964014274540568 -0.01987413156522599 -0.038724901210830505 0.012442977625483742 -0.01651659075090897 -0.06990757359546781 0.010581649107102877 -0.010922082232931268 0.05593554018100698 0.010964014274540568 -0.01987413156522599 -0.012851431878877124 0.02090434309498918 0.02333521043805898 -0.029865840016582205 0.020842518378189925 0.0358339854052207 0.05593554018100698 0.010964014274540568 -0.01987413156522599 -0.02580001424780326 0.014921435427405812 0.006799061467862204 -0.054114289249816 0.012854428169086551 0.011897599969914673 0.05593554018100698 0.010964014274540568 -0.01987413156522599 0.031845833378364954 0.026486348816416275 -0.04568697885330873 0.012212592837087533 0.02559506226487327 -0.06938653209924303 -0.08699652226005586 0.013453438506731117 -0.042663071954131486 -0.09281221382935778 0.011833753339820698 -0.006977568230195312 -0.04573274122332012 0.021533674272637547 0.046165892807530945 -0.07763480212664675 0.014542539993901876 0.01953141414228393 -0.010005146514898956 0.031028033426330676 -0.08391065039857869 -0.03281976549553347 0.019650633868992122 -0.00458269561149521 0.06285016542853827 0.013267205011530683 -0.010769000891630404 -0.02524708121165658 0.01846756207993424 -0.03145498992872768 -0.05792598472554122 0.014458206670549341 -0.03367205803976532 0.06285016542853827 0.013267205011530683 -0.010769000891630404 -0.0318102759632992 0.014746168362473857 -0.0074114600773133865 -0.06299294834793652 0.012884839844092992 -0.0018169515593356804 0.06285016542853827 0.013267205011530683 -0.010769000891630404 -0.005936806631345822 0.023207533831979293 0.03244034111165457 -0.022951214769050904 0.02314570911518004 0.04493911607881629 0.06285016542853827 0.013267205011530683 -0.010769000891630404 -0.01888538900027196 0.017224626164395927 0.01590419214145779 -0.047199664002284696 0.015157618906076666 0.02100273064351026 0.06285016542853827 0.013267205011530683 -0.010769000891630404 0.038760458625896256 0.02878953955340639 -0.03658184817971315 0.019127218084618834 0.027898253001863386 -0.060281401425647446 -0.08008189701252455 0.015756629243721232 -0.033557941280535894 -0.08589758858182647 0.014136944076810813 0.0021275624434002743 -0.03881811597578882 0.02383686500962766 0.05527102348112653 -0.07072017687911544 0.01684573073089199 0.02863654481587952 -0.0030905212673676546 0.033331224163320794 -0.0748055197249831 -0.048837183448253 0.022125804414284547 -0.002818605110367435 0.046832747475818746 0.015742375556823108 -0.009004910390502628 -0.04126449916437611 0.020942732625226664 -0.02969089942759991 -0.07394340267826074 0.016933377215841768 -0.03190796753863754 0.046832747475818746 0.015742375556823108 -0.009004910390502628 -0.04782769391601874 0.01722133890776628 -0.005647369576185611 -0.07901036630065605 0.015360010389385417 -5.2861058207905477e-05 0.046832747475818746 0.015742375556823108 -0.009004910390502628 -0.021954224584065356 0.025682704377271718 0.034204431612782346 -0.03896863272177044 0.025620879660472464 0.04670320657994407 0.046832747475818746 0.015742375556823108 -0.009004910390502628 -0.03490280695299149 0.019699796709688352 0.017668282642585565 -0.06321708195500422 0.01763278945136909 0.022766821144638034 0.046832747475818746 0.015742375556823108 -0.009004910390502628 0.022743040673176722 0.031264710098698814 -0.034817757678585366 0.0031098001318993 0.03037342354715581 -0.05851731092451967 -0.0960993149652441 0.018231799789013656 -0.03179385077940812 -0.10191500653454601 0.016612114622103238 0.0038916529445280493 -0.05483553392850835 0.026312035554920087 0.05703511398225431 -0.08673759483183499 0.019320901276184414 0.030400635317007294 -0.01910793922008719 0.035806394708613215 -0.07304142922385533 -0.0541611989518507 0.01986364418634585 -0.011269214795948064 0.04150873197222105 0.013480215328884413 -0.01745552007608326 -0.04658851466797381 0.01868057239728797 -0.03814150911318054 -0.07926741818185845 0.014671216987903071 -0.04035857722421817 0.04150873197222105 0.013480215328884413 -0.01745552007608326 -0.05315170941961644 0.014959178679827587 -0.01409797926176624 -0.08433438180425376 0.013097850161446722 -0.008503470743788535 0.04150873197222105 0.013480215328884413 -0.01745552007608326 -0.027278240087663056 0.023420544149333023 0.025753821927201714 -0.04429264822536814 0.02335871943253377 0.03825259689436344 0.04150873197222105 0.013480215328884413 -0.01745552007608326 -0.04022682245658919 0.017437636481749657 0.009217672957004937 -0.06854109745860193 0.015370629223430396 0.014316211459057405 0.04150873197222105 0.013480215328884413 -0.01745552007608326 0.017419025169579022 0.02900254987076012 -0.043268367364166 -0.0022142153716983998 0.028111263319217115 -0.0669679206101003 -0.10142333046884179 0.01596963956107496 -0.04024446046498875 -0.1072390220381437 0.014349954394164543 -0.00455895674105258 -0.06015954943210605 0.02404987532698139 0.04858450429667368 -0.09206161033543268 0.01705874104824572 0.021950025631426666 -0.02443195472368489 0.03354423448067452 -0.08149203890943596 -0.05446789871363879 -0.008316545170742486 0.008869899633025721 0.04120203221043296 -0.014699974028203925 0.0026835943528905268 -0.0468952144297619 -0.009499616959800367 -0.01800239468420675 -0.07957411794364654 -0.013508972369185267 -0.020219462795244385 0.04120203221043296 -0.014699974028203925 0.0026835943528905268 -0.05345840918140452 -0.013221010677260751 0.006041135167207544 -0.08464108156604183 -0.015082339195641618 0.01163564368518525 0.04120203221043296 -0.014699974028203925 0.0026835943528905268 -0.02758493984945114 -0.0047596452077553145 0.0458929363561755 -0.04459934798715622 -0.004821469924554569 0.058391711323337224 0.04120203221043296 -0.014699974028203925 0.0026835943528905268 -0.04053352221837728 -0.010742552875338679 0.029356787385978723 -0.06884779722039001 -0.012809560133657943 0.03445532588803119 0.04120203221043296 -0.014699974028203925 0.0026835943528905268 0.017112325407790938 0.0008223605136717816 -0.02312925293519221 -0.0025209151334864843 -6.892603787122219e-05 -0.04682880618112652 -0.10173003023062988 -0.012210549796013376 -0.020105346036014965 -0.1075457217999318 -0.013830234962923795 0.015580157687921205 -0.06046624919389414 -0.004130314030106948 0.06872361872564746 -0.09236831009722077 -0.011121448308842617 0.04208914006040045 -0.024738654485472973 0.005364045123586184 -0.061352924480462166 -0.06505620514176548 -0.010423261844362576 0.007860598242715658 0.03061372578230627 -0.016806690701824015 0.001674292962580464 -0.05748352085788859 -0.011606333633420457 -0.019011696074516818 -0.09016242437177323 -0.015615689042805357 -0.02122876418555445 0.03061372578230627 -0.016806690701824015 0.001674292962580464 -0.06404671560953121 -0.015327727350880841 0.0050318337768974816 -0.09522938799416852 -0.017189055869261706 0.010626342294875187 0.03061372578230627 -0.016806690701824015 0.001674292962580464 -0.03817324627757783 -0.006866361881375405 0.044883634965865435 -0.055187654415282915 -0.006928186598174659 0.05738240993302716 0.03061372578230627 -0.016806690701824015 0.001674292962580464 -0.05112182864650397 -0.01284926954895877 0.028347485995668657 -0.0794361036485167 -0.014916276807278032 0.033446024497721126 0.03061372578230627 -0.016806690701824015 0.001674292962580464 0.006524018979664245 -0.0012843561599483085 -0.024138554325502277 -0.013109221561613177 -0.0021756427114913122 -0.04783810757143658 -0.11231833665875657 -0.014317266469633466 -0.02111464742632503 -0.11813402822805849 -0.015936951636543885 0.014570856297611142 -0.07105455562202083 -0.006237030703727038 0.0677143173353374 -0.10295661652534746 -0.013228164982462707 0.041079838670090386 -0.035326960913599666 0.003257328449966094 -0.06236222587077223 -0.06203153558047373 -0.01236844018408671 0.012970807997185486 0.03363839534359802 -0.01875186904154815 0.006784502717050292 -0.05445885129659684 -0.013551511973144591 -0.013901486320046988 -0.08713775481048147 -0.01756086738252949 -0.01611855443108462 0.03363839534359802 -0.01875186904154815 0.006784502717050292 -0.061022046048239464 -0.017272905690604974 0.01014204353136731 -0.09220471843287678 -0.019134234208985842 0.015736552049345015 0.03363839534359802 -0.01875186904154815 0.006784502717050292 -0.03514857671628609 -0.00881154022109954 0.049993844720335266 -0.052162984853991165 -0.008873364937898795 0.06249261968749699 0.03363839534359802 -0.01875186904154815 0.006784502717050292 -0.04809715908521222 -0.014794447888682904 0.03345769575013849 -0.07641143408722495 -0.01686145514700217 0.03855623425219096 0.03363839534359802 -0.01875186904154815 0.006784502717050292 0.009548688540955995 -0.0032295344996724432 -0.019028344571032446 -0.010084552000321427 -0.004120821051215447 -0.04272789781696675 -0.10929366709746482 -0.016262444809357603 -0.0160044376718552 -0.11510935866676673 -0.01788212997626802 0.01968106605208097 -0.06802988606072909 -0.008182209043451173 0.07282452708980723 -0.09993194696405572 -0.015173343322186842 0.04619004842456022 -0.032302291352307916 0.0013121501102419594 -0.0572520161163024 -0.05214308144182277 -0.009499177381962676 0.013856403785991022 0.04352684948224898 -0.015882606239424113 0.007670098505855828 -0.044570397157945876 -0.010682249171020557 -0.013015890531241452 -0.07724930067183051 -0.014691604580405457 -0.015232958642279085 0.04352684948224898 -0.015882606239424113 0.007670098505855828 -0.0511335919095885 -0.014403642888480941 0.011027639320172845 -0.08231626429422581 -0.016264971406861808 0.016622147838150553 0.04352684948224898 -0.015882606239424113 0.007670098505855828 -0.02526012257763512 -0.005942277418975505 0.0508794405091408 -0.0422745307153402 -0.006004102135774759 0.06337821547630253 0.04352684948224898 -0.015882606239424113 0.007670098505855828 -0.038208704946561256 -0.011925185086558869 0.034343291538944026 -0.066522979948574 -0.013992192344878134 0.039441830040996495 0.04352684948224898 -0.015882606239424113 0.007670098505855828 0.01943714267960696 -0.0003602716975484085 -0.018142748782226912 -0.0001960978616704634 -0.0012515582490914123 -0.04184230202816122 -0.09940521295881385 -0.013393182007233566 -0.015118841883049666 -0.10522090452811578 -0.015012867174143985 0.020566661840886506 -0.058141431922078116 -0.005312946241327138 0.07371012287861277 -0.09004349282540475 -0.012304080520062807 0.047075644213365755 -0.022413837213656952 0.004181412912365994 -0.05636642032749686 -0.04046707164204342 0.00016345355516912303 0.05479067781514675 0.05520285928202833 -0.006219975302292315 0.048604372535011556 -0.03289438735816653 -0.0010196182338887583 0.027918383497914277 -0.06557329087205116 -0.005028973643273657 0.025701315386876644 0.05520285928202833 -0.006219975302292315 0.048604372535011556 -0.03945758210980915 -0.004741011951349142 0.05196191334932858 -0.07064025449444647 -0.0066023404697300074 0.05755642186730628 0.05520285928202833 -0.006219975302292315 0.048604372535011556 -0.013584112777855772 0.003720353518156295 0.09181371453829654 -0.030598520915560853 0.0036585288013570396 0.10431248950545825 0.05520285928202833 -0.006219975302292315 0.048604372535011556 -0.026532695146781908 -0.002262554149427071 0.07527756556809975 -0.054846970148794645 -0.004329561407746333 0.08037610407015222 0.05520285928202833 -0.006219975302292315 0.048604372535011556 0.031113152479386307 0.009302359239583391 0.022791525246928818 0.011479911938108885 0.008411072688040387 -0.0009080279990054882 -0.08772920315903451 -0.003730551070101767 0.025815432146106064 -0.09354489472833642 -0.0053502362370121855 0.06150093587004224 -0.04646542212229877 0.004349684695804662 0.1146443969077685 -0.0783674830256254 -0.0026414495829310087 0.08800991824252148 -0.010737827413877604 0.013844043849497794 -0.015432146298341137 -0.04507975279190919 0.004540224830121279 0.05059366770405941 0.05059017813216256 -0.0018432040273401598 0.044407362423924214 -0.0375070685080323 0.0033571530410633973 0.023721373386826936 -0.07018597202191694 -0.0006522023683215019 0.021504305275789302 0.05059017813216256 -0.0018432040273401598 0.044407362423924214 -0.044070263259674926 -0.0003642406763969862 0.04776490323824124 -0.07525293564431224 -0.002225569194777852 0.05335941175621894 0.05059017813216256 -0.0018432040273401598 0.044407362423924214 -0.018196793927721545 0.008097124793108451 0.08761670442720919 -0.035211202065426626 0.008035300076309196 0.1001154793943709 0.05059017813216256 -0.0018432040273401598 0.044407362423924214 -0.03114537629664768 0.002114217125525085 0.07108055545701242 -0.05945965129866042 4.720986720582222e-05 0.07617909395906489 0.05059017813216256 -0.0018432040273401598 0.044407362423924214 0.026500471329520534 0.013679130514535547 0.018594515135841476 0.006867230788243112 0.012787843962992543 -0.00510503811009283 -0.09234188430890028 0.0006462202048503887 0.021618422035018722 -0.0981575758782022 -0.00097346496206003 0.05730392575895489 -0.05107810327216454 0.008726455970756816 0.11044738679668115 -0.08298016417549117 0.0017353216920211472 0.08381290813143413 -0.015350508563743377 0.018220815124449948 -0.01962915640942848 -0.037987701748558395 0.0008820979800500904 0.047379715671963425 0.057682229175513355 -0.005501330877411348 0.04119341039182823 -0.030415017464681504 -0.00030097380900779083 0.02050742135473095 -0.06309392097856614 -0.00431032921839269 0.018290353243693318 0.057682229175513355 -0.005501330877411348 0.04119341039182823 -0.03697821221632413 -0.004022367526468174 0.04455095120614525 -0.06816088460096145 -0.00588369604484904 0.05014545972412295 0.057682229175513355 -0.005501330877411348 0.04119341039182823 -0.011104742884370748 0.004438997943037262 0.0844027523951132 -0.02811915102207583 0.004377173226238007 0.09690152736227492 0.057682229175513355 -0.005501330877411348 0.04119341039182823 -0.024053325253296884 -0.0015439097245461034 0.06786660342491643 -0.05236760025530962 -0.003610916982865366 0.0729651419269689 0.057682229175513355 -0.005501330877411348 0.04119341039182823 0.03359252237287133 0.010021003664464357 0.015380563103745491 0.013959281831593909 0.009129717112921354 -0.008318990142188815 -0.08524983326554948 -0.0030119066452207995 0.018404470002922738 -0.09106552483485139 -0.004631591812131218 0.054089973726858906 -0.04398605222881374 0.005068329120685629 0.10723343476458516 -0.07588811313214038 -0.0019228051580500412 0.08059895609933815 -0.00825845752039258 0.01456268827437876 -0.022843108441524464 -0.037586603609783775 -0.004546581014502658 0.05270233363594987 0.058083327314287975 -0.010930009871964096 0.04651602835581468 -0.030013919325906885 -0.005729652803560539 0.0258300393187174 -0.06269282283979152 -0.00973900821294544 0.023612971207679766 0.058083327314287975 -0.010930009871964096 0.04651602835581468 -0.03657711407754951 -0.009451046521020922 0.0498735691701317 -0.06775978646218683 -0.011312375039401789 0.0554680776881094 0.058083327314287975 -0.010930009871964096 0.04651602835581468 -0.010703644745596128 -0.000989681051515486 0.08972537035909965 -0.02771805288330121 -0.0010515057683147411 0.10222414532626137 0.058083327314287975 -0.010930009871964096 0.04651602835581468 -0.023652227114522265 -0.006972588719098852 0.07318922138890288 -0.051966502116535 -0.009039595977418114 0.07828775989095535 0.058083327314287975 -0.010930009871964096 0.04651602835581468 0.03399362051164595 0.00459232466991161 0.02070318106773194 0.014360379970368528 0.003701038118368606 -0.0029963721782023667 -0.08484873512677486 -0.008440585639773547 0.023727087966909186 -0.09066442669607677 -0.010060270806683966 0.059412591690845354 -0.043584954090039124 -0.00036034987386711955 0.11255605272857161 -0.07548701499336576 -0.00735148415260279 0.0859215740633246 -0.00785735938161796 0.009134009279826012 -0.017520490477538016 -0.09177037112047251 -0.016552445041630892 -0.00033320899719337484 0.0038995598035992396 -0.02293587389909233 -0.006519514277328569 -0.08419768683659562 -0.017735516830688774 -0.02720550331442585 -0.11687659035048026 -0.021744872240073675 -0.029422571425463482 0.0038995598035992396 -0.02293587389909233 -0.006519514277328569 -0.09076088158823824 -0.021456910548149157 -0.003161973463011551 -0.12194355397287557 -0.023318239066530022 0.0024325350549661545 0.0038995598035992396 -0.02293587389909233 -0.006519514277328569 -0.06488741225628486 -0.01299554507864372 0.0366898277259564 -0.08190182039398994 -0.013057369795442975 0.04918860269311812 0.0038995598035992396 -0.02293587389909233 -0.006519514277328569 -0.077835994625211 -0.018978452746227087 0.020153678755759626 -0.10615026962722374 -0.021045460004546348 0.025252217257812095 0.0038995598035992396 -0.02293587389909233 -0.006519514277328569 -0.020190146999042785 -0.007413539357216625 -0.03233236156541131 -0.03982338754032021 -0.008304825908759628 -0.05603191481134562 -0.13903250263746358 -0.020446449666901782 -0.029308454666234062 -0.1448481942067655 -0.0220661348338122 0.00637704905770211 -0.09776872160072786 -0.012366213900995354 0.059520510095428365 -0.1296707825040545 -0.019357348179731025 0.03288603143018135 -0.062041126892306696 -0.002871854747302222 -0.07055603311068126 -0.10363581684429674 -0.010649898057274468 0.002026745550761947 -0.007965885920224985 -0.017033326914735906 -0.004159559729373248 -0.09606313256041984 -0.011832969846332348 -0.024845548766470528 -0.12874203607430448 -0.01584232525571725 -0.02706261687750816 -0.007965885920224985 -0.017033326914735906 -0.004159559729373248 -0.10262632731206246 -0.015554363563792733 -0.0008020189150562294 -0.1338089996966998 -0.017415692082173598 0.004792489602921476 -0.007965885920224985 -0.017033326914735906 -0.004159559729373248 -0.07675285798010908 -0.007092998094287296 0.039049782273911725 -0.09376726611781416 -0.007154822811086551 0.05154855724107345 -0.007965885920224985 -0.017033326914735906 -0.004159559729373248 -0.08970144034903522 -0.013075905761870663 0.022513633303714947 -0.11801571535104796 -0.015142913020189924 0.027612171805767416 -0.007965885920224985 -0.017033326914735906 -0.004159559729373248 -0.03205559272286701 -0.0015109923728602002 -0.029972407017455988 -0.05168883326414443 -0.002402278924403204 -0.05367196026339029 -0.15089794836128784 -0.014543902682545358 -0.02694850011827874 -0.15671363993058973 -0.016163587849455777 0.00873700360565743 -0.10963416732455208 -0.0064636669166389295 0.06188046464338369 -0.1415362282278787 -0.013454801195374599 0.035245985978136676 -0.07390657261613093 0.0030306922370542024 -0.06819607856272594 -0.10286844532167251 -0.010179970487843856 0.007866747350741558 -0.007198514397600761 -0.016563399345305294 0.0016804420706063635 -0.09529576103779562 -0.011363042276901736 -0.019005546966490917 -0.12797466455168027 -0.015372397686286636 -0.02122261507752855 -0.007198514397600761 -0.016563399345305294 0.0016804420706063635 -0.10185895578943824 -0.01508443599436212 0.005037982884923381 -0.13304162817407555 -0.016945764512742986 0.010632491402901087 -0.007198514397600761 -0.016563399345305294 0.0016804420706063635 -0.07598548645748486 -0.006623070524856684 0.04488978407389134 -0.09299989459518994 -0.006684895241655939 0.057388559041053055 -0.007198514397600761 -0.016563399345305294 0.0016804420706063635 -0.088934068826411 -0.01260597819244005 0.02835363510369456 -0.11724834382842374 -0.014672985450759311 0.033452173605747024 -0.007198514397600761 -0.016563399345305294 0.0016804420706063635 -0.031288221200242786 -0.001041064803429588 -0.024132405217476376 -0.05092146174152021 -0.0019323513549725918 -0.04783195846341068 -0.1501305768386636 -0.014073975113114746 -0.02110849831829913 -0.15594626840796552 -0.015693660280025164 0.014577005405637042 -0.10886679580192786 -0.005993739347208317 0.0677204664433633 -0.1407688567052545 -0.012984873625943987 0.041085987778116284 -0.07313920109350669 0.0035006198064848146 -0.062356076762746335 -0.09204004257660221 -0.015409166907485424 0.004300942341015741 0.003629888347469537 -0.02179259576494686 -0.001885362939119453 -0.08446735829272532 -0.016592238696543304 -0.022571351976216732 -0.11714626180660996 -0.020601594105928205 -0.024788420087254365 0.003629888347469537 -0.02179259576494686 -0.001885362939119453 -0.09103055304436794 -0.02031363241400369 0.0014721778751975649 -0.12221322542900526 -0.022174960932384555 0.007066686393175271 0.003629888347469537 -0.02179259576494686 -0.001885362939119453 -0.06515708371241456 -0.011852266944498252 0.04132397906416552 -0.08217149185011964 -0.011914091661297508 0.05382275403132724 0.003629888347469537 -0.02179259576494686 -0.001885362939119453 -0.0781056660813407 -0.017835174612081617 0.024787830093968743 -0.10641994108335344 -0.01990218187040088 0.02988636859602121 0.003629888347469537 -0.02179259576494686 -0.001885362939119453 -0.020459818455172488 -0.006270261223071156 -0.027698210227202192 -0.04009305899644991 -0.00716154777461416 -0.0513977634731365 -0.1393021740935933 -0.019303171532756312 -0.024674303328024946 -0.14511786566289522 -0.02092285669966673 0.011011200395911226 -0.09803839305685756 -0.011222935766849886 0.06415466143363749 -0.1299404539601842 -0.018214070045585555 0.03752018276839047 -0.0623107983484364 -0.0017285766131567536 -0.06592188177247214 -0.09635895752496026 -0.012870760040938461 0.031309668667853 -0.0006890266008885149 -0.0192541888983999 0.025123363387717805 -0.08878627324108337 -0.014053831829996342 0.0044373743506205265 -0.12146517675496801 -0.018063187239381242 0.0022203062395828935 -0.0006890266008885149 -0.0192541888983999 0.025123363387717805 -0.09534946799272599 -0.017775225547456724 0.028480904202034824 -0.12653214037736332 -0.019636554065837593 0.03407541272001253 -0.0006890266008885149 -0.0192541888983999 0.025123363387717805 -0.06947599866077261 -0.00931386007795129 0.06833270539100278 -0.08649040679847769 -0.009375684794750545 0.08083148035816451 -0.0006890266008885149 -0.0192541888983999 0.025123363387717805 -0.08242458102969875 -0.015296767745534654 0.051796556420806 -0.11073885603171149 -0.01736377500385392 0.05689509492285847 -0.0006890266008885149 -0.0192541888983999 0.025123363387717805 -0.02477873340353054 -0.0037318543565241936 -0.0006894839003649331 -0.04441197394480796 -0.004623140908067197 -0.02438903714629924 -0.14362108904195137 -0.016764764666209353 0.0023344229988123133 -0.14943678061125326 -0.01838444983311977 0.03801992672274848 -0.10235730800521561 -0.008684528900302923 0.09116338776047475 -0.13425936890854223 -0.015675663179038592 0.06452890909522774 -0.06662971329679446 0.0008098302533902091 -0.03891315544563489 -0.10244263009403345 -0.0075100928325073195 0.026173997879814673 -0.0067726991699617045 -0.013893521689968758 0.01998769259967948 -0.09486994581015656 -0.0086931646215652 -0.0006982964374178009 -0.1275488493240412 -0.0127025200309501 -0.002915364548455434 -0.0067726991699617045 -0.013893521689968758 0.01998769259967948 -0.10143314056179918 -0.012414558339025585 0.023345233413996497 -0.1326158129464365 -0.01427588685740645 0.028939741931974204 -0.0067726991699617045 -0.013893521689968758 0.01998769259967948 -0.0755596712298458 -0.003953192869520148 0.06319703460296446 -0.09257407936755088 -0.004015017586319403 0.07569580957012617 -0.0067726991699617045 -0.013893521689968758 0.01998769259967948 -0.08850825359877194 -0.009936100537103514 0.04666088563276767 -0.11682252860078468 -0.012003107795422775 0.05175942413482014 -0.0067726991699617045 -0.013893521689968758 0.01998769259967948 -0.03086240597260373 0.001628812851906948 -0.0058251546884032605 -0.05049564651388115 0.0007375263003639443 -0.029524707934337566 -0.14970476161102453 -0.01140409745777821 -0.002801247789226014 -0.15552045318032645 -0.013023782624688628 0.03288425593471016 -0.1084409805742888 -0.0033238616918717812 0.08602771697243641 -0.14034304147761545 -0.01031499597060745 0.0593932383071894 -0.07271338586586765 0.006170497461821351 -0.04404882623367322 -0.10686534035678866 0.0020515922915830646 0.035587456458203666 -0.011195409432716907 -0.004331836565878374 0.02940115117806847 -0.09929265607291177 0.0008685205025251834 0.008715162140971192 -0.1319715595867964 -0.003140834906859716 0.0064980940299335585 -0.011195409432716907 -0.004331836565878374 0.02940115117806847 -0.10585585082455438 -0.0028528732149352004 0.03275869199238549 -0.13703852320919171 -0.004714201733316066 0.03835320051036319 -0.011195409432716907 -0.004331836565878374 0.02940115117806847 -0.079982381492601 0.005608492254570236 0.07261049318135344 -0.09699678963030609 0.005546667537770981 0.08510926814851516 -0.011195409432716907 -0.004331836565878374 0.02940115117806847 -0.09293096386152715 -0.00037441541301312924 0.05607434421115667 -0.12124523886353988 -0.002441422671332392 0.061172882713209135 -0.011195409432716907 -0.004331836565878374 0.02940115117806847 -0.03528511623535893 0.011190497975997332 0.003588303889985732 -0.054918356776636354 0.010299211424454328 -0.020111249355948574 -0.15412747187377973 -0.0018424123336878255 0.006612210789162978 -0.15994316344308165 -0.003462097500598244 0.04229771451309915 -0.112863690837044 0.006237823432218603 0.0954411755508254 -0.14476575174037065 -0.000753310846517067 0.06880669688557839 -0.07713609612862285 0.015732182585911733 -0.03463536765528422 -0.09902115173054409 0.0004905085145203572 0.03959592531575533 -0.0033512208064723353 -0.005892920342941081 0.03340962003562013 -0.0914484674466672 -0.0006925632745375241 0.012723630998522854 -0.12412737096055183 -0.004701918683922423 0.010506562887485221 -0.0033512208064723353 -0.005892920342941081 0.03340962003562013 -0.09801166219830981 -0.0044139569919979076 0.036767160849937155 -0.12919433458294713 -0.006275285510378773 0.042361669367914856 -0.0033512208064723353 -0.005892920342941081 0.03340962003562013 -0.07213819286635643 0.004047408477507529 0.07661896203890511 -0.08915260100406151 0.003985583760708274 0.08911773700606683 -0.0033512208064723353 -0.005892920342941081 0.03340962003562013 -0.08508677523528257 -0.0019354991900758368 0.06008281306870833 -0.11340105023729531 -0.004002506448395099 0.0651813515707608 -0.0033512208064723353 -0.005892920342941081 0.03340962003562013 -0.02744092760911436 0.009629414198934625 0.007596772747537395 -0.04707416815039178 0.008738127647391621 -0.01610278049839691 -0.14628328324753517 -0.003403496110750533 0.010620679646714641 -0.1520989748168371 -0.005023181277660951 0.046306183370650816 -0.10501950221079943 0.004676739655155896 0.09944964440837707 -0.13692156311412607 -0.0023143946235797746 0.07281516574313006 -0.06929190750237826 0.014171098808849028 -0.03062689879773256 -0.08910078586652419 -0.01601451986270983 0.03913641833663453 0.006569145057547562 -0.022397948720171267 0.032950113056499336 -0.0815281015826473 -0.01719759165176771 0.012264124019402058 -0.11420700509653194 -0.021206947061152608 0.010047055908364425 0.006569145057547562 -0.022397948720171267 0.032950113056499336 -0.08809129633428991 -0.020918985369228094 0.03630765387081636 -0.11927396871892723 -0.02278031388760896 0.04190216238879406 0.006569145057547562 -0.022397948720171267 0.032950113056499336 -0.06221782700233654 -0.012457619899722657 0.0761594550597843 -0.07923223514004162 -0.012519444616521911 0.08865823002694603 0.006569145057547562 -0.022397948720171267 0.032950113056499336 -0.07516640937126268 -0.018440527567306023 0.05962330608958753 -0.10348068437327541 -0.020507534825625284 0.06472184459164 0.006569145057547562 -0.022397948720171267 0.032950113056499336 -0.017520561745094462 -0.006875614178295561 0.007137265768416598 -0.037153802286371884 -0.007766900729838565 -0.016562287477517708 -0.13636291738351528 -0.01990852448798072 0.010161172667593844 -0.1421786089528172 -0.021528209654891137 0.04584667639153002 -0.09509913634677954 -0.01182828872207429 0.09899013742925628 -0.12700119725010617 -0.01881942300080996 0.07235565876400926 -0.05937154163835837 -0.0023339295683811583 -0.031086405776853357 -0.09235111238847407 -0.004735370270141131 0.04517964708458963 0.0033188185355976785 -0.01111879912760257 0.038993341804454434 -0.08477842810459718 -0.005918442059199012 0.018307352767357156 -0.11745733161848182 -0.009927797468583912 0.016090284656319523 0.0033188185355976785 -0.01111879912760257 0.038993341804454434 -0.0913416228562398 -0.009639835776659396 0.04235088261877146 -0.12252429524087713 -0.01150116429504026 0.04794539113674916 0.0033188185355976785 -0.01111879912760257 0.038993341804454434 -0.06546815352428642 -0.001178470307153959 0.0822026838077394 -0.0824825616619915 -0.0012402950239532142 0.09470145877490113 0.0033188185355976785 -0.01111879912760257 0.038993341804454434 -0.07841673589321256 -0.007161377974737325 0.06566653483754263 -0.1067310108952253 -0.009228385233056587 0.0707650733395951 0.0033188185355976785 -0.01111879912760257 0.038993341804454434 -0.020770888267044346 0.004403535414273137 0.013180494516371696 -0.04040412880832177 0.003512248862730133 -0.01051905872956261 -0.13961324390546515 -0.008629374895412021 0.016204401415548943 -0.14542893547476707 -0.01024906006232244 0.05188990513948512 -0.09834946286872942 -0.0005491391295055926 0.10503336617721137 -0.13025152377205607 -0.007540273408241262 0.07839888751196436 -0.06262186816030826 0.00894522002418754 -0.02504317702889826 -0.0827579047934802 -0.006481985453572163 0.05098351266270889 0.012912026130591545 -0.012865414311033602 0.044797207382573694 -0.07518522050960331 -0.007665057242630045 0.024111218345476415 -0.10786412402348795 -0.011674412652014944 0.021894150234438782 0.012912026130591545 -0.012865414311033602 0.044797207382573694 -0.08174841526124593 -0.011386450960090428 0.048154748196890716 -0.11293108764588325 -0.013247779478471295 0.05374925671486842 0.012912026130591545 -0.012865414311033602 0.044797207382573694 -0.055874945929292555 -0.0029250854905849915 0.08800654938585867 -0.07288935406699763 -0.0029869102073842467 0.1005053243530204 0.012912026130591545 -0.012865414311033602 0.044797207382573694 -0.0688235282982187 -0.008907993158168356 0.07147040041566188 -0.09713780330023143 -0.01097500041648762 0.07656893891771435 0.012912026130591545 -0.012865414311033602 0.044797207382573694 -0.01117768067205048 0.0026569202308421042 0.018984360094490955 -0.030810921213327902 0.0017656336792991004 -0.00471519315144335 -0.1300200363104713 -0.010375990078843053 0.022008266993668202 -0.13583572787977322 -0.011995675245753472 0.05769377071760437 -0.08875625527373555 -0.002295754312936625 0.11083723175533064 -0.12065831617706219 -0.009286888591672295 0.08420275309008363 -0.05302866056531439 0.007198604840756507 -0.019239311450779 -0.06910631438485798 -0.008736872858127472 0.058894664222735475 0.02656361653921377 -0.01512030171558891 0.05270835894260028 -0.06153363010098109 -0.009919944647185352 0.032022369905503 -0.09421253361486573 -0.013929300056570252 0.029805301794465368 0.02656361653921377 -0.01512030171558891 0.05270835894260028 -0.06809682485262371 -0.013641338364645737 0.0560658997569173 -0.09927949723726104 -0.015502666883026602 0.061660408274895 0.02656361653921377 -0.01512030171558891 0.05270835894260028 -0.04222335552067033 -0.0051799728951403 0.09591770094588525 -0.059237763658375416 -0.005241797611939555 0.10841647591304698 0.02656361653921377 -0.01512030171558891 0.05270835894260028 -0.05517193788959647 -0.011162880562723666 0.07938155197568847 -0.08348621289160921 -0.013229887821042927 0.08448009047774094 0.02656361653921377 -0.01512030171558891 0.05270835894260028 0.0024739097365717444 0.000402032826286796 0.02689551165451754 -0.017159330804705678 -0.0004892537252562078 0.0031959584085832354 -0.11636844590184907 -0.012630877483398362 0.029919418553694788 -0.12218413747115098 -0.01425056265030878 0.06560492227763096 -0.07510466486511333 -0.004550641717491933 0.11874838331535723 -0.10700672576843996 -0.011541775996227603 0.09211390465011021 -0.039377070156692166 0.004943717436201199 -0.011328159890752414 -0.10518505642367229 -0.008831770411984062 -0.010643386613076027 -0.00951512549960054 -0.015215199269445501 -0.01682969189321122 -0.0976123721397954 -0.010014842201041943 -0.0375156809303085 -0.13029127565368004 -0.014024197610426843 -0.03973274904134613 -0.00951512549960054 -0.015215199269445501 -0.01682969189321122 -0.10417556689143802 -0.013736235918502327 -0.013472151078894204 -0.13535823927607535 -0.015597564436883194 -0.007877642560916498 -0.00951512549960054 -0.015215199269445501 -0.01682969189321122 -0.07830209755948464 -0.005274870448996891 0.026379650110073753 -0.09531650569718972 -0.005336695165796146 0.038878425077235476 -0.00951512549960054 -0.015215199269445501 -0.01682969189321122 -0.09125067992841078 -0.011257778116580255 0.009843501139876974 -0.11956495493042352 -0.01332478537489952 0.014942039641929443 -0.00951512549960054 -0.015215199269445501 -0.01682969189321122 -0.033604832302242565 0.0003071352724302052 -0.04264253918129396 -0.05323807284351999 -0.0005841512791127986 -0.06634209242722827 -0.15244718794066336 -0.012725775037254953 -0.03961863228211671 -0.1582628795099653 -0.014345460204165371 -0.003933128558180543 -0.11118340690392764 -0.004645539271348524 0.04921033247954572 -0.14308546780725429 -0.011636673550084194 0.022575853814298705 -0.07545581219550648 0.004848819882344608 -0.08086621072656391 -0.09686824156083054 -0.013353893700006359 -0.014135724924345143 -0.0011983106367587926 -0.019737322557467796 -0.020322030204480337 -0.08929555727695365 -0.01453696548906424 -0.04100801924157762 -0.12197446079083829 -0.01854632089844914 -0.04322508735261525 -0.0011983106367587926 -0.019737322557467796 -0.020322030204480337 -0.09585875202859627 -0.018258359206524626 -0.016964489390163318 -0.1270414244132336 -0.02011968772490549 -0.011369980872185614 -0.0011983106367587926 -0.019737322557467796 -0.020322030204480337 -0.06998528269664289 -0.009796993737019187 0.022887311798804634 -0.08699969083434797 -0.009858818453818443 0.03538608676596636 -0.0011983106367587926 -0.019737322557467796 -0.020322030204480337 -0.08293386506556903 -0.015779901404602552 0.006351162828607858 -0.11124814006758177 -0.017846908662921816 0.011449701330660327 -0.0011983106367587926 -0.019737322557467796 -0.020322030204480337 -0.025288017439400817 -0.004214988015592091 -0.04613487749256308 -0.04492125798067824 -0.005106274567135095 -0.06983443073849738 -0.14413037307782162 -0.017247898325277247 -0.04311097059338583 -0.14994606464712354 -0.018867583492187666 -0.0074254668694496585 -0.10286659204108589 -0.00916766255937082 0.0457179941682766 -0.13476865294441254 -0.01615879683810649 0.019083515503029586 -0.06713899733266473 0.00032669659432231143 -0.08435854903783303 0.030203809882158383 -0.0018009817375934717 0.03513160198099673 0.12587374080623012 -0.008184410595054911 0.02894529670086153 0.03777649416603527 -0.002984053526651353 0.008259307663764252 0.005097590652150635 -0.006993408936036252 0.006042239552726619 0.12587374080623012 -0.008184410595054911 0.02894529670086153 0.031213299414392652 -0.006705447244111737 0.032302837515178554 3.0627029755331964e-05 -0.008566775762492602 0.037897346033156254 0.12587374080623012 -0.008184410595054911 0.02894529670086153 0.05708676874634603 0.0017559182253937002 0.07215463870414651 0.04007236060864095 0.001694093508594445 0.08465341367130823 0.12587374080623012 -0.008184410595054911 0.02894529670086153 0.0441381863774199 -0.0042269894421896655 0.05561848973394973 0.015823911375407156 -0.006293996700508928 0.060717028236002196 0.12587374080623012 -0.008184410595054911 0.02894529670086153 0.10178403400358811 0.007337923946820796 0.0031324494127787927 0.08215079346231069 0.006446637395277792 -0.020567103833155513 -0.017058321634832705 -0.005694986362864362 0.006156356311956039 -0.02287401320413462 -0.0073146715297747805 0.041841860035892214 0.02420545940190303 0.0023852494030420666 0.09498532107361847 -0.007696601501423598 -0.004605884875693604 0.06835084240837146 0.059933054110324194 0.0118796085567352 -0.03509122213249116 0.031118717632938334 -0.00343889639978705 0.029674935215493872 0.12678864855701008 -0.00982232525724849 0.023488629935358676 0.03869140191681522 -0.004621968188844932 0.002802640898261398 0.006012498402930586 -0.00863132359822983 0.0005855727872237648 0.12678864855701008 -0.00982232525724849 0.023488629935358676 0.032128207165172604 -0.008343361906305316 0.026846170749675696 0.0009455347805352836 -0.010204690424686181 0.0324406792676534 0.12678864855701008 -0.00982232525724849 0.023488629935358676 0.05800167649712598 0.00011800356320012173 0.06669797193864366 0.0409872683594209 5.617884640086654e-05 0.07919674690580537 0.12678864855701008 -0.00982232525724849 0.023488629935358676 0.04505309412819985 -0.005864904104383244 0.05016182296844687 0.016738819126187108 -0.007931911362702507 0.05526036147049934 0.12678864855701008 -0.00982232525724849 0.023488629935358676 0.10269894175436806 0.005700009284627217 -0.0023242173527240617 0.08306570121309063 0.004808722733084214 -0.026023770598658368 -0.016143413884052753 -0.00733290102505794 0.0006996895464531847 -0.02195910545335467 -0.00895258619196836 0.03638519327038936 0.025120367152682982 0.0007473347408484881 0.08952865430811562 -0.006781693750643646 -0.006243799537887182 0.0628941756428686 0.06084796186110415 0.010241693894541621 -0.04054788889799402 0.02594746694890949 -0.0036252636817312774 0.029650684452371574 0.12161739787298124 -0.010008692539192716 0.02346437917223638 0.03352015123278638 -0.004808335470789159 0.0027783901351391 0.0008412477189017435 -0.008817690880174058 0.0005613220241014669 0.12161739787298124 -0.010008692539192716 0.02346437917223638 0.02695695648114376 -0.008529729188249542 0.026821919986553398 -0.004225715903493559 -0.010391057706630409 0.0324164285045311 0.12161739787298124 -0.010008692539192716 0.02346437917223638 0.05283042581309714 -6.836371874410557e-05 0.06667372117552135 0.03581601767539206 -0.00013018843554336076 0.07917249614268307 0.12161739787298124 -0.010008692539192716 0.02346437917223638 0.039881843444171006 -0.006051271386327471 0.050137572205324575 0.011567568442158265 -0.008118278644646735 0.055236110707377044 0.12161739787298124 -0.010008692539192716 0.02346437917223638 0.09752769107033922 0.00551364200268299 -0.0023484681158463597 0.0778944505290618 0.004622355451139986 -0.026048021361780666 -0.021314664568081596 -0.007519268307002168 0.0006754387833308867 -0.027130356137383512 -0.009138953473912586 0.036360942507267055 0.01994911646865414 0.0005609674589042608 0.08950440354499331 -0.011952944434672489 -0.006430166819831409 0.0628699248797463 0.0556767111770753 0.010055326612597393 -0.040572139661116315 0.025875900468740973 -0.0017939608180609172 0.03499186383102986 0.12154583139281272 -0.008177389675522355 0.028805558550894665 0.03344858475261786 -0.0029770326071187985 0.008119569513797387 0.0007696812387332254 -0.006986388016503698 0.005902501402759754 0.12154583139281272 -0.008177389675522355 0.028805558550894665 0.026885390000975243 -0.0066984263245791825 0.03216309936521169 -0.004297282383662077 -0.008559754842960048 0.03775760788318939 0.12154583139281272 -0.008177389675522355 0.028805558550894665 0.05275885933292862 0.0017629391449262546 0.07201490055417964 0.03574445119522354 0.0017011144281269994 0.08451367552134137 0.12154583139281272 -0.008177389675522355 0.028805558550894665 0.03981027696400249 -0.004219968522657111 0.05547875158398286 0.011496001961989747 -0.006286975780976374 0.06057729008603533 0.12154583139281272 -0.008177389675522355 0.028805558550894665 0.0974561245901707 0.00734494486635335 0.002992711262811927 0.07782288404889327 0.006453658314810346 -0.02070684198312238 -0.021386231048250114 -0.005687965443331808 0.006016618161989173 -0.02720192261755203 -0.007307650610242226 0.04170212188592534 0.01987754998848562 0.002392270322574621 0.09484558292365161 -0.012024510914841007 -0.004598863956161049 0.0682111042584046 0.05560514469690679 0.011886629476267754 -0.03523096028245803 -0.09856621603303899 0.005417427189079054 -0.02332019431456506 -0.0028962851089672365 -0.0009660016683823843 -0.029506499594700253 -0.0909935317491621 0.004234355400021173 -0.05019248863179754 -0.12367243526304673 0.00022499999063627357 -0.052409556742835164 -0.0028962851089672365 -0.0009660016683823843 -0.029506499594700253 -0.09755672650080471 0.0005129616825607893 -0.026148958780383237 -0.12873939888544203 -0.0013483668358200765 -0.02055445026240553 -0.0028962851089672365 -0.0009660016683823843 -0.029506499594700253 -0.07168325716885134 0.008974327152066227 0.013702842408584718 -0.08869766530655641 0.008912502435266971 0.02620161737574644 -0.0028962851089672365 -0.0009660016683823843 -0.029506499594700253 -0.08463183953777748 0.0029914194844828604 -0.0028333065616120597 -0.11294611453979021 0.0009244122261635977 0.002265231940440409 -0.0028962851089672365 -0.0009660016683823843 -0.029506499594700253 -0.02698599191160926 0.014556332873493321 -0.05531934688278299 -0.04661923245288668 0.013665046321950317 -0.0790189001287173 -0.14582834755003007 0.0015234225638081642 -0.05229543998360575 -0.151644039119332 -9.62626031022545e-05 -0.016609936259669576 -0.10456456651329434 0.009603658329714593 0.036533524778056686 -0.13646662741662097 0.0026125240509789227 0.00989904611280967 -0.06883697180487316 0.019098017483407725 -0.09354301842805295 -0.09711955621294516 0.015428551308811468 -0.022499719281995602 -0.0014496252888734074 0.00904512245135003 -0.028686024562130798 -0.08954687192906827 0.014245479519753588 -0.049372013599228076 -0.1222257754429529 0.010236124110368687 -0.05158908171026571 -0.0014496252888734074 0.00904512245135003 -0.028686024562130798 -0.09611006668071088 0.010524085802293203 -0.02532848374781378 -0.12729273906534821 0.008662757283912338 -0.01973397522983607 -0.0014496252888734074 0.00904512245135003 -0.028686024562130798 -0.0702365973487575 0.01898545127179864 0.014523317441154177 -0.08725100548646259 0.018923626554999386 0.0270220924083159 -0.0014496252888734074 0.00904512245135003 -0.028686024562130798 -0.08318517971768365 0.013002543604215273 -0.002012831529042601 -0.11149945471969638 0.010935536345896012 0.0030857069730098677 -0.0014496252888734074 0.00904512245135003 -0.028686024562130798 -0.025539332091515432 0.024567456993225736 -0.054498871850213536 -0.045172572632792854 0.023676170441682732 -0.07819842509614784 -0.14438168772993626 0.011534546683540578 -0.05147496495103629 -0.15019737929923815 0.00991486151663016 -0.015789461227100118 -0.1031179066932005 0.019614782449447005 0.03735399981062614 -0.13501996759652712 0.012623648170711337 0.010719521145379128 -0.06739031198477935 0.02910914160314014 -0.0927225433954835 -0.1043103859918935 0.014269756865218291 -0.02269743600230555 -0.008640455067821753 0.007886328007756852 -0.028883741282440742 -0.09673770170801661 0.01308668507616041 -0.04956973031953803 -0.12941660522190124 0.00907732966677551 -0.05178679843057565 -0.008640455067821753 0.007886328007756852 -0.028883741282440742 -0.10330089645965923 0.009365291358700026 -0.025526200468123726 -0.13448356884429655 0.00750396284031916 -0.01993169195014602 -0.008640455067821753 0.007886328007756852 -0.028883741282440742 -0.07742742712770585 0.017826656828205462 0.014325600720844229 -0.09444183526541093 0.01776483211140621 0.026824375688005952 -0.008640455067821753 0.007886328007756852 -0.028883741282440742 -0.09037600949663199 0.011843749160622096 -0.0022105482493525487 -0.11869028449864473 0.009776741902302835 0.00288799025269992 -0.008640455067821753 0.007886328007756852 -0.028883741282440742 -0.03273016187046378 0.02340866254963256 -0.05469658857052348 -0.0523634024117412 0.022517375998089555 -0.07839614181645779 -0.1515725175088846 0.0103757522399474 -0.05167268167134624 -0.15738820907818651 0.008756067073036982 -0.015987177947410065 -0.11030873647214885 0.01845598800585383 0.0371562830903162 -0.14221079737547548 0.01146485372711816 0.01052180442506918 -0.07458114176372768 0.02795034715954696 -0.09292026011579343 -0.10585655402008994 0.005013677806227868 -0.021573448362104165 -0.010186623096018185 -0.001369751051233571 -0.027759753642239357 -0.09828386973621304 0.003830606017169986 -0.04844574267933664 -0.1309627732500977 -0.00017874939221491307 -0.05066281079037427 -0.010186623096018185 -0.001369751051233571 -0.027759753642239357 -0.10484706448785566 0.00010921229970960265 -0.02440221282792234 -0.13602973687249298 -0.0017521162186712631 -0.018807704309944634 -0.010186623096018185 -0.001369751051233571 -0.027759753642239357 -0.07897359515590228 0.00857057776921504 0.015449588361045614 -0.09598800329360736 0.008508753052415784 0.027948363328207337 -0.010186623096018185 -0.001369751051233571 -0.027759753642239357 -0.09192217752482842 0.002587670101631674 -0.0010865606091511638 -0.12023645252684116 0.0005206628433124111 0.004011977892901305 -0.010186623096018185 -0.001369751051233571 -0.027759753642239357 -0.03427632989866021 0.014152583490642134 -0.053572600930322095 -0.05390957043993763 0.01326129693909913 -0.07727215417625641 -0.15311868553708102 0.0011196731809569775 -0.050548694031144856 -0.15893437710638295 -0.0005000119859534411 -0.01486319030720868 -0.11185490450034528 0.009199908946863407 0.03828027073051758 -0.14375696540367192 0.002208774668127736 0.011645792065270565 -0.07612730979192411 0.01869426810055654 -0.09179627247559205 -0.08885524486585186 0.005747759851808497 -0.02543297395362963 0.006814686058219888 -0.0006356690056529418 -0.03161927923376483 -0.08128256058197497 0.004564688062750615 -0.052305268270862106 -0.11396146409585961 0.0005553326533657161 -0.05452233638189974 0.006814686058219888 -0.0006356690056529418 -0.03161927923376483 -0.08784575533361759 0.0008432943452902318 -0.028261738419447808 -0.11902842771825492 -0.001018034173090634 -0.0226672299014701 0.006814686058219888 -0.0006356690056529418 -0.03161927923376483 -0.06197228600166421 0.009304659814795668 0.011590062769520147 -0.07898669413936929 0.009242835097996414 0.02408883773668187 0.006814686058219888 -0.0006356690056529418 -0.03161927923376483 -0.07492086837059035 0.003321752147212303 -0.00494608620067663 -0.10323514337260309 0.0012547448888930402 0.00015245230137583832 0.006814686058219888 -0.0006356690056529418 -0.03161927923376483 -0.017275020744422137 0.014886665536222764 -0.057432126521847565 -0.03690826128569956 0.01399537898467976 -0.08113167976778188 -0.13611737638284294 0.0018537552265376067 -0.05440821962267032 -0.14193306795214486 0.00023407005962718802 -0.018722715898734147 -0.09485359534610721 0.009933990992444035 0.03442074513899211 -0.12675565624943386 0.002942856713708365 0.007786266473745099 -0.05912600063768605 0.01942835014613717 -0.09565579806711752 -0.08708185948333687 0.01632070659826268 -0.02167331501981383 0.008588071440734882 0.009937277740801241 -0.027859620299949026 -0.07950917519945998 0.0151376348092048 -0.048545609337046304 -0.11218807871334462 0.011128279399819899 -0.05076267744808394 0.008588071440734882 0.009937277740801241 -0.027859620299949026 -0.0860723699511026 0.011416241091744415 -0.024502079485632006 -0.11725504233573991 0.00955491257336355 -0.0189075709676543 0.008588071440734882 0.009937277740801241 -0.027859620299949026 -0.06019890061914922 0.01987760656124985 0.015349721703335949 -0.0772133087568543 0.019815781844450597 0.02784849667049767 0.008588071440734882 0.009937277740801241 -0.027859620299949026 -0.07314748298807536 0.013894698893666485 -0.0011864272668608289 -0.1014617579900881 0.011827691635347224 0.00391211123519164 0.008588071440734882 0.009937277740801241 -0.027859620299949026 -0.015501635361907143 0.025459612282676947 -0.053672467588031764 -0.035134875903184565 0.024568325731133944 -0.07737202083396608 -0.13434399100032796 0.01242670197299179 -0.05064856068885452 -0.14015968256962988 0.010807016806081371 -0.014963056964918345 -0.09308020996359222 0.020506937738898216 0.038180404072807914 -0.12498227086691885 0.013515803460162549 0.0115459254075609 -0.057352615255171054 0.030001296892591352 -0.09189613913330172 0.031364474255670086 0.010811887999617626 0.03610172763042364 0.12703440517974185 0.004428459142156187 0.02991542235028844 0.038937158539546976 0.009628816210559745 0.009229433313191163 0.006258255025662338 0.005619460801174845 0.00701236520215353 0.12703440517974185 0.004428459142156187 0.02991542235028844 0.03237396378790435 0.005907422493099361 0.033272963164605464 0.001191291403267035 0.004046093974718495 0.038867471682583164 0.12703440517974185 0.004428459142156187 0.02991542235028844 0.058247433119857736 0.014368787962604797 0.07312476435357342 0.04123302498215265 0.014306963245805542 0.08562353932073513 0.12703440517974185 0.004428459142156187 0.02991542235028844 0.045298850750931596 0.008385880295021433 0.05658861538337664 0.01698457574891886 0.006318873036702169 0.06168715388542911 0.12703440517974185 0.004428459142156187 0.02991542235028844 0.10294469837709981 0.019950793684031895 0.004102575062205703 0.08331145783582239 0.01905950713248889 -0.019596978183728603 -0.015897657261321002 0.006917883374346736 0.007126481961382949 -0.021713348830622918 0.005298198207436317 0.04281198568531912 0.025366123775414733 0.014998119140253164 0.09595544672304537 -0.006535937127911895 0.008006984861517494 0.06932096805779836 0.0610937184838359 0.024492478293946296 -0.03412109648306425 0.031157584739687223 0.006342835668930766 0.03854845047153226 0.12682751566375897 -4.059318853067307e-05 0.03236214519139707 0.038730269023564114 0.005159763879872884 0.011676156154299788 0.006051365509679475 0.0011504084704879848 0.009459088043262155 0.12682751566375897 -4.059318853067307e-05 0.03236214519139707 0.03216707427192149 0.0014383701624125006 0.03571968600571409 0.0009844018872841725 -0.0004229583559683652 0.04131419452369179 0.12682751566375897 -4.059318853067307e-05 0.03236214519139707 0.05804054360387487 0.009899735631917938 0.07557148719468204 0.04102613546616979 0.009837910915118682 0.08807026216184377 0.12682751566375897 -4.059318853067307e-05 0.03236214519139707 0.045091961234948734 0.003916827964334572 0.05903533822448526 0.016777686232935997 0.001849820706015309 0.06413387672653773 0.12682751566375897 -4.059318853067307e-05 0.03236214519139707 0.10273780886111694 0.015481741353345034 0.006549297903314329 0.08310456831983953 0.01459045480180203 -0.017150255342619977 -0.016104546777303864 0.0024488310436598755 0.009573204802491575 -0.02192023834660578 0.0008291458767494568 0.04525870852642774 0.02515923425943187 0.010529066809566303 0.09840216956415401 -0.006742826643894757 0.003537932530830634 0.071767690898907 0.06088682896785304 0.020023425963259435 -0.031674373641955626 0.026526126577226493 0.007724273267997359 0.0384796606656908 0.12219605750129825 0.0013408444105359203 0.032293355385555604 0.03409881086110338 0.0065412014789394774 0.011607366348458326 0.0014199073472187448 0.002531846069554578 0.009390298237420693 0.12219605750129825 0.0013408444105359203 0.032293355385555604 0.027535616109460762 0.002819807761479094 0.03565089619987263 -0.003647056275176558 0.0009584792430982281 0.04124540471785033 0.12219605750129825 0.0013408444105359203 0.032293355385555604 0.053409085441414136 0.01128117323098453 0.07550269738884058 0.03639467730370906 0.011219348514185275 0.08800147235600231 0.12219605750129825 0.0013408444105359203 0.032293355385555604 0.040460503072488004 0.005298265563401165 0.0589665484186438 0.012146228070475266 0.0032312583050819023 0.06406508692069626 0.12219605750129825 0.0013408444105359203 0.032293355385555604 0.09810635069865623 0.016863178952411628 0.006480508097472866 0.07847311015737879 0.015971892400868624 -0.01721904514846144 -0.020736004939764595 0.003830268642726469 0.009504414996650112 -0.02655169650906651 0.00221058347581605 0.04518991872058628 0.02052777609697114 0.011910504408632897 0.09833337975831255 -0.011374284806355488 0.004919370129897228 0.07169890109306554 0.05625537080539231 0.02140486356232603 -0.03174316344779709 0.026585458561778876 0.012110554852876666 0.03557756271444721 0.12225538948585063 0.005727125995415227 0.029391257434312014 0.03415814284565576 0.010927483063818785 0.008705268397214735 0.0014792393317711282 0.006918127654433885 0.006488200286177102 0.12225538948585063 0.005727125995415227 0.029391257434312014 0.027594948094013146 0.007206089346358401 0.03274879824862904 -0.0035877242906241745 0.005344760827977535 0.03834330676660674 0.12225538948585063 0.005727125995415227 0.029391257434312014 0.05346841742596652 0.01566745481586384 0.07260059943759699 0.036454009288261445 0.015605630099064582 0.0850993744047587 0.12225538948585063 0.005727125995415227 0.029391257434312014 0.04051983505704039 0.009684547148280473 0.05606445046740021 0.01220556005502765 0.007617539889961209 0.06116298896945268 0.12225538948585063 0.005727125995415227 0.029391257434312014 0.0981656826832086 0.021249460537290932 0.003578410146229276 0.07853244214193118 0.020358173985747928 -0.02012114309970503 -0.02067667295521221 0.008216550227605776 0.006602317045406522 -0.026492364524514127 0.006596865060695357 0.04228782076934269 0.020587108081523524 0.016296785993512204 0.09543128180706895 -0.011314952821803104 0.009305651714776535 0.06879680314182193 0.05631470278994469 0.025791145147205336 -0.03464526139904068 -0.030986844459436756 -0.011775894094899956 0.031561789824627554 0.064683086464635 -0.018159322952361397 0.025375484544492358 -0.02341416017555987 -0.012958965883957837 0.004689495507395079 -0.0560930636894445 -0.016968321293342737 0.002472427396357446 0.064683086464635 -0.018159322952361397 0.025375484544492358 -0.029977354927202486 -0.01668035960141822 0.028733025358809377 -0.06116002731183981 -0.018541688119799088 0.03432753387678708 0.064683086464635 -0.018159322952361397 0.025375484544492358 -0.0041038855952491085 -0.008218994131912785 0.06858482654777734 -0.021118293732954187 -0.00828081884871204 0.08108360151493905 0.064683086464635 -0.018159322952361397 0.025375484544492358 -0.01705246796417524 -0.01420190179949615 0.052048677577580554 -0.04536674296618798 -0.016268909057815414 0.05714721607963302 0.064683086464635 -0.018159322952361397 0.025375484544492358 0.04059337966199297 -0.0026369884104856887 -0.0004373627435903804 0.020960139120715548 -0.0035282749620286925 -0.024136915989524686 -0.07824897597642784 -0.015669898720170848 0.002586544155586866 -0.08406466754572976 -0.017289583887081267 0.03827204787952304 -0.03698519493969211 -0.007589662954264418 0.0914155089172493 -0.06888725584301873 -0.014580797233000087 0.06478103025200228 -0.001257600231270941 0.001904696199428714 -0.038661034288860335 -0.03608076134101844 -0.011540205233863834 0.023105316895835566 0.05958916958305331 -0.017923634091325275 0.01691901161570037 -0.028508077057141548 -0.012723277022921715 -0.003766977421396908 -0.06118698057102619 -0.016732632432306615 -0.005984045532434541 0.05958916958305331 -0.017923634091325275 0.01691901161570037 -0.03507127180878417 -0.016444670740382097 0.02027655243001739 -0.06625394419342148 -0.018305999258762966 0.025871060947995097 0.05958916958305331 -0.017923634091325275 0.01691901161570037 -0.009197802476830792 -0.007983305270876663 0.060128353618985345 -0.026212210614535873 -0.008045129987675918 0.07262712858614706 0.05958916958305331 -0.017923634091325275 0.01691901161570037 -0.022146384845756928 -0.013966212938460027 0.04359220464878857 -0.050460659847769665 -0.01603322019677929 0.048690743150841036 0.05958916958305331 -0.017923634091325275 0.01691901161570037 0.03549946278041129 -0.0024012995494495665 -0.008893835672382368 0.015866222239133865 -0.0032925861009925703 -0.032593388918316674 -0.08334289285800953 -0.015434209859134724 -0.005869928773205121 -0.08915858442731145 -0.017053895026045145 0.02981557495073105 -0.04207911182127379 -0.007353974093228296 0.0829590359884573 -0.07398117272460042 -0.014345108371963965 0.056324557323210296 -0.006351517112852624 0.002140385060464836 -0.04711750721765232 -0.011416829919309203 -0.009216933421138768 0.028620469147801638 0.08425310100476255 -0.015600362278600207 0.022434163867666446 -0.0038441456354323146 -0.010400005210196649 0.0017481748305691637 -0.03652304914931695 -0.014409360619581549 -0.00046889328046846937 0.08425310100476255 -0.015600362278600207 0.022434163867666446 -0.010407340387074934 -0.014121398927657033 0.02579170468198346 -0.04159001277171225 -0.0159827274460379 0.03138621319996117 0.08425310100476255 -0.015600362278600207 0.022434163867666446 0.015466128944878444 -0.005660033458151597 0.06564350587095141 -0.0015482791928266362 -0.005721858174950851 0.07814228083811314 0.08425310100476255 -0.015600362278600207 0.022434163867666446 0.002517546575952309 -0.011642941125734961 0.04910735690075464 -0.025796728426060428 -0.013709948384054226 0.05420589540280711 0.08425310100476255 -0.015600362278600207 0.022434163867666446 0.060163394202120524 -7.802773672450046e-05 -0.003378683420416296 0.0405301536608431 -0.0009693142882675043 -0.027078236666350602 -0.05867896143630029 -0.013110938046409658 -0.00035477652123904954 -0.06449465300560221 -0.014730623213320077 0.03533072720269712 -0.017415180399564554 -0.00503070228050323 0.08847418824042338 -0.04931724130289118 -0.0120218365592389 0.06183970957517637 0.018312414308856613 0.004463656873189902 -0.04160235496568625 -0.022251847143365477 -0.009430176455593681 0.025272815107383998 0.07341808378070627 -0.015813605313055118 0.019086509827248806 -0.014679162859488589 -0.010613248244651562 -0.0015994792098484763 -0.047358066373373225 -0.014622603654036462 -0.0038165473208861093 0.07341808378070627 -0.015813605313055118 0.019086509827248806 -0.021242357611131208 -0.014334641962111946 0.02244405064156582 -0.05242502999576853 -0.016195970480492813 0.02803855915954353 0.07341808378070627 -0.015813605313055118 0.019086509827248806 0.00463111172082217 -0.00587327649260651 0.06229585183053378 -0.01238329641688291 -0.005935101209405764 0.0747946267976955 0.07341808378070627 -0.015813605313055118 0.019086509827248806 -0.008317470648103965 -0.011856184160189874 0.045759702860336995 -0.036631745650116704 -0.013923191418509138 0.050858241362389464 0.07341808378070627 -0.015813605313055118 0.019086509827248806 0.04932837697806425 -0.00029127077117941345 -0.006726337460833936 0.029695136436786826 -0.0011825573227224172 -0.03042589070676824 -0.06951397866035657 -0.013324181080864571 -0.0037024305616566895 -0.07532967022965847 -0.01494386624777499 0.03198307316227948 -0.02825019762362083 -0.005243945314958143 0.08512653420000574 -0.06015225852694746 -0.012235079593693812 0.058492055534758725 0.007477397084800337 0.004250413838734989 -0.044950009006103894 -0.022124738065131183 -0.008697475085860771 0.03260704970146363 0.07354519285894057 -0.01508090394332221 0.026420744421328433 -0.014552053781254294 -0.009880546874918652 0.005734755384231155 -0.04723095729513893 -0.013889902284303552 0.003517687273193522 0.07354519285894057 -0.01508090394332221 0.026420744421328433 -0.021115248532896914 -0.013601940592379036 0.029778285235645453 -0.052297920917534234 -0.015463269110759903 0.03537279375362316 0.07354519285894057 -0.01508090394332221 0.026420744421328433 0.004758220799056464 -0.0051405751228736 0.06963008642461341 -0.012256187338648616 -0.005202399839672855 0.08212886139177514 0.07354519285894057 -0.01508090394332221 0.026420744421328433 -0.00819036156986967 -0.011123482790456964 0.05309393745441663 -0.03650463657188241 -0.013190490048776229 0.0581924759564691 0.07354519285894057 -0.01508090394332221 0.026420744421328433 0.04945548605629854 0.0004414305985534963 0.0006078971332456953 0.02982224551502112 -0.0004498559529895075 -0.02309165611268861 -0.06938686958212227 -0.012591479711131661 0.0036318040324229417 -0.07520256115142418 -0.01421116487804208 0.03931730775635911 -0.028123088545386535 -0.004511243945225233 0.09246076879408538 -0.060025149448713164 -0.011502378223960903 0.06582629012883837 0.007604506163034631 0.004983115208467899 -0.03761577441202426 -0.013511195229092502 -0.007019578492068257 0.03459828907077364 0.08215873569497925 -0.013403007349529695 0.028411983790638445 -0.005938510945215613 -0.008202650281126139 0.007725994753541167 -0.03861741445910025 -0.012212005690511039 0.005508926642503534 0.08215873569497925 -0.013403007349529695 0.028411983790638445 -0.012501705696858233 -0.011924043998586521 0.03176952460495547 -0.043684378081495556 -0.013785372516967388 0.03736403312293317 0.08215873569497925 -0.013403007349529695 0.028411983790638445 0.013371763635095145 -0.003462678529081085 0.07162132579392341 -0.003642644502609935 -0.0035245032458803404 0.08412010076108514 0.08215873569497925 -0.013403007349529695 0.028411983790638445 0.00042318126616901035 -0.009445586196664451 0.05508517682372664 -0.02789109373584373 -0.011512593454983714 0.06018371532577911 0.08215873569497925 -0.013403007349529695 0.028411983790638445 0.05806902889233723 0.0021193271923460105 0.0025991365025557073 0.038435788351059805 0.0012280406408030067 -0.0211004167433786 -0.060773326746083586 -0.010913583117339146 0.005623043401732954 -0.06658901831538551 -0.012533268284249565 0.04130854712566913 -0.019509545709347854 -0.002833347351432719 0.09445200816339538 -0.05141160661267448 -0.00982448163016839 0.06781752949814837 0.016218048999073312 0.006661011802260413 -0.03562453504271425 -0.03219470003774383 -0.007348228321998395 0.0036861799027176397 0.06347523088632792 -0.013731657179459834 -0.0025001253774175544 -0.024622015753866938 -0.008531300111056276 -0.023186114414514833 -0.05730091926775158 -0.012540655520441176 -0.025403182525552466 0.06347523088632792 -0.013731657179459834 -0.0025001253774175544 -0.03118521050550956 -0.01225269382851666 0.0008574154368994635 -0.06236788289014688 -0.014114022346897525 0.006451923954877169 0.06347523088632792 -0.013731657179459834 -0.0025001253774175544 -0.005311741173556182 -0.003791328359011223 0.04070921662586742 -0.022326149311261263 -0.0038531530758104783 0.05320799159302914 0.06347523088632792 -0.013731657179459834 -0.0025001253774175544 -0.018260323542482318 -0.00977423602659459 0.024173067655670642 -0.046574598544495055 -0.01184124328491385 0.02927160615772311 0.06347523088632792 -0.013731657179459834 -0.0025001253774175544 0.0393855240836859 0.0017906773624158726 -0.028312972665500293 0.019752283542408475 0.0008993908108728688 -0.0520125259114346 -0.07945683155473492 -0.011242232947269285 -0.025289065766323046 -0.08527252312403683 -0.012861918114179704 0.010396437957613124 -0.03819305051799918 -0.0031619971813628567 0.06353989899533938 -0.07009511142132581 -0.010153131460098526 0.03690542033009237 -0.002465455809578014 0.006332361972330275 -0.06653664421077025 -0.043945762657228916 -0.007083729977554175 0.004986755623824922 0.051724168266842833 -0.013467158835015614 -0.001199549656310272 -0.036373078373352026 -0.008266801766612056 -0.021885538693407553 -0.06905198188723666 -0.012276157175996956 -0.024102606804445186 0.051724168266842833 -0.013467158835015614 -0.001199549656310272 -0.04293627312499465 -0.01198819548407244 0.002157991158006746 -0.07411894550963197 -0.013849524002453307 0.007752499675984452 0.051724168266842833 -0.013467158835015614 -0.001199549656310272 -0.01706280379304127 -0.0035268300145670033 0.0420097923469747 -0.03407721193074635 -0.0035886547313662585 0.054508567314136426 0.051724168266842833 -0.013467158835015614 -0.001199549656310272 -0.030011386161967406 -0.009509737682150368 0.025473643376777922 -0.05832566116398014 -0.011576744940469633 0.03057218187883039 0.051724168266842833 -0.013467158835015614 -0.001199549656310272 0.02763446146420081 0.0020551757068600924 -0.027012396944393013 0.008001220922923387 0.0011638891553170886 -0.050711950190327315 -0.09120789417422001 -0.010977734602825065 -0.023988490045215766 -0.09702358574352192 -0.012597419769735484 0.011697013678720405 -0.049944113137484265 -0.002897498836918637 0.06484047471644666 -0.0818461740408109 -0.009888633115654306 0.038205996051199655 -0.014216518429063102 0.006596860316774495 -0.06523606848966297 -0.04087439638714893 -0.0073313582031821175 0.010804608371894562 0.05479553453692282 -0.013714787060643555 0.004618303091759368 -0.03330171210327204 -0.008514429992239999 -0.01606768594533791 -0.06598061561715668 -0.012523785401624899 -0.018284754056375543 0.05479553453692282 -0.013714787060643555 0.004618303091759368 -0.039864906854914665 -0.012235823709700382 0.007975843906076386 -0.07104757923955199 -0.014097152228081248 0.013570352424054091 0.05479553453692282 -0.013714787060643555 0.004618303091759368 -0.013991437522961284 -0.0037744582401949456 0.04782764509504434 -0.031005845660666366 -0.003836282956994201 0.060326420062206065 0.05479553453692282 -0.013714787060643555 0.004618303091759368 -0.02694001989188742 -0.009757365907778311 0.031291496124847565 -0.05525429489390016 -0.011824373166097574 0.036390034626900034 0.05479553453692282 -0.013714787060643555 0.004618303091759368 0.030705827734280794 0.0018075474812321501 -0.02119454419632337 0.011072587193003372 0.0009162609296891463 -0.044894097442257676 -0.08813652790414002 -0.011225362828453007 -0.018170637297146124 -0.09395221947344193 -0.012845047995363425 0.017514866426790045 -0.04687274686740428 -0.003145127062546579 0.07065832746451631 -0.07877480777073091 -0.01013626134128225 0.044023848799269294 -0.011145152158983117 0.006349232091146553 -0.059418215741593325 -0.027801525024379995 -0.008248788965357077 0.011093331735172757 0.06786840589969176 -0.014632217822818516 0.004907026455037563 -0.020228840740503108 -0.009431860754414958 -0.015778962582059717 -0.05290774425438774 -0.013441216163799858 -0.01799603069309735 0.06786840589969176 -0.014632217822818516 0.004907026455037563 -0.026792035492145726 -0.013153254471875342 0.00826456726935458 -0.05797470787678305 -0.015014582990256209 0.013859075787332286 0.06786840589969176 -0.014632217822818516 0.004907026455037563 -0.0009185661601923481 -0.004691889002369906 0.04811636845832254 -0.017932974297897426 -0.0047537137191691605 0.060615143425484255 0.06786840589969176 -0.014632217822818516 0.004907026455037563 -0.013867148529118483 -0.01067479666995327 0.031580219488125755 -0.04218142353113122 -0.012741803928272535 0.03667875799017822 0.06786840589969176 -0.014632217822818516 0.004907026455037563 0.043778699097049734 0.0008901167190571904 -0.020905820833045177 0.024145458555772308 -1.1698324858134407e-06 -0.04460537407897948 -0.07506365654137108 -0.012142793590627967 -0.01788191393386793 -0.080879348110673 -0.013762478757538386 0.01780358979006824 -0.03379987550463535 -0.004062557824721539 0.0709470508277945 -0.06570193640796197 -0.011053692103457208 0.044312572162547484 0.0019277192037858194 0.005431801328971593 -0.059129492378315135 -0.048224410276237376 -0.009900909444778488 -0.008217502453542564 0.047445520647834374 -0.016284338302239926 -0.014403807733677759 -0.040651725992360485 -0.011083981233836368 -0.03508979677077504 -0.07333062950624512 -0.015093336643221269 -0.037306864881812674 0.047445520647834374 -0.016284338302239926 -0.014403807733677759 -0.04721492074400311 -0.014805374951296753 -0.011046266919360741 -0.07839759312864042 -0.016666703469677618 -0.0054517584013830354 0.047445520647834374 -0.016284338302239926 -0.014403807733677759 -0.02134145141204973 -0.006344009481791316 0.028805534269607212 -0.03835585954975481 -0.006405834198590571 0.041304309236768935 0.047445520647834374 -0.016284338302239926 -0.014403807733677759 -0.034290033780975865 -0.012326917149374682 0.012269385299410436 -0.0626043087829886 -0.014393924407693943 0.017367923801462903 0.047445520647834374 -0.016284338302239926 -0.014403807733677759 0.02335581384519235 -0.0007620037603642202 -0.0402166550217605 0.003722573303914928 -0.001653290311907224 -0.0639162082676948 -0.09548654179322846 -0.013794914070049378 -0.037192748122583254 -0.10130223336253039 -0.015414599236959797 -0.0015072443986470802 -0.054222760756492724 -0.0057146783041429495 0.05163621663907918 -0.08612482165981936 -0.012705812582878619 0.025001737973832164 -0.01849516604807156 0.0037796808495501825 -0.07844032656703046 -0.03623057124324552 -0.009593304110504347 -0.008444104817642805 0.05943935968082623 -0.015976732967965784 -0.014630410097778 -0.028657886959368627 -0.010776375899562228 -0.035316399134875276 -0.061336790473253265 -0.014785731308947128 -0.037533467245912916 0.05943935968082623 -0.015976732967965784 -0.014630410097778 -0.03522108171101125 -0.014497769617022612 -0.011272869283460982 -0.06640375409564857 -0.01635909813540348 -0.005678360765483276 0.05943935968082623 -0.015976732967965784 -0.014630410097778 -0.00934761237905787 -0.006036404147517176 0.028578931905506973 -0.026362020516762952 -0.006098228864316431 0.04107770687266869 0.05943935968082623 -0.015976732967965784 -0.014630410097778 -0.022296194747984006 -0.01201931181510054 0.012042782935310196 -0.050610469749996743 -0.014086319073419805 0.017141321437362664 0.05943935968082623 -0.015976732967965784 -0.014630410097778 0.03534965287818421 -0.00045439842609007984 -0.04044325738586074 0.015716412336906786 -0.0013456849776330836 -0.06414281063179504 -0.0834927027602366 -0.013487308735775238 -0.03741935048668349 -0.08930839432953852 -0.015106993902685656 -0.0017338467627473209 -0.042228921723500866 -0.005407072969868809 0.051409614274978935 -0.07413098262682749 -0.012398207248604479 0.024775135609731925 -0.0065013270150797026 0.004087286183824323 -0.0786669289311307 -0.039869332249201264 -0.011409923977866724 -0.015908499984095336 0.055800598674870486 -0.017793352835328163 -0.02209480526423053 -0.032296647965324374 -0.012592995766924605 -0.04278079430132781 -0.06497555147920901 -0.016602351176309503 -0.04499786241236545 0.055800598674870486 -0.017793352835328163 -0.02209480526423053 -0.038859842716967 -0.01631438948438499 -0.018737264449913513 -0.07004251510160431 -0.018175718002765854 -0.013142755931935807 0.055800598674870486 -0.017793352835328163 -0.02209480526423053 -0.012986373385013617 -0.007853024014879553 0.021114536739054442 -0.0300007815227187 -0.007914848731678806 0.03361331170621616 0.055800598674870486 -0.017793352835328163 -0.02209480526423053 -0.025934955753939753 -0.013835931682462919 0.004578387768857665 -0.05424923075595249 -0.01590293894078218 0.009676926270910133 0.055800598674870486 -0.017793352835328163 -0.02209480526423053 0.03171089187222846 -0.0022710182934524564 -0.04790765255231327 0.01207765133095104 -0.0031623048449954602 -0.07160720579824757 -0.08713146376619235 -0.015303928603137614 -0.04488374565313602 -0.09294715533549427 -0.016923613770048033 -0.009198241929199852 -0.04586768272945661 -0.007223692837231186 0.043945219108526404 -0.07776974363278324 -0.014214827115966855 0.017310740443279394 -0.01014008802103545 0.0022706663164619462 -0.08613132409758323 -0.04789758286600631 -0.012151985759274482 -0.014386963995091198 0.04777234805806544 -0.01853541461673592 -0.020573269275226392 -0.04032489858212942 -0.013335057548332363 -0.041259258312323674 -0.07300380209601406 -0.017344412957717263 -0.04347632642336131 0.04777234805806544 -0.01853541461673592 -0.020573269275226392 -0.046888093333772043 -0.01705645126579275 -0.017215728460909373 -0.07807076571840936 -0.018917779784173614 -0.011621219942931669 0.04777234805806544 -0.01853541461673592 -0.020573269275226392 -0.021014624001818662 -0.008595085796287311 0.02263607272805858 -0.038029032139523744 -0.008656910513086567 0.0351348476952203 0.04777234805806544 -0.01853541461673592 -0.020573269275226392 -0.0339632063707448 -0.014577993463870675 0.006099923757861803 -0.062277481372757536 -0.01664500072218994 0.011198462259914272 0.04777234805806544 -0.01853541461673592 -0.020573269275226392 0.023682641255423416 -0.003013080074860215 -0.046386116563309134 0.004049400714145994 -0.0039043666264032186 -0.07008566980924344 -0.09515971438299739 -0.01604599038454537 -0.04336220966413189 -0.10097540595229931 -0.01766567555145579 -0.007676705940195714 -0.05389593334626166 -0.007965754618638944 0.045466755097530544 -0.08579799424958828 -0.014956888897374614 0.01883227643228353 -0.018168338637840495 0.0015286045350541878 -0.08460978810857908 -0.01449978404183934 -0.0076458657093614 -0.006073508923024719 0.08117014688223241 -0.01402929456682284 -0.012259814203159913 -0.0069270997579624505 -0.008828937498419282 -0.03294580324025719 -0.03960600327184709 -0.01283829290780418 -0.035162871351294825 0.08117014688223241 -0.01402929456682284 -0.012259814203159913 -0.01349029450960507 -0.012550331215879666 -0.008902273388842896 -0.04467296689424239 -0.014411659734260531 -0.00330776487086519 0.08117014688223241 -0.01402929456682284 -0.012259814203159913 0.012383174822348308 -0.004088965746374228 0.03094952780012506 -0.004631233315356772 -0.004150790463173484 0.043448302767286784 0.08117014688223241 -0.01402929456682284 -0.012259814203159913 -0.0005654075465778268 -0.010071873413957594 0.014413378829928282 -0.028879682548590566 -0.012138880672276857 0.019511917331980752 0.08117014688223241 -0.01402929456682284 -0.012259814203159913 0.057080440079590386 0.0014930399750528673 -0.03807266149124265 0.037447199538312964 0.0006017534235098635 -0.06177221473717696 -0.06176191555883043 -0.011539870334632291 -0.035048754592065405 -0.06757760712813235 -0.01315955550154271 0.000636749131870765 -0.02049813452209469 -0.003459634568725862 0.053780210169597026 -0.05240019542542132 -0.010450768847461532 0.027145731504350012 0.015229460186326475 0.00603472458496727 -0.0762963330365126 -0.005929690997343842 -0.004840728038722783 -0.006357710590127709 0.0897402399267279 -0.011224156896184221 -0.012544015870262902 0.001642993286533047 -0.006023799827780664 -0.03323000490736018 -0.03103591022735159 -0.010033155237165563 -0.035447073018397814 0.0897402399267279 -0.011224156896184221 -0.012544015870262902 -0.004920201465109573 -0.009745193545241048 -0.009186475055945885 -0.03610287384974689 -0.011606522063621914 -0.0035919665379681794 0.0897402399267279 -0.011224156896184221 -0.012544015870262902 0.020953267866843806 -0.0012838280757356108 0.03066532613302207 0.003938859729138725 -0.001345652792534866 0.043164101100183795 0.0897402399267279 -0.011224156896184221 -0.012544015870262902 0.00800468549791767 -0.0072667357433189765 0.014129177162825291 -0.020309589504095067 -0.00933374300163824 0.01922771566487776 0.0897402399267279 -0.011224156896184221 -0.012544015870262902 0.06565053312408588 0.004298177645691485 -0.03835686315834564 0.04601729258280846 0.003406891094148481 -0.062056416404279946 -0.05319182251433493 -0.008734732663993673 -0.035332956259168394 -0.059007514083636844 -0.010354417830904091 0.0003525474647677754 -0.011928041477599193 -0.0006544968980872444 0.05349600850249404 -0.04383010238092582 -0.007645631176822914 0.02686152983724702 0.023799553230821974 0.008839862255605888 -0.0765805347036156 -0.006855111378752889 -0.003625555790343999 -0.00949231521819275 0.08881481954531886 -0.010008984647805438 -0.015678620498327946 0.0007175729051239997 -0.00480862757940188 -0.036364609535425224 -0.031961330608760635 -0.00881798298878678 -0.03858167764646286 0.08881481954531886 -0.010008984647805438 -0.015678620498327946 -0.00584562184651862 -0.008530021296862264 -0.012321079684010926 -0.03702829423115594 -0.01039134981524313 -0.006726571166033221 0.08881481954531886 -0.010008984647805438 -0.015678620498327946 0.020027847485434756 -6.865582735682708e-05 0.02753072150495703 0.003013439347729678 -0.00013048054415608227 0.04002949647211875 0.08881481954531886 -0.010008984647805438 -0.015678620498327946 0.0070792651165086234 -0.006051563494940192 0.010994572534760251 -0.021235009885504114 -0.008118570753259455 0.01609311103681272 0.08881481954531886 -0.010008984647805438 -0.015678620498327946 0.06472511274267684 0.005513349894070268 -0.041491467786410684 0.045091872201399416 0.004622063342527264 -0.06519102103234499 -0.054117242895743975 -0.0075195604156148895 -0.03846756088723344 -0.05993293446504589 -0.009139245582525308 -0.0027820571632972656 -0.01285346185900824 0.0005606753502915393 0.050361403874428994 -0.04475552276233487 -0.006430458928444131 0.02372692520918198 0.022874132849412927 0.01005503450398467 -0.07971513933168065 -0.015849683249096486 -0.007095291165053727 -0.009475181906840468 0.07982024767497527 -0.013478720022515166 -0.015661487186975662 -0.008276998965219598 -0.008278362954111608 -0.036347476224072944 -0.04095590247910423 -0.012287718363496507 -0.03856454433511058 0.07982024767497527 -0.013478720022515166 -0.015661487186975662 -0.014840193716862217 -0.011999756671571993 -0.012303946372658645 -0.04602286610149954 -0.013861085189952858 -0.006709437854680939 0.07982024767497527 -0.013478720022515166 -0.015661487186975662 0.01103327561509116 -0.003538391202066555 0.02754785481630931 -0.005981132522613919 -0.00360021591886581 0.04004662978347103 0.07982024767497527 -0.013478720022515166 -0.015661487186975662 -0.001915306753834974 -0.00952129886964992 0.011011705846112533 -0.030229581755847713 -0.011588306127969183 0.016110244348165 0.07982024767497527 -0.013478720022515166 -0.015661487186975662 0.05573054087233324 0.0020436145193605407 -0.041474334475058404 0.03609730033105582 0.001152327967817537 -0.06517388772099271 -0.06311181476608757 -0.010989295790324618 -0.03845042757588116 -0.0689275063353895 -0.012608980957235037 -0.002764923851944984 -0.02184803372935184 -0.0029090600244181886 0.05037853718578127 -0.05375009463267846 -0.009900194303153859 0.02374405852053426 0.013879560979069328 0.006585299129274943 -0.07969800602032835 -0.11136559626716962 0.014243712926775906 -0.022434148525443166 -0.015695665343097867 0.007860284069314468 -0.028620453805578358 -0.10379291198329273 0.013060641137718026 -0.049306442842675643 -0.13647181549717735 0.009051285728333126 -0.05152351095371327 -0.015695665343097867 0.007860284069314468 -0.028620453805578358 -0.11035610673493534 0.009339247420257641 -0.025262912991261342 -0.14153877911957266 0.007477918901876776 -0.019668404473283635 -0.015695665343097867 0.007860284069314468 -0.028620453805578358 -0.08448263740298197 0.01780061288976308 0.014588888197706613 -0.10149704554068704 0.017738788172963822 0.027087663164868336 -0.015695665343097867 0.007860284069314468 -0.028620453805578358 -0.0974312197719081 0.011817705222179713 -0.0019472607724901649 -0.12574549477392083 0.009750697963860449 0.003151277729562304 -0.015695665343097867 0.007860284069314468 -0.028620453805578358 -0.03978537214573989 0.023382618611190176 -0.054433301093661096 -0.059418612687017314 0.022491332059647172 -0.07813285433959541 -0.1586277277841607 0.010349708301505016 -0.05140939419448386 -0.16444341935346263 0.008730023134594598 -0.01572389047054768 -0.11736394674742497 0.018429944067411445 0.03741957056717858 -0.1492660076507516 0.011438809788675775 0.010785091901931564 -0.0816363520390038 0.027924303221104577 -0.09265697263893105 -0.11261725900465827 0.005063466183081048 -0.019026729296675288 -0.01694732808058652 -0.001319962674380391 -0.025213034576810484 -0.10504457472078138 0.003880394394023166 -0.04589902361390776 -0.13772347823466602 -0.00012896101536173307 -0.048116091724945395 -0.01694732808058652 -0.001319962674380391 -0.025213034576810484 -0.111607769472424 0.00015900067656278265 -0.021855493762493464 -0.14279044185706133 -0.0017023278418180831 -0.016260985244515757 -0.01694732808058652 -0.001319962674380391 -0.025213034576810484 -0.08573430014047062 0.008620366146068219 0.01799630742647449 -0.1027487082781757 0.008558541429268963 0.030495082393636214 -0.01694732808058652 -0.001319962674380391 -0.025213034576810484 -0.09868288250939676 0.002637458478484854 0.0014601584562777131 -0.1269971575114095 0.0005704512201655911 0.006558696958330182 -0.01694732808058652 -0.001319962674380391 -0.025213034576810484 -0.041037034883228546 0.014202371867495315 -0.05102588186489322 -0.06067027542450597 0.013311085315952311 -0.07472543511082752 -0.15987939052164934 0.0011694615578101576 -0.048001974965715975 -0.16569508209095127 -0.00045022360910026114 -0.012316471241779803 -0.11861560948491362 0.009249697323716586 0.040826989795946456 -0.15051767038824027 0.002258563044980916 0.014192511130699442 -0.08288801477649246 0.018744056477409718 -0.08924955341016318 -0.049472524429640105 0.00955771285550722 -0.03074729242282246 0.046197406494431645 0.0031742839980457814 -0.036933597702957656 -0.041899840145763215 0.00837464106644934 -0.057619586740054934 -0.07457874365964785 0.004365285657064439 -0.05983665485109257 0.046197406494431645 0.0031742839980457814 -0.036933597702957656 -0.04846303489740584 0.004653247348988955 -0.03357605688864063 -0.07964570728204315 0.0027919188306080893 -0.02798154837066293 0.046197406494431645 0.0031742839980457814 -0.036933597702957656 -0.022589565565452458 0.013114612818494392 0.006275744300327318 -0.03960397370315754 0.013052788101695138 0.01877451926748904 0.046197406494431645 0.0031742839980457814 -0.036933597702957656 -0.035538147934378594 0.007131705150911026 -0.01026040466986946 -0.06385242293639133 0.0050646978925917635 -0.0051618661678169905 0.046197406494431645 0.0031742839980457814 -0.036933597702957656 0.02210769969178962 0.018696618539921488 -0.0627464449910404 0.0024744591505121982 0.017805331988378484 -0.0864459982369747 -0.09673465594663119 0.00566370823023633 -0.05972253809186315 -0.10255034751593312 0.004044023063325911 -0.024037034367926976 -0.055470874909895454 0.013743943996142758 0.029106426669799283 -0.08737293581322209 0.006752809717407089 0.00247194800455227 -0.01974328020147429 0.02323830314983589 -0.10097011653631036 -0.05547545622352903 0.001696687931448615 -0.03566328041725626 0.04019447470054272 -0.004686740926012824 -0.04184958569739146 -0.04790277193965214 0.0005136161423907337 -0.06253557473448873 -0.08058167545353678 -0.003495739266994166 -0.06475264284552637 0.04019447470054272 -0.004686740926012824 -0.04184958569739146 -0.05446596669129476 -0.00320777757506965 -0.038492044883074436 -0.08564863907593208 -0.005069106093450516 -0.032897536365096736 0.04019447470054272 -0.004686740926012824 -0.04184958569739146 -0.02859249735934138 0.005253587894435786 0.0013597563058935155 -0.04560690549704646 0.005191763177636532 0.013858531273055238 0.04019447470054272 -0.004686740926012824 -0.04184958569739146 -0.04154107972826752 -0.0007293197731475789 -0.015176392664303262 -0.06985535473028026 -0.0027963270314668416 -0.010077854162250793 0.04019447470054272 -0.004686740926012824 -0.04184958569739146 0.016104767897900697 0.010835593615862883 -0.0676624329854742 -0.0035284726433767247 0.009944307064319879 -0.09136198623140851 -0.10273758774052011 -0.002197316693822275 -0.06463852608629694 -0.10855327930982203 -0.003817001860732694 -0.02895302236236078 -0.06147380670378438 0.005882919072084153 0.02419043867536548 -0.093375867607111 -0.0011082152066515167 -0.002444039989881533 -0.025746211995363213 0.015377278225777285 -0.10588610453074415 -0.04463091976386453 -0.0005406636418479787 -0.039333349204650446 0.05103901116020722 -0.006924092499309417 -0.04551965448478564 -0.03705823547998764 -0.00172373543090586 -0.06620564352188292 -0.06973713899387228 -0.005733090840290759 -0.06842271163292055 0.05103901116020722 -0.006924092499309417 -0.04551965448478564 -0.043621430231630266 -0.005445129148366244 -0.04216211367046862 -0.07480410261626758 -0.0073064576667471095 -0.03656760515249092 0.05103901116020722 -0.006924092499309417 -0.04551965448478564 -0.017747960899676885 0.003016236321139193 -0.0023103124815006676 -0.03476236903738197 0.002954411604339938 0.010188462485661055 0.05103901116020722 -0.006924092499309417 -0.04551965448478564 -0.03069654326860302 -0.0029666713464441725 -0.018846461451697445 -0.05901081827061576 -0.005033678604763435 -0.013747922949644976 0.05103901116020722 -0.006924092499309417 -0.04551965448478564 0.026949304357565193 0.00859824204256629 -0.07133250177286837 0.007316063816287771 0.007706955491023285 -0.09503205501880269 -0.09189305128085562 -0.004434668267118869 -0.06830859487369113 -0.09770874285015754 -0.0060543534340292875 -0.032623091149754965 -0.05062927024411988 0.0036455674987875596 0.020520369887971297 -0.08253133114744651 -0.0033455667799481103 -0.006114108777275716 -0.014901675535698718 0.01313992665248069 -0.10955617331813833 -0.04134350738093897 0.008160737957554998 -0.03316142524294323 0.05432642354313278 0.0017773091000935597 -0.039347730523078425 -0.03377082309706208 0.006977666168497117 -0.060033719560175704 -0.06644972661094672 0.0029683107591122176 -0.06225078767121334 0.05432642354313278 0.0017773091000935597 -0.039347730523078425 -0.040334017848704704 0.0032562724510367333 -0.0359901897087614 -0.07151669023334202 0.0013949439326558675 -0.0303956811907837 0.05432642354313278 0.0017773091000935597 -0.039347730523078425 -0.014460548516751322 0.01171763792054217 0.003861611480206549 -0.031474956654456404 0.011655813203742916 0.016360386447368272 0.05432642354313278 0.0017773091000935597 -0.039347730523078425 -0.02740913088567746 0.0057347302529588045 -0.012674537489990229 -0.055723405887690196 0.0036677229946395417 -0.00757599898793776 0.05432642354313278 0.0017773091000935597 -0.039347730523078425 0.030236716740490756 0.017299643641969266 -0.06516057781116116 0.010603476199213334 0.016408357090426262 -0.08886013105709548 -0.08860563889793005 0.004266733332284108 -0.06213667091198392 -0.09442133046723197 0.0026470481653736895 -0.026451167188047745 -0.04734185786119432 0.012346969098190537 0.026692293849678514 -0.07924391876452094 0.005355834819454867 5.781518443150058e-05 -0.011614263152773155 0.021841328251883667 -0.10338424935643112 -0.0939544016946853 0.023132237794174476 -0.016208760853090445 0.0017155292293864477 0.016748808936713037 -0.022395066133225637 -0.08638171741080841 0.021949166005116594 -0.043081055170322916 -0.11906062092469305 0.017939810595731694 -0.045298123281360556 0.0017155292293864477 0.016748808936713037 -0.022395066133225637 -0.09294491216245103 0.01822777228765621 -0.01903752531890862 -0.12412758454708836 0.016366443769275346 -0.013443016800930916 0.0017155292293864477 0.016748808936713037 -0.022395066133225637 -0.06707144283049765 0.026689137757161648 0.020814275870059334 -0.08408585096820273 0.026627313040362394 0.03331305083722105 0.0017155292293864477 0.016748808936713037 -0.022395066133225637 -0.08002002519942379 0.02070623008957828 0.004278126899862556 -0.10833430020143653 0.01863922283125902 0.009376665401915025 0.0017155292293864477 0.016748808936713037 -0.022395066133225637 -0.022374177573255577 0.03227114347858874 -0.04820791342130838 -0.042007418114533 0.03137985692704574 -0.07190746666724268 -0.14121653321167638 0.019238233168903586 -0.04518400652213113 -0.1470322247809783 0.017618548001993167 -0.00949850279819496 -0.09995275217494065 0.027318468934810013 0.043644958239531295 -0.1318548130782673 0.020327334656074343 0.017010479574284285 -0.0642251574665195 0.03681282808850315 -0.08643158496657834 -0.10147046620524137 0.02303491890589201 -0.018512376117901262 -0.005800535281169625 0.01665149004843057 -0.024698681398036458 -0.09389778192136448 0.021851847116834126 -0.04538467043513374 -0.12657668543524914 0.017842491707449226 -0.04760173854617137 -0.005800535281169625 0.01665149004843057 -0.024698681398036458 -0.1004609766730071 0.018130453399373744 -0.02134114058371944 -0.13164364905764442 0.01626912488099288 -0.01574663206574173 -0.005800535281169625 0.01665149004843057 -0.024698681398036458 -0.07458750734105372 0.02659181886887918 0.018510660605248516 -0.0916019154787588 0.026529994152079926 0.03100943557241024 -0.005800535281169625 0.01665149004843057 -0.024698681398036458 -0.08753608970997986 0.020608911201295814 0.0019745116350517386 -0.1158503647119926 0.018541903942976553 0.007073050137104207 -0.005800535281169625 0.01665149004843057 -0.024698681398036458 -0.02989024208381165 0.03217382459030628 -0.050511528686119196 -0.04952348262508907 0.03128253803876327 -0.0742110819320535 -0.14873259772223246 0.01914091428062112 -0.04748762178694195 -0.15454828929153439 0.0175212291137107 -0.011802118063005778 -0.10746881668549672 0.027221150046527545 0.04134134297472048 -0.13937087758882336 0.020230015767791876 0.014706864309473468 -0.07174122197707555 0.03671550920022068 -0.08873520023138914 0.03205620574448507 0.01339856545258855 0.030589850800290804 0.1277261366685568 0.007015136595127111 0.024403545520155612 0.03962889002836196 0.012215493663530669 0.0037175564830583298 0.00694998651447732 0.008206138254145769 0.0015004883720206967 0.1277261366685568 0.007015136595127111 0.024403545520155612 0.033065695276719334 0.008494099946070284 0.027761086334472627 0.0018830228920820175 0.006632771427689419 0.033355594852450335 0.1277261366685568 0.007015136595127111 0.024403545520155612 0.05893916460867271 0.016955465415575723 0.06761288752344058 0.041924756470967633 0.016893640698776465 0.08011166249060231 0.1277261366685568 0.007015136595127111 0.024403545520155612 0.04599058223974658 0.010972557747992356 0.05107673855324381 0.017676307237733842 0.008905550489673092 0.05617527705529628 0.1277261366685568 0.007015136595127111 0.024403545520155612 0.10363642986591479 0.022537471137002815 -0.0014093017679271298 0.08400318932463738 0.02164618458545981 -0.025108855013861436 -0.01520592577250602 0.00950456082731766 0.0016146051312501165 -0.021021617341807936 0.00788487566040724 0.03730010885518629 0.026057855264229716 0.017584796593224088 0.09044356989291255 -0.005844205639096912 0.010593662314488418 0.06380909122766554 0.06178544997265088 0.02707915574691722 -0.03963297331319708 0.02731894975233691 0.014180623928058222 0.0299294663069753 0.12298888067640866 0.0077971950705967834 0.023743161026840105 0.0348916340362138 0.012997552139000342 0.0030571719897428268 0.002212730522329162 0.008988196729615441 0.0008401038787051937 0.12298888067640866 0.0077971950705967834 0.023743161026840105 0.02832843928457118 0.009276158421539957 0.027100701841157124 -0.0028542331000661406 0.007414829903159091 0.03269521035913483 0.12298888067640866 0.0077971950705967834 0.023743161026840105 0.05420190861652456 0.017737523891045395 0.06695250303012508 0.037187500478819475 0.017675699174246138 0.0794512779972868 0.12298888067640866 0.0077971950705967834 0.023743161026840105 0.04125332624759842 0.011754616223462029 0.0504163540599283 0.012939051245585684 0.009687608965142765 0.05551489256198077 0.12298888067640866 0.0077971950705967834 0.023743161026840105 0.09889917387376664 0.023319529612472488 -0.002069686261242633 0.07926593333248921 0.022428243060929484 -0.02576923950717694 -0.019943181764654178 0.010286619302787332 0.0009542206379346135 -0.025758873333956094 0.008666934135876913 0.03663972436187078 0.021320599272081558 0.01836685506869376 0.08978318539959704 -0.01058146163124507 0.011375720789958091 0.06314870673435002 0.057048193980502725 0.027861214222386892 -0.04029335780651259 -0.08104833445019592 0.004715895248047667 0.048767190475192235 0.014621596473875828 -0.0016675336094137717 0.04258088519505704 -0.07347565016631903 0.0035328234589897855 0.02189489615795976 -0.10615455368020367 -0.0004765319503951138 0.019677828046922127 0.014621596473875828 -0.0016675336094137717 0.04258088519505704 -0.08003884491796165 -0.0001885702584705981 0.04593842600937406 -0.11122151730259897 -0.002049898776851464 0.05153293452735176 0.014621596473875828 -0.0016675336094137717 0.04258088519505704 -0.05416537558600827 0.008272795211034838 0.085790227198342 -0.07117978372371335 0.008210970494235584 0.09828900216550374 0.014621596473875828 -0.0016675336094137717 0.04258088519505704 -0.06711395795493441 0.002289887543451473 0.06925407822814524 -0.09542823295694715 0.00022288028513221033 0.0743526167301977 0.014621596473875828 -0.0016675336094137717 0.04258088519505704 -0.009468110328766197 0.013854800932461935 0.0167680379069743 -0.02910135087004362 0.01296351438091893 -0.006931515338960005 -0.128310465967187 0.0008218906227767768 0.019791944806151547 -0.13412615753648893 -0.0007977945441336419 0.05547744853008772 -0.08704668493045127 0.008902126388683205 0.10862090956781398 -0.1189487458337779 0.0019109921099475353 0.08198643090256696 -0.05131909022203011 0.018396485542376335 -0.021455633638295654 -0.06757339717505705 0.0005387604038382308 0.05735068010210748 0.028096533749014704 -0.0058446684536232075 0.05116437482197229 -0.060000712891180155 -0.0006443113852196505 0.03047838578487501 -0.0926796164050648 -0.00465366679460455 0.028261317673837376 0.028096533749014704 -0.0058446684536232075 0.05116437482197229 -0.06656390764282277 -0.004365705102680034 0.05452191563628931 -0.09774658002746009 -0.0062270336210609005 0.06011642415426701 0.028096533749014704 -0.0058446684536232075 0.05116437482197229 -0.040690438310869395 0.004095660366825403 0.09437371682525726 -0.05770484644857448 0.004033835650026147 0.10687249179241898 0.028096533749014704 -0.0058446684536232075 0.05116437482197229 -0.053639020679795535 -0.0018872473007579631 0.07783756785506049 -0.08195329568180827 -0.003954254559077226 0.08293610635711296 0.028096533749014704 -0.0058446684536232075 0.05116437482197229 0.00400682694637268 0.009677666088252499 0.02535152753388955 -0.015626413594904742 0.008786379536709495 0.0016519742879552435 -0.11483552869204813 -0.0033552442214326594 0.028375434433066796 -0.12065122026135006 -0.004974929388343078 0.06406093815700296 -0.0735717476553124 0.0047249915444737695 0.11720439919472922 -0.10547380855863903 -0.002266142734261901 0.0905699205294822 -0.03784415294689123 0.014219350698166901 -0.012872144011380406 -0.09123961609241592 0.007888128420650576 0.04272060430417041 0.004430314831655832 0.0015046995631891377 0.03653429902403522 -0.08366693180853903 0.006705056631592695 0.01584830998693794 -0.11634583532242367 0.0026957012222077956 0.013631241875900306 0.004430314831655832 0.0015046995631891377 0.03653429902403522 -0.09023012656018164 0.0029836629141323113 0.03989183983835224 -0.12141279894481896 0.0011223343957514455 0.04548634835632994 0.004430314831655832 0.0015046995631891377 0.03653429902403522 -0.06435665722822827 0.011445028383637748 0.07974364102732019 -0.08137106536593335 0.011383203666838492 0.09224241599448191 0.004430314831655832 0.0015046995631891377 0.03653429902403522 -0.07730523959715441 0.0054621207160543825 0.06320749205712342 -0.10561951459916714 0.0033951134577351197 0.06830603055917589 0.004430314831655832 0.0015046995631891377 0.03653429902403522 -0.019659391970986193 0.017027034105064842 0.01072145173595248 -0.039292632512263614 0.01613574755352184 -0.012978101509981826 -0.138501747609407 0.003994123795379686 0.013745358635129726 -0.14431743917870893 0.0023744386284692675 0.049430862359065894 -0.09723796657267127 0.012074359561286115 0.10257432339679215 -0.1291400274759979 0.005083225282550445 0.07593984473154514 -0.0615103718642501 0.021568718714979247 -0.027502219809317476 -0.09836578035120272 0.011243537045830577 0.03831590181931778 -0.0026958494271309696 0.004860108188369138 0.032129596539182584 -0.09079309606732583 0.010060465256772696 0.011443607502085305 -0.12347199958121047 0.006051109847387796 0.009226539391047672 -0.0026958494271309696 0.004860108188369138 0.032129596539182584 -0.09735629081896845 0.006339071539312312 0.035487137353499607 -0.12853896320360578 0.004477743020931446 0.04108164587147731 -0.0026958494271309696 0.004860108188369138 0.032129596539182584 -0.07148282148701507 0.014800437008817748 0.07533893854246757 -0.08849722962472015 0.014738612292018494 0.08783771350962928 -0.0026958494271309696 0.004860108188369138 0.032129596539182584 -0.08443140385594121 0.008817529341234382 0.05880278957227078 -0.11274567885795395 0.00675052208291512 0.06390132807432325 -0.0026958494271309696 0.004860108188369138 0.032129596539182584 -0.026785556229772994 0.020382442730244844 0.006316749251099846 -0.046418796771050416 0.01949115617870184 -0.01738280399483446 -0.1456279118681938 0.007349532420559687 0.009340656150277092 -0.15144360343749572 0.005729847253649268 0.04502615987421327 -0.10436413083145807 0.015429768186466115 0.09816962091193952 -0.13626619173478471 0.008438633907730446 0.07153514224669251 -0.06863653612303691 0.024924127340159245 -0.03190692229417011 -0.10598411451864301 0.013512046569682806 0.037208517353875425 -0.010314183594571258 0.007128617712221367 0.03102221207374023 -0.09841143023476612 0.012328974780624925 0.010336223036642951 -0.13109033374865076 0.008319619371240025 0.008119154925605318 -0.010314183594571258 0.007128617712221367 0.03102221207374023 -0.10497462498640873 0.008607581063164541 0.03437975288805725 -0.13615729737104607 0.006746252544783675 0.03997426140603495 -0.010314183594571258 0.007128617712221367 0.03102221207374023 -0.07910115565445536 0.01706894653266998 0.0742315540770252 -0.09611556379216044 0.01700712181587072 0.08673032904418693 -0.010314183594571258 0.007128617712221367 0.03102221207374023 -0.0920497380233815 0.011086038865086613 0.057695405106828426 -0.12036401302539423 0.009019031606767348 0.0627939436088809 -0.010314183594571258 0.007128617712221367 0.03102221207374023 -0.03440389039721328 0.022650952254097072 0.0052093647856574915 -0.054037130938490704 0.021759665702554068 -0.018490188460276814 -0.15324624603563408 0.009618041944411916 0.008233271684834738 -0.159061937604936 0.007998356777501497 0.04391877540877091 -0.11198246499889836 0.017698277710318344 0.09706223644649717 -0.143884525902225 0.010707143431582675 0.07042775778125016 -0.0762548702904772 0.027192636864011476 -0.03301430675961246 -0.01872968376899106 -0.009661927731376585 0.01907793562228529 0.07694024715508069 -0.016045356588838024 0.012891630342150096 -0.01115699948511417 -0.010844999520434466 -0.007794358694947184 -0.04383590299899881 -0.014854354929819366 -0.010011426805984817 0.07694024715508069 -0.016045356588838024 0.012891630342150096 -0.01772019423675679 -0.01456639323789485 0.016249171156467113 -0.048902866621394106 -0.016427721756275715 0.02184367967444482 0.07694024715508069 -0.016045356588838024 0.012891630342150096 0.008153275095196588 -0.006105027768389414 0.05610097234543507 -0.008861133042508492 -0.006166852485188668 0.0685997473125968 0.07694024715508069 -0.016045356588838024 0.012891630342150096 -0.004795307273729546 -0.01208793543597278 0.03956482337523829 -0.03310958227574229 -0.01415494269429204 0.04466336187729076 0.07694024715508069 -0.016045356588838024 0.012891630342150096 0.05285054035243866 -0.0005230220469623174 -0.012921216945932644 0.03321729981116124 -0.0014143085985053212 -0.03662077019186695 -0.06599181528598215 -0.013555932356647475 -0.009897310046755398 -0.07180750685528406 -0.015175617523557894 0.025788193677180774 -0.02472803424924641 -0.005475696590741047 0.07893165471490704 -0.05663009515257304 -0.012466830869476716 0.05229717604966002 0.010999560459174756 0.004018662562952085 -0.0511448884912026 -0.04250387307917528 -0.00930000120431382 0.016347302046349446 0.05316605784489647 -0.015683430061775257 0.010160996766214252 -0.03493118879529839 -0.0104830729933717 -0.010524992270883028 -0.06761009230918302 -0.0144924284027566 -0.012742060381920661 0.05316605784489647 -0.015683430061775257 0.010160996766214252 -0.041494383546941016 -0.014204466710832085 0.01351853758053127 -0.07267705593157833 -0.01606579522921295 0.019113046098508977 0.05316605784489647 -0.015683430061775257 0.010160996766214252 -0.015620914214987635 -0.005743101241326648 0.053370338769499225 -0.03263532235269272 -0.005804925958125903 0.06586911373666095 0.05316605784489647 -0.015683430061775257 0.010160996766214252 -0.02856949658391377 -0.011726008908910013 0.03683418979930245 -0.05688377158592651 -0.013793016167229277 0.041932728301354916 0.05316605784489647 -0.015683430061775257 0.010160996766214252 0.029076351042254443 -0.00016109551989955222 -0.015651850521868488 0.009443110500977021 -0.001052382071442556 -0.039351403767802794 -0.08976600459616638 -0.01319400582958471 -0.012627943622691241 -0.09558169616546829 -0.014813690996495129 0.02305756010124493 -0.04850222355943063 -0.0051137700636782815 0.07620102113897119 -0.08040428446275727 -0.012104904342413951 0.049566542473724176 -0.012774628851009467 0.0043805890900148504 -0.05387552206713844 -0.056280640549578695 -0.00836354138778323 0.004216629130343373 0.039389290374493055 -0.014746970245244668 -0.0019696761497918214 -0.048707956265701804 -0.00954661317684111 -0.0226556651868891 -0.08138685977958644 -0.01355596858622601 -0.024872733297926733 0.039389290374493055 -0.014746970245244668 -0.0019696761497918214 -0.05527115101734443 -0.013268006894301495 0.0013878646645251965 -0.08645382340198174 -0.015129335412682361 0.006982373182502902 0.039389290374493055 -0.014746970245244668 -0.0019696761497918214 -0.029397681685391048 -0.004806641424796058 0.04123966585349315 -0.04641208982309613 -0.004868466141595313 0.053738440820654876 0.039389290374493055 -0.014746970245244668 -0.0019696761497918214 -0.042346264054317184 -0.010789549092379423 0.024703516883296375 -0.07066053905632992 -0.012856556350698687 0.029802055385348844 0.039389290374493055 -0.014746970245244668 -0.0019696761497918214 0.01529958357185103 0.000775364296631038 -0.02778252343787456 -0.0043336569694263916 -0.00011592225491196574 -0.051482076683808865 -0.10354277206656978 -0.01225754601305412 -0.024758616538697313 -0.1093584636358717 -0.013877231179964538 0.010926887185238857 -0.062278991029834044 -0.004177310247147691 0.06407034822296512 -0.09418105193316068 -0.01116844452588336 0.037435869557718104 -0.02655139632141288 0.005317048906545441 -0.06600619498314451 -0.0610921569747233 -0.016437727462933732 -0.02495329009167761 0.03457777394934845 -0.02282115632039517 -0.031139595371812802 -0.053519472690846406 -0.017620799251991615 -0.05182558440891008 -0.08619837620473104 -0.021630154661376515 -0.05404265251994772 0.03457777394934845 -0.02282115632039517 -0.031139595371812802 -0.06008266744248903 -0.021342192969451997 -0.027782054557495786 -0.09126533982712634 -0.023203521487832862 -0.02218754603951808 0.03457777394934845 -0.02282115632039517 -0.031139595371812802 -0.034209198110535646 -0.01288082749994656 0.012069746631472169 -0.05122360624824073 -0.012942652216745815 0.024568521598633892 0.03457777394934845 -0.02282115632039517 -0.031139595371812802 -0.047157780479461786 -0.018863735167529927 -0.004466402338724609 -0.07547205548147452 -0.020930742425849188 0.0006321361633278601 0.03457777394934845 -0.02282115632039517 -0.031139595371812802 0.010488067146706428 -0.007298821778519465 -0.05695244265989555 -0.009145173394570993 -0.008190108330062468 -0.08065199590582985 -0.10835428849171438 -0.020331732088204622 -0.053928535760718294 -0.11416998006101631 -0.02195141725511504 -0.018243032036782125 -0.06709050745497865 -0.012251496322298194 0.03490042900094413 -0.09899256835830528 -0.019242630601033865 0.00826595033569712 -0.03136291274655748 -0.002757137168605062 -0.0951761142051655 -0.07167752467846021 -0.0167247700417304 -0.0232142058158769 0.02399240624561154 -0.02310819889919184 -0.02940051109601209 -0.06410484039458332 -0.017907841830788283 -0.05008650013310938 -0.09678374390846796 -0.02191719724017318 -0.052303568244147 0.02399240624561154 -0.02310819889919184 -0.02940051109601209 -0.07066803514622594 -0.021629235548248665 -0.026042970281695076 -0.10185070753086325 -0.02349056406662953 -0.020448461763717368 0.02399240624561154 -0.02310819889919184 -0.02940051109601209 -0.04479456581427256 -0.013167870078743229 0.01380883090727288 -0.061808973951977646 -0.013229694795542483 0.026307605874434602 0.02399240624561154 -0.02310819889919184 -0.02940051109601209 -0.0577431481831987 -0.019150777746326595 -0.002727318062923898 -0.08605742318521144 -0.021217785004645856 0.0023712204391285706 0.02399240624561154 -0.02310819889919184 -0.02940051109601209 -9.730055703048579e-05 -0.007585864357316133 -0.05521335838409483 -0.019730541098307908 -0.008477150908859137 -0.07891291163002914 -0.1189396561954513 -0.02061877466700129 -0.05218945148491759 -0.12475534776475322 -0.02223845983391171 -0.016503947760981415 -0.07767587515871556 -0.012538538901094862 0.03663951327674485 -0.10957793606204219 -0.019529673179830533 0.010005034611497831 -0.041948280450294397 -0.00304417974740173 -0.09343702992936478 -0.06595583756218676 -0.01676432528224154 -0.014335506300764916 0.02971409336188499 -0.023147754139702978 -0.02052181158090011 -0.05838315327830987 -0.01794739707129942 -0.04120780061799739 -0.0910620567921945 -0.02195675248068432 -0.043424868729035025 0.02971409336188499 -0.023147754139702978 -0.02052181158090011 -0.06494634802995249 -0.021668790788759804 -0.01716427076658309 -0.09612902041458982 -0.02353011930714067 -0.011569762248605387 0.02971409336188499 -0.023147754139702978 -0.02052181158090011 -0.03907287869799911 -0.013207425319254368 0.02268753042238486 -0.05608728683570419 -0.013269250036053622 0.035186305389546584 0.02971409336188499 -0.023147754139702978 -0.02052181158090011 -0.05202146106692525 -0.019190332986837734 0.006151381452188085 -0.08033573606893799 -0.021257340245156995 0.011249919954240553 0.02971409336188499 -0.023147754139702978 -0.02052181158090011 0.0056243865592429665 -0.007625419597827272 -0.04633465886898285 -0.014008853982034455 -0.008516706149370275 -0.07003421211491716 -0.11321796907917785 -0.02065832990751243 -0.043310751969805605 -0.11903366064847976 -0.022278015074422848 -0.007625248245869432 -0.07195418804244211 -0.012578094141606001 0.045518212791856826 -0.10385624894576874 -0.019569228420341672 0.018883734126609812 -0.036226593334020944 -0.003083734987912869 -0.0845583304142528 -0.057837749449887815 -0.015820943853027618 -0.01777364974027433 0.037832181474183935 -0.022204372710489056 -0.023959955020409526 -0.050265065166010925 -0.0170040156420855 -0.044645944057506805 -0.08294396867989556 -0.0210133710514704 -0.04686301216854444 0.037832181474183935 -0.022204372710489056 -0.023959955020409526 -0.05682825991765355 -0.020725409359545883 -0.020602414206092507 -0.08801093230229087 -0.022586737877926748 -0.015007905688114801 0.037832181474183935 -0.022204372710489056 -0.023959955020409526 -0.03095479058570017 -0.012264043890040446 0.019249386982875448 -0.04796919872340525 -0.0123258686068397 0.03174816195003717 0.037832181474183935 -0.022204372710489056 -0.023959955020409526 -0.043903372954626305 -0.018246951557623813 0.0027132380126786704 -0.07221764795663904 -0.020313958815943074 0.007811776514731139 0.037832181474183935 -0.022204372710489056 -0.023959955020409526 0.01374247467154191 -0.00668203816861335 -0.049772802308492264 -0.005890765869735512 -0.007573324720156354 -0.07347235555442658 -0.1050998809668789 -0.019714948478298508 -0.04674889540931502 -0.11091557253618081 -0.021334633645208927 -0.011063391685378846 -0.06383609993014316 -0.01163471271239208 0.04208006935234741 -0.0957381608334698 -0.01862584699112775 0.0154455906871004 -0.028108505221722 -0.0021403535586989476 -0.08799647385376222 -0.05591968685870062 -0.008016689153286724 -0.03667162167874801 0.03975024406537113 -0.014400118010748163 -0.042857926958883207 -0.04834700257482373 -0.009199760942344605 -0.06354391599598049 -0.08102590608870837 -0.013209116351729505 -0.06576098410701811 0.03975024406537113 -0.014400118010748163 -0.042857926958883207 -0.054910197326466355 -0.012921154659804989 -0.039500386144566184 -0.08609286971110366 -0.014782483178185854 -0.03390587762658848 0.03975024406537113 -0.014400118010748163 -0.042857926958883207 -0.029036727994512974 -0.004459789190299553 0.00035141504440176774 -0.046051136132218055 -0.004521613907098807 0.01285019001156349 0.03975024406537113 -0.014400118010748163 -0.042857926958883207 -0.04198531036343911 -0.010442696857882919 -0.01618473392579501 -0.07029958536545185 -0.01250970411620218 -0.011086195423742541 0.03975024406537113 -0.014400118010748163 -0.042857926958883207 0.015660537262729105 0.0011222165311275435 -0.06867077424696594 -0.003972703278548317 0.00023092997958453973 -0.09237032749290025 -0.10318181837569171 -0.011910693778557614 -0.0656468673477887 -0.10899750994499363 -0.013530378945468033 -0.029961363623852526 -0.06191803733895597 -0.0038304580126511858 0.023182097413873733 -0.0938200982422826 -0.010821592291386855 -0.0034523812513732807 -0.026190442630534806 0.005663901141041946 -0.10689444579223589 -0.05275954596073314 -0.01385656405124458 -0.03243958850940264 0.04291038496333861 -0.02023999290870602 -0.03862589378953784 -0.045186861676856246 -0.01503963584030246 -0.05931188282663512 -0.07786576519074088 -0.019048991249687362 -0.06152895093767275 0.04291038496333861 -0.02023999290870602 -0.03862589378953784 -0.05175005642849887 -0.018761029557762845 -0.03526835297522082 -0.08293272881313618 -0.02062235807614371 -0.029673844457243113 0.04291038496333861 -0.02023999290870602 -0.03862589378953784 -0.02587658709654549 -0.010299664088257408 0.004583448213747135 -0.04289099523425057 -0.010361488805056662 0.017082223180908858 0.04291038496333861 -0.02023999290870602 -0.03862589378953784 -0.038825169465471626 -0.016282571755840775 -0.011952700756449643 -0.06713944446748436 -0.018349579014160036 -0.006854162254397174 0.04291038496333861 -0.02023999290870602 -0.03862589378953784 0.01882067816069659 -0.004717658366830312 -0.06443874107762057 -0.0008125623805808335 -0.005608944918373316 -0.08813829432355488 -0.10002167747772422 -0.01775056867651547 -0.06141483417844333 -0.10583736904702615 -0.01937025384342589 -0.02572933045450716 -0.058757896440988486 -0.009670332910609042 0.0274141305832191 -0.09065995734431512 -0.016661467189344713 0.0007796519179720865 -0.023030301732567322 -0.00017597375691590957 -0.10266241262289053 -0.043235910967584515 -0.01398117200547627 -0.034227198056711476 0.052434019956487235 -0.02036460086293771 -0.04041350333684667 -0.035663226683707624 -0.015164243794534151 -0.06109949237394395 -0.06834213019759226 -0.01917359920391905 -0.06331656048498158 0.052434019956487235 -0.02036460086293771 -0.04041350333684667 -0.04222642143535025 -0.018885637511994534 -0.03705596252252965 -0.07340909381998756 -0.020746966030375402 -0.03146145400455195 0.052434019956487235 -0.02036460086293771 -0.04041350333684667 -0.016352952103396868 -0.010424272042489099 0.0027958386664383023 -0.03336736024110195 -0.010486096759288355 0.015294613633600025 0.052434019956487235 -0.02036460086293771 -0.04041350333684667 -0.029301534472323004 -0.016407179710072464 -0.013740310303758475 -0.05761580947433574 -0.018474186968391728 -0.008641771801706007 0.052434019956487235 -0.02036460086293771 -0.04041350333684667 0.02834431315384521 -0.004842266321062003 -0.0662263506249294 0.008711072612567788 -0.005733552872605007 -0.08992590387086372 -0.0904980424845756 -0.017875176630747162 -0.06320244372575216 -0.09631373405387753 -0.01949486179765758 -0.027516940001815992 -0.049234261447839864 -0.009794940864840732 0.025626521035910267 -0.0811363223511665 -0.016786075143576402 -0.0010079576293367462 -0.0135066667394187 -0.0003005817111476003 -0.10445002217019936 -0.045705654914006015 -0.009099880970549819 -0.038848075862327136 0.049964276010065735 -0.015483309828011257 -0.04503438114246233 -0.038132970630129125 -0.0102829527596077 -0.06572037017955962 -0.07081187414401377 -0.0142923081689926 -0.06793743829059724 0.049964276010065735 -0.015483309828011257 -0.04503438114246233 -0.04469616538177175 -0.014004346477068084 -0.04167684032814531 -0.07587883776640907 -0.01586567499544895 -0.03608233181016761 0.049964276010065735 -0.015483309828011257 -0.04503438114246233 -0.018822696049818368 -0.005542981007562647 -0.0018250391391773577 -0.03583710418752345 -0.005604805724361902 0.010673735827984365 0.049964276010065735 -0.015483309828011257 -0.04503438114246233 -0.031771278418744504 -0.011525888675146014 -0.018361188109374135 -0.06008555342075724 -0.013592895933465274 -0.013262649607321667 0.049964276010065735 -0.015483309828011257 -0.04503438114246233 0.02587456920742371 3.902471386444881e-05 -0.07084722843054507 0.006241328666146288 -0.000852261837678555 -0.09454678167647937 -0.0929677864309971 -0.012993885595820709 -0.06782332153136783 -0.09878347800029902 -0.014613570762731128 -0.03213781780743165 -0.051704005394261364 -0.0049136498299142805 0.021005643230294607 -0.08360606629758799 -0.01190478410864995 -0.005628835434952406 -0.0159764106858402 0.0045807093237788515 -0.10907089997581502 -0.0452191709230091 0.0029419492081580517 0.06006783166477196 0.05045076000106265 -0.003441479649303387 0.053881526384636766 -0.03764648663913221 0.0017588774191001704 0.03319553734753949 -0.07032539015301685 -0.002250477990284729 0.030978469236501854 0.05045076000106265 -0.003441479649303387 0.053881526384636766 -0.04420968139077484 -0.0019625162983602134 0.05723906719895379 -0.07539235377541215 -0.003823844816741079 0.06283357571693149 0.05045076000106265 -0.003441479649303387 0.053881526384636766 -0.018336212058821456 0.006498849171145224 0.09709086838792175 -0.03535062019652654 0.006437024454345968 0.10958964335508346 0.05045076000106265 -0.003441479649303387 0.053881526384636766 -0.03128479442774759 0.0005159415035618578 0.08055471941772496 -0.05959906942976033 -0.001551065754757405 0.08565325791977743 0.05045076000106265 -0.003441479649303387 0.053881526384636766 0.026361053198420623 0.01208085489257232 0.028068679096554028 0.006727812657143201 0.011189568341029316 0.004369125850619722 -0.09248130244000019 -0.0009520554171128385 0.031092585995731274 -0.09829699400930211 -0.002571740584023257 0.06677808971966745 -0.05121752140326445 0.00712818034879359 0.1199215507573937 -0.08311958230659108 0.00013704607005792 0.09328707209214669 -0.015489926694843288 0.01662253950248672 -0.010154992448715927 -0.05214889848716937 0.006981184104510551 0.0531184382962495 0.04352103243690238 0.0005977552470491122 0.046932133016114305 -0.04457621420329248 0.005798112315452669 0.026246143979017027 -0.07725511771717712 0.0017887569060677701 0.024029075867979394 0.04352103243690238 0.0005977552470491122 0.046932133016114305 -0.05113940895493511 0.002076718597992286 0.05028967383043133 -0.08232208133957242 0.00021539007961142009 0.05588418234840903 0.04352103243690238 0.0005977552470491122 0.046932133016114305 -0.025265939622981726 0.010538084067497722 0.09014147501939929 -0.04228034776068681 0.010476259350698468 0.102640249986561 0.04352103243690238 0.0005977552470491122 0.046932133016114305 -0.03821452199190786 0.004555176399914357 0.0736053260492025 -0.0665287969939206 0.0024881691415950943 0.07870386455125497 0.04352103243690238 0.0005977552470491122 0.046932133016114305 0.019431325634260352 0.01612008978892482 0.021119285728031567 -0.00020191490701707004 0.015228803237381815 -0.0025802675179027387 -0.09941103000416046 0.0030871794792396608 0.024143192627208813 -0.10522672157346238 0.001467494312329242 0.05982869635114499 -0.05814724896742472 0.01116741524514609 0.11297215738887124 -0.09004930987075135 0.00417628096641042 0.08633767872362423 -0.02241965425900356 0.02066177439883922 -0.017104385817238388 -0.09931305103376066 -0.004734708697347767 -0.02043822441768362 -0.0036431201096889104 -0.011118137554809206 -0.026624529697818818 -0.09174036674988377 -0.0059177804864056485 -0.047310518734916096 -0.12441927026376841 -0.009927135895790548 -0.04952758684595373 -0.0036431201096889104 -0.011118137554809206 -0.026624529697818818 -0.09830356150152639 -0.009639174203866032 -0.0232669888835018 -0.1294862338861637 -0.011500502722246897 -0.01767248036552409 -0.0036431201096889104 -0.011118137554809206 -0.026624529697818818 -0.07243009216957301 -0.0011778087343605951 0.016584812305466157 -0.08944450030727809 -0.0012396334511598503 0.02908358727262788 -0.0036431201096889104 -0.011118137554809206 -0.026624529697818818 -0.08537867453849915 -0.007160716401943961 4.8663335269379104e-05 -0.11369294954051189 -0.009227723660263223 0.005147201837321848 -0.0036431201096889104 -0.011118137554809206 -0.026624529697818818 -0.027732826912330935 0.0044041969870665006 -0.052437376985901556 -0.04736606745360836 0.0035129104355234968 -0.07613693023183586 -0.14657518255075175 -0.008628713322618657 -0.04941347008672431 -0.15239087412005367 -0.010248398489529076 -0.013727966362788138 -0.10531140151401601 -0.0005484775567122287 0.03941549467493812 -0.13721346241734264 -0.007539611835447898 0.012781016009691108 -0.06958380680559484 0.008945881596980903 -0.09066104853117152 -0.10595975787234334 -0.003846872693077329 -0.016604952024566848 -0.010289826948271588 -0.010230301550538768 -0.022791257304702044 -0.09838707358846645 -0.00502994448213521 -0.04347724634179932 -0.13106597710235107 -0.00903929989152011 -0.045694314452836955 -0.010289826948271588 -0.010230301550538768 -0.022791257304702044 -0.10495026834010907 -0.008751338199595594 -0.019433716490385024 -0.13613294072474638 -0.01061266671797646 -0.013839207972407319 -0.010289826948271588 -0.010230301550538768 -0.022791257304702044 -0.07907679900815569 -0.00028997273009015705 0.02041808469858293 -0.09609120714586077 -0.00035179744688941224 0.032916859665744654 -0.010289826948271588 -0.010230301550538768 -0.022791257304702044 -0.09202538137708183 -0.006272880397673522 0.003881935728386153 -0.12033965637909456 -0.008339887655992785 0.008980474230438622 -0.010289826948271588 -0.010230301550538768 -0.022791257304702044 -0.03437953375091361 0.005292032991336938 -0.04860410459278478 -0.054012774292191035 0.004400746439793934 -0.07230365783871909 -0.15322188938933443 -0.0077408773183482195 -0.045580197693607535 -0.15903758095863635 -0.009360562485258638 -0.009894693969671364 -0.11195810835259869 0.00033935844755820935 0.043248767068054896 -0.14386016925592532 -0.006651775831177461 0.016614288402807882 -0.07623051364417752 0.009833717601251341 -0.08682777613805473 -0.11358603870923398 -0.0011378466803537662 -0.014391402120096984 -0.017916107785162227 -0.007521275537815205 -0.020577707400232178 -0.10601335442535709 -0.0023209184694116475 -0.04126369643732946 -0.13869225793924173 -0.006330273878796547 -0.04348076454836709 -0.017916107785162227 -0.007521275537815205 -0.020577707400232178 -0.1125765491769997 -0.006042312186872031 -0.01722016658591516 -0.14375922156163704 -0.007903640705252898 -0.011625658067937455 -0.017916107785162227 -0.007521275537815205 -0.020577707400232178 -0.08670307984504633 0.0024190532826334054 0.022631634603052793 -0.1037174879827514 0.0023572285658341506 0.035130409570214516 -0.017916107785162227 -0.007521275537815205 -0.020577707400232178 -0.09965166221397247 -0.00356385438494996 0.006095485632856017 -0.1279659372159852 -0.005630861643269223 0.011194024134908486 -0.017916107785162227 -0.007521275537815205 -0.020577707400232178 -0.04200581458780425 0.008001059004060502 -0.04639055468831492 -0.061639055129081674 0.007109772452517498 -0.07009010793424922 -0.16084817022622505 -0.005031851305624656 -0.04336664778913767 -0.16666386179552697 -0.006651536472535075 -0.0076811440652015 -0.11958438918948933 0.0030483844602817722 0.04546231697252476 -0.15148645009281597 -0.003942749818453898 0.018827838307277744 -0.08385679448106817 0.012542743613974904 -0.08461422623358487 -0.07843900092419225 -0.014652474602814436 0.005013369268708173 0.017230929999879505 -0.021035903460275875 -0.001172936011427021 -0.07086631664031535 -0.01583554639187232 -0.0218589250485243 -0.1035452201542 -0.01984490180125722 -0.024075993159561934 0.017230929999879505 -0.021035903460275875 -0.001172936011427021 -0.07742951139195797 -0.0195569401093327 0.002184604802889997 -0.10861218377659529 -0.021418268627713566 0.007779113320867703 0.017230929999879505 -0.021035903460275875 -0.001172936011427021 -0.051556042060004595 -0.011095574639827264 0.04203640599185795 -0.06857045019770967 -0.011157399356626518 0.05453518095901967 0.017230929999879505 -0.021035903460275875 -0.001172936011427021 -0.06450462442893073 -0.01707848230741063 0.025500257021661175 -0.09281889943094347 -0.01914548956572989 0.030598795523713643 0.017230929999879505 -0.021035903460275875 -0.001172936011427021 -0.00685877680276252 -0.005513568918400168 -0.02698578329950976 -0.026492017344039942 -0.006404855469943172 -0.05068533654544407 -0.12570113244118333 -0.018546479228085326 -0.023961876400332514 -0.13151682401048526 -0.020166164394995745 0.011723627323603658 -0.0844373514044476 -0.010466243462178898 0.06486708836132991 -0.11633941230777423 -0.01745737774091457 0.0382326096960829 -0.04870975669602643 -0.0009718843084857657 -0.06520945484477972 -0.0922933124193738 -0.014913669259471846 0.007654335744946685 0.003376618504697948 -0.021297098116933283 0.0014680304648114909 -0.08472062813549691 -0.016096741048529727 -0.01921795857228579 -0.11739953164938155 -0.020106096457914627 -0.02143502668332342 0.003376618504697948 -0.021297098116933283 0.0014680304648114909 -0.09128382288713953 -0.019818134765990113 0.004825571279128509 -0.12246649527177686 -0.021679463284370978 0.010420079797106215 0.003376618504697948 -0.021297098116933283 0.0014680304648114909 -0.06541035355518615 -0.011356769296484675 0.044677372468096464 -0.08242476169289123 -0.01141859401328393 0.05717614743525819 0.003376618504697948 -0.021297098116933283 0.0014680304648114909 -0.07835893592411229 -0.01733967696406804 0.028141223497899687 -0.10667321092612503 -0.019406684222387303 0.033239761999952155 0.003376618504697948 -0.021297098116933283 0.0014680304648114909 -0.020713088297944077 -0.005774763575057578 -0.024344816823271248 -0.0403463288392215 -0.006666050126600582 -0.048044370069205554 -0.13955544393636488 -0.018807673884742734 -0.021320909924094 -0.1453711355056668 -0.020427359051653153 0.01436459379984217 -0.09829166289962915 -0.010727438118836308 0.06750805483756843 -0.1301937238029558 -0.017718572397571977 0.040873576172321416 -0.062564068191208 -0.0012330789651431757 -0.0625684883685412 -0.09120332406734544 -0.015852002640307353 0.012446122503392481 0.004466606856726313 -0.02223543149776879 0.006259817223257287 -0.08363063978346855 -0.017035074429365235 -0.014426171813839993 -0.11630954329735319 -0.021044429838750135 -0.016643239924877627 0.004466606856726313 -0.02223543149776879 0.006259817223257287 -0.09019383453511116 -0.020756468146825618 0.009617358037574304 -0.1213765069197485 -0.022617796665206483 0.01521186655555201 0.004466606856726313 -0.02223543149776879 0.006259817223257287 -0.06432036520315779 -0.012295102677320181 0.049469159226542256 -0.08133477334086286 -0.012356927394119435 0.061967934193703986 0.004466606856726313 -0.02223543149776879 0.006259817223257287 -0.07726894757208393 -0.018278010344903547 0.032933010256345485 -0.10558322257409666 -0.02034501760322281 0.038031548758397954 0.004466606856726313 -0.02223543149776879 0.006259817223257287 -0.019623099945915712 -0.006713096955893085 -0.019553030064825453 -0.039256340487193134 -0.007604383507436089 -0.04325258331075976 -0.13846545558433654 -0.019746007265578243 -0.016529123165648207 -0.14428114715363843 -0.02136569243248866 0.019156380558287965 -0.09720167454760079 -0.011665771499671814 0.07229984159601423 -0.1291037354509274 -0.018656905778407486 0.045665362930767214 -0.06147407983917962 -0.0021714123459786825 -0.057776701610095405 -0.07730194600131951 -0.014765786395345228 0.00787015254463082 0.01836798492275224 -0.021149215252806667 0.0016838472644956255 -0.06972926171744262 -0.01594885818440311 -0.019002141772601656 -0.10240816523132726 -0.019958213593788007 -0.02121920988363929 0.01836798492275224 -0.021149215252806667 0.0016838472644956255 -0.07629245646908524 -0.019670251901863493 0.005041388078812643 -0.10747512885372257 -0.021531580420244358 0.010635896596790349 0.01836798492275224 -0.021149215252806667 0.0016838472644956255 -0.05041898713713186 -0.011208886432358057 0.044893189267780596 -0.06743339527483694 -0.01127071114915731 0.05739196423494232 0.01836798492275224 -0.021149215252806667 0.0016838472644956255 -0.063367569506058 -0.017191794099941423 0.02835704029758382 -0.09168184450807074 -0.019258801358260684 0.03345557879963629 0.01836798492275224 -0.021149215252806667 0.0016838472644956255 -0.005721721879889785 -0.005626880710930961 -0.024129000023587116 -0.025354962421167207 -0.0065181672624739645 -0.04782855326952142 -0.1245640775183106 -0.01865979102061612 -0.02110509312440987 -0.1303797690876125 -0.020279476187526537 0.014580410599526304 -0.08330029648157486 -0.01057955525470969 0.06772387163725256 -0.11520235738490149 -0.01757068953344536 0.04108939297200555 -0.047572701773153696 -0.001085196101016558 -0.06235267156885707 -0.06850829266543075 -0.021896794458933094 0.02520600672923047 0.027161638258641 -0.028280223316394532 0.019019701449095275 -0.06093560838155386 -0.023079866247990976 -0.0016662875880020037 -0.0936145118954385 -0.027089221657375873 -0.0038833556990396367 0.027161638258641 -0.028280223316394532 0.019019701449095275 -0.06749880313319648 -0.02680125996545136 0.022377242263412294 -0.0986814755178338 -0.028662588483832224 0.02797175078139 0.027161638258641 -0.028280223316394532 0.019019701449095275 -0.0416253338012431 -0.018339894495945922 0.06222904345238025 -0.058639741938948185 -0.018401719212745176 0.07472781841954197 0.027161638258641 -0.028280223316394532 0.019019701449095275 -0.05457391617016924 -0.02432280216352929 0.04569289448218347 -0.08288819117218198 -0.02638980942184855 0.05079143298423594 0.027161638258641 -0.028280223316394532 0.019019701449095275 0.0030719314559989747 -0.012757888774518826 -0.006793145838987463 -0.016561309085278447 -0.01364917532606183 -0.03049269908492177 -0.11577042418242184 -0.025790799084203984 -0.003769238939810217 -0.12158611575172376 -0.027410484251114402 0.03191626478412596 -0.0745066431456861 -0.017710563318297554 0.08505972582185221 -0.10640870404901273 -0.024701697597033227 0.0584252471566052 -0.038779048437264936 -0.008216204164604423 -0.04501681738425742 -0.08236167748723558 -0.021110284163757747 0.02783456738053595 0.01330825343683617 -0.027493713021219186 0.02164826210040076 -0.07478899320335869 -0.02229335595281563 0.0009622730633034766 -0.10746789671724333 -0.026302711362200526 -0.0012547950477341564 0.01330825343683617 -0.027493713021219186 0.02164826210040076 -0.0813521879550013 -0.026014749670276012 0.025005802914717774 -0.11253486033963864 -0.027876078188656877 0.03060031143269548 0.01330825343683617 -0.027493713021219186 0.02164826210040076 -0.05547871862304793 -0.017553384200770576 0.06485760410368573 -0.07249312676075301 -0.01761520891756983 0.07735637907084746 0.01330825343683617 -0.027493713021219186 0.02164826210040076 -0.06842730099197407 -0.02353629186835394 0.048321455133488955 -0.0967415759939868 -0.025603299126673203 0.053419993635541424 0.01330825343683617 -0.027493713021219186 0.02164826210040076 -0.010781453365805854 -0.01197137847934348 -0.004164585187681983 -0.030414693907083276 -0.012862665030886483 -0.02786413843361629 -0.12962380900422665 -0.025004288789028637 -0.0011406782885047366 -0.13543950057352858 -0.026623973955939056 0.034544825435431435 -0.08836002796749093 -0.016924053023122207 0.0876882864731577 -0.12026208887081756 -0.02391518730185788 0.061053807807910684 -0.052632433259069765 -0.007429693869429077 -0.042388256732951934 -0.06019573670710849 -0.024308067163268093 0.03648762521633562 0.03547419421696326 -0.03069149602072953 0.030301319936200423 -0.0526230524232316 -0.025491138952325975 0.009615330899103144 -0.08530195593711623 -0.02950049436171087 0.007398262788065511 0.03547419421696326 -0.03069149602072953 0.030301319936200423 -0.059186247174874224 -0.029212532669786358 0.033658860750517446 -0.09036891955951154 -0.031073861188167223 0.039253369268495146 0.03547419421696326 -0.03069149602072953 0.030301319936200423 -0.033312777842920846 -0.02075116720028092 0.0735106619394854 -0.050327185980625924 -0.020812991917080175 0.08600943690664711 0.03547419421696326 -0.03069149602072953 0.030301319936200423 -0.04626136021184698 -0.026734074867864287 0.05697451296928862 -0.07457563521385971 -0.02880108212618355 0.06207305147134109 0.03547419421696326 -0.03069149602072953 0.030301319936200423 0.011384487414321236 -0.015169161478853825 0.004488472648117685 -0.008248753126956186 -0.01606044803039683 -0.01921108059781662 -0.10745786822409958 -0.028202071788538983 0.007512379547294931 -0.1132735597934015 -0.0298217569554494 0.0431978832712311 -0.06619408718736385 -0.020121836022632553 0.09634134430895736 -0.09809614809069048 -0.027112970301368226 0.06970686564371034 -0.030466492478942675 -0.010627476868939422 -0.03373519889715227 -0.10370781518934077 -0.009319436953163526 0.016035020781335264 -0.008037884265269024 -0.015702865810624966 0.00984871550120007 -0.09613513090546388 -0.010502508742221407 -0.01083727353589721 -0.12881403441934852 -0.014511864151606307 -0.013054341646934843 -0.008037884265269024 -0.015702865810624966 0.00984871550120007 -0.1026983256571065 -0.014223902459681791 0.013206256315517088 -0.13388099804174383 -0.016085230978062658 0.018800764833494795 -0.008037884265269024 -0.015702865810624966 0.00984871550120007 -0.07682485632515312 -0.0057625369901763545 0.05305805750448504 -0.0938392644628582 -0.005824361706975609 0.06555683247164676 -0.008037884265269024 -0.015702865810624966 0.00984871550120007 -0.08977343869407926 -0.011745444657759719 0.036521908534288265 -0.118087713696092 -0.013812451916078983 0.041620447036340734 -0.008037884265269024 -0.015702865810624966 0.00984871550120007 -0.03212759106791105 -0.00018053126874925836 -0.01596413178688267 -0.05176083160918847 -0.0010718178202922621 -0.039663685032816975 -0.15096994670633185 -0.013213441578434416 -0.012940224887705423 -0.15678563827563377 -0.014833126745344835 0.02274527883623075 -0.10970616566959612 -0.005133205812527988 0.075888739873957 -0.14160822657292277 -0.012124340091263657 0.049254261208709994 -0.07397857096117497 0.004361153341165144 -0.054187803332152625 -0.11268468769663278 -0.008085554093593999 0.009827048061946933 -0.017014756772561035 -0.014468982951055438 0.0036407427818117392 -0.1051120034127559 -0.00926862588265188 -0.017045246255285543 -0.13779090692664053 -0.01327798129203678 -0.019262314366323176 -0.017014756772561035 -0.014468982951055438 0.0036407427818117392 -0.11167519816439851 -0.012990019600112264 0.006998283596128757 -0.14285787054903584 -0.014851348118493129 0.012592792114106462 -0.017014756772561035 -0.014468982951055438 0.0036407427818117392 -0.08580172883244513 -0.0045286541306068274 0.04685008478509671 -0.10281613697015021 -0.004590478847406082 0.05934885975225843 -0.017014756772561035 -0.014468982951055438 0.0036407427818117392 -0.09875031120137127 -0.010511561798190194 0.030313935814899932 -0.127064586203384 -0.012578569056509455 0.0354124743169524 -0.017014756772561035 -0.014468982951055438 0.0036407427818117392 -0.04110446357520306 0.0010533515908202687 -0.022172104506271002 -0.06073770411648048 0.0001620650392772649 -0.04587165775220531 -0.15994681921362386 -0.011979558718864889 -0.019148197607093756 -0.16576251078292578 -0.013599243885775308 0.01653730611684242 -0.11868303817688813 -0.0038993229529584606 0.06968076715456868 -0.15058509908021478 -0.01089045723169413 0.04304628848932166 -0.08295544346846698 0.005595036200734671 -0.06039577605154096 -0.1122696870821257 -0.0063505437150110445 0.01862194062013345 -0.016599756158053952 -0.012733972572472482 0.012435635339998257 -0.10469700279824881 -0.007533615504068926 -0.008250353697099023 -0.13737590631213345 -0.011542970913453826 -0.010467421808136656 -0.016599756158053952 -0.012733972572472482 0.012435635339998257 -0.11126019754989143 -0.011255009221529309 0.015793176154315275 -0.14244286993452876 -0.013116337739910175 0.021387684672292982 -0.016599756158053952 -0.012733972572472482 0.012435635339998257 -0.08538672821793805 -0.0027936437520238726 0.05564497734328323 -0.10240113635564313 -0.002855468468823128 0.06814375231044495 -0.016599756158053952 -0.012733972572472482 0.012435635339998257 -0.09833531058686419 -0.008776551419607238 0.03910882837308645 -0.12664958558887693 -0.010843558677926501 0.04420736687513892 -0.016599756158053952 -0.012733972572472482 0.012435635339998257 -0.04068946296069598 0.002788361969403223 -0.013377211948084482 -0.0603227035019734 0.0018970754178602193 -0.037076765194018785 -0.1595318185991168 -0.010244548340281934 -0.010353305048907236 -0.1653475101684187 -0.011864233507192352 0.025332198675028936 -0.11826803756238105 -0.002164312574375506 0.07847565971275519 -0.15017009846570767 -0.009155446853111177 0.05184118104750818 -0.0825404428539599 0.007330046579317626 -0.05160088349335444 -0.11366021464920352 -0.0073383639937928905 5.164379847212933e-05 -0.01799028372513177 -0.01372179285125433 -0.006134661481663065 -0.10608753036532663 -0.008521435782850771 -0.026820650518760345 -0.13876643387921128 -0.012530791192235671 -0.029037718629797978 -0.01799028372513177 -0.01372179285125433 -0.006134661481663065 -0.11265072511696925 -0.012242829500311156 -0.002777120667346047 -0.14383339750160656 -0.014104158018692022 0.0028173878506316586 -0.01799028372513177 -0.01372179285125433 -0.006134661481663065 -0.08677725578501587 -0.0037814640308057187 0.03707468052162191 -0.10379166392272095 -0.003843288747604974 0.049573455488783634 -0.01799028372513177 -0.01372179285125433 -0.006134661481663065 -0.09972583815394201 -0.009764371698389084 0.02053853155142513 -0.12804011315595476 -0.011831378956708348 0.0256370700534776 -0.01799028372513177 -0.01372179285125433 -0.006134661481663065 -0.042079990527773795 0.001800541690621377 -0.0319475087697458 -0.061713231069051216 0.0009092551390783733 -0.05564706201568011 -0.1609223461661946 -0.01123236861906378 -0.02892360187056856 -0.16673803773549653 -0.0128520537859742 0.006761901853367613 -0.11965856512945887 -0.0031521328531573523 0.059905362891093876 -0.1515606260327855 -0.010143267131893022 0.03327088422584686 -0.0839309704210377 0.00634222630053578 -0.07017118031501576 -0.1140304842541531 -0.005206654918663862 -0.008655203223173345 -0.018360553330081353 -0.0115900837761253 -0.014841508503308539 -0.10645779997027621 -0.006389726707721743 -0.03552749754040582 -0.13913670348416085 -0.010399082117106643 -0.03774456565144345 -0.018360553330081353 -0.0115900837761253 -0.014841508503308539 -0.11302099472191883 -0.010111120425182127 -0.011483967688991521 -0.14420366710655616 -0.011972448943562992 -0.005889459171013816 -0.018360553330081353 -0.0115900837761253 -0.014841508503308539 -0.08714752538996545 -0.00164975495567669 0.028367833499976434 -0.10416193352767053 -0.0017115796724759451 0.04086660846713816 -0.018360553330081353 -0.0115900837761253 -0.014841508503308539 -0.10009610775889159 -0.007632662623260056 0.011831684529779656 -0.12841038276090433 -0.009699669881579318 0.016930223031832125 -0.018360553330081353 -0.0115900837761253 -0.014841508503308539 -0.04245026013272338 0.003932250765750406 -0.040654355791391275 -0.0620835006740008 0.003040964214207402 -0.06435390903732559 -0.16129261577114418 -0.009100659543934752 -0.037630448892214036 -0.1671083073404461 -0.01072034471084517 -0.0019449451682778604 -0.12002883473440845 -0.0010204237780283235 0.0511985158694484 -0.1519308956377351 -0.008011558056763993 0.024564037204201385 -0.0843012400259873 0.008473935375664808 -0.07887802733666123 -0.10933619217738219 0.0258443631521852 -0.0201100601665029 -0.013666261253310441 0.019460934294723762 -0.026296365446638097 -0.1017635078935053 0.024661291363127318 -0.046982354483735375 -0.13444241140738994 0.02065193595374242 -0.04919942259477301 -0.013666261253310441 0.019460934294723762 -0.026296365446638097 -0.10832670264514792 0.020939897645666936 -0.022938824632321077 -0.13950937502978525 0.01907856912728607 -0.01734431611434337 -0.013666261253310441 0.019460934294723762 -0.026296365446638097 -0.08245323331319454 0.029401263115172372 0.016912976556646878 -0.09946764145089962 0.029339438398373118 0.0294117515238086 -0.013666261253310441 0.019460934294723762 -0.026296365446638097 -0.09540181568212068 0.023418355447589006 0.0003768275864501 -0.12371609068413342 0.021351348189269745 0.005475366088502569 -0.013666261253310441 0.019460934294723762 -0.026296365446638097 -0.037755968055952466 0.03498326883659947 -0.052109212734720835 -0.05738920859722989 0.034091982285056464 -0.07580876598065514 -0.15659832369437326 0.02195035852691431 -0.04908530583554359 -0.1624140152636752 0.020330673360003892 -0.013399802111607417 -0.11533454265763754 0.03003059429282074 0.03974365892611884 -0.14723660356096419 0.023039460014085068 0.01310918026087183 -0.07960694794921638 0.03952495344651387 -0.09033288427999078 -0.11081615308651895 -0.0029872671751540758 0.026395575343544798 -0.015146222162447195 -0.009370696032615514 0.020209270063409605 -0.10324346880264205 -0.004170338964211957 -0.0004767189736876766 -0.1359223723165267 -0.008179694373596856 -0.0026937870847253097 -0.015146222162447195 -0.009370696032615514 0.020209270063409605 -0.10980666355428467 -0.00789173268167234 0.02356681087772662 -0.140989335938922 -0.009753061200053207 0.02916131939570433 -0.015146222162447195 -0.009370696032615514 0.020209270063409605 -0.0839331942223313 0.0005696327878330961 0.06341861206669458 -0.10094760236003637 0.0005078080710338409 0.0759173870338563 -0.015146222162447195 -0.009370696032615514 0.020209270063409605 -0.09688177659125743 -0.00541327487975027 0.046882463096497795 -0.12519605159327019 -0.007480282138069533 0.051981001598550264 -0.015146222162447195 -0.009370696032615514 0.020209270063409605 -0.03923592896508922 0.006151638509260192 -0.005603577224673136 -0.05886916950636664 0.0052603519577171885 -0.029303130470607442 -0.15807828460351003 -0.0068812718004249655 -0.00257967032549589 -0.16389397617281196 -0.008500956967335384 0.03310583339844028 -0.1168145035667743 0.0011989639654814625 0.08624929443616654 -0.14871656447010093 -0.005792170313254207 0.059614815770919524 -0.08108690885835312 0.010693323119174595 -0.043827248769943095 -0.053543514985039335 -0.02138333057107769 0.05401269680225871 0.042126415939032415 -0.02776675942853913 0.047826391522123514 -0.045970830701162445 -0.022566402360135573 0.027140402485026235 -0.07864973421504709 -0.026575757769520474 0.024923334373988602 0.042126415939032415 -0.02776675942853913 0.047826391522123514 -0.05253402545280507 -0.026287796077595956 0.05118393233644054 -0.08371669783744239 -0.02814912459597682 0.05677844085441824 0.042126415939032415 -0.02776675942853913 0.047826391522123514 -0.026660556120851688 -0.01782643060809052 0.09103573352540849 -0.04367496425855677 -0.017888255324889774 0.1035345084925702 0.042126415939032415 -0.02776675942853913 0.047826391522123514 -0.039609138489777825 -0.023809338275673886 0.07449958455521172 -0.06792341349179057 -0.025876345533993147 0.07959812305726419 0.042126415939032415 -0.02776675942853913 0.047826391522123514 0.01803670913639039 -0.012244424886663424 0.022013544234040776 -0.0015965314048870319 -0.013135711438206427 -0.00168600901189353 -0.10080564650203042 -0.02527733519634858 0.025037451133218022 -0.10662133807133234 -0.026897020363259 0.06072295485715419 -0.059541865465294684 -0.017197099430442155 0.11386641589488045 -0.09144392636862131 -0.024188233709177824 0.08723193722963343 -0.02381427075687352 -0.007702740276749021 -0.01621012731122918 -0.0465198143028658 -0.019812314099261517 0.05863794398308917 0.04915011662120595 -0.026195742956722955 0.052451638702953975 -0.03894713001898891 -0.0209953858883194 0.031765649665856696 -0.07162603353287356 -0.025004741297704296 0.029548581554819063 0.04915011662120595 -0.026195742956722955 0.052451638702953975 -0.045510324770631536 -0.02471677960577978 0.055809179517271 -0.07669299715526885 -0.026578108124160647 0.0614036880352487 0.04915011662120595 -0.026195742956722955 0.052451638702953975 -0.019636855438678155 -0.016255414136274345 0.09566098070623895 -0.036651263576383236 -0.0163172388530736 0.10815975567340066 0.04915011662120595 -0.026195742956722955 0.052451638702953975 -0.03258543780760429 -0.02223832180385771 0.07912483173604218 -0.06089971280961703 -0.024305329062176972 0.08422337023809465 0.04915011662120595 -0.026195742956722955 0.052451638702953975 0.025060409818563924 -0.010673408414847249 0.026638791414871237 0.005427169277286502 -0.011564694966390253 0.0029392381689369307 -0.09378194581985688 -0.023706318724532407 0.029662698314048483 -0.0995976373891588 -0.025326003891442826 0.06534820203798465 -0.05251816478312115 -0.015626082958625977 0.1184916630757109 -0.08442022568644778 -0.02261721723736165 0.0918571844104639 -0.016790570074699987 -0.0061317238049328465 -0.011584880130398718 -0.04114266922626432 -0.017331787103816065 0.053457545130533066 0.05452726169780743 -0.023715215961277503 0.04727123985039787 -0.03356998494238743 -0.018514858892873947 0.02658525081330059 -0.06624888845627207 -0.022524214302258844 0.024368182702262958 0.05452726169780743 -0.023715215961277503 0.04727123985039787 -0.040133179694030054 -0.02223625261033433 0.05062878066471489 -0.07131585207866736 -0.024097581128715195 0.05622328918269259 0.05452726169780743 -0.023715215961277503 0.04727123985039787 -0.014259710362076673 -0.013774887140828893 0.09048058185368285 -0.031274118499781754 -0.013836711857628147 0.10297935682084457 0.05452726169780743 -0.023715215961277503 0.04727123985039787 -0.02720829273100281 -0.01975779480841226 0.07394443288348607 -0.055522567733015546 -0.02182480206673152 0.07904297138553854 0.05452726169780743 -0.023715215961277503 0.04727123985039787 0.030437554895165406 -0.008192881419401797 0.02145839256231513 0.010804314353887984 -0.009084167970944801 -0.002241160683619174 -0.08840480074325541 -0.021225791729086955 0.024482299461492378 -0.09422049231255733 -0.022845476895997373 0.06016780318542855 -0.04714101970651967 -0.013145555963180526 0.11331126422315481 -0.0790430806098463 -0.020136690241916198 0.0866767855579078 -0.011413424998098505 -0.0036511968094873944 -0.016765278982954823 -0.046983118187005866 -0.019717622962183844 0.04842316286235408 0.048686812737065883 -0.026101051819645282 0.04223685758221889 -0.039410433903128976 -0.020900694751241726 0.02155086854512161 -0.07208933741701362 -0.024910050160626626 0.019333800434083975 0.048686812737065883 -0.026101051819645282 0.04223685758221889 -0.0459736286547716 -0.02462208846870211 0.04559439839653591 -0.07715630103940892 -0.026483416987082974 0.05118890691451361 0.048686812737065883 -0.026101051819645282 0.04223685758221889 -0.02010015932281822 -0.016160722999196672 0.08544619958550387 -0.0371145674605233 -0.016222547715995926 0.09794497455266558 0.048686812737065883 -0.026101051819645282 0.04223685758221889 -0.033048741691744356 -0.02214363066678004 0.06891005061530708 -0.06136301669375709 -0.0242106379250993 0.07400858911735955 0.048686812737065883 -0.026101051819645282 0.04223685758221889 0.02459710593442386 -0.010578717277769576 0.01642401029413615 0.004963865393146437 -0.01147000382931258 -0.007275542951798157 -0.09424524970399695 -0.023611627587454734 0.019447917193313395 -0.10006094127329887 -0.025231312754365152 0.05513342091724957 -0.052981468667261215 -0.015531391821548305 0.10827688195497583 -0.08488352957058784 -0.022522526100283977 0.08164240328972881 -0.017253873958840052 -0.006037032667855173 -0.021799661251133806 -0.011377699188002681 0.006145763280295025 0.038492016820089736 0.08429223173606906 -0.00023766557716641337 0.03230571153995454 -0.0038050149041257923 0.004962691491237144 0.011619722502857262 -0.03648391841801043 0.0009533360818522445 0.009402654391819629 0.08429223173606906 -0.00023766557716641337 0.03230571153995454 -0.010368209655768412 0.0012412977737767603 0.03566325235427156 -0.04155088204040573 -0.0006200307446041055 0.04125776087224926 0.08429223173606906 -0.00023766557716641337 0.03230571153995454 0.015505259676184966 0.009702663243282197 0.07551505354323951 -0.0015091484615201139 0.009640838526482943 0.08801382851040124 0.08429223173606906 -0.00023766557716641337 0.03230571153995454 0.0025566773072588315 0.0037197555756988314 0.05897890457304274 -0.025757597694753907 0.0016527483173795687 0.0640774430750952 0.08429223173606906 -0.00023766557716641337 0.03230571153995454 0.060202524933427044 0.015284668964709293 0.006492864251871802 0.04056928439214962 0.014393382413166289 -0.017206688994062504 -0.05863983070499377 0.002251758655024135 0.009516771151049049 -0.06445552227429568 0.0006320734881137165 0.045202274874985224 -0.017376049668258033 0.010331994420930564 0.09834573591271148 -0.04927811057158466 0.0033408601421948936 0.07171125724746447 0.018351545040163134 0.019826353574623694 -0.03173080729339815 -0.011809801682961378 -0.0018767671664115238 0.03841286969259122 0.08386012924111037 -0.008260196023872962 0.03222656441245603 -0.00423711739908449 -0.003059838955469405 0.011540575375358748 -0.036916020912969125 -0.007069194364854305 0.009323507264321115 0.08386012924111037 -0.008260196023872962 0.03222656441245603 -0.010800312150727109 -0.006781232672929789 0.03558410522677305 -0.04198298453536443 -0.008642561191310655 0.04117861374475075 0.08386012924111037 -0.008260196023872962 0.03222656441245603 0.015073157181226269 0.001680132796575648 0.075435906415741 -0.0019412509564788114 0.001618308079776393 0.08793468138290272 0.08386012924111037 -0.008260196023872962 0.03222656441245603 0.002124574812300134 -0.004302774871007718 0.058899757445544224 -0.026189700189712603 -0.006369782129326981 0.06399829594759669 0.08386012924111037 -0.008260196023872962 0.03222656441245603 0.05977042243846835 0.007262138518002744 0.006413717124373289 0.04013718189719093 0.00637085196645974 -0.017285836121561017 -0.059071933199952464 -0.005770771791682414 0.009437624023550535 -0.06488762476925439 -0.007390456958592833 0.04512312774748671 -0.01780815216321673 0.0023094639742240143 0.09826658878521297 -0.04971021306654336 -0.004681670304511655 0.07163211011996595 0.017919442545204438 0.011803823127917147 -0.031809954420896666 -0.02172353518628748 -0.0044199705453550585 0.039113140264390237 0.07394639573778428 -0.010803399402816497 0.03292683498425504 -0.014150850902410592 -0.00560304233441294 0.012240845947157762 -0.04682975441629523 -0.00961239774379784 0.010023777836120129 0.07394639573778428 -0.010803399402816497 0.03292683498425504 -0.02071404565405321 -0.009324436051873324 0.03628437579857206 -0.05189671803869053 -0.011185764570254188 0.041878884316549764 0.07394639573778428 -0.010803399402816497 0.03292683498425504 0.005159423677900166 -0.0008630705823678866 0.07613617698754002 -0.011854984459804914 -0.0009248952991671418 0.08863495195470174 0.07394639573778428 -0.010803399402816497 0.03292683498425504 -0.007789158691025968 -0.006845978249951252 0.05960002801734324 -0.03610343369303871 -0.008912985508270514 0.0646985665193957 0.07394639573778428 -0.010803399402816497 0.03292683498425504 0.049856688935142245 0.004718935139059209 0.0071139876961723025 0.030223448393864823 0.0038276485875162053 -0.016585565549762003 -0.06898566670327858 -0.008313975170625949 0.010137894595349549 -0.07480135827258048 -0.009933660337536367 0.045823398319285724 -0.027721885666542833 -0.00023373940471952022 0.09896685935701198 -0.05962394656986946 -0.00722487368345519 0.07233238069176497 0.008005709041878334 0.009260619748973612 -0.031109683849097652 -0.08220180786362345 -0.017588864264444223 -0.006702690829358266 0.013468123060448298 -0.02397229312190566 -0.01288899610949346 -0.07462912357974656 -0.018771936053502105 -0.03357498514659074 -0.1073080270936312 -0.022781291462887 -0.035792053257628374 0.013468123060448298 -0.02397229312190566 -0.01288899610949346 -0.08119231833138918 -0.022493329770962488 -0.009531455295176442 -0.1123749907160265 -0.024354658289343353 -0.003936946777198736 0.013468123060448298 -0.02397229312190566 -0.01288899610949346 -0.0553188489994358 -0.014031964301457051 0.03032034589379151 -0.07233325713714088 -0.014093789018256305 0.042819120860953234 0.013468123060448298 -0.02397229312190566 -0.01288899610949346 -0.06826743136836194 -0.020014871969040417 0.013784196923594734 -0.09658170637037468 -0.02208187922735968 0.018882735425647203 0.013468123060448298 -0.02397229312190566 -0.01288899610949346 -0.010621583742193727 -0.008449958580029955 -0.0387018433975762 -0.03025482428347115 -0.009341245131572959 -0.06240139664351051 -0.12946393938061454 -0.021482868889715113 -0.035677936498398954 -0.13527963094991646 -0.02310255405662553 7.567225537218232e-06 -0.0882001583438788 -0.013402633123808684 0.053151028263263476 -0.12010221924720543 -0.020393767402544356 0.026516549598016463 -0.05247256363545764 -0.003908273970115552 -0.07692551494284615 -0.08698726009504656 -0.015154009105145966 -0.018087800376246764 0.008682670829025185 -0.021537437962607403 -0.02427410565638196 -0.07941457581116967 -0.016337080894203847 -0.04496009469347924 -0.11209347932505431 -0.020346436303588747 -0.04717716280451687 0.008682670829025185 -0.021537437962607403 -0.02427410565638196 -0.08597777056281229 -0.020058474611664233 -0.02091656484206494 -0.11716044294744962 -0.021919803130045098 -0.015322056324087235 0.008682670829025185 -0.021537437962607403 -0.02427410565638196 -0.060104301230858914 -0.011597109142158795 0.018935236346903014 -0.07711870936856399 -0.01165893385895805 0.03143401131406474 0.008682670829025185 -0.021537437962607403 -0.02427410565638196 -0.07305288359978505 -0.01758001680974216 0.002399087376706237 -0.10136715860179779 -0.019647024068061424 0.0074976258787587055 0.008682670829025185 -0.021537437962607403 -0.02427410565638196 -0.01540703597361684 -0.0060151034207316986 -0.0500869529444647 -0.03504027651489426 -0.006906389972274702 -0.073786506190399 -0.13424939161203764 -0.019048013730416855 -0.04706304604528745 -0.14006508318133956 -0.020667698897327273 -0.01137754232135128 -0.09298561057530191 -0.010967777964510428 0.04176591871637498 -0.12488767147862855 -0.017958912243246097 0.015131440051127966 -0.05725801586688075 -0.001473418810817296 -0.08831062448973465 -0.007482039826611085 -0.008489496726785376 0.022879770581086 0.08818789109746067 -0.014872925584246815 0.016693465300950804 9.064445726580331e-05 -0.009672568515843256 -0.003992523736146475 -0.032588259056618836 -0.013681923925228157 -0.006209591847184108 0.08818789109746067 -0.014872925584246815 0.016693465300950804 -0.006472550294376817 -0.013393962233303641 0.020051006115267823 -0.03765522267901414 -0.015255290751684508 0.02564551463324553 0.08818789109746067 -0.014872925584246815 0.016693465300950804 0.019400919037576562 -0.004932596763798204 0.05990280730423578 0.0023865108998714817 -0.004994421480597459 0.07240158227139751 0.08818789109746067 -0.014872925584246815 0.016693465300950804 0.006452336668650427 -0.010915504431381569 0.043366658334039 -0.02186193833336231 -0.012982511689700833 0.04846519683609147 0.08818789109746067 -0.014872925584246815 0.016693465300950804 0.06409818429481864 0.0006494089576288917 -0.009119381987131935 0.044464943753541215 -0.00024187759391411205 -0.03281893523306624 -0.054744171343602176 -0.012383501352056266 -0.006095475087954688 -0.06055986291290409 -0.014003186518966685 0.029590028635981484 -0.013480390306866437 -0.0043032655861498376 0.08273348967370775 -0.04538245121019307 -0.011294399864885507 0.05609901100846073 0.02224720440155473 0.005191093567543294 -0.04734305353240189 0.02181505629174456 0.012744990117854097 0.034919562078641136 0.11748498721581631 0.006361561260392659 0.02873325679850594 0.02938774057562145 0.011561918328796217 0.008047267761408662 -0.0032911629382631896 0.007552562919411317 0.005830199650371029 0.11748498721581631 0.006361561260392659 0.02873325679850594 0.022824545823978828 0.007840524611335832 0.03209079761282296 -0.008358126560658492 0.005979196092954967 0.037685306130800664 0.11748498721581631 0.006361561260392659 0.02873325679850594 0.04869801515593221 0.01630189008084127 0.07194259880179091 0.031683607018227124 0.016240065364042013 0.08444137376895264 0.11748498721581631 0.006361561260392659 0.02873325679850594 0.03574943278700607 0.010318982413257904 0.05540644983159414 0.007435157784993332 0.00825197515493864 0.060504988333646606 0.11748498721581631 0.006361561260392659 0.02873325679850594 0.09339528041317428 0.021883895802268363 0.0029204095104232025 0.07376203987189686 0.02099260925072536 -0.020779143735511103 -0.02544707522524653 0.008850985492583207 0.005944316409600449 -0.031262766794548445 0.007231300325672789 0.041629820133536624 0.015816705811489206 0.016931221258489636 0.09477328117126288 -0.016085355091837422 0.009940086979753966 0.06813880250601587 0.05154430051991037 0.026425580412182768 -0.03530326203484675 0.021581610674762983 0.00821495684778394 0.038261667534934894 0.11725154159883473 0.0018315279903225005 0.0320753622547997 0.029154294958639873 0.007031885058726058 0.01138937321770242 -0.0035246085552447654 0.0030225296493411585 0.009172305106664787 0.11725154159883473 0.0018315279903225005 0.0320753622547997 0.022591100206997252 0.003310491341265674 0.03543290306911672 -0.008591572177640068 0.0014491628228848084 0.04102741158709442 0.11725154159883473 0.0018315279903225005 0.0320753622547997 0.04846456953895063 0.01177185681077111 0.07528470425808467 0.03145016140124555 0.011710032093971857 0.0877834792252464 0.11725154159883473 0.0018315279903225005 0.0320753622547997 0.03551598717002449 0.005788949143187745 0.058748555287887895 0.007201712168011756 0.0037219418848684826 0.06384709378994036 0.11725154159883473 0.0018315279903225005 0.0320753622547997 0.09316183479619271 0.017353862532198207 0.00626251496671696 0.07352859425491529 0.016462575980655203 -0.017437038279217346 -0.025680520842228105 0.004320952222513049 0.009286421865894207 -0.03149621241153002 0.0027012670556026304 0.044971925589830375 0.01558326019450763 0.012401187988419477 0.09811538662755664 -0.016318800708818998 0.005410053709683808 0.07148090796230963 0.0513108549029288 0.021895547142112608 -0.031961156578552995 0.0035789552578733915 0.007604072136681534 0.037784563391186715 0.09924888618194515 0.0012206432792200954 0.03159825811105152 0.01115163954175028 0.006421000347623653 0.01091226907395424 -0.021527263972134357 0.0024116449382387533 0.008695200962916608 0.09924888618194515 0.0012206432792200954 0.03159825811105152 0.00458844479010766 0.002699606630163269 0.03495579892536854 -0.02659422759452966 0.0008382781117824032 0.04055030744334624 0.09924888618194515 0.0012206432792200954 0.03159825811105152 0.030461914122061038 0.011160972099668705 0.07480760011433649 0.013447505984355958 0.011099147382869452 0.08730637508149822 0.09924888618194515 0.0012206432792200954 0.03159825811105152 0.017513331753134905 0.00517806443208534 0.058271451144139716 -0.010800943248877835 0.0031110571737660775 0.06336998964619218 0.09924888618194515 0.0012206432792200954 0.03159825811105152 0.07515917937930312 0.0167429778210958 0.005785410822968781 0.055525938838025694 0.015851691269552798 -0.017914142422965525 -0.0436831762591177 0.003710067511410644 0.008809317722146028 -0.04949886782841961 0.0020903823445002252 0.0444948214460822 -0.00241939522238196 0.011790303277317072 0.09763828248380846 -0.03432145612570859 0.004799168998581403 0.07100380381856145 0.033308199486039206 0.021284662431010203 -0.032438260722301174 0.0047485093155391405 0.01305334796153276 0.03412326906768937 0.10041844023961088 0.006669919104071321 0.027936963787554177 0.012321193599416028 0.011870276172474879 0.007250974750456898 -0.020357709914468607 0.007860920763089979 0.005033906639419265 0.10041844023961088 0.006669919104071321 0.027936963787554177 0.005757998847773409 0.008148882455014494 0.0312945046018712 -0.02542467353686391 0.006287553936633629 0.0368890131198489 0.10041844023961088 0.006669919104071321 0.027936963787554177 0.031631468179726785 0.01661024792451993 0.07114630579083915 0.014617060042021707 0.016548423207720677 0.08364508075800087 0.10041844023961088 0.006669919104071321 0.027936963787554177 0.018682885810800652 0.010627340256936565 0.054610156820642373 -0.009631389191212085 0.008560332998617304 0.05970869532269484 0.10041844023961088 0.006669919104071321 0.027936963787554177 0.07632873343696886 0.022192253645947027 0.0021241164994714387 0.056695492895691445 0.021300967094404023 -0.021575436746462867 -0.042513622201451946 0.00915934333626187 0.005148023398648685 -0.04832931377075386 0.007539658169351451 0.04083352712258485 -0.001249841164716211 0.0172395791021683 0.09397698816031111 -0.03315190206804284 0.010248444823432628 0.0673425094950641 0.034477753543704956 0.026733938255861428 -0.036099555045798516 0.0018815960540596447 -0.0017541760359688844 0.018833797593362397 0.0975515269781314 -0.008137604893430322 0.012647492313227203 0.009454280337936534 -0.0029372478250267657 -0.008038496723870078 -0.023224623175948103 -0.006946603234411665 -0.01025556483490771 0.0975515269781314 -0.008137604893430322 0.012647492313227203 0.0028910855862939134 -0.00665864154248715 0.01600503312754422 -0.028291586798343406 -0.008519970060868015 0.021599541645521927 0.0975515269781314 -0.008137604893430322 0.012647492313227203 0.028764554918247292 0.0018027239270182874 0.05585683431651217 0.011750146780542212 0.0017408992102190322 0.0683556092836739 0.0975515269781314 -0.008137604893430322 0.012647492313227203 0.015815972549321156 -0.0041801837405650785 0.0393206853463154 -0.012498302452691581 -0.006247190998884341 0.04441922384836787 0.0975515269781314 -0.008137604893430322 0.012647492313227203 0.07346182017548937 0.007384729648445383 -0.013165354974855537 0.05382857963421195 0.006493443096902379 -0.036864908220789847 -0.04538053546293144 -0.005648180661239775 -0.01014144807567829 -0.05119622703223336 -0.0072678658281501935 0.02554405564825788 -0.004116754426195707 0.0024320551046666536 0.07868751668598414 -0.036018815329522336 -0.004559079174069016 0.05205303802073713 0.03161084028222546 0.011926414258359786 -0.05138902652012549 -0.0010866690425926685 -0.006103758204899591 0.023154057940553602 0.09458326188147909 -0.01248718706236103 0.01696775266041841 0.00648601524128422 -0.007286829993957473 -0.003718236376678872 -0.026192888272600415 -0.011296185403342372 -0.005935304487716505 0.09458326188147909 -0.01248718706236103 0.01696775266041841 -7.717951035839956e-05 -0.011008223711417856 0.020325293474735426 -0.03125985189499572 -0.012869552229798721 0.025919801992713133 0.09458326188147909 -0.01248718706236103 0.01696775266041841 0.02579628982159498 -0.0025468582419124193 0.060177094663703384 0.008781881683889898 -0.0026086829587116745 0.0726758696308651 0.09458326188147909 -0.01248718706236103 0.01696775266041841 0.012847707452668843 -0.008529765909495786 0.0436409456935066 -0.015466567549343896 -0.010596773167815047 0.04873948419555907 0.09458326188147909 -0.01248718706236103 0.01696775266041841 0.07049355507883706 0.0030351474795146764 -0.008845094627664331 0.05086031453755963 0.0021438609279716726 -0.032544647873598634 -0.04834880055958376 -0.009997762830170481 -0.005821187728487085 -0.054164492128885675 -0.0116174479970809 0.029864315995449087 -0.00708501952284802 -0.0019175270642640529 0.08300777703317534 -0.03898708042617465 -0.008908661342999722 0.05637329836792833 0.028642575185573147 0.007576832089429079 -0.04706876617293429 0.002497056363003976 -0.004276188813962204 0.023068891988285222 0.09816698728707572 -0.010659617671423642 0.01688258670815003 0.010069740646880865 -0.005459260603020086 -0.0038034023289472522 -0.022609162867003773 -0.009468616012404986 -0.006020470439984885 0.09816698728707572 -0.010659617671423642 0.01688258670815003 0.003506545895238245 -0.009180654320480468 0.020240127522467045 -0.027676126489399076 -0.011041982838861335 0.025834636040444753 0.09816698728707572 -0.010659617671423642 0.01688258670815003 0.029380015227191622 -0.0007192888509750324 0.060091928711435 0.012365607089486544 -0.0007811135677742876 0.07259070367859673 0.09816698728707572 -0.010659617671423642 0.01688258670815003 0.01643143285826549 -0.006702196518558398 0.043555779741238226 -0.011882842143747251 -0.008769203776877661 0.048654318243290695 0.09816698728707572 -0.010659617671423642 0.01688258670815003 0.0740772804844337 0.004862716870452063 -0.008930260579932712 0.05444403994315628 0.0039714303189090595 -0.03262981382586702 -0.04476507515398711 -0.008170193439233094 -0.0059063536807554655 -0.050580766723289025 -0.009789878606143512 0.029779150043180706 -0.0035012941172513756 -8.995767332666601e-05 0.08292261108090697 -0.035403355020578 -0.007081091952062336 0.056288132415659956 0.03222630059116979 0.009404401480366465 -0.04715393212520266 0.006163896610186378 -0.0013564013415422855 0.01872676861837492 0.10183382753425813 -0.007739830199003725 0.012540463338239724 0.013736580894063266 -0.0025394731306001665 -0.008145525698857556 -0.01894232261982137 -0.006548828539985067 -0.010362593809895189 0.10183382753425813 -0.007739830199003725 0.012540463338239724 0.007173386142420647 -0.006260866848060551 0.015898004152556742 -0.02400928624221667 -0.008122195366441416 0.02149251267053445 0.10183382753425813 -0.007739830199003725 0.012540463338239724 0.033046855474374026 0.0022004986214448864 0.0557498053415247 0.016032447336668944 0.002138673904645631 0.06824858030868641 0.10183382753425813 -0.007739830199003725 0.012540463338239724 0.02009827310544789 -0.0037824090461384794 0.03921365637132792 -0.008216001896564847 -0.005849416304457742 0.04431219487338039 0.10183382753425813 -0.007739830199003725 0.012540463338239724 0.0777441207316161 0.007782504342871982 -0.013272383949843015 0.05811088019033868 0.006891217791328978 -0.03697193719577732 -0.04109823490680471 -0.005250405966813176 -0.010248477050665769 -0.04691392647610663 -0.006870091133723595 0.025437026673270403 0.0001655461299310268 0.002829829799093253 0.07858048771099665 -0.031736514773395605 -0.004161304479642417 0.05194600904574965 0.03589314083835219 0.012324188952786384 -0.05149605549511297 -0.012711689781555974 -0.005356779085361449 -0.016636546122580823 0.08295824114251578 -0.011740207942822888 -0.02282285140271602 -0.005139005497679086 -0.00653985087441933 -0.0435088404398133 -0.03781790901156372 -0.010549206283804229 -0.04572590855085093 0.08295824114251578 -0.011740207942822888 -0.02282285140271602 -0.011702200249321705 -0.010261244591879715 -0.019465310588399 -0.04288487263395903 -0.01212257311026058 -0.013870802070421294 0.08295824114251578 -0.011740207942822888 -0.02282285140271602 0.014171269082631673 -0.0017998791223742768 0.020386490600568956 -0.0028431390550734074 -0.001861703839173532 0.03288526556773068 0.08295824114251578 -0.011740207942822888 -0.02282285140271602 0.001222686713705538 -0.007782786789957643 0.0038503416303721782 -0.0270915882883072 -0.009849794048276905 0.008948880132424647 0.08295824114251578 -0.011740207942822888 -0.02282285140271602 0.058868534339873754 0.003782126599052819 -0.048635698690798757 0.03923529379859633 0.002890840047509815 -0.07233525193673307 -0.05997382129854706 -0.00925078371063234 -0.04561179179162151 -0.06578951286784898 -0.010870468877542758 -0.009926288067685338 -0.018710040261811327 -0.0011705479447259104 0.04321717297004092 -0.05061210116513795 -0.00816168222346158 0.016582694304793907 0.01701755444660984 0.008323811208967222 -0.08685937023606871 -0.020037469096380257 -0.008212926772972235 -0.016796918811894147 0.0756324618276915 -0.014596355630433674 -0.02298322409202934 -0.012464784812503368 -0.009395998562030116 -0.043669213129126624 -0.045143688326388 -0.013405353971415016 -0.04588628124016425 0.0756324618276915 -0.014596355630433674 -0.02298322409202934 -0.019027979564145987 -0.0131173922794905 -0.019625683277712323 -0.05021065194878331 -0.014978720797871367 -0.014031174759734618 0.0756324618276915 -0.014596355630433674 -0.02298322409202934 0.00684548976780739 -0.004656026809985064 0.020226117911255632 -0.01016891836989769 -0.004717851526784319 0.03272489287841736 0.0756324618276915 -0.014596355630433674 -0.02298322409202934 -0.006103092601118744 -0.010638934477568428 0.003689968941058854 -0.03441736760313148 -0.012705941735887693 0.008788507443111323 0.0756324618276915 -0.014596355630433674 -0.02298322409202934 0.05154275502504947 0.0009259789114420321 -0.04879607138011208 0.03190951448377205 3.4692359899028344e-05 -0.07249562462604639 -0.06729960061337134 -0.012106931398243126 -0.04577216448093484 -0.07311529218267326 -0.013726616565153544 -0.010086660756998662 -0.02603581957663561 -0.004026695632336697 0.0430568002807276 -0.057937880479962234 -0.011017829911072367 0.016422321615480583 0.009691775131785558 0.005467663521356435 -0.08701974292538203 -0.012009201029884155 0.01505377337503576 0.014165591704149313 0.0836607298941876 0.008670344517574322 0.00797928642401412 -0.004436516746007266 0.01387070158597788 -0.012706702613083161 -0.0371154202598919 0.00986134617659298 -0.014923770724120794 0.0836607298941876 0.008670344517574322 0.00797928642401412 -0.010999711497649885 0.010149307868517496 0.011336827238331137 -0.042182383882287205 0.008287979350136629 0.016931335756308844 0.0836607298941876 0.008670344517574322 0.00797928642401412 0.014873757834303492 0.018610673338022934 0.05118862842729909 -0.0021406503034015877 0.018548848621223676 0.06368740339446081 0.0836607298941876 0.008670344517574322 0.00797928642401412 0.0019251754653773576 0.012627765670439568 0.034652479457102314 -0.02638909953663538 0.010560758412120303 0.03975101795915478 0.0836607298941876 0.008670344517574322 0.00797928642401412 0.05957102309154557 0.02419267905945003 -0.01783356086406862 0.03993778255026815 0.023301392507907026 -0.041533114110002926 -0.05927133254687524 0.01115976874976487 -0.014809653964891374 -0.06508702411617716 0.009540083582854452 0.020875849759044798 -0.018007551510139507 0.0192400045156713 0.07401931079677106 -0.049909612413466135 0.01224887023693563 0.04738483213152404 0.01772004319828166 0.02873436366936443 -0.056057232409338575 -0.01410124204007358 0.017491209894293182 0.026956945087622603 0.08156868888399817 0.011107781036831743 0.02077063980748741 -0.006528557756196691 0.0163081381052353 8.465077039012878e-05 -0.03920746127008133 0.012298782695850401 -0.0021324173406475043 0.08156868888399817 0.011107781036831743 0.02077063980748741 -0.01309175250783931 0.012586744387774917 0.024128180621804426 -0.04427442489247663 0.010725415869394052 0.029722689139782134 0.08156868888399817 0.011107781036831743 0.02077063980748741 0.012781716824114067 0.021048109857280353 0.06397998181077238 -0.004232691313591013 0.0209862851404811 0.0764787567779341 0.08156868888399817 0.011107781036831743 0.02077063980748741 -0.0001668655448120674 0.015065202189696987 0.0474438328405756 -0.028481140546824806 0.012998194931377726 0.05254237134262807 0.08156868888399817 0.011107781036831743 0.02077063980748741 0.05747898208135614 0.02663011557870745 -0.005042207480595331 0.03784574154007872 0.025738829027164446 -0.028741760726529637 -0.06136337355706467 0.013597205269022292 -0.0020183005814180845 -0.06717906512636658 0.011977520102111873 0.03366720314251809 -0.020099592520328932 0.02167744103492872 0.08681066418024434 -0.052001653423655564 0.01468630675619305 0.06017618551499733 0.015628002188092235 0.031171800188621854 -0.04326587902586529 -0.024571026092723287 0.017775709264519372 0.02720352209802684 0.07109890483134847 0.011392280407057934 0.02101721681789165 -0.0169983418088464 0.01659263747546149 0.00033122778079436657 -0.04967724532273103 0.012583282066076592 -0.0018858403302432665 0.07109890483134847 0.011392280407057934 0.02101721681789165 -0.023561536560489017 0.012871243758001107 0.024374757632208664 -0.05474420894512634 0.011009915239620242 0.02996926615018637 0.07109890483134847 0.011392280407057934 0.02101721681789165 0.0023119327714643603 0.021332609227506544 0.06422655882117662 -0.01470247536624072 0.02127078451070729 0.07672533378833835 0.07109890483134847 0.011392280407057934 0.02101721681789165 -0.010636649597461774 0.015349701559923178 0.047690409850979845 -0.03895092459947451 0.013282694301603917 0.052788948353032314 0.07109890483134847 0.011392280407057934 0.02101721681789165 0.04700919802870644 0.02691461494893364 -0.004795630470191093 0.027375957487429017 0.026023328397390636 -0.0284951837161254 -0.07183315760971437 0.013881704639248482 -0.0017717235710138467 -0.0776488491790163 0.012262019472338063 0.033913780152922325 -0.03056937657297864 0.02196194040515491 0.08705724119064859 -0.062471437476305264 0.014970806126419241 0.060422762525401574 0.005158218135442528 0.031456299558848044 -0.043019302015461044 -0.03530156362278354 -0.008167827526532901 -0.0030560431095851505 0.06036836730128821 -0.01455125638399434 -0.009242348389720344 -0.02772887933890665 -0.009350899315590782 -0.029928337426817626 -0.06040778285279129 -0.013360254724975682 -0.032145405537855255 0.06036836730128821 -0.01455125638399434 -0.009242348389720344 -0.034292074090549275 -0.013072293033051166 -0.005884807575403326 -0.06547474647518658 -0.014933621551432033 -0.00029029905742562106 0.06036836730128821 -0.01455125638399434 -0.009242348389720344 -0.008418604758595894 -0.00461092756354573 0.03396699361356463 -0.025433012896300976 -0.004672752280344985 0.04646576858072635 0.06036836730128821 -0.01455125638399434 -0.009242348389720344 -0.02136718712752203 -0.010593835231129094 0.01743084464336785 -0.04968146212953477 -0.012660842489448359 0.022529383145420318 0.06036836730128821 -0.01455125638399434 -0.009242348389720344 0.036278660498646184 0.0009710781578813662 -0.03505519567780308 0.016645419957368762 7.97916063383624e-05 -0.05875474892373739 -0.08256369513977463 -0.012061832151803792 -0.032031288778625835 -0.08837938670907655 -0.01368151731871421 0.0036542149453103337 -0.04129991410303889 -0.003981596385897363 0.056797675983036595 -0.07320197500636552 -0.010972730664633033 0.03016319731778958 -0.005572319394617727 0.005512762767795769 -0.07327886722307304 -0.024661788738746908 -0.008559121997248117 -0.005117714243412184 0.07100814218532484 -0.014942550854709555 -0.011304019523547378 -0.017089104454870017 -0.009742193786305997 -0.031990008560644656 -0.049768007968754656 -0.013751549195690898 -0.03420707667168229 0.07100814218532484 -0.014942550854709555 -0.011304019523547378 -0.02365229920651264 -0.013463587503766382 -0.00794647870923036 -0.05483497159114996 -0.015324916022147247 -0.002351970191252655 0.07100814218532484 -0.014942550854709555 -0.011304019523547378 0.002221170125440739 -0.005002222034260945 0.0319053224797376 -0.01479323801226434 -0.0050640467510602 0.04440409744689932 0.07100814218532484 -0.014942550854709555 -0.011304019523547378 -0.010727412243485395 -0.010985129701844312 0.015369173509540816 -0.039041687245498134 -0.013052136960163573 0.020467712011593284 0.07100814218532484 -0.014942550854709555 -0.011304019523547378 0.04691843538268282 0.0005797836871661508 -0.037116866811630116 0.027285194841405395 -0.00031150286437685304 -0.06081642005756442 -0.07192392025573799 -0.012453126622519007 -0.03409295991245287 -0.07773961182503991 -0.014072811789429426 0.0015925438114833 -0.03066013921900226 -0.0043728908566125786 0.05473600484920956 -0.06256220012232888 -0.011364025135348248 0.028101526183962545 0.005067455489418907 0.005121468297080553 -0.07534053835690008 -0.02579756508831994 -0.008816589505967011 -0.009106654686956308 0.0698723658357518 -0.01520001836342845 -0.015292959967091502 -0.018224880804443053 -0.009999661295024892 -0.035978949004188784 -0.05090378431832769 -0.014009016704409792 -0.03819601711522642 0.0698723658357518 -0.01520001836342845 -0.015292959967091502 -0.02478807555608567 -0.013721055012485276 -0.011935419152774485 -0.05597074794072299 -0.015582383530866141 -0.006340910634796779 0.0698723658357518 -0.01520001836342845 -0.015292959967091502 0.0010853937758677074 -0.00525968954297984 0.02791638203619347 -0.01592901436183737 -0.005321514259779094 0.04041515700335519 0.0698723658357518 -0.01520001836342845 -0.015292959967091502 -0.011863188593058427 -0.011242597210563206 0.011380233065996693 -0.04017746359507117 -0.013309604468882467 0.01647877156804916 0.0698723658357518 -0.01520001836342845 -0.015292959967091502 0.04578265903310978 0.00032231617844725655 -0.041105807255174244 0.026149418491832364 -0.0005689703730957472 -0.06480536050110855 -0.07305969660531103 -0.012710594131237901 -0.038081900355997 -0.07887538817461294 -0.01433027929814832 -0.002396396632060824 -0.03179591556857529 -0.004630358365331473 0.05074706440566543 -0.06369797647190192 -0.011621492644067142 0.02411258574041842 0.003931679139845875 0.004864000788361659 -0.07932947880044419 -0.015145433850159866 -0.008843616430156503 0.015596791743298095 0.08052449707391188 -0.015227045287617941 0.009410486463162901 -0.007572749566282977 -0.010026688219214383 -0.011275502573934379 -0.040251653080167614 -0.014036043628599284 -0.013492570684972012 0.08052449707391188 -0.015227045287617941 0.009410486463162901 -0.014135944317925597 -0.013748081936674768 0.012768027277479919 -0.04531861670256292 -0.015609410455055633 0.018362535795457626 0.08052449707391188 -0.015227045287617941 0.009410486463162901 0.011737525014027781 -0.005286716467169331 0.052619828466447874 -0.005276883123677299 -0.005348541183968586 0.06511860343360959 0.08052449707391188 -0.015227045287617941 0.009410486463162901 -0.0012110573548983535 -0.011269624134752698 0.036083679496251096 -0.029525332356911092 -0.013336631393071958 0.041182217998303565 0.08052449707391188 -0.015227045287617941 0.009410486463162901 0.05643479027126986 0.0002952892542577648 -0.01640236082491984 0.03680154972999244 -0.000595997297285239 -0.040101914070854144 -0.062407565367150954 -0.012737621055427393 -0.013378453925742592 -0.06822325693645287 -0.014357306222337812 0.02230704979819358 -0.02114378433041522 -0.0046573852895209645 0.07545051083591983 -0.053045845233741847 -0.011648519568256634 0.048816032170672825 0.014583810378005949 0.0048369738641721675 -0.05462603237018979 -0.005995737741136371 -0.007168567100084808 0.017102212474244833 0.08967419318293537 -0.013551995957546248 0.010915907194109639 0.0015769465427405175 -0.00835163888914269 -0.009770081842987641 -0.03110195697114412 -0.012360994298527588 -0.011987149954025274 0.08967419318293537 -0.013551995957546248 0.010915907194109639 -0.004986248208902103 -0.012073032606603074 0.014273448008426656 -0.03616892059353942 -0.01393436112498394 0.019867956526404364 0.08967419318293537 -0.013551995957546248 0.010915907194109639 0.020887221123051275 -0.0036116671370976365 0.054125249197394615 0.003872812985346196 -0.0036734918538968916 0.06662402416455633 0.08967419318293537 -0.013551995957546248 0.010915907194109639 0.007938638754125142 -0.009594574804681002 0.03758910022719783 -0.0203756362478876 -0.011661582063000265 0.0426876387292503 0.08967419318293537 -0.013551995957546248 0.010915907194109639 0.06558448638029335 0.0019703385843294592 -0.014896940093973101 0.045951245839015935 0.0010790520327864555 -0.0385964933399074 -0.053257869258127456 -0.0110625717253557 -0.011873033194795855 -0.05907356082742937 -0.012682256892266118 0.023812470529140317 -0.011994088221391723 -0.00298233595944927 0.07695593156686657 -0.04389614912471835 -0.00997347023818494 0.05032145290161956 0.023733506487029443 0.006512023194243862 -0.05312061163924306 -0.010285001798503111 -0.007038893432558717 0.012250727620791203 0.08538492912556864 -0.013422322290020156 0.0060644223406560085 -0.0027123175146262224 -0.008221965221616598 -0.014621566696441272 -0.03539122102851086 -0.012231320631001498 -0.016838634807478905 0.08538492912556864 -0.013422322290020156 0.0060644223406560085 -0.009275512266268842 -0.011943358939076982 0.009421963154973026 -0.040458184650906164 -0.013804687457457849 0.015016471672950732 0.08538492912556864 -0.013422322290020156 0.0060644223406560085 0.016597957065684538 -0.0034819934695715453 0.049273764343940984 -0.000416451072020544 -0.0035438181863708005 0.0617725393111027 0.08538492912556864 -0.013422322290020156 0.0060644223406560085 0.0036493746967584013 -0.00946490113715491 0.0327376153737442 -0.02466490030525434 -0.011531908395474175 0.03783615387579667 0.08538492912556864 -0.013422322290020156 0.0060644223406560085 0.06129522232292661 0.0021000122518555504 -0.01974842494742673 0.04166198178164919 0.0012087257003125466 -0.043447978193361034 -0.0575471333154942 -0.010932898057829607 -0.016724518048249485 -0.06336282488479611 -0.012552583224740026 0.018960985675686687 -0.01628335227875846 -0.002852662291923179 0.07210444671341294 -0.04818541318208509 -0.009843796570658848 0.04546996804816593 0.0194442424296627 0.006641696861769953 -0.05797209649269669 -0.018382301446455723 -0.008101771360290878 0.010800720006263356 0.07728762947761603 -0.014485200217752316 0.004614414726128162 -0.010809617162578835 -0.009284843149348758 -0.016071574310969117 -0.04348852067646347 -0.013294198558733658 -0.01828864242200675 0.07728762947761603 -0.014485200217752316 0.004614414726128162 -0.017372811914221454 -0.013006236866809143 0.00797195554044518 -0.048555484298858774 -0.014867565385190008 0.013566464058422885 0.07728762947761603 -0.014485200217752316 0.004614414726128162 0.008500657417731924 -0.004544871397303706 0.047823756729413136 -0.008513750719973156 -0.004606696114102961 0.06032253169657486 0.07728762947761603 -0.014485200217752316 0.004614414726128162 -0.004447924951194211 -0.010527779064887072 0.03128760775921636 -0.03276219995320695 -0.012594786323206333 0.03638614626126883 0.07728762947761603 -0.014485200217752316 0.004614414726128162 0.053197922674974 0.00103713432412339 -0.021198432561954576 0.03356468213369658 0.00014584777258038611 -0.04489798580788888 -0.06564443296344681 -0.011995775985561768 -0.01817452566277733 -0.07146012453274872 -0.013615461152472186 0.01751097806115884 -0.024380651926711076 -0.003915540219655339 0.0706544390988851 -0.056282712830037704 -0.010906674498391009 0.04401996043363809 0.011346942781710091 0.005578818934037793 -0.05942210410722453 -0.06765993878499503 0.004443951331149008 -0.03272535081137345 0.02800999213907672 -0.0019394775263124305 -0.038911656091508644 -0.06008725450111814 0.0032608795420911267 -0.05959764512860592 -0.09276615801500278 -0.0007484758672937726 -0.061814713239643555 0.02800999213907672 -0.0019394775263124305 -0.038911656091508644 -0.06665044925276076 -0.00046051417536925685 -0.03555411527719162 -0.09783312163739807 -0.0023218426937501226 -0.029959606759213917 0.02800999213907672 -0.0019394775263124305 -0.038911656091508644 -0.04077697992080738 0.00800085129413618 0.0042976859117763305 -0.057791388058512465 0.007939026577336925 0.016796460878938053 0.02800999213907672 -0.0019394775263124305 -0.038911656091508644 -0.05372556228973352 0.0020179436265528143 -0.012238463058420447 -0.08203983729174626 -4.9063631766448415e-05 -0.007139924556367978 0.02800999213907672 -0.0019394775263124305 -0.038911656091508644 0.003920285336434695 0.013582857015563277 -0.06472450337959137 -0.015712955204842727 0.012691570464020273 -0.08842405662552569 -0.11492207030198612 0.000549946705878118 -0.061700596480414135 -0.12073776187128804 -0.0010697384610323006 -0.026015092756477964 -0.07365828926525038 0.008630182471784546 0.027128368281248295 -0.10556035016857701 0.0016390481930488765 0.0004938896160012821 -0.037930694556829216 0.018124541625477678 -0.10294817492486133 -0.0684868443720789 -0.007008921252735817 -0.034215396245074234 0.02718308655199285 -0.013392350110197255 -0.04040170152520943 -0.06091416008820201 -0.008191993041793699 -0.06108769056230671 -0.09359306360208665 -0.012201348451178599 -0.06330475867334434 0.02718308655199285 -0.013392350110197255 -0.04040170152520943 -0.06747735483984463 -0.011913386759254081 -0.03704416071089241 -0.09866002722448194 -0.013774715277634948 -0.03144965219291471 0.02718308655199285 -0.013392350110197255 -0.04040170152520943 -0.04160388550789125 -0.003452021289748645 0.0028076404780755446 -0.058618293645596335 -0.0035138460065479004 0.015306415445237267 0.02718308655199285 -0.013392350110197255 -0.04040170152520943 -0.05455246787681739 -0.009434928957332011 -0.013728508492121233 -0.08286674287883013 -0.011501936215651274 -0.008629969990068764 0.02718308655199285 -0.013392350110197255 -0.04040170152520943 0.0030933797493508247 0.0021299844316784505 -0.06621454881329217 -0.016539860791926597 0.0012386978801354467 -0.08991410205922648 -0.11574897588906999 -0.010902925878006706 -0.06319064191411491 -0.12156466745837191 -0.012522611044917125 -0.02750513819017875 -0.07448519485233425 -0.002822690112100279 0.02563832284754751 -0.10638725575566088 -0.00981382439083595 -0.000996155817699504 -0.038757600143913086 0.006671669041592853 -0.10443822035856212 0.030483190536795306 0.0017610812494037373 0.038253149366111044 0.12615312146086705 -0.004622347608057701 0.03206684408597585 0.03805587482067219 0.000578009460345856 0.01138085504887857 0.005376971306787558 -0.0034313459490390432 0.009163786937840937 0.12615312146086705 -0.004622347608057701 0.03206684408597585 0.031492680069029576 -0.0031433842571145275 0.03542438490029287 0.0003100076843922557 -0.005004712775495393 0.04101889341827057 0.12615312146086705 -0.004622347608057701 0.03206684408597585 0.05736614940098295 0.005317981212390909 0.07527618608926082 0.040351741263277875 0.005256156495591654 0.08777496105642255 0.12615312146086705 -0.004622347608057701 0.03206684408597585 0.04441756703205682 -0.0006649264551924566 0.058740037119064045 0.01610329203004408 -0.002731933713511719 0.06383857562111651 0.12615312146086705 -0.004622347608057701 0.03206684408597585 0.10206341465822504 0.010899986933818004 0.0062539967978931105 0.08243017411694761 0.010008700382275 -0.017445556448041195 -0.01677894098019578 -0.0021329233758671526 0.009277903697070357 -0.022594632549497697 -0.0037526085427775713 0.04496340742100653 0.024484840056539954 0.005947312390039276 0.09810686845873279 -0.007417220846786674 -0.0010438218886963944 0.07147238979348577 0.06021243476496112 0.015441671543732407 -0.031969674747376844 0.025996368657243196 0.0024277955231048805 0.03821728582599407 0.12166629958131495 -0.003955633334356558 0.03203098054585887 0.03356905294112009 0.0012447237340469993 0.011344991508761594 0.0008901494272354482 -0.0027646316753379002 0.009127923397723961 0.12166629958131495 -0.003955633334356558 0.03203098054585887 0.027005858189477466 -0.0024766699834133845 0.035388521360175895 -0.0041768141951598545 -0.00433799850179425 0.040983029878153596 0.12166629958131495 -0.003955633334356558 0.03203098054585887 0.05287932752143085 0.005984695486092052 0.07524032254914384 0.03586491938372576 0.005922870769292797 0.08773909751630557 0.12166629958131495 -0.003955633334356558 0.03203098054585887 0.03993074515250471 1.7878185086866658e-06 0.05870417357894707 0.01161647015049197 -0.002065219439810576 0.06380271208099954 0.12166629958131495 -0.003955633334356558 0.03203098054585887 0.09757659277867292 0.011566701207519148 0.0062181332577761345 0.0779433522373955 0.010675414655976144 -0.01748141998815817 -0.02126576285974789 -0.0014662091021660096 0.00924204015695338 -0.027081454429049807 -0.0030858942690764283 0.044927543880889556 0.019998018176987844 0.006614026663740419 0.09807100491861581 -0.011904042726338784 -0.00037710761499525113 0.0714365262533688 0.05572561288540901 0.01610838581743355 -0.03200553828749382 -0.046766318366380705 -0.007858370550160088 -0.001642485900112414 0.048903612557691045 -0.014241799407621526 -0.007828791180247608 -0.039193634082503814 -0.009041442339217968 -0.02851478021734489 -0.07187253759638845 -0.013050797748602868 -0.03073184832838252 0.048903612557691045 -0.014241799407621526 -0.007828791180247608 -0.04575682883414644 -0.012762836056678353 -0.00447125036593059 -0.07693950121878376 -0.014624164575059218 0.0011232581520471154 0.048903612557691045 -0.014241799407621526 -0.007828791180247608 -0.019883359502193058 -0.004301470587172916 0.035380550823037364 -0.03689776763989814 -0.004363295303972171 0.04787932579019909 0.048903612557691045 -0.014241799407621526 -0.007828791180247608 -0.032831941871119194 -0.010284378254756282 0.018844401852840587 -0.06114621687313193 -0.012351385513075543 0.023942940354893055 0.048903612557691045 -0.014241799407621526 -0.007828791180247608 0.02481390575504902 0.00128053513425418 -0.03364163846833035 0.005180665213771599 0.0003892485827111762 -0.057341191714264654 -0.09402844988337179 -0.011752375175430978 -0.030617731569153102 -0.0998441414526737 -0.013372060342341396 0.00506777215478307 -0.052764668846636054 -0.0036721394095245493 0.05821123319250933 -0.08466672974996269 -0.010663273688260219 0.031576754527262316 -0.01703707413821489 0.005822219744168583 -0.0718653100136003 -0.03827779260148901 0.018158187930678384 0.02730348325224807 0.05739213832258274 0.011774759073216946 0.021117177972112877 -0.03070510831761212 0.016975116141620502 0.0004311889350155952 -0.06338401183149675 0.012965760732235604 -0.0017858791760220379 0.05739213832258274 0.011774759073216946 0.021117177972112877 -0.03726830306925474 0.01325372242416012 0.024474718786429893 -0.06845097545389206 0.011392393905779254 0.0300692273044076 0.05739213832258274 0.011774759073216946 0.021117177972112877 -0.011394833737301362 0.021715087893665556 0.06432651997539784 -0.028409241875006444 0.021653263176866302 0.07682529494255957 0.05739213832258274 0.011774759073216946 0.021117177972112877 -0.0243434161062275 0.01573218022608219 0.047790371005201074 -0.052657691108240236 0.013665172967762929 0.05288890950725354 0.05739213832258274 0.011774759073216946 0.021117177972112877 0.033302431519940716 0.027297093615092652 -0.004695669315969864 0.013669190978663294 0.026405807063549648 -0.02839522256190417 -0.0855399241184801 0.014264183305407494 -0.001671762416792618 -0.09135561568778201 0.012644498138497075 0.034013741307143554 -0.04427614308174436 0.022344419071313924 0.08715720234486982 -0.076178203985071 0.015353284792578253 0.0605227236796228 -0.008548548373323195 0.03183877822500705 -0.042919340861239816 -0.05814372378411347 -0.009109535254445626 -0.0008735774119418916 0.03752620713995828 -0.015492964111907065 -0.007059882692077086 -0.05057103950023658 -0.010292607043503507 -0.027745871729174365 -0.08324994301412122 -0.014301962452888407 -0.029962939840211998 0.03752620713995828 -0.015492964111907065 -0.007059882692077086 -0.057134234251879204 -0.014014000760963891 -0.003702341877760068 -0.08831690663651652 -0.015875329279344756 0.0018921666402176378 0.03752620713995828 -0.015492964111907065 -0.007059882692077086 -0.031260764919925826 -0.005552635291458455 0.03614945931120789 -0.048275173057630905 -0.0056144600082577096 0.04864823427836961 0.03752620713995828 -0.015492964111907065 -0.007059882692077086 -0.04420934728885196 -0.011535542959041821 0.01961331034101111 -0.0725236222908647 -0.013602550217361082 0.02471184884306358 0.03752620713995828 -0.015492964111907065 -0.007059882692077086 0.013436500337316255 2.9370429968641337e-05 -0.032872729980159825 -0.006196740203961167 -0.0008619161215743625 -0.05657228322609413 -0.10540585530110455 -0.013003539879716516 -0.02984882308098258 -0.11122154687040647 -0.014623225046626935 0.005836680642953593 -0.06414207426436883 -0.004923304113810088 0.05898014168067985 -0.09604413516769544 -0.011914438392545757 0.03234566301543284 -0.028414479555947655 0.004571055039883044 -0.07109640152542979 -0.024121454185812557 0.008751954177203746 -0.02509574364971365 0.07154847673825919 0.002368525319742307 -0.031282048929848844 -0.01654876990193567 0.007568882388145864 -0.05196803796694613 -0.04922767341582031 0.003559526978760965 -0.054185106077983755 0.07154847673825919 0.002368525319742307 -0.031282048929848844 -0.023111964653578287 0.0038474886706854807 -0.027924508115531828 -0.054294637038215604 0.001986160152304615 -0.02232999959755412 0.07154847673825919 0.002368525319742307 -0.031282048929848844 0.00276150467837509 0.012308854140190917 0.011927293073436127 -0.01425290345932999 0.012247029423391662 0.02442606804059785 0.07154847673825919 0.002368525319742307 -0.031282048929848844 -0.010187077690551044 0.006325946472607552 -0.00460885589676065 -0.03850135269256379 0.004258939214288289 0.0004896826052918184 0.07154847673825919 0.002368525319742307 -0.031282048929848844 0.047458769935617165 0.017890859861618015 -0.05709489621793158 0.027825529394339747 0.01699957331007501 -0.0807944494638659 -0.07138358570280365 0.004857949551932856 -0.05407098931875434 -0.07719927727210556 0.003238264385022437 -0.018385485594818167 -0.03011980466606791 0.012938185317839284 0.034757975442908096 -0.06202186556939454 0.0059470510391036145 0.008123496777661079 0.005607790042353258 0.022432544471532416 -0.09531856776320154 -0.022896478313272677 0.0029832373916299807 -0.02827089870246895 0.07277345261079907 -0.003400191465831458 -0.03445720398260414 -0.015323794029395788 0.0018001656025720995 -0.05514319301970143 -0.048002697543280425 -0.0022091898068128 -0.057360261130739054 0.07277345261079907 -0.003400191465831458 -0.03445720398260414 -0.021886988781038407 -0.0019212281148882843 -0.031099663168287127 -0.05306966116567573 -0.00378255663326915 -0.02550515465030942 0.07277345261079907 -0.003400191465831458 -0.03445720398260414 0.0039864805509149705 0.006540137354617153 0.008752138020680828 -0.01302792758679011 0.006478312637817897 0.02125091298784255 0.07277345261079907 -0.003400191465831458 -0.03445720398260414 -0.008962101818011164 0.0005572296870337869 -0.0077840109495159494 -0.0372763768200239 -0.0015097775712854759 -0.0026854724474634807 0.07277345261079907 -0.003400191465831458 -0.03445720398260414 0.04868374580815705 0.01212214307604425 -0.06027005127068688 0.029050505266879627 0.011230856524501245 -0.0839696045166212 -0.07015860983026376 -0.0009107672336409094 -0.05724614437150964 -0.07597430139956568 -0.002530452400551328 -0.021560640647573466 -0.02889482879352803 0.007169468532265519 0.031582820390152797 -0.06079688969685466 0.00017833425352984907 0.00494834172490578 0.006832765914893138 0.01666382768595865 -0.09849372281595684 -0.016399486049148138 0.0030866320146968316 -0.027234610982219343 0.07927044487492362 -0.003296796842764607 -0.033420916262354536 -0.00882680176527125 0.0019035602256389503 -0.05410690529945182 -0.04150570527915588 -0.002105795183745949 -0.05632397341048945 0.07927044487492362 -0.003296796842764607 -0.033420916262354536 -0.015389996516913869 -0.0018178334918214334 -0.03006337544803752 -0.04657266890155119 -0.0036791620102022992 -0.024468866930059813 0.07927044487492362 -0.003296796842764607 -0.033420916262354536 0.010483472815039509 0.0066435319776840035 0.009788425740930435 -0.006530935322665571 0.006581707260884749 0.022287200708092158 0.07927044487492362 -0.003296796842764607 -0.033420916262354536 -0.002465109553886626 0.0006606243101006377 -0.006747723229266343 -0.030779384555899365 -0.001406382948218625 -0.001649184727213874 0.07927044487492362 -0.003296796842764607 -0.033420916262354536 0.05518073807228159 0.012225537699111099 -0.059233763550437274 0.03554749753100417 0.011334251147568095 -0.08293331679637159 -0.06366161756613922 -0.0008073726105740585 -0.056209856651260034 -0.06947730913544115 -0.0024270577774844772 -0.02052435292732386 -0.02239783652940349 0.007272863155332369 0.0326191081104024 -0.054299897432730115 0.00028172887659669993 0.0059846294451553865 0.013329758179017676 0.0167672223090255 -0.09745743509570723 -0.016246723475519757 0.008784104585875939 -0.026565686343897558 0.079423207448552 0.0024006757284145003 -0.03275199162403275 -0.008674039191642868 0.0076010327968180575 -0.053437980661130036 -0.0413529427055275 0.003591677387433158 -0.05565504877216766 0.079423207448552 0.0024006757284145003 -0.03275199162403275 -0.015237233943285487 0.003879639079357674 -0.029394450809715734 -0.04641990632792281 0.002018310560976808 -0.023799942291738027 0.079423207448552 0.0024006757284145003 -0.03275199162403275 0.01063623538866789 0.01234100454886311 0.01045735037925222 -0.00637817274903719 0.012279179832063856 0.022956125346413944 0.079423207448552 0.0024006757284145003 -0.03275199162403275 -0.002312346980258244 0.006358096881279745 -0.006078798590944557 -0.030626621982270983 0.004291089622960482 -0.0009802600888920883 0.079423207448552 0.0024006757284145003 -0.03275199162403275 0.05533350064590997 0.017923010270290207 -0.05856483891211549 0.03570026010463255 0.017031723718747203 -0.0822643921580498 -0.06350885499251084 0.004890099960605049 -0.05554093201293825 -0.06932454656181276 0.00327041479369463 -0.019855428289002074 -0.02224507395577511 0.012970335726511477 0.03328803274872419 -0.054147134859101734 0.005979201447775808 0.006653554083477172 0.013482520752646058 0.02246469488020461 -0.09678851045738544 0.021790912341560404 0.0009344875584564651 0.019124144081127666 0.11746084326563215 -0.005448941299004973 0.012937838800992472 0.02936359662543729 -0.00024858423060141615 -0.007748150236104808 -0.003315306888447344 -0.004257939639986315 -0.009965218347142441 0.11746084326563215 -0.005448941299004973 0.012937838800992472 0.022800401873794673 -0.0039699779480618 0.01629537961530949 -0.008382270510842647 -0.005831306466442665 0.021889888133287197 0.11746084326563215 -0.005448941299004973 0.012937838800992472 0.04867387120574805 0.004491387521443637 0.05614718080427744 0.03165946306804297 0.004429562804644382 0.06864595577143917 0.11746084326563215 -0.005448941299004973 0.012937838800992472 0.03572528883682192 -0.0014915201461397289 0.03961103183408067 0.007411013834809178 -0.0035585274044589916 0.04470957033613314 0.11746084326563215 -0.005448941299004973 0.012937838800992472 0.09337113646299013 0.010073393242870732 -0.012875008487090268 0.0737378959217127 0.009182106691327728 -0.03657456173302458 -0.025471219175430684 -0.002959517066814425 -0.009851101587913021 -0.031286910744732596 -0.004579202233724843 0.02583440213602315 0.01579256186130505 0.005120718699092004 0.07897786317374941 -0.016109499042021577 -0.0018704155796436667 0.0523433845085024 0.05152015656972622 0.014615077852785135 -0.05109868003236022 0.021883655816817466 -0.003359892903906417 0.022870594451011833 0.11755358674088921 -0.009743321761367855 0.016684289170876637 0.029456340100694353 -0.004542964692964298 -0.004001699866220641 -0.003222563413190282 -0.008552320102349197 -0.006218767977258274 0.11755358674088921 -0.009743321761367855 0.016684289170876637 0.022893145349051736 -0.008264358410424682 0.020041829985193656 -0.008289527035585584 -0.010125686928805548 0.025636338503171364 0.11755358674088921 -0.009743321761367855 0.016684289170876637 0.04876661468100511 0.00019700705908075496 0.05989363117416161 0.031752206543300035 0.00013518234228149977 0.07239240614132333 0.11755358674088921 -0.009743321761367855 0.016684289170876637 0.03581803231207898 -0.005785900608502611 0.043357482203964834 0.00750375731006624 -0.007852907866821874 0.0484560207060173 0.11755358674088921 -0.009743321761367855 0.016684289170876637 0.09346387993824719 0.005779012780507851 -0.009128558117206101 0.07383063939696977 0.004887726228964847 -0.03282811136314041 -0.02537847570017362 -0.007253897529177307 -0.0061046512180288545 -0.031194167269475537 -0.008873582696087725 0.029580852505907317 0.015885305336562114 0.0008263382367291214 0.08272431354363358 -0.016016755566764514 -0.006164796042006549 0.05608983487838656 0.051612900044983284 0.010320697390422254 -0.047352229662476056 0.026618160435928084 -0.0024249863449213147 0.023513110703920828 0.12228809135999984 -0.008808415202382753 0.017326805423785632 0.03419084471980497 -0.0036080581339791957 -0.0033591836133116462 0.0015119412059203356 -0.007617413543364095 -0.005576251724349279 0.12228809135999984 -0.008808415202382753 0.017326805423785632 0.027627649968162353 -0.007329451851439579 0.02068434623810265 -0.003555022416474967 -0.009190780369820446 0.02627885475608036 0.12228809135999984 -0.008808415202382753 0.017326805423785632 0.05350111930011573 0.0011319136180658572 0.060536147427070607 0.03648671116241065 0.001070088901266602 0.07303492239423233 0.12228809135999984 -0.008808415202382753 0.017326805423785632 0.0405525369311896 -0.004850994049517509 0.04399999845687383 0.012238261929176857 -0.006918001307836772 0.0490985369589263 0.12228809135999984 -0.008808415202382753 0.017326805423785632 0.09819838455735781 0.006713919339492953 -0.008486041864297106 0.07856514401608039 0.0058226327879499495 -0.03218559511023141 -0.020643971081063004 -0.006318990970192204 -0.0054621349651198595 -0.02645966265036492 -0.007938676137102623 0.030223368758816312 0.02061980995567273 0.0017612447957142236 0.08336682979654257 -0.011282250947653897 -0.005229889483021446 0.05673235113129556 0.056347404664093895 0.011255603949407356 -0.04670971340956706 0.026898541409424558 0.0018767597176691535 0.01976056707237682 0.12256847233349631 -0.004506669139792285 0.013574261792241625 0.034471225693301445 0.0006936879286112722 -0.007111727244855655 0.0017923221794168102 -0.003315667480773627 -0.009328795355893288 0.12256847233349631 -0.004506669139792285 0.013574261792241625 0.027908030941658828 -0.0030277057888491114 0.016931802606558643 -0.0032746414429784924 -0.004889034307229977 0.02252631112453635 0.12256847233349631 -0.004506669139792285 0.013574261792241625 0.053781500273612205 0.005433659680656325 0.0567836037955266 0.03676709213590713 0.00537183496385707 0.06928237876268832 0.12256847233349631 -0.004506669139792285 0.013574261792241625 0.04083291790468607 -0.0005492479869270404 0.04024745482532982 0.012518642902673332 -0.002616255245246303 0.04534599332738229 0.12256847233349631 -0.004506669139792285 0.013574261792241625 0.09847876553085429 0.011015665402083421 -0.012238585495841114 0.07884552498957687 0.010124378850540417 -0.03593813874177542 -0.02036359010756653 -0.0020172449076017365 -0.009214678596663868 -0.026179281676868445 -0.003636930074512155 0.026470825127272304 0.020900190929169206 0.006062990858304692 0.07961428616499856 -0.011001869974157422 -0.0009281434204309782 0.05297980749975155 0.05662778563759037 0.015557350011997824 -0.05046225704111107 -0.003068760006787212 -0.006677843675446539 0.028704908156435907 0.09260117091728454 -0.013061272532907977 0.02251860287630071 0.004503924277089677 -0.00786091546450442 0.0018326138392034327 -0.02817497923679496 -0.01187027087388932 -0.00038445427183420033 0.09260117091728454 -0.013061272532907977 0.02251860287630071 -0.002059270474552943 -0.011582309181964803 0.02587614369061773 -0.033241942859190264 -0.01344363770034567 0.031470652208595434 0.09260117091728454 -0.013061272532907977 0.02251860287630071 0.023814198857400434 -0.0031209437124593673 0.06572794487958569 0.006799790719695355 -0.0031827684292586225 0.07822671984674741 0.09260117091728454 -0.013061272532907977 0.02251860287630071 0.0108656164884743 -0.009103851380042733 0.04919179590938891 -0.01744865851353844 -0.011170858638361996 0.05429033441144138 0.09260117091728454 -0.013061272532907977 0.02251860287630071 0.06851146411464251 0.0024610620089677284 -0.003294244411782027 0.04887822357336509 0.0015697754574247247 -0.026993797657716333 -0.0503308915237783 -0.010571848300717428 -0.0002703375126047805 -0.05614658309308022 -0.012191533467627847 0.035415166211331395 -0.009067110487042564 -0.002491612534811001 0.08855862724905765 -0.040969171390369194 -0.009482746813546671 0.06192414858381064 0.0266604842213786 0.007002746618882131 -0.04151791595705198 -0.005103429235868382 -0.004914972578200067 0.03465718975187521 0.09056650168820336 -0.011298401435661506 0.028470884471740017 0.002469255048008507 -0.006098044367257948 0.0077848954346427385 -0.030209648465876128 -0.010107399776642847 0.005567827323605105 0.09056650168820336 -0.011298401435661506 0.028470884471740017 -0.004093939703634112 -0.009819438084718333 0.03182842528605704 -0.03527661208827143 -0.011680766603099198 0.03742293380403474 0.09056650168820336 -0.011298401435661506 0.028470884471740017 0.021779529628319264 -0.001358072615212895 0.07168022647502499 0.004765121490614185 -0.0014198973320121502 0.08417900144218671 0.09056650168820336 -0.011298401435661506 0.028470884471740017 0.00883094725939313 -0.007340980282796261 0.055144077504828214 -0.019483327742619606 -0.009407987541115524 0.06024261600688068 0.09056650168820336 -0.011298401435661506 0.028470884471740017 0.06647679488556134 0.004223933106214201 0.002658037183657279 0.04684355434428392 0.003332646554671197 -0.021041516062277027 -0.05236556075285947 -0.008808977203470958 0.005681944082834525 -0.058181252322161384 -0.010428662370381377 0.041367447806770694 -0.011101779716123732 -0.0007287414375645286 0.09451090884449695 -0.04300384061945036 -0.007719875716300199 0.06787643017924994 0.024625814992297435 0.008765617716128604 -0.035565634361612676 0.0019386123716331322 -0.0037151294168657235 0.033916232209989655 0.09760854329570488 -0.010098558274327162 0.02772992692985446 0.00951129665551002 -0.004898201205923605 0.007043937892757181 -0.023167606858374615 -0.008907556615308504 0.004826869781719548 0.09760854329570488 -0.010098558274327162 0.02772992692985446 0.002948101903867401 -0.008619594923383989 0.03108746774417148 -0.028234570480769917 -0.010480923441764853 0.03668197626214918 0.09760854329570488 -0.010098558274327162 0.02772992692985446 0.02882157123582078 -0.00015822945387855168 0.07093926893313943 0.011807163098115699 -0.00022005417067780687 0.08343804390030116 0.09760854329570488 -0.010098558274327162 0.02772992692985446 0.015872988866894644 -0.006141137121461917 0.054403119962942656 -0.012441286135118095 -0.00820814437978118 0.059501658464995125 0.09760854329570488 -0.010098558274327162 0.02772992692985446 0.07351883649306286 0.005423776267548544 0.0019170796417717212 0.05388559595178544 0.00453248971600554 -0.021782473604162585 -0.045323519145357954 -0.007609134042136614 0.0049409865409489676 -0.05113921071465987 -0.009228819209047032 0.04062649026488514 -0.004059738108622219 0.0004711017237698147 0.0937699513026114 -0.03596179901194885 -0.006520032554965855 0.06713547263736439 0.03166785659979895 0.009965460877462947 -0.036306591903498234 0.002555115096814104 -0.004762458687344311 0.0281577320397633 0.09822504602088586 -0.01114588754480575 0.021971426759628106 0.010127799380690992 -0.005945530476402192 0.0012854377225308272 -0.022551104133193643 -0.009954885885787091 -0.0009316303885068059 0.09822504602088586 -0.01114588754480575 0.021971426759628106 0.003564604629048373 -0.009666924193862576 0.025328967573945125 -0.027618067755588945 -0.01152825271224344 0.030923476091922832 0.09822504602088586 -0.01114588754480575 0.021971426759628106 0.029438073961001752 -0.0012055587243571387 0.06518076876291308 0.01242366582329667 -0.001267383441156394 0.0776795437300748 0.09822504602088586 -0.01114588754480575 0.021971426759628106 0.016489491592075616 -0.0071884663919405045 0.0486446197927163 -0.011824783409937123 -0.009255473650259766 0.05374315829476877 0.09822504602088586 -0.01114588754480575 0.021971426759628106 0.07413533921824383 0.004376446997069957 -0.0038414205284546324 0.054502098676966405 0.003485160445526953 -0.027540973774388938 -0.044707016420176986 -0.0086564633126152 -0.000817513629277386 -0.0505227079894789 -0.01027614847952562 0.03486799009465878 -0.0034432353834412473 -0.0005762275467087723 0.08801145113238504 -0.03534529628676788 -0.007567361825444442 0.06137697246713803 0.03228435932497992 0.00891813160698436 -0.04206509207372459 -0.003914112837998826 0.0009336626346994155 0.037991457060150745 0.09175581808607293 -0.005449766222762023 0.03180515178001555 0.003658571445878063 -0.0002494091543584658 0.01111916274291827 -0.029020332068006575 -0.004258764563743365 0.008902094631880637 0.09175581808607293 -0.005449766222762023 0.03180515178001555 -0.0029046233057645567 -0.00397080287181885 0.03516269259433257 -0.03408729569040188 -0.005832131390199715 0.04075720111231027 0.09175581808607293 -0.005449766222762023 0.03180515178001555 0.022968846026188823 0.004490562597686588 0.07501449378330052 0.005954437888483741 0.004428737880887332 0.08751326875046225 0.09175581808607293 -0.005449766222762023 0.03180515178001555 0.010020263657262687 -0.0014923450698967784 0.058478344813103746 -0.018294011344750054 -0.003559352328216041 0.06357688331515621 0.09175581808607293 -0.005449766222762023 0.03180515178001555 0.0676661112834309 0.010072568319113684 0.005992304491932811 0.048032870742153476 0.00918128176757068 -0.017707248754001495 -0.051176244354989915 -0.0029603419905714747 0.009016211391110057 -0.05699193592429183 -0.004580027157481893 0.044701715115046226 -0.009912463318254176 0.005119893775334954 0.0978451761527725 -0.04181452422158081 -0.0018712405034007162 0.07121069748752548 0.025815131390166987 0.014614252929028085 -0.032231367053337144 0.0023056473405057183 0.0014113708941036868 0.03767233956123114 0.09797557826457746 -0.004972057963357751 0.03148603428109594 0.009878331624382607 0.00022829910504580555 0.010800045243998663 -0.02280057188950203 -0.003781056304339094 0.00858297713296103 0.09797557826457746 -0.004972057963357751 0.03148603428109594 0.0033151368727399873 -0.0034930946124145782 0.034843575095412964 -0.027867535511897332 -0.0053544231307954444 0.040438083613390664 0.09797557826457746 -0.004972057963357751 0.03148603428109594 0.029188606204693365 0.004968270857090859 0.07469537628438092 0.012174198066988285 0.004906446140291603 0.08719415125154265 0.09797557826457746 -0.004972057963357751 0.03148603428109594 0.016240023835767232 -0.001014636810492507 0.05815922731418414 -0.012074251166245508 -0.00308164406881177 0.0632577658162366 0.09797557826457746 -0.004972057963357751 0.03148603428109594 0.07388587146193544 0.010550276578517955 0.005673186993013203 0.05425263092065802 0.009658990026974951 -0.018026366252921103 -0.04495648417648537 -0.0024826337311672033 0.00869709389219045 -0.05077217574578728 -0.004102318898077622 0.04438259761612662 -0.003692703139749633 0.0055976020347392255 0.09752605865385289 -0.035594764043076266 -0.0013935322439964449 0.07089157998860587 0.032034891568671536 0.015091961188432357 -0.03255048455225675 0.021739261652673415 0.007554462266003638 0.01892400179305387 0.11740919257674516 0.0011710334085421993 0.012737696512918674 0.0293119459365503 0.0063713904769457565 -0.007948292524178606 -0.0033669575773343334 0.0023620350675608573 -0.010165360635216239 0.11740919257674516 0.0011710334085421993 0.012737696512918674 0.022748751184907684 0.002649996759485373 0.016095237327235692 -0.008433921199729636 0.0007886682411045072 0.0216897458452134 0.11740919257674516 0.0011710334085421993 0.012737696512918674 0.04862222051686106 0.01111136222899081 0.05594703851620365 0.03160781237915598 0.011049537512191555 0.06844581348336537 0.11740919257674516 0.0011710334085421993 0.012737696512918674 0.03567363814793493 0.005128454561407444 0.03941088954600687 0.007359363145922188 0.0030614473030881814 0.04450942804805934 0.11740919257674516 0.0011710334085421993 0.012737696512918674 0.09331948577410314 0.016693367950417905 -0.013075150775164066 0.07368624523282571 0.0158020813988749 -0.03677470402109837 -0.025522869864317673 0.003660457640732748 -0.01005124387598682 -0.031338561433619586 0.002040772473822329 0.025634259847949353 0.015740911172418062 0.011740693406639177 0.07877772088567561 -0.016161149730908566 0.004749559127903506 0.0521432422204286 0.05146850588083923 0.02123505256033231 -0.05129882232043402 0.021723065402219043 0.013994475053268906 0.02312561102704995 0.1173929963262908 0.007611046195807467 0.016939305746914754 0.029295749686095933 0.012811403264211025 -0.0037466832901825245 -0.0033831538277887055 0.008802047854826125 -0.005963751401220158 0.1173929963262908 0.007611046195807467 0.016939305746914754 0.022732554934453312 0.009090009546750641 0.020296846561231773 -0.008450117450184008 0.007228681028369775 0.02589135507920948 0.1173929963262908 0.007611046195807467 0.016939305746914754 0.048606024266406686 0.017551375016256077 0.06014864775019973 0.03159161612870161 0.017489550299456823 0.07264742271736145 0.1173929963262908 0.007611046195807467 0.016939305746914754 0.03565744189748055 0.011568467348672711 0.04361249878000295 0.007343166895467816 0.00950146009035345 0.04871103728205542 0.1173929963262908 0.007611046195807467 0.016939305746914754 0.09330328952364877 0.023133380737683173 -0.008873541541167984 0.07367004898237134 0.02224209418614017 -0.03257309478710229 -0.025539066114772045 0.010100470427998016 -0.005849634641990738 -0.03135475768407396 0.008480785261087597 0.029835869081945434 0.01572471492196369 0.018180706193904446 0.0829793301196717 -0.016177345981362938 0.011189571915168775 0.05634485145442468 0.05145230963038486 0.027675065347597574 -0.04709721308643794 0.0065941955542943576 0.013195499446237846 0.021116241890595883 0.10226412647836611 0.006812070588776408 0.014929936610460688 0.014166879838171246 0.012012427657179966 -0.005756052426636592 -0.01851202367571339 0.008003072247795066 -0.007973120537674225 0.10226412647836611 0.006812070588776408 0.014929936610460688 0.007603685086528627 0.008291033939719581 0.018287477424777706 -0.023578987298108693 0.006429705421338716 0.023881985942755413 0.10226412647836611 0.006812070588776408 0.014929936610460688 0.03347715441848201 0.01675239940922502 0.05813927861374566 0.016462746280776923 0.016690574692425762 0.07063805358090738 0.10226412647836611 0.006812070588776408 0.014929936610460688 0.020528572049555868 0.010769491741641653 0.04160312964354888 -0.007785702952456869 0.008702484483322389 0.04670166814560135 0.10226412647836611 0.006812070588776408 0.014929936610460688 0.07817441967572408 0.022334405130652116 -0.010882910677622051 0.05854117913444666 0.021443118579109112 -0.03458246392355636 -0.04066793596269673 0.009301494820966956 -0.007859003778444805 -0.046483627531998646 0.007681809654056538 0.027826499945491367 0.0005958450740390061 0.017381730586873385 0.08096996098321763 -0.03130621582928762 0.010390596308137715 0.05433548231797061 0.03632343978246017 0.026876089740566517 -0.049106582222892006 0.008631653730630115 0.00588299590318298 0.018324423242002112 0.10430158465470186 -0.0005004329542784586 0.012138117961866918 0.016204338014507005 0.0046999241141250985 -0.008547871075230362 -0.016474565499377633 0.0006905687047401993 -0.010764939186267995 0.10430158465470186 -0.0005004329542784586 0.012138117961866918 0.009641143262864384 0.000978530396664715 0.015495658776183936 -0.021541529121772936 -0.0008827981217161508 0.021090167294161643 0.10430158465470186 -0.0005004329542784586 0.012138117961866918 0.035514612594817765 0.009439895866170151 0.05534745996515189 0.01850020445711268 0.009378071149370896 0.06784623493231362 0.10430158465470186 -0.0005004329542784586 0.012138117961866918 0.022566030225891626 0.003456988198586786 0.03881131099495511 -0.005748244776121111 0.0013899809402675234 0.04390984949700758 0.10430158465470186 -0.0005004329542784586 0.012138117961866918 0.08021187785205984 0.015021901587597248 -0.013674729326215822 0.06057863731078242 0.014130615036054244 -0.03737428257215013 -0.03863047778636097 0.00198899127791209 -0.010650822427038575 -0.04444616935566289 0.0003693061110016712 0.025034681296897596 0.0026333032503747635 0.010069227043818518 0.07817814233462386 -0.029268757652951866 0.0030780927650828484 0.05154366366937684 0.03836089795879593 0.01956358619751165 -0.05189840087148578 -0.06840385734405945 0.023087735211297318 -0.008811927884698442 0.027266073580012304 0.01670430635383588 -0.014998233164833636 -0.060831173060182556 0.021904663422239436 -0.03568422220193092 -0.0935100765740672 0.017895308012854536 -0.03790129031296855 0.027266073580012304 0.01670430635383588 -0.014998233164833636 -0.06739436781182517 0.018183269704779053 -0.011640692350516619 -0.09857704019646249 0.016321941186398188 -0.006046183832538913 0.027266073580012304 0.01670430635383588 -0.014998233164833636 -0.041520898479871796 0.02664463517428449 0.028211108838451335 -0.05853530661757688 0.026582810457485236 0.04070988380561306 0.027266073580012304 0.01670430635383588 -0.014998233164833636 -0.054469480848797935 0.020661727506701123 0.011674959868254559 -0.08278375585081067 0.018594720248381862 0.016773498370307026 0.027266073580012304 0.01670430635383588 -0.014998233164833636 0.003176366777370279 0.03222664089571159 -0.04081108045291638 -0.016456873763907143 0.03133535434416858 -0.06451063369885068 -0.11566598886105053 0.019193730586026428 -0.03778717355373913 -0.12148168043035246 0.01757404541911601 -0.0021016698298029577 -0.0744022078243148 0.027273966351932855 0.0510417912079233 -0.10630426872764143 0.020282832073197185 0.024407312542676286 -0.03867461311589363 0.03676832550562599 -0.07903475199818633 -0.07219791157495532 0.019193800627173022 -0.01851032238581834 0.023472019349116427 0.012810371769711584 -0.024696627665953534 -0.06462522729107843 0.01801072883811514 -0.04538261670305081 -0.09730413080496307 0.014001373428730242 -0.047599684814088446 0.023472019349116427 0.012810371769711584 -0.024696627665953534 -0.07118842204272105 0.014289335120654757 -0.021339086851636515 -0.10237109442735837 0.012428006602273892 -0.015744578333658808 0.023472019349116427 0.012810371769711584 -0.024696627665953534 -0.04531495271076767 0.022750700590160194 0.01851271433733144 -0.06232936084847276 0.02268887587336094 0.031011489304493163 0.023472019349116427 0.012810371769711584 -0.024696627665953534 -0.05826353507969381 0.016767792922576828 0.0019765653671346625 -0.08657781008170655 0.014700785664257567 0.007075103869187131 0.023472019349116427 0.012810371769711584 -0.024696627665953534 -0.0006176874535255977 0.02833270631158729 -0.05050947495403627 -0.02025092799480302 0.027441419760044286 -0.07420902819997058 -0.11946004309194641 0.015299796001902132 -0.047485568054859026 -0.12527573466124833 0.013680110834991713 -0.011800064330922854 -0.07819626205521067 0.023380031767808562 0.041343396706803405 -0.1100983229585373 0.01638889748907289 0.014708918041556392 -0.04246866734678951 0.03287439092150169 -0.08873314649930622 -0.05815719366889701 0.015877423695323956 -0.021183909868995935 0.03751273725517474 0.009493994837862518 -0.027370215149131127 -0.05058450938502012 0.014694351906266076 -0.04805620418622841 -0.08326341289890477 0.010684996496881176 -0.05027327229726604 0.03751273725517474 0.009493994837862518 -0.027370215149131127 -0.057147704136662744 0.010972958188805691 -0.02401267433481411 -0.08833037652130006 0.009111629670424826 -0.018418165816836404 0.03751273725517474 0.009493994837862518 -0.027370215149131127 -0.03127423480470937 0.019434323658311128 0.015839126854153843 -0.048288642942414445 0.019372498941511874 0.028337901821315566 0.03751273725517474 0.009493994837862518 -0.027370215149131127 -0.0442228171736355 0.013451415990727762 -0.0006970221160429342 -0.07253709217564824 0.0113844087324085 0.0044015163860095345 0.03751273725517474 0.009493994837862518 -0.027370215149131127 0.013423030452532715 0.025016329379738224 -0.053183062437213866 -0.006210210088744707 0.02412504282819522 -0.07688261568314818 -0.10541932518588809 0.011983419070053066 -0.050159155538036626 -0.11123501675519001 0.010363733903142647 -0.01447365181410045 -0.06415554414915237 0.020063654835959496 0.03866980922362581 -0.09605760505247898 0.013072520557223825 0.012035330558378795 -0.028427949440731196 0.029558013989652625 -0.09140673398248382 -0.044967465993790645 0.0133056747321645 -0.02421656693221014 0.050702464930281105 0.0069222458747030605 -0.030402872212345333 -0.037394781709913755 0.012122602943106619 -0.05108886124944262 -0.0700736852237984 0.008113247533721718 -0.053305929360480245 0.050702464930281105 0.0069222458747030605 -0.030402872212345333 -0.04395797646155638 0.008401209225646234 -0.027045331398028317 -0.0751406488461937 0.006539880707265368 -0.02145082288005061 0.050702464930281105 0.0069222458747030605 -0.030402872212345333 -0.018084507129602998 0.01686257469515167 0.012806469790939638 -0.03509891526730808 0.016800749978352417 0.02530524475810136 0.050702464930281105 0.0069222458747030605 -0.030402872212345333 -0.031033089498529134 0.010879667027568304 -0.00372967917925714 -0.05934736450054187 0.008812659769249043 0.0013688593227953287 0.050702464930281105 0.0069222458747030605 -0.030402872212345333 0.02661275812763908 0.022444580416578767 -0.05621571950042807 0.006979517586361658 0.021553293865035763 -0.07991527274636238 -0.09222959751078173 0.009411670106893609 -0.05319181260125083 -0.09804528908008364 0.00779198493998319 -0.017506308877314657 -0.050965816474045994 0.017491905872800036 0.035637152160411606 -0.08286787737737263 0.010500771594064368 0.009002673495164589 -0.01523822176562483 0.02698626502649317 -0.09443939104569803 -0.0324337318149214 0.009507945320416161 -0.026000042696785703 0.06323619910915035 0.0031245164629547222 -0.032186347976920895 -0.02486104753104451 0.00832487353135828 -0.05287233701401818 -0.05753995104492915 0.00431551812197338 -0.05508940512505581 0.06323619910915035 0.0031245164629547222 -0.032186347976920895 -0.031424242282687136 0.004603479813897896 -0.02882880716260388 -0.06260691466732446 0.00274215129551703 -0.023234298644626172 0.06323619910915035 0.0031245164629547222 -0.032186347976920895 -0.005550772950733755 0.013064845283403332 0.011022994026364075 -0.022565181088438836 0.013003020566604077 0.0235217689935258 0.06323619910915035 0.0031245164629547222 -0.032186347976920895 -0.01849935531965989 0.007081937615819967 -0.005513154943832702 -0.04681363032167263 0.005014930357500704 -0.0004146164417802335 0.06323619910915035 0.0031245164629547222 -0.032186347976920895 0.039146492306508324 0.018646851004830427 -0.057999195265003634 0.019513251765230902 0.017755564453287423 -0.08169874851093795 -0.07969586333191249 0.005613940695145271 -0.054975288365826394 -0.0855115549012144 0.003994255528234852 -0.01928978464189022 -0.03843208229517675 0.0136941764610517 0.033853676395836044 -0.07033414319850338 0.00670304218231603 0.007219197730589027 -0.002704487586755587 0.02318853561474483 -0.09622286681027359 -0.028034876501824405 0.016068466092458735 -0.0168172178687512 0.06763505442224735 0.009685037234997296 -0.023003523148886394 -0.020462192217947518 0.014885394303400854 -0.04368951218598367 -0.05314109573183215 0.010876038894015954 -0.045906580297021306 0.06763505442224735 0.009685037234997296 -0.023003523148886394 -0.027025386969590136 0.01116400058594047 -0.019645982334569375 -0.05820805935422746 0.009302672067559605 -0.01405147381659167 0.06763505442224735 0.009685037234997296 -0.023003523148886394 -0.0011519176376367582 0.019625366055445907 0.02020581885439858 -0.018166325775341836 0.019563541338646653 0.0327045938215603 0.06763505442224735 0.009685037234997296 -0.023003523148886394 -0.014100500006562893 0.01364245838786254 0.0036696698842018025 -0.04241477500857563 0.01157545112954328 0.008768208386254271 0.06763505442224735 0.009685037234997296 -0.023003523148886394 0.043545347619605324 0.025207371776873003 -0.04881637043696913 0.023912107078327898 0.02431608522533 -0.07251592368290344 -0.07529700801881549 0.012174461467187845 -0.045792463537791886 -0.08111269958811741 0.010554776300277426 -0.010106959813855714 -0.03403322698207976 0.020254697233094275 0.043036501223870545 -0.06593528788540638 0.013263562954358604 0.01640202255862353 0.0016943677263414093 0.029749056386787404 -0.08704004198223908 -0.062166592990027206 0.012621327559644006 -0.027358462831935233 0.033503337934044544 0.006237898702182568 -0.033544768112070425 -0.054593908706150315 0.011438255770586126 -0.05423075714916771 -0.08727281222003495 0.007428900361201226 -0.056447825260205337 0.033503337934044544 0.006237898702182568 -0.033544768112070425 -0.06115710345779294 0.007716862053125741 -0.03018722729775341 -0.09233977584243025 0.0058555335347448756 -0.024592718779775702 0.033503337934044544 0.006237898702182568 -0.033544768112070425 -0.035283634125839555 0.016178227522631178 0.009664573891214546 -0.05229804226354464 0.016116402805831924 0.02216334885837627 0.033503337934044544 0.006237898702182568 -0.033544768112070425 -0.048232216494765695 0.010195319855047812 -0.006871575078982232 -0.07654649149677843 0.00812831259672855 -0.001773036576929763 0.033503337934044544 0.006237898702182568 -0.033544768112070425 0.00941363113140252 0.021760233244058274 -0.05935761540015316 -0.010219609409874902 0.02086894669251527 -0.08305716864608748 -0.1094287245070183 0.008727322934373116 -0.056333708500975924 -0.11524441607632022 0.0071076377674626975 -0.02064820477703975 -0.06816494347028255 0.016807558700279543 0.032495256260686514 -0.10006700437360919 0.009816424421543875 0.005860777595439497 -0.03243734876186139 0.02630191785397268 -0.09758128694542312 -0.002286175655778497 0.006699781210954129 0.013493301910690314 0.09338375526829325 0.00031635235349269063 0.00730699663055512 0.0052865086280983915 0.005516709421896248 -0.01337899240654216 -0.027392394885786243 0.0015073540125113485 -0.015596060517579793 0.09338375526829325 0.00031635235349269063 0.00730699663055512 -0.0012766861235442282 0.0017953157044358643 0.010664537444872137 -0.032459358508181546 -6.601281394500152e-05 0.016259045962849845 0.09338375526829325 0.00031635235349269063 0.00730699663055512 0.024596783208409148 0.0102566811739413 0.05051633863384009 0.00758237507070407 0.010194856457142045 0.06301511360100182 0.09338375526829325 0.00031635235349269063 0.00730699663055512 0.011648200839483015 0.004273773506357935 0.033980189663643315 -0.016666074162529722 0.0022067662480386727 0.039078728165695784 0.09338375526829325 0.00031635235349269063 0.00730699663055512 0.06929404846565122 0.015838686895368395 -0.01850585065752762 0.04966080792437381 0.014947400343825393 -0.042205403903461926 -0.04954830717276958 0.002805776585683239 -0.015481943758350374 -0.0553639987420715 0.0011860914187728205 0.020203559965585798 -0.008284526136033848 0.010886012351589668 0.07334702100331206 -0.040186587039360476 0.0038948780728539976 0.046712542338065044 0.02744306857238732 0.0203803715052828 -0.056729522202797575 -0.0045614871082096265 0.012757262004382269 0.019227820839371804 0.09110844381586213 0.00637383314692083 0.01304151555923661 0.003011197175667262 0.011574190215324388 -0.00764447347786067 -0.029667706338217373 0.007564834805939488 -0.009861541588898303 0.09110844381586213 0.00637383314692083 0.01304151555923661 -0.0035519975759753576 0.007852796497864004 0.016399056373553628 -0.034734669960612675 0.005991467979483138 0.021993564891531335 0.09110844381586213 0.00637383314692083 0.01304151555923661 0.02232147175597802 0.016314161967369442 0.056250857562521586 0.0053070636182729405 0.016252337250570185 0.0687496325296833 0.09110844381586213 0.00637383314692083 0.01304151555923661 0.009372889387051886 0.010331254299786076 0.0397147085923248 -0.01894138561496085 0.008264247041466811 0.04481324709437727 0.09110844381586213 0.00637383314692083 0.01304151555923661 0.0670187370132201 0.021896167688796535 -0.01277133172884613 0.04738549647194268 0.02100488113725353 -0.03647088497478043 -0.05182361862520071 0.008863257379111379 -0.009747424829668883 -0.05763931019450263 0.00724357221220096 0.02593807889426729 -0.010559837588464977 0.016943493145017807 0.07908153993199354 -0.042461898491791605 0.009952358866282138 0.05244706126674653 0.02516775711995619 0.02643785229871094 -0.05099500327411609 -0.006117629659443616 0.01244505040482351 0.013106267675266806 0.08955230126462814 0.006061621547362072 0.0069199623951316114 0.0014550546244332723 0.01126197861576563 -0.013766026641965669 -0.031223848889451365 0.00725262320638073 -0.015983094753003302 0.08955230126462814 0.006061621547362072 0.0069199623951316114 -0.005108140127209348 0.007540584898305246 0.010277503209448629 -0.03629081251184667 0.00567925637992438 0.015872011727426336 0.08955230126462814 0.006061621547362072 0.0069199623951316114 0.02076532920474403 0.016001950367810682 0.050129304398416584 0.0037509210670389507 0.015940125651011428 0.0626280793655783 0.08955230126462814 0.006061621547362072 0.0069199623951316114 0.007816746835817897 0.010019042700227316 0.033593155428219806 -0.020497528166194844 0.007952035441908055 0.038691693930272275 0.08955230126462814 0.006061621547362072 0.0069199623951316114 0.06546259446198611 0.021583956089237778 -0.01889288489295113 0.045829353920708686 0.020692669537694774 -0.042592438138885434 -0.053379761176434705 0.00855104577955262 -0.015868977993773882 -0.05919545274573662 0.006931360612642202 0.01981652573016229 -0.012115980139698968 0.01663128154545905 0.07295998676788855 -0.0440180410430256 0.00964014726672338 0.046325508102641536 0.023611614568722197 0.02612564069915218 -0.05711655643822108 -0.05972512193752653 -0.011877624765461881 -0.007581919547940738 0.03594480898654522 -0.01826105362292332 -0.013768224828075933 -0.05215243765364964 -0.013060696554519762 -0.034454213865173215 -0.08483134116753427 -0.01707005196390466 -0.03667128197621085 0.03594480898654522 -0.01826105362292332 -0.013768224828075933 -0.05871563240529226 -0.016782090271980146 -0.010410684013758914 -0.08989830478992958 -0.01864341879036101 -0.004816175495781208 0.03594480898654522 -0.01826105362292332 -0.013768224828075933 -0.032842163073338884 -0.00832072480247471 0.02944111717520904 -0.04985657121104396 -0.008382549519273964 0.04193989214237076 0.03594480898654522 -0.01826105362292332 -0.013768224828075933 -0.04579074544226502 -0.014303632470058076 0.012904968205012263 -0.07410502044427775 -0.016370639728377337 0.018003506707064732 0.03594480898654522 -0.01826105362292332 -0.013768224828075933 0.011855102183903198 -0.0027387190810476136 -0.039581072116158675 -0.007778138357374224 -0.0036300056325906174 -0.06328062536209297 -0.10698725345451762 -0.01577162939073277 -0.03655716521698143 -0.11280294502381953 -0.01739131455764319 -0.0008716614930452541 -0.06572347241778188 -0.007691393624826343 0.052271799544681 -0.09762553332110852 -0.014682527903562012 0.025637320879433993 -0.029995877709360713 0.001802965528866789 -0.07780474366142863 0.021038392165755513 0.0027855738583934106 0.03840496428353224 0.11670832308982726 -0.003597854999068028 0.03221865900339704 0.0286110764496324 0.0016025020693355293 0.011532669966299765 -0.004067827064252235 -0.00240685334004937 0.009315601855262132 0.11670832308982726 -0.003597854999068028 0.03221865900339704 0.022047881697989782 -0.0021188916481248545 0.035576199817714066 -0.009134790686647538 -0.00398022016650572 0.041170708335691766 0.11670832308982726 -0.003597854999068028 0.03221865900339704 0.04792135102994316 0.006342473821380583 0.07542800100668201 0.030906942892238082 0.006280649104581327 0.08792677597384374 0.11670832308982726 -0.003597854999068028 0.03221865900339704 0.03497276866101703 0.0003595661537972167 0.05889185203648524 0.006658493659004287 -0.001707441104522046 0.06399039053853771 0.11670832308982726 -0.003597854999068028 0.03221865900339704 0.09261861628718523 0.011924479542807679 0.006405811715314305 0.07298537574590781 0.011033192991264675 -0.01729374153062 -0.026223739351235575 -0.0011084307668774796 0.009429718614491552 -0.03203943092053749 -0.0027281159337878983 0.04511522233842773 0.01504004168550016 0.006971804999028949 0.09825868337615398 -0.016862019217826468 -1.9329279706721113e-05 0.07162420471090697 0.05076763639392133 0.01646616415272208 -0.03181785982995565 -0.09454454006929117 0.027211715354275363 0.02573429485864465 0.0011253908547805835 0.020828286496813925 0.019547989578509457 -0.08697185578541428 0.02602864356521748 -0.0011379994585878246 -0.11965075929929891 0.02201928815583258 -0.0033550675696254577 0.0011253908547805835 0.020828286496813925 0.019547989578509457 -0.0935350505370569 0.0223072498477571 0.022905530392826473 -0.12471772292169422 0.020445921329376233 0.02850003891080418 0.0011253908547805835 0.020828286496813925 0.019547989578509457 -0.06766158120510352 0.030768615317262535 0.06275733158179443 -0.0846759893428086 0.03070679060046328 0.07525610654895615 0.0011253908547805835 0.020828286496813925 0.019547989578509457 -0.08061016357402966 0.02478570764967917 0.04622118261159765 -0.10892443857604239 0.022718700391359908 0.051319721113650116 0.0011253908547805835 0.020828286496813925 0.019547989578509457 -0.02296431594786144 0.036350621038689634 -0.006264857709573284 -0.04259755648913886 0.035459334487146624 -0.02996441095550759 -0.14180667158628224 0.023317710729004473 -0.003240950810396038 -0.14762236315558416 0.021698025562094055 0.032444552913540134 -0.10054289054954652 0.0313979464949109 0.08558801395126639 -0.13244495145287316 0.02440681221617523 0.058953535286019376 -0.06481529584112536 0.040892305648604035 -0.04448852925484324 -0.09453266021447757 0.031044678584794778 0.013504137688802315 0.0011372707095941847 0.02466124972733334 0.007317832408667121 -0.08695997593060067 0.029861606795736895 -0.01336815662843016 -0.11963887944448531 0.025852251386352 -0.015585224739467793 0.0011372707095941847 0.02466124972733334 0.007317832408667121 -0.09352317068224329 0.026140213078276513 0.010675373222984138 -0.12470584306688062 0.024278884559895648 0.016269881740961844 0.0011372707095941847 0.02466124972733334 0.007317832408667121 -0.06764970135028991 0.03460157854778195 0.05052717441195209 -0.08466410948799499 0.03453975383098269 0.06302594937911382 0.0011372707095941847 0.02466124972733334 0.007317832408667121 -0.08059828371921605 0.028618670880198583 0.033991025441755314 -0.10891255872122879 0.026551663621879322 0.03908956394380778 0.0011372707095941847 0.02466124972733334 0.007317832408667121 -0.02295243609304784 0.040183584269209045 -0.01849501487941562 -0.04258567663432526 0.03929229771766604 -0.04219456812534993 -0.14179479173146864 0.027150673959523888 -0.015471107980238373 -0.14761048330077056 0.02553098879261347 0.0202143957436978 -0.10053101069473291 0.03523090972543032 0.07335785678142406 -0.13243307159805956 0.028239775446694645 0.04672337811617704 -0.06480341598631176 0.044725268879123446 -0.056718686424685576 -0.08609132158914756 0.02903456080047378 0.01505160069722938 0.009578609334924187 0.02265113194301234 0.008865295417094186 -0.07851863730527067 0.027851489011415896 -0.011820693620003094 -0.11119754081915531 0.023842133602030996 -0.014037761731040727 0.009578609334924187 0.02265113194301234 0.008865295417094186 -0.08508183205691329 0.024130095293955513 0.012222836231411204 -0.11626450444155062 0.02226876677557465 0.01781734474938891 0.009578609334924187 0.02265113194301234 0.008865295417094186 -0.05920836272495991 0.03259146076346095 0.052074637420379155 -0.07622277086266499 0.032529636046661696 0.06457341238754088 0.009578609334924187 0.02265113194301234 0.008865295417094186 -0.07215694509388605 0.026608553095877584 0.035538488450182384 -0.10047122009589879 0.024541545837558323 0.04063702695223485 0.009578609334924187 0.02265113194301234 0.008865295417094186 -0.014511097467717837 0.03817346648488805 -0.016947551870988554 -0.03414433800899526 0.03728217993334504 -0.04064710511692286 -0.13335345310613866 0.02514055617520289 -0.013923644971811307 -0.13916914467544056 0.02352087100829247 0.021761858752124864 -0.09208967206940291 0.033220791941109315 0.07490531978985113 -0.12399173297272954 0.026229657662373645 0.048270841124604114 -0.05636207736098175 0.04271515109480245 -0.055171223416258505 -0.08599361695964929 0.0242278979600918 0.02798702775592207 0.009676313964422464 0.01784446910263036 0.021800722475786877 -0.0784209326757724 0.023044826171033917 0.0011147334386895948 -0.11109983618965703 0.01903547076164902 -0.0011023346723480383 0.009676313964422464 0.01784446910263036 0.021800722475786877 -0.08498412742741501 0.019323432453573534 0.025158263290103892 -0.11616679981205233 0.01746210393519267 0.0307527718080816 0.009676313964422464 0.01784446910263036 0.021800722475786877 -0.059110658095461635 0.02778479792307897 0.06501006447907184 -0.07612506623316671 0.027722973206279717 0.07750883944623357 0.009676313964422464 0.01784446910263036 0.021800722475786877 -0.07205924046438777 0.021801890255495605 0.04847391550887507 -0.10037351546640051 0.019734882997176344 0.05357245401092754 0.009676313964422464 0.01784446910263036 0.021800722475786877 -0.01441339283821956 0.03336680364450607 -0.004012124812295865 -0.03404663337949698 0.03247551709296306 -0.02771167805823017 -0.13325574847664037 0.02033389333482091 -0.0009882179131186185 -0.1390714400459423 0.01871420816791049 0.03469728581081755 -0.09199196743990463 0.02841412910072734 0.08784074684854382 -0.12389402834323127 0.021422994821991666 0.0612062681832968 -0.05626437273148347 0.03790848825442047 -0.042235796357565816 0.02108727629272842 -0.0049898579667808285 0.02936414831168904 0.11675720721680016 -0.011373286824242268 0.023177843031553846 0.02865996057660531 -0.00617292975583871 0.0024918539944565644 -0.004018942937279328 -0.010182285165223608 0.00027478588341893137 0.11675720721680016 -0.011373286824242268 0.023177843031553846 0.02209676582496269 -0.009894323473299094 0.026535383845870862 -0.00908590655967463 -0.01175565199167996 0.03212989236384857 0.11675720721680016 -0.011373286824242268 0.023177843031553846 0.04797023515691606 -0.0014329580037936566 0.06638718503483881 0.030955827019210985 -0.0014947827205929118 0.07888596000200054 0.11675720721680016 -0.011373286824242268 0.023177843031553846 0.03502165278798993 -0.007415865671377022 0.04985103606464204 0.0067073777859771935 -0.009482872929696285 0.05494957456669451 0.11675720721680016 -0.011373286824242268 0.023177843031553846 0.09266750041415814 0.004149047717633439 -0.002635004256528895 0.07303425987288073 0.0032577611660904353 -0.0263345575024632 -0.026174855224262668 -0.00888386259205172 0.0003889026426483512 -0.031990546793564584 -0.010503547758962138 0.03607440636658452 0.015088925812473068 -0.0008036268261452902 0.08921786740431079 -0.01681313509085356 -0.0077947611048809606 0.06258338873906377 0.050816520520894234 0.008690732327547843 -0.04085867580179885 0.02091785823683129 -0.0028418957290971573 0.03538576581535429 0.11658778916090304 -0.009225324586558597 0.029199460535219095 0.02849054252070818 -0.004024967518155039 0.008513471498121816 -0.004188360993176456 -0.008034322927539937 0.006296403387084183 0.11658778916090304 -0.009225324586558597 0.029199460535219095 0.02192734776906556 -0.007746361235615422 0.03255700134953612 -0.009255324615571759 -0.009607689753996288 0.03815150986751382 0.11658778916090304 -0.009225324586558597 0.029199460535219095 0.04780081710101894 0.0007150042338900145 0.07240880253850407 0.03078640896331386 0.0006531795170907594 0.0849075775056658 0.11658778916090304 -0.009225324586558597 0.029199460535219095 0.034852234732092806 -0.005267903433693351 0.05587265356830729 0.006537959730080065 -0.007334910692012614 0.06097119207035976 0.11658778916090304 -0.009225324586558597 0.029199460535219095 0.09249808235826101 0.00629700995531711 0.0033866132471363566 0.07286484181698359 0.0054057234037741065 -0.02031293999879795 -0.026344273280159796 -0.0067359003543680475 0.006410520146313603 -0.03215996484946171 -0.008355585521278467 0.04209602387024977 0.01491950775657594 0.001344335411538381 0.09523948490797604 -0.01698255314675069 -0.005646798867197289 0.06860500624272903 0.05064710246499711 0.010838694565231514 -0.0348370582981336 -0.02045889029957455 -0.008360176038673653 -0.02352453346321793 0.0752110406244972 -0.014743604896135092 -0.029710838743353125 -0.012886206015697661 -0.009543247827731534 -0.050396827780450404 -0.0455651095295823 -0.013552603237116434 -0.05261389589148804 0.0752110406244972 -0.014743604896135092 -0.029710838743353125 -0.01944940076734028 -0.013264641545191918 -0.026353297929036106 -0.0506320731519776 -0.015125970063572785 -0.0207587894110584 0.0752110406244972 -0.014743604896135092 -0.029710838743353125 0.006424068564613097 -0.004803276075686482 0.013498503259931849 -0.010590339573091983 -0.0048651007924857366 0.025997278227093572 0.0752110406244972 -0.014743604896135092 -0.029710838743353125 -0.006524513804313037 -0.010786183743269846 -0.0030376457102649287 -0.03483878880632578 -0.01285319100158911 0.00206089279178754 0.0752110406244972 -0.014743604896135092 -0.029710838743353125 0.05112133382185517 0.0007787296457406143 -0.055523686031435864 0.03148809328057775 -0.00011255690580238946 -0.07922323927737017 -0.06772102181656564 -0.012254180663944543 -0.05249977913225862 -0.07353671338586755 -0.013873865830854962 -0.016814275408322445 -0.026457240779829902 -0.004173944898038115 0.036329185629403814 -0.058359301683156534 -0.011165079176773784 0.0096947069641568 0.009270353928591265 0.005320414255655017 -0.09374735757670583 -0.014415470084660794 -0.005253597067402632 -0.02235131893174211 0.08125446083941096 -0.01163702592486407 -0.028537624211877305 -0.006842785800783905 -0.006436668856460513 -0.04922361324897458 -0.03952168931466854 -0.010446024265845413 -0.051440681360012216 0.08125446083941096 -0.01163702592486407 -0.028537624211877305 -0.013405980552426524 -0.010158062573920896 -0.025180083397560286 -0.04458865293706384 -0.012019391092301763 -0.01958557487958258 0.08125446083941096 -0.01163702592486407 -0.028537624211877305 0.012467488779526853 -0.0016966971044154598 0.01467171779140767 -0.004546919358178227 -0.001758521821214715 0.027170492758569392 0.08125446083941096 -0.01163702592486407 -0.028537624211877305 -0.00048109358939928126 -0.007679604771998826 -0.0018644311787891082 -0.02879536859141202 -0.009746612030318088 0.0032341073232633605 0.08125446083941096 -0.01163702592486407 -0.028537624211877305 0.05716475403676893 0.003885308617011636 -0.05435047149996004 0.03753151349549151 0.002994022065468632 -0.07805002474589434 -0.06167760160165188 -0.009147601692673521 -0.0513265646007828 -0.0674932931709538 -0.01076728685958394 -0.015641060876846625 -0.020413820564916144 -0.0010673659267670934 0.037502400160879634 -0.05231588146824277 -0.008058500205502764 0.010867921495632621 0.01531377414350502 0.008426993226926038 -0.09257414304523 -0.013928234587217803 -0.0032937698426226607 -0.025560668869413813 0.08174169633685395 -0.0096771987000841 -0.03174697414954901 -0.006355550303340915 -0.004476841631680542 -0.05243296318664629 -0.03903445381722555 -0.008486197041065442 -0.05465003129768392 0.08174169633685395 -0.0096771987000841 -0.03174697414954901 -0.012918745054983534 -0.008198235349140926 -0.02838943333523199 -0.04410141743962086 -0.010059563867521791 -0.022794924817254283 0.08174169633685395 -0.0096771987000841 -0.03174697414954901 0.012954724276969844 0.0002631301203645112 0.011462367853735965 -0.004059683860735236 0.000201305403565256 0.023961142820897688 0.08174169633685395 -0.0096771987000841 -0.03174697414954901 6.141908043709107e-06 -0.005719777547218854 -0.005073781116460813 -0.02830813309396903 -0.007786784805538117 2.4757385591656078e-05 0.08174169633685395 -0.0096771987000841 -0.03174697414954901 0.057651989534211925 0.0058451358417916065 -0.05755982143763175 0.038018748992934503 0.004953849290248603 -0.08125937468356606 -0.06119036610420889 -0.007187774467893551 -0.0545359145384545 -0.06700605767351081 -0.00880745963480397 -0.01885041081451833 -0.019926585067473156 0.0008924612980128776 0.03429305022320793 -0.05182864597079978 -0.006098672980722792 0.0076585715579609165 0.01580100964094801 0.01038682045170601 -0.0957834929829017 -0.01926705976718556 -0.007025295180121329 -0.029105272257898634 0.07640287115688618 -0.013408724037582767 -0.03529157753803383 -0.011694375483308673 -0.00820836696917921 -0.05597756657513111 -0.04437327899719331 -0.012217722378564111 -0.05819463468616874 0.07640287115688618 -0.013408724037582767 -0.03529157753803383 -0.018257570234951292 -0.011929760686639593 -0.03193403672371681 -0.04944024261958861 -0.01379108920502046 -0.026339528205739104 0.07640287115688618 -0.013408724037582767 -0.03529157753803383 0.007615899097002086 -0.0034683952171341574 0.007917764465251144 -0.009398509040702994 -0.0035302199339334126 0.020416539432412867 0.07640287115688618 -0.013408724037582767 -0.03529157753803383 -0.005332683271924049 -0.009451302884717523 -0.008618384504945634 -0.03364695827393679 -0.011518310143036786 -0.003519846002893165 0.07640287115688618 -0.013408724037582767 -0.03529157753803383 0.052313164354244164 0.0021136105042929383 -0.06110442482611657 0.03267992381296674 0.0012223239527499345 -0.08480397807205087 -0.06652919128417664 -0.010919299805392219 -0.05808051792693932 -0.07234488285347856 -0.012538984972302637 -0.02239501420300315 -0.025265410247440914 -0.002839064039485791 0.03074844683472311 -0.05716747115076754 -0.009830198318221461 0.0041139681694760954 0.010462184460980253 0.006655295114207341 -0.09932809637138652 -0.07545593187393003 0.016605827007633953 -0.022699140977270653 0.02021399905014172 0.010222398150172514 -0.02888544625740585 -0.06788324759005314 0.015422755218576072 -0.04957143529450313 -0.10056215110393778 0.011413399809191172 -0.05178850340554076 0.02021399905014172 0.010222398150172514 -0.02888544625740585 -0.07444644234169576 0.011701361501115688 -0.02552790544308883 -0.10562911472633307 0.009840032982734823 -0.019933396925111122 0.02021399905014172 0.010222398150172514 -0.02888544625740585 -0.04857297300974238 0.020162726970621124 0.014323895745879126 -0.06558738114744746 0.02010090225382187 0.02682267071304085 0.02021399905014172 0.010222398150172514 -0.02888544625740585 -0.06152155537866852 0.014179819303037758 -0.002212253224317652 -0.08983583038068126 0.012112812044718497 0.0028862852777348166 0.02021399905014172 0.010222398150172514 -0.02888544625740585 -0.003875707752500304 0.02574473269204822 -0.05469829354548859 -0.023508948293777726 0.024853446140505216 -0.07839784679142289 -0.12271806339092112 0.012711822382363062 -0.05167438664631134 -0.12853375496022304 0.011092137215452644 -0.01598888292237517 -0.08145428235418538 0.02079205814826949 0.03715457811535109 -0.11335634325751201 0.013800923869533821 0.010520099450104077 -0.045726687645764215 0.030286417301962625 -0.09292196509075853 -0.03824074650434394 -0.0012607908099804327 -0.04168001945136587 0.05742918441972781 -0.007644219667441872 -0.04786632473150106 -0.03066806222046705 -0.002443862599038314 -0.06855231376859834 -0.0633469657343517 -0.006453218008423214 -0.07076938187963597 0.05742918441972781 -0.007644219667441872 -0.04786632473150106 -0.037231256972109675 -0.006165256316498698 -0.04450878391718404 -0.06841392935674699 -0.008026584834879563 -0.03891427539920634 0.05742918441972781 -0.007644219667441872 -0.04786632473150106 -0.011357787640156294 0.0022961091530067394 -0.004656982728216089 -0.028372195777861375 0.0022342844362074838 0.007841792238945634 0.05742918441972781 -0.007644219667441872 -0.04786632473150106 -0.02430637000908243 -0.0036867985145766268 -0.021193131698412866 -0.05262064501109517 -0.0057538057728958895 -0.016094593196360397 0.05742918441972781 -0.007644219667441872 -0.04786632473150106 0.033339477617085785 0.007878114874433835 -0.0736791720195838 0.013706237075808363 0.006986828322890831 -0.0973787252655181 -0.08550287802133502 -0.005154795435251323 -0.07065526512040655 -0.09131856959063694 -0.006774480602161742 -0.034969761396470386 -0.04423909698459929 0.0029254403306551054 0.018173699641255876 -0.07614115788792591 -0.004065693948080564 -0.008460779023991137 -0.008511502276178126 0.012419799484348237 -0.11190284356485375 -0.03575826814636665 0.0066807052815987785 -0.036507611579841684 0.0599116627777051 0.0002972764241373398 -0.04269391685997688 -0.02818558386248976 0.005497633492540897 -0.06337990589707415 -0.0608644873763744 0.0014882780831559977 -0.06559697400811179 0.0599116627777051 0.0002972764241373398 -0.04269391685997688 -0.034748778614132385 0.0017762397750805134 -0.03933637604565986 -0.06593145099876971 -8.508874330035235e-05 -0.03374186752768216 0.0599116627777051 0.0002972764241373398 -0.04269391685997688 -0.008875309282179004 0.01023760524458595 0.0005154251433080945 -0.025889717419884085 0.010175780527786695 0.013014200110469817 0.0599116627777051 0.0002972764241373398 -0.04269391685997688 -0.02182389165110514 0.004254697577002585 -0.016020723826888683 -0.05013816665311788 0.002187690318683322 -0.010922185324836214 0.0599116627777051 0.0002972764241373398 -0.04269391685997688 0.035821955975063074 0.015819610966013045 -0.06850676414805962 0.016188715433785653 0.014928324414470041 -0.09220631739399393 -0.08302039966335774 0.0027867006563278883 -0.06548285724888236 -0.08883609123265965 0.0011670154894174696 -0.0297973535249462 -0.041756618626622 0.010866936422234318 0.02334610751278006 -0.07365867952994863 0.003875802143498647 -0.003288371152466954 -0.006029023918200836 0.02036129557592745 -0.10673043569332957 -0.08454285478361664 0.02209604223808748 -0.01571140908251593 0.011127076140455106 0.01571261338062604 -0.021897714362651123 -0.07697017049973975 0.020912970449029598 -0.0425837033997484 -0.10964907401362439 0.0169036150396447 -0.04480077151078604 0.011127076140455106 0.01571261338062604 -0.021897714362651123 -0.08353336525138237 0.017191576731569215 -0.018540173548334107 -0.1147160376360197 0.01533024821318835 -0.012945665030356402 0.011127076140455106 0.01571261338062604 -0.021897714362651123 -0.057659895919428994 0.02565294220107465 0.021311627640633848 -0.07467430405713407 0.025591117484275398 0.03381040260779557 0.011127076140455106 0.01571261338062604 -0.021897714362651123 -0.07060847828835513 0.019670034533491285 0.00477547867043707 -0.09892275329036787 0.017603027275172024 0.009874017172489539 0.011127076140455106 0.01571261338062604 -0.021897714362651123 -0.01296263066218692 0.031234947922501748 -0.04771056165073387 -0.03259587120346434 0.030343661370958744 -0.07141011489666817 -0.13180498630060772 0.01820203761281659 -0.044686654751556615 -0.13762067786990964 0.01658235244590617 -0.009001151027620446 -0.090541205263872 0.02628227337872302 0.04414231001010581 -0.12244326616719862 0.019291139099987347 0.0175078313448588 -0.05481361055545083 0.03577663253241615 -0.08593423319600382 -0.08134051778322597 0.026110922622033753 -0.0073846577735423 0.014329413140845779 0.019727493764572314 -0.013570963053677495 -0.07376783349934908 0.02492785083297587 -0.03425695209077478 -0.10644673701323372 0.02091849542359097 -0.03647402020181241 0.014329413140845779 0.019727493764572314 -0.013570963053677495 -0.0803310282509917 0.021206457115515488 -0.010213422239360476 -0.11151370063562902 0.019345128597134623 -0.00461891372138277 0.014329413140845779 0.019727493764572314 -0.013570963053677495 -0.05445755891903832 0.029667822585020924 0.02963837894960748 -0.0714719670567434 0.02960599786822167 0.0421371539167692 0.014329413140845779 0.019727493764572314 -0.013570963053677495 -0.06740614128796446 0.023684914917437558 0.013102229979410702 -0.0957204162899772 0.021617907659118297 0.01820076848146317 0.014329413140845779 0.019727493764572314 -0.013570963053677495 -0.009760293661796246 0.03524982830644802 -0.039383810341760236 -0.029393534203073668 0.03435854175490502 -0.06308336358769454 -0.12860264930021706 0.022216917996762862 -0.03635990344258299 -0.13441834086951898 0.020597232829852444 -0.0006743997186468157 -0.08733886826348132 0.03029715376266929 0.05246906131907944 -0.11924092916680795 0.02330601948393362 0.02583458265383243 -0.05161127355506016 0.039791512916362425 -0.07760748188703019 -0.09084811671325968 0.028086470935561176 -0.006913961480329792 0.00482181421081207 0.021703042078099737 -0.013100266760464985 -0.08327543242938279 0.026903399146503294 -0.03378625579756227 -0.11595433594326743 0.022894043737118397 -0.0360033239085999 0.00482181421081207 0.021703042078099737 -0.013100266760464985 -0.08983862718102541 0.02318200542904291 -0.009742725946147968 -0.12102129956566274 0.021320676910662046 -0.004148217428170262 0.00482181421081207 0.021703042078099737 -0.013100266760464985 -0.06396515784907203 0.03164337089854835 0.030109075242819985 -0.08097956598677711 0.03158154618174909 0.04260785020998171 0.00482181421081207 0.021703042078099737 -0.013100266760464985 -0.07691374021799817 0.02566046323096498 0.013572926272623208 -0.1052280152200109 0.02359345597264572 0.018671464774675677 0.00482181421081207 0.021703042078099737 -0.013100266760464985 -0.019267892591829955 0.037225376619975444 -0.03891311404854773 -0.03890113313310738 0.03633409006843244 -0.06261266729448203 -0.13811024823025075 0.024192466310290286 -0.03588920714937048 -0.14392593979955268 0.022572781143379867 -0.00020370342543430797 -0.09684646719351503 0.032272702076196716 0.05293975761229195 -0.12874852809684167 0.025281567797461043 0.026305278947044937 -0.061118872485093866 0.041767061229889844 -0.07713678559381767 -0.01657507848697279 0.01628772689078643 -0.006246451993864279 0.07909485243709896 0.009904298033324991 -0.012432757273999473 -0.0090023942030959 0.015104655101728549 -0.03311874631109675 -0.04168129771698054 0.011095299692343649 -0.03533581442213439 0.07909485243709896 0.009904298033324991 -0.012432757273999473 -0.01556558895473852 0.011383261384268165 -0.009075216459682456 -0.04674826133937584 0.0095219328658873 -0.0034807079417047498 0.07909485243709896 0.009904298033324991 -0.012432757273999473 0.010307880377214858 0.0198446268537736 0.0307765847292855 -0.0067065277604902215 0.019782802136974347 0.04327535969644722 0.07909485243709896 0.009904298033324991 -0.012432757273999473 -0.002640701991711276 0.013861719186190235 0.014240435759088722 -0.030954976993724015 0.011794711927870974 0.01933897426114119 0.07909485243709896 0.009904298033324991 -0.012432757273999473 0.05500514563445694 0.025426632575200697 -0.03824560456208222 0.035371905093179515 0.024535346023657693 -0.061945157808016515 -0.06383721000396388 0.01239372226551554 -0.03522169766290496 -0.06965290157326579 0.01077403709860512 0.00046380606103120503 -0.02257342896722814 0.02047395803142197 0.05360726709875746 -0.05447548987055477 0.013482823752686298 0.02697278843351045 0.013154165741193026 0.029968317185115098 -0.07646927610735217 -0.06368502577790339 0.02473458529408174 -0.0017067520782176957 0.03198490514616836 0.018351156436620303 -0.00789305735835289 -0.056112341494026496 0.02355151350502386 -0.02857904639545017 -0.08879124500791113 0.01954215809563896 -0.030796114506487803 0.03198490514616836 0.018351156436620303 -0.00789305735835289 -0.06267553624566911 0.019830119787563476 -0.004535516544035872 -0.09385820863030644 0.01796879126918261 0.0010589919739418337 0.03198490514616836 0.018351156436620303 -0.00789305735835289 -0.036802066913715736 0.028291485257068913 0.03531628464493208 -0.05381647505142082 0.02822966054026966 0.047815059612093806 0.03198490514616836 0.018351156436620303 -0.00789305735835289 -0.049750649282641876 0.022308577589485547 0.018780135674735306 -0.07806492428465461 0.020241570331166286 0.023878674176787774 0.03198490514616836 0.018351156436620303 -0.00789305735835289 0.007895198343526338 0.03387349097849601 -0.03370590464643563 -0.011738042197751083 0.032982204426953 -0.057405457892369935 -0.11094715729489447 0.02084058066881085 -0.030681997747258383 -0.11676284886419638 0.019220895501900433 0.005003505976677788 -0.06968337625815874 0.028920816434717278 0.05814696701440405 -0.10158543716148537 0.02192968215598161 0.031512488349157035 -0.03395578154973757 0.03841517558841041 -0.07192957619170559 -0.07786501918772581 0.027122232347026348 -0.0006147691854850938 0.017804911736345935 0.02073880348956491 -0.006801074465620288 -0.07029233490384892 0.025939160557968466 -0.027487063502717568 -0.10297123841773356 0.021929805148583566 -0.0297041316137552 0.017804911736345935 0.02073880348956491 -0.006801074465620288 -0.07685552965549154 0.022217766840508083 -0.00344353365130327 -0.10803820204012887 0.02035643832212722 0.0021509748666744357 0.017804911736345935 0.02073880348956491 -0.006801074465620288 -0.050982060323538164 0.03067913231001352 0.036408267537664685 -0.06799646846124324 0.030617307593214266 0.04890704250482641 0.017804911736345935 0.02073880348956491 -0.006801074465620288 -0.0639306426924643 0.024696224642430153 0.019872118567467907 -0.09224491769447704 0.022629217384110892 0.024970657069520376 0.017804911736345935 0.02073880348956491 -0.006801074465620288 -0.006284795066296089 0.03626113803144061 -0.03261392175370303 -0.02591803560757351 0.035369851479897615 -0.056313474999637333 -0.12512715070471692 0.023228227721755458 -0.02959001485452578 -0.1309428422740188 0.02160854255484504 0.0060954888694103905 -0.08386336966798116 0.031308463487661885 0.05923894990713665 -0.1157654305713078 0.024317329208926215 0.032604471241889636 -0.04813577495956 0.04080282264135502 -0.07083759329897299 -0.08908496416934557 0.029529563521213956 0.00028022392436326954 0.006584966754726182 0.023146134663752517 -0.005906081355771925 -0.08151227988546868 0.028346491732156073 -0.026592070392869205 -0.11419118339935332 0.024337136322771173 -0.028809138503906838 0.006584966754726182 0.023146134663752517 -0.005906081355771925 -0.0880754746371113 0.02462509801469569 -0.0025485405414549067 -0.11925814702174861 0.022763769496314826 0.003045967976522799 0.006584966754726182 0.023146134663752517 -0.005906081355771925 -0.06220200530515792 0.03308646348420113 0.03730326064751305 -0.079216413442863 0.03302463876740187 0.04980203561467477 0.006584966754726182 0.023146134663752517 -0.005906081355771925 -0.07515058767408406 0.02710355581661776 0.02076711167731627 -0.1034648626760968 0.0250365485582985 0.02586565017936874 0.006584966754726182 0.023146134663752517 -0.005906081355771925 -0.017504740047915843 0.03866846920562822 -0.031718928643854664 -0.037137980589193265 0.03777718265408522 -0.05541848188978897 -0.13634709568633666 0.025635558895943066 -0.028695021744677418 -0.14216278725563858 0.024015873729032647 0.006990481979258754 -0.09508331464960092 0.03371579466184949 0.06013394301698501 -0.12698537555292755 0.026724660383113823 0.033499464351738 -0.05935571994117975 0.04321015381554263 -0.06994260018912463 -0.0971511375679546 0.03171709456799997 0.00014244937296425226 -0.0014812066438828486 0.02533366571053853 -0.0060438559071709416 -0.08957845328407771 0.030534022778942085 -0.026729844944268222 -0.12225735679796235 0.026524667369557185 -0.028946913055305855 -0.0014812066438828486 0.02533366571053853 -0.0060438559071709416 -0.09614164803572033 0.026812629061481703 -0.002686315092853924 -0.12732432042035766 0.024951300543100838 0.0029081934251237816 -0.0014812066438828486 0.02533366571053853 -0.0060438559071709416 -0.07026817870376695 0.03527399453098714 0.03716548609611403 -0.08728258684147203 0.035212169814187885 0.049664261063275754 -0.0014812066438828486 0.02533366571053853 -0.0060438559071709416 -0.08321676107269309 0.029291086863403773 0.020629337125917253 -0.11153103607470582 0.027224079605084512 0.025727875627969722 -0.0014812066438828486 0.02533366571053853 -0.0060438559071709416 -0.025570913446524873 0.04085600025241423 -0.03185670319525368 -0.045204153987802295 0.039964713700871235 -0.05555625644118799 -0.14441326908494567 0.027823089942729078 -0.028832796296076435 -0.1502289606542476 0.02620340477581866 0.006852707427859737 -0.10314948804820995 0.035903325708635504 0.059996168465585996 -0.1350515489515366 0.028912191429899835 0.03336168980033898 -0.06742189333978879 0.04539768486232864 -0.07008037474052364 -0.09829624763700098 0.029721812402435717 -0.007708624698372928 -0.002626316712929233 0.023338383544974278 -0.013894929978508122 -0.09072356335312409 0.028538740613377835 -0.0345809190156054 -0.12340246686700873 0.024529385203992934 -0.036797987126643034 -0.002626316712929233 0.023338383544974278 -0.013894929978508122 -0.09728675810476671 0.024817346895917452 -0.010537389164191105 -0.12846943048940404 0.022956018377536587 -0.004942880646213399 -0.002626316712929233 0.023338383544974278 -0.013894929978508122 -0.07141328877281333 0.03327871236542289 0.029314412024776852 -0.08842769691051841 0.033216887648623634 0.041813186991938575 -0.002626316712929233 0.023338383544974278 -0.013894929978508122 -0.08436187114173947 0.027295804697839522 0.012778263054580073 -0.11267614614375221 0.02522879743952026 0.017876801556632543 -0.002626316712929233 0.023338383544974278 -0.013894929978508122 -0.026716023515571258 0.03886071808684999 -0.03970777726659086 -0.04634926405684868 0.03796943153530698 -0.06340733051252517 -0.14555837915399206 0.025827807777164827 -0.036683870367413614 -0.15137407072329398 0.024208122610254408 -0.0009983666434774437 -0.10429459811725633 0.03390804354307125 0.05214509439424882 -0.13619665902058298 0.026916909264335584 0.025510615729001804 -0.06856700340883518 0.04340240269676439 -0.07793144881186082 0.022242794929474584 0.01471089466975182 0.028786447557051457 0.11791272585354634 0.008327465812290382 0.022600142276916264 0.029815479213351474 0.01352782288069394 0.0019141532398189824 -0.002863424300533164 0.00951846747130904 -0.00030291487121865066 0.11791272585354634 0.008327465812290382 0.022600142276916264 0.023252284461708853 0.009806429163233555 0.02595768309123328 -0.007930387922928467 0.007945100644852689 0.03155219160921099 0.11791272585354634 0.008327465812290382 0.022600142276916264 0.04912575379366223 0.018267794632738994 0.06580948428020124 0.03211134565595715 0.018205969915939736 0.07830825924736295 0.11791272585354634 0.008327465812290382 0.022600142276916264 0.036177171424736095 0.012284886965155627 0.049273335310004454 0.007862896422723357 0.010217879706836363 0.05437187381205692 0.11791272585354634 0.008327465812290382 0.022600142276916264 0.09382301905090432 0.02384980035416609 -0.003212705011166477 0.07418977850962688 0.022958513802623086 -0.026912258257100783 -0.025019336587516504 0.01081689004448093 -0.00018879811198923083 -0.03083502815681842 0.009197204877570512 0.03549670561194694 0.01624444444921923 0.01889712581038736 0.0886401666496732 -0.015657616454107397 0.01190599153165169 0.06200568798442618 0.0519720391576404 0.02839148496408049 -0.041436376556436436 0.027507174529209536 0.013659010988817949 0.023430142503214103 0.12317710545328128 0.00727558213135651 0.017243837223078907 0.03507985881308642 0.012475939199760068 -0.003442151814018371 0.002400955299201788 0.008466583790375168 -0.005659219925056004 0.12317710545328128 0.00727558213135651 0.017243837223078907 0.028516664061443806 0.008754545482299684 0.020601378037395927 -0.0026660083231935146 0.006893216963918818 0.026195886555373634 0.12317710545328128 0.00727558213135651 0.017243837223078907 0.05439013339339718 0.017215910951805122 0.06045317922636388 0.037375725255692105 0.017154086235005864 0.0729519541935256 0.12317710545328128 0.00727558213135651 0.017243837223078907 0.04144155102447105 0.011233003284221756 0.043917030256167104 0.01312727602245831 0.009165996025902491 0.04901556875821957 0.12317710545328128 0.00727558213135651 0.017243837223078907 0.09908739865063926 0.022797916673232214 -0.00856901006500383 0.07945415810936184 0.02190663012168921 -0.032268563310938136 -0.01975495698778155 0.009765006363547058 -0.005545103165826584 -0.025570648557083468 0.00814532119663664 0.030140400558109588 0.021508824048954184 0.017845242129453487 0.08328386159583584 -0.010393236854372444 0.010854107850717817 0.05664938293058883 0.057236418757375354 0.02733960128314662 -0.046792681610273786 -0.10663377462454603 0.03308492040820101 -0.009189280111050304 -0.010963843700474277 0.026701491550739573 -0.015375585391185498 -0.09906109034066914 0.03190184861914313 -0.036061574428282776 -0.13173999385455376 0.02789249320975823 -0.03827864253932041 -0.010963843700474277 0.026701491550739573 -0.015375585391185498 -0.10562428509231175 0.028180454901682746 -0.01201804457686848 -0.13680695747694907 0.02631912638330188 -0.006423536058890775 -0.010963843700474277 0.026701491550739573 -0.015375585391185498 -0.07975081576035838 0.03664182037118818 0.027833756612099476 -0.09676522389806345 0.03657999565438893 0.0403325315792612 -0.010963843700474277 0.026701491550739573 -0.015375585391185498 -0.09269939812928452 0.030658912703604817 0.011297607641902697 -0.12101367313129725 0.028591905445285556 0.016396146143955168 -0.010963843700474277 0.026701491550739573 -0.015375585391185498 -0.0350535505031163 0.04222382609261528 -0.041188432679268236 -0.05468679104439372 0.04133253954107227 -0.06488798592520255 -0.15389590614153711 0.02919091578293012 -0.03816452578009099 -0.15971159771083904 0.027571230616019703 -0.0024790220561548195 -0.11263212510480138 0.03727115154883655 0.05066443898157144 -0.144534186008128 0.03028001727010088 0.024029960316324428 -0.0769045303963802 0.04676551070252968 -0.07941210422453819 -0.10511894856529337 0.034547623291941616 -0.0001342019029174589 -0.009449017641221621 0.028164194434480178 -0.006320507183052653 -0.09754626428141648 0.033364551502883734 -0.027006496220149934 -0.13022516779530113 0.029355196093498834 -0.029223564331187567 -0.009449017641221621 0.028164194434480178 -0.006320507183052653 -0.1041094590330591 0.02964315778542335 -0.002962966368735635 -0.13529213141769642 0.027781829267042486 0.0026315421492420707 -0.009449017641221621 0.028164194434480178 -0.006320507183052653 -0.07823598970110572 0.03810452325492879 0.03688883482023232 -0.0952503978388108 0.038042698538129534 0.049387609787394045 -0.009449017641221621 0.028164194434480178 -0.006320507183052653 -0.09118457207003186 0.03212161558734542 0.02035268585003554 -0.1194988470720446 0.03005460832902616 0.02545122435208801 -0.009449017641221621 0.028164194434480178 -0.006320507183052653 -0.033538724443863646 0.04368652897635589 -0.03213335447113539 -0.05317196498514107 0.04279524242481288 -0.055832907717069696 -0.15238108008228446 0.030653618666670726 -0.029109447571958148 -0.15819677165158638 0.029033933499760307 0.006576056151978025 -0.11111729904554872 0.03873385443257715 0.05971951718970429 -0.14301935994887535 0.03174272015384148 0.03308503852445727 -0.07538970433712755 0.04822821358627029 -0.07035702601640535 -0.07469877870844775 0.02745940691748982 0.008037479988041529 0.020971152215623998 0.02107597806002838 0.0018511747079063348 -0.06712609442457086 0.026276335128431937 -0.018834814329190944 -0.0998049979384555 0.022266979719047036 -0.021051882440228577 0.020971152215623998 0.02107597806002838 0.0018511747079063348 -0.07368928917621348 0.022554941410971554 0.005208715522223352 -0.1048719615608508 0.02069361289259069 0.010803224040201058 0.020971152215623998 0.02107597806002838 0.0018511747079063348 -0.0478158198442601 0.03101630688047699 0.04506051671119131 -0.06483022798196518 0.030954482163677736 0.05755929167835303 0.020971152215623998 0.02107597806002838 0.0018511747079063348 -0.06076440221318624 0.025033399212893624 0.02852436774099453 -0.08907867721519898 0.022966391954574363 0.033622906243047 0.020971152215623998 0.02107597806002838 0.0018511747079063348 -0.003118554587018027 0.03659831260190409 -0.023961672580176403 -0.02275179512829545 0.03570702605036108 -0.04766122582611071 -0.12196091022543884 0.02356540229221893 -0.020937765680999157 -0.12777660179474076 0.02194571712530851 0.014747738042937013 -0.0806971291887031 0.031645638058125355 0.06789119908066327 -0.11259919009202973 0.024654503779389686 0.04125672041541626 -0.04496953448028194 0.04113999721181849 -0.06218534412544636 -0.07125307011145364 0.026409240534970128 0.017994683813391487 0.02441686081261811 0.02002581167750869 0.011808378533256293 -0.06368038582757675 0.025226168745912245 -0.008877610503840987 -0.09635928934146139 0.02121681333652735 -0.01109467861487862 0.02441686081261811 0.02002581167750869 0.011808378533256293 -0.07024358057921937 0.021504775028451863 0.01516591934757331 -0.10142625296385668 0.019643446510070998 0.020760427865551018 0.02441686081261811 0.02002581167750869 0.011808378533256293 -0.04437011124726599 0.0299661404979573 0.05501772053654126 -0.061384519384971074 0.029904315781158045 0.06751649550370299 0.02441686081261811 0.02002581167750869 0.011808378533256293 -0.05731869361619213 0.023983232830373933 0.03848157156634449 -0.08563296861820487 0.021916225572054672 0.04358011006839696 0.02441686081261811 0.02002581167750869 0.011808378533256293 0.00032715400997608557 0.035548146219384395 -0.014004468754826447 -0.019306086531301336 0.03465685966784139 -0.037704022000760756 -0.11851520162844473 0.022515235909699238 -0.0109805618556492 -0.12433089319774665 0.02089555074278882 0.02470494186828697 -0.07725142059170899 0.030595471675605668 0.07784840290601323 -0.10915348149503562 0.023604337396869995 0.05121392424076622 -0.041523825883287825 0.040089830829298796 -0.0522281403000964 -0.06109508843547914 0.024914610474352405 0.006572596582093852 0.03457484248859261 0.018531181616890966 0.00038629130195865814 -0.05352240415160225 0.023731538685294522 -0.020299697735138622 -0.08620130766548689 0.019722183275909626 -0.022516765846176255 0.03457484248859261 0.018531181616890966 0.00038629130195865814 -0.06008559890324487 0.02001014496783414 0.003743832116275676 -0.09126827128788219 0.018148816449453275 0.009338340634253381 0.03457484248859261 0.018531181616890966 0.00038629130195865814 -0.034212129571291494 0.028471510437339576 0.04359563330524363 -0.05122653770899657 0.028409685720540322 0.056094408272405354 0.03457484248859261 0.018531181616890966 0.00038629130195865814 -0.04716071194021763 0.02248860276975621 0.027059484335046853 -0.07547498694223037 0.02042159551143695 0.03215802283709932 0.03457484248859261 0.018531181616890966 0.00038629130195865814 0.010485135685950588 0.03405351615876667 -0.02542655598612408 -0.009148104855326834 0.03316222960722367 -0.04912610923205839 -0.10835721995247022 0.021020605849081515 -0.022402649086946835 -0.11417291152177214 0.019400920682171096 0.013282854636989336 -0.0670934389157345 0.029100841614987945 0.0664263156747156 -0.09899549981906111 0.022109707336252272 0.03979183700946858 -0.03136584420731332 0.03859520076868107 -0.06365022753139404 -0.05646721245736931 0.023842829550341185 0.016660499346542793 0.03920271846670244 0.017459400692879747 0.010474194066407599 -0.04889452817349242 0.022659757761283303 -0.010211794970689681 -0.08157343168737706 0.018650402351898403 -0.012428863081727314 0.03920271846670244 0.017459400692879747 0.010474194066407599 -0.055457722925135046 0.01893836404382292 0.013831734880724617 -0.08664039530977236 0.017077035525442055 0.019426243398702324 0.03920271846670244 0.017459400692879747 0.010474194066407599 -0.029584253593181665 0.027399729513328357 0.053683536069692575 -0.046598661730886747 0.027337904796529103 0.06618231103685429 0.03920271846670244 0.017459400692879747 0.010474194066407599 -0.0425328359621078 0.02141682184574499 0.03714738709949579 -0.07084711096412054 0.01934981458742573 0.04224592560154826 0.03920271846670244 0.017459400692879747 0.010474194066407599 0.015113011664060413 0.03298173523475545 -0.01533865322167514 -0.0045202288772170085 0.03209044868321245 -0.03903820646760944 -0.1037293439743604 0.019948824925070295 -0.012314746322497894 -0.10954503554366232 0.018329139758159876 0.023370757401438277 -0.06246556293762466 0.028029060690976722 0.07651421843916453 -0.09436762384095129 0.021037926412241052 0.04987973977391752 -0.026737968229203497 0.03752341984466986 -0.0535623247669451 -0.017685827364547567 0.02033011839805037 0.0032284801160982705 0.07798410355952418 0.013946689540588933 -0.0029578251640369237 -0.010113143080670678 0.01914704660899249 -0.023643814201134206 -0.042792046594555315 0.01513769119960759 -0.02586088231217184 0.07798410355952418 0.013946689540588933 -0.0029578251640369237 -0.016676337832313298 0.015425652891532107 0.00039971565028009423 -0.04785901021695062 0.013564324373151242 0.0059942241682577994 0.07798410355952418 0.013946689540588933 -0.0029578251640369237 0.00919713149964008 0.023887018361037543 0.04025151683924805 -0.007817276638065 0.02382519364423829 0.05275029180640977 0.07798410355952418 0.013946689540588933 -0.0029578251640369237 -0.0037514508692860545 0.017904110693454177 0.02371536786905127 -0.03206572587129879 0.015837103435134916 0.028813906371103738 0.07798410355952418 0.013946689540588933 -0.0029578251640369237 0.05389439675688216 0.02946902408246464 -0.028770672452119665 0.034261156215604736 0.028577737530921635 -0.05247022569805397 -0.06494795888153865 0.01643611377277948 -0.02574676555294242 -0.07076365045084057 0.014816428605869063 0.009938738170993755 -0.02368417784480292 0.024516349538685908 0.06308219920872002 -0.05558623874812955 0.01752521525995024 0.036447720543473 0.012043416863618248 0.034010708692379044 -0.06699434399738961 0.042965013545104125 0.008109687279938684 0.02179400506740999 0.13863494446917587 0.0017262584224772455 0.015607699787274795 0.050537697828981015 0.006926615490880803 -0.005078289249822485 0.017858794315096377 0.0029172600814959034 -0.007295357360860118 0.13863494446917587 0.0017262584224772455 0.015607699787274795 0.04397450307733839 0.003205221773420419 0.018965240601591812 0.012791830692701074 0.0013438932550395534 0.02455974911956952 0.13863494446917587 0.0017262584224772455 0.015607699787274795 0.06984797240929178 0.011666587242925856 0.05881704179055977 0.05283356427158669 0.011604762526126602 0.07131581675772149 0.13863494446917587 0.0017262584224772455 0.015607699787274795 0.056899390040365636 0.00568367957534249 0.042280892820362986 0.0285851150383529 0.0036166723170232276 0.047379431322415455 0.13863494446917587 0.0017262584224772455 0.015607699787274795 0.11454523766653385 0.017248592964352952 -0.010205147500807945 0.09491199712525643 0.016357306412809948 -0.03390470074674225 -0.004297117971886963 0.004215682654667794 -0.007181240601630699 -0.010112809541188879 0.0025959974877573753 0.028504263122305473 0.036966663064848776 0.012295918420574222 0.08164772416003173 0.005064602161522144 0.005304784141838553 0.055013245494784715 0.07269425777326993 0.021790277574267353 -0.0484288190460779 0.03256742771879912 0.007979871068729416 0.020282090573405458 0.12823735864287086 0.001596442211267977 0.014095785293270264 0.04014011200267601 0.006796799279671534 -0.006590203743827017 0.007461208488791372 0.002787443870286635 -0.00880727185486465 0.12823735864287086 0.001596442211267977 0.014095785293270264 0.033576917251033386 0.0030754055622111507 0.01745332610758728 0.0023942448663960697 0.001214077043830285 0.02304783462556499 0.12823735864287086 0.001596442211267977 0.014095785293270264 0.059450386582986764 0.011536771031716587 0.057305127296555236 0.042435978445281686 0.011474946314917332 0.06980390226371697 0.12823735864287086 0.001596442211267977 0.014095785293270264 0.04650180421406063 0.005553863364133222 0.04076897832635846 0.018187529212047894 0.003486856105813959 0.04586751682841093 0.12823735864287086 0.001596442211267977 0.014095785293270264 0.10414765184022884 0.01711877675314368 -0.011717061994812476 0.08451441129895143 0.016227490201600678 -0.03541661524074678 -0.014694703798191967 0.004085866443458526 -0.00869315509563523 -0.020510395367493883 0.002466181276548107 0.026992348628300942 0.026569077238543768 0.012166102209364954 0.08013580966602721 -0.00533298366478286 0.0051749679306292845 0.05350133100078019 0.062296671946964935 0.021660461363058086 -0.04994073354008243 0.03220320861881945 0.00216752353677305 0.020187063809250224 0.1278731395428912 -0.004215905320688389 0.01400075852911503 0.03977589290269634 0.0009844517477151685 -0.00668523050798225 0.007096989388811703 -0.003024903661669731 -0.008902298619019883 0.1278731395428912 -0.004215905320688389 0.01400075852911503 0.03321269815105372 -0.0027369419697452152 0.017358299343432047 0.0020300257664164004 -0.004598270488126081 0.022952807861409755 0.1278731395428912 -0.004215905320688389 0.01400075852911503 0.0590861674830071 0.005724423499760222 0.0572101005324 0.042071759345302016 0.0056625987829609665 0.06970887549956173 0.1278731395428912 -0.004215905320688389 0.01400075852911503 0.04613758511408096 -0.00025848416782314407 0.04067395156220323 0.017823310112068225 -0.002325491426142407 0.0457724900642557 0.1278731395428912 -0.004215905320688389 0.01400075852911503 0.10378343274024918 0.011306429221187318 -0.01181208875896771 0.08415019219897175 0.010415142669644314 -0.03551164200490202 -0.015058922898171637 -0.0017264810884978403 -0.008788181859790464 -0.020874614467473553 -0.003346166255408259 0.026897321864145708 0.0262048581385641 0.006353754677408588 0.08004078290187197 -0.0056972027647625295 -0.0006373796013270819 0.05340630423662496 0.061932452846985266 0.01584811383110172 -0.05003576030423766 0.043182045507852845 0.0040648240205035865 0.02064502963956148 0.1388519764319246 -0.002318604836957852 0.014458724359426285 0.050754729791729736 0.002881752231445705 -0.006227264677670995 0.018075826277845097 -0.0011276031779391942 -0.008444332788708628 0.1388519764319246 -0.002318604836957852 0.014458724359426285 0.04419153504008711 -0.0008396414860146785 0.017816265173743302 0.013008862655449795 -0.0027009700043955443 0.02341077369172101 0.1388519764319246 -0.002318604836957852 0.014458724359426285 0.0700650043720405 0.007621723983490758 0.057668066362711254 0.05305059623433541 0.007559899266691503 0.07016684132987298 0.1388519764319246 -0.002318604836957852 0.014458724359426285 0.057116422003114356 0.0016388163159073927 0.04113191739251448 0.02880214700110162 -0.00042819094241187006 0.04623045589456695 0.1388519764319246 -0.002318604836957852 0.014458724359426285 0.11476226962928257 0.013203729704917854 -0.011354122928656455 0.09512902908800515 0.01231244315337485 -0.035053676174590764 -0.004080086009138242 0.0001708193952326964 -0.008330216029479209 -0.009895777578440158 -0.0014488657716777223 0.027355287694456963 0.037183695027597496 0.008251055161139125 0.08049874873218323 0.005281634124270865 0.0012599208824034549 0.05386427006693621 0.07291128973601865 0.01774541431483226 -0.049577794473926406 0.02707621685560545 0.007953520790894134 0.019493439541186652 0.1227461477796772 0.0015700919334326949 0.013307134261051458 0.03464890113948234 0.006770449001836252 -0.007378854776045822 0.0019699976255977032 0.002761093592451353 -0.009595922887083455 0.1227461477796772 0.0015700919334326949 0.013307134261051458 0.02808570638783972 0.0030490552843758685 0.016664675075368476 -0.0030969659967975995 0.0011877267659950027 0.022259183593346183 0.1227461477796772 0.0015700919334326949 0.013307134261051458 0.0539591757197931 0.011510420753881305 0.05651647626433643 0.03694476758208802 0.011448596037082051 0.06901525123149815 0.1227461477796772 0.0015700919334326949 0.013307134261051458 0.041010593350866965 0.00552751308629794 0.03998032729413965 0.012696318348854225 0.003460505827978677 0.04507886579619212 0.1227461477796772 0.0015700919334326949 0.013307134261051458 0.09865644097703517 0.0170924264753084 -0.012505713027031282 0.07902320043575775 0.016201139923765397 -0.03620526627296559 -0.020185914661385636 0.004059516165623243 -0.009481806127854035 -0.026001606230687552 0.0024398309987128247 0.026203697596082137 0.0210778663753501 0.012139751931529672 0.0793471586338084 -0.01082419452797653 0.005148617652794002 0.05271267996856138 0.05680546108377127 0.021634111085222806 -0.05072938457230124 0.03211623939779525 0.012522669638148342 0.024086865872438832 0.127786170321867 0.006139240780686903 0.01790056059230364 0.03968892368167214 0.011339597849090461 -0.0027854284447936424 0.007010020167787505 0.007330242439705561 -0.0050024965558312755 0.127786170321867 0.006139240780686903 0.01790056059230364 0.03312572893002952 0.007618204131630077 0.021258101406620655 0.0019430565453922022 0.005756875613249211 0.026852609924598363 0.127786170321867 0.006139240780686903 0.01790056059230364 0.058999198261982896 0.016079569601135515 0.061109902595588614 0.04198479012427782 0.016017744884336257 0.07360867756275033 0.127786170321867 0.006139240780686903 0.01790056059230364 0.046050615893056764 0.010096661933552149 0.04457375362539183 0.017736340891044027 0.008029654675232884 0.0496722921274443 0.127786170321867 0.006139240780686903 0.01790056059230364 0.10369646351922499 0.02166157532256261 -0.007912286695779102 0.08406322297794755 0.020770288771019607 -0.031611839941713404 -0.015145892119195835 0.008628665012877451 -0.004888379796601856 -0.02096158368849775 0.007008979845967033 0.030797123927334316 0.0261178889175399 0.01670890077878388 0.08394058496506057 -0.005784171985786728 0.00971776650004821 0.05730610629981356 0.06184548362596107 0.026203259932477012 -0.04613595824104906 -0.053677773057747465 0.019204472945954246 0.02853380731532411 0.041992157866324285 0.012821044088492807 0.022347502035188913 -0.046105088773870574 0.018021401156896363 0.001661512998091634 -0.0787839922877552 0.014012045747511465 -0.000555555112945999 0.041992157866324285 0.012821044088492807 0.022347502035188913 -0.0526682835255132 0.01430000743943598 0.025705042849505932 -0.08385095591015052 0.012438678921055116 0.031299551367483636 0.041992157866324285 0.012821044088492807 0.022347502035188913 -0.026794814193559818 0.022761372908941417 0.0655568440384739 -0.0438092223312649 0.022699548192142163 0.07805561900563561 0.041992157866324285 0.012821044088492807 0.022347502035188913 -0.039743396562485954 0.01677846524135805 0.04902069506827711 -0.06805767156449868 0.01471145798303879 0.05411923357032958 0.041992157866324285 0.012821044088492807 0.022347502035188913 0.01790245106368226 0.028343378630368513 -0.0034653452528938256 -0.0017307894775951613 0.02745209207882551 -0.02716489849882813 -0.10093990457473856 0.015310468320683356 -0.0004414383537165792 -0.10675559614404047 0.013690783153772937 0.035244065370219596 -0.059676123538002813 0.023390704086589782 0.08838752640794585 -0.09157818444132945 0.016399569807854113 0.06175304774269884 -0.02394852882958165 0.03288506324028292 -0.04168901679816378 -0.0023744906642376553 -0.0034643571567709924 0.01272105776574804 0.09329544025983409 -0.009847786014232432 0.006534752485612846 0.005198193619639233 -0.004647428945828874 -0.014151236551484434 -0.027480709894245402 -0.008656784355213772 -0.016368304662522065 0.09329544025983409 -0.009847786014232432 0.006534752485612846 -0.0013650011320033863 -0.008368822663289258 0.009892293299929864 -0.03254767351664071 -0.010230151181670123 0.01548680181790757 0.09329544025983409 -0.009847786014232432 0.006534752485612846 0.024508468199949993 9.254280621617946e-05 0.04974409448889782 0.007494060062244912 3.071808941692428e-05 0.062242869456059544 0.09329544025983409 -0.009847786014232432 0.006534752485612846 0.011559885831023856 -0.005890364861367186 0.03320794551870104 -0.01675438917098888 -0.007957372119686449 0.03830648402075351 0.09329544025983409 -0.009847786014232432 0.006534752485612846 0.06920573345719207 0.005674548527643275 -0.01927809480246989 0.049572492915914645 0.004783261976100271 -0.0429776480484042 -0.049636622181228746 -0.0073583617820418825 -0.016254187903292645 -0.05545231375053066 -0.008978046948952302 0.019431315820643523 -0.008372841144493007 0.0007218739838645459 0.07257477685836979 -0.04027490204781964 -0.0062692602948711245 0.04594029819312277 0.02735475356392816 0.010216233137557679 -0.05750176634773985 -0.07036543031974134 0.019534871664361162 0.03127189029223684 0.025304500604330413 0.013151442806899723 0.025085585012101647 -0.06279274603586445 0.01835179987530328 0.004399595975004368 -0.09547164954974909 0.014342444465918381 0.002182527863966735 0.025304500604330413 0.013151442806899723 0.025085585012101647 -0.06935594078750706 0.014630406157842897 0.028443125826418666 -0.10053861317214438 0.012769077639462032 0.03403763434439637 0.025304500604330413 0.013151442806899723 0.025085585012101647 -0.04348247145555369 0.023091771627348334 0.06829492701538661 -0.06049687959325877 0.02302994691054908 0.08079370198254834 0.025304500604330413 0.013151442806899723 0.025085585012101647 -0.05643105382447983 0.017108863959764967 0.05175877804518984 -0.08474532882649256 0.015041856701445706 0.05685731654724231 0.025304500604330413 0.013151442806899723 0.025085585012101647 0.001214793801688388 0.02867377734877543 -0.0007272622759810915 -0.018418446739589034 0.027782490797232426 -0.024426815521915397 -0.11762756183673242 0.015640867039090272 0.002296644623196155 -0.12344325340603435 0.014021181872179853 0.03798214834713233 -0.07636378079999669 0.023721102804996702 0.09112560938485859 -0.10826584170332332 0.01672996852626103 0.06449113071961157 -0.04063618609157552 0.03321546195868983 -0.038950933821251046 -0.046874924724077616 0.013427468614711663 0.041916090098923414 0.048795006199994134 0.0070440397572502245 0.03572978481878822 -0.039302240440200725 0.012244396825653783 0.01504379578169094 -0.07198114395408536 0.008235041416268882 0.012826727670653307 0.048795006199994134 0.0070440397572502245 0.03572978481878822 -0.04586543519184335 0.008523003108193398 0.03908732563310524 -0.07704810757648067 0.006661674589812532 0.04468183415108294 0.048795006199994134 0.0070440397572502245 0.03572978481878822 -0.01999196585988997 0.016984368577698836 0.07893912682207319 -0.03700637399759505 0.01692254386089958 0.09143790178923492 0.048795006199994134 0.0070440397572502245 0.03572978481878822 -0.032940548228816105 0.01100146091011547 0.062402977851876415 -0.06125482323082884 0.008934453651796206 0.06750151635392888 0.048795006199994134 0.0070440397572502245 0.03572978481878822 0.02470529939735211 0.022566374299125933 0.00991693753070548 0.005072058856074688 0.02167508774758293 -0.013782615715228826 -0.0941370562410687 0.009533463989440773 0.012940844429882727 -0.09995274781037061 0.007913778822530354 0.0486263481538189 -0.052873275204332965 0.0176136997553472 0.10176980919154516 -0.0847753361076596 0.010622565476611532 0.07513533052629814 -0.0171456804959118 0.027108058909040333 -0.028306734014564475 -0.059803222839656944 0.012414432967215523 0.04367097501884269 0.035866708084414806 0.006031004109754084 0.037484669738707496 -0.052230538555780054 0.011231361178157642 0.016798680701610218 -0.08490944206966469 0.007222005768772742 0.014581612590572585 0.035866708084414806 0.006031004109754084 0.037484669738707496 -0.05879373330742268 0.0075099674606972575 0.04084221055302452 -0.08997640569206 0.005648638942316392 0.04643671907100222 0.035866708084414806 0.006031004109754084 0.037484669738707496 -0.032920263975469294 0.015971332930202694 0.08069401174199248 -0.04993467211317438 0.01590950821340344 0.0931927867091542 0.035866708084414806 0.006031004109754084 0.037484669738707496 -0.045868846344395434 0.009988425262619328 0.06415786277179569 -0.07418312134640817 0.007921418004300067 0.06925640127384816 0.035866708084414806 0.006031004109754084 0.037484669738707496 0.011777001281772781 0.02155333865162979 0.011671822450624758 -0.007856239259504641 0.020662052100086786 -0.012027730795309548 -0.10706535435664803 0.008520428341944632 0.014695729349802004 -0.11288104592594994 0.006900743175034214 0.05038123307373818 -0.0658015733199123 0.016600664107851063 0.10352469411146444 -0.09770363422323892 0.009609529829115391 0.07689021544621742 -0.03007397861149113 0.02609502326154419 -0.026551849094645197 -0.08726919327590765 0.018611168887554642 0.03667167306136726 0.008400737648164097 0.012227740030093203 0.030485367781232064 -0.07969650899203076 0.01742809709849676 0.009799378744134786 -0.1123754125059154 0.013418741689111861 0.007582310633097153 0.008400737648164097 0.012227740030093203 0.030485367781232064 -0.08625970374367338 0.013706703381036377 0.03384290859554909 -0.11744237612831071 0.011845374862655512 0.03943741711352679 0.008400737648164097 0.012227740030093203 0.030485367781232064 -0.06038623441172 0.022168068850541813 0.07369470978451703 -0.07740064254942508 0.02210624413374256 0.08619348475167876 0.008400737648164097 0.012227740030093203 0.030485367781232064 -0.07333481678064614 0.016185161182958447 0.05715856081432026 -0.10164909178265888 0.014118153924639186 0.06225709931637273 0.008400737648164097 0.012227740030093203 0.030485367781232064 -0.015688969154477928 0.02775007457196891 0.004672520493149326 -0.03532220969575535 0.026858788020425906 -0.01902703275278498 -0.13453132479289875 0.014717164262283752 0.007696427392326573 -0.14034701636220065 0.013097479095373333 0.04338193111626275 -0.093267543756163 0.022797400028190182 0.096525392153989 -0.12516960465948962 0.01580626574945451 0.06989091348874199 -0.05753994904774184 0.03229175918188331 -0.03355115105212063 -0.07593764273190691 0.013525342981857041 0.043925169029497856 0.01973228819216484 0.007141914124395602 0.03773886374936266 -0.06836495844803002 0.01234227119279916 0.01705287471226538 -0.10104386196191466 0.00833291578341426 0.014835806601227748 0.01973228819216484 0.007141914124395602 0.03773886374936266 -0.07492815319967264 0.008620877475338776 0.04109640456367968 -0.10611082558430995 0.00675954895695791 0.04669091308165738 0.01973228819216484 0.007141914124395602 0.03773886374936266 -0.04905468386771926 0.017082242944844214 0.08094820575264763 -0.06606909200542434 0.017020418228044957 0.09344698071980936 0.01973228819216484 0.007141914124395602 0.03773886374936266 -0.0620032662366454 0.011099335277260848 0.06441205678245085 -0.09031754123865814 0.009032328018941584 0.06951059528450332 0.01973228819216484 0.007141914124395602 0.03773886374936266 -0.0043574186104771845 0.022664248666271307 0.011926016461279922 -0.023990659151754606 0.021772962114728303 -0.011773536784654384 -0.123199774248898 0.009631338356586151 0.014949923360457168 -0.12901546581819992 0.008011653189675732 0.050635427084393336 -0.08193599321216226 0.01771157412249258 0.1037788881221196 -0.11383805411548889 0.01072043984375691 0.07714440945687259 -0.046208398503741095 0.02720593327618571 -0.026297655083990033 -0.10341467017653615 0.022614514994471212 0.03311782521617998 -0.007744739252464397 0.016231086137009774 0.026931519936044784 -0.09584198589265926 0.02143144320541333 0.006245530898947506 -0.12852088940654388 0.017422087796028433 0.004028462787909873 -0.007744739252464397 0.016231086137009774 0.026931519936044784 -0.10240518064430187 0.017710049487952947 0.030289060750361804 -0.1335878530289392 0.015848720969572083 0.03588356926833951 -0.007744739252464397 0.016231086137009774 0.026931519936044784 -0.0765317113123485 0.026171414957458384 0.07014086193932975 -0.09354611945005357 0.02610959024065913 0.08263963690649148 -0.007744739252464397 0.016231086137009774 0.026931519936044784 -0.08948029368127464 0.020188507289875018 0.05360471296913298 -0.11779456868328737 0.018121500031555757 0.05870325147118545 -0.007744739252464397 0.016231086137009774 0.026931519936044784 -0.03183444605510642 0.03175342067888548 0.0011186726479620462 -0.051467686596383844 0.030862134127342476 -0.02258088059797226 -0.15067680169352723 0.018720510369200322 0.004142579547139293 -0.15649249326282916 0.017100825202289904 0.03982808327107547 -0.1094130206567915 0.026800746135106752 0.09297154430880172 -0.14131508156011813 0.01980961185637108 0.06633706564355471 -0.07368542594837033 0.03629510528879988 -0.03710499889730791 -0.09498284382491945 0.021040918402138307 0.03404173402691143 0.0006870870991523004 0.014657489544676869 0.027855428746776233 -0.08741015954104256 0.019857846613080425 0.007169439709678954 -0.1200890630549272 0.015848491203695525 0.004952371598641321 0.0006870870991523004 0.014657489544676869 0.027855428746776233 -0.09397335429268518 0.016136452895620042 0.031212969561093252 -0.1251560266773225 0.014275124377239178 0.036807478079070956 0.0006870870991523004 0.014657489544676869 0.027855428746776233 -0.0680998849607318 0.02459781836512548 0.0710647707500612 -0.08511429309843688 0.024535993648326225 0.08356354571722294 0.0006870870991523004 0.014657489544676869 0.027855428746776233 -0.08104846732965794 0.018614910697542113 0.05452862177986443 -0.10936274233167068 0.016547903439222852 0.0596271602819169 0.0006870870991523004 0.014657489544676869 0.027855428746776233 -0.023402619703489724 0.030179824086552575 0.0020425814586934946 -0.043035860244767146 0.02928853753500957 -0.02165697178724081 -0.14224497534191055 0.017146913776867417 0.005066488357870741 -0.14806066691121245 0.015527228609956999 0.04075199208180691 -0.1009811943051748 0.025227149542773844 0.09389545311953318 -0.13288325520850142 0.018236015264038175 0.06726097445428617 -0.06525359959675364 0.03472150869646698 -0.03618109008657646 -0.06611160204766038 0.008470374014466084 0.051340654489725475 0.02955832887641137 0.002086945157004645 0.04515434920959028 -0.05853891776378349 0.007287302225408202 0.024468360172493 -0.09121782127766813 0.003277946816023303 0.022251292061455367 0.02955832887641137 0.002086945157004645 0.04515434920959028 -0.06510211251542611 0.003565908507947819 0.0485118900239073 -0.09628478490006342 0.001704579989566953 0.054106398541885 0.02955832887641137 0.002086945157004645 0.04515434920959028 -0.03922864318347273 0.012027273977453255 0.08836369121287525 -0.056243051321177816 0.011965449260654001 0.10086246618003697 0.02955832887641137 0.002086945157004645 0.04515434920959028 -0.05217722555239887 0.00604436630986989 0.07182754224267848 -0.08049150055441161 0.003977359051550627 0.07692608074473095 0.02955832887641137 0.002086945157004645 0.04515434920959028 0.005468622073769344 0.01760927969888035 0.01934150192150754 -0.014164618467508078 0.016717993147337348 -0.004358051324426765 -0.11337373356465147 0.004576369389195194 0.022365408820684787 -0.11918942513395339 0.002956684222284775 0.058050912544620956 -0.07210995252791573 0.012656605155101622 0.11119437358234721 -0.10401201343124236 0.005665470876365953 0.0845598949171002 -0.03638235781949457 0.022150964308794756 -0.018882169623762414 0.04149481080712265 -0.002404869356986628 0.03279584619551873 0.13716474173119442 -0.008788298214448067 0.026609540915383534 0.049067495090999544 -0.0035879411460445097 0.005923551878286255 0.016388591577114905 -0.007597296555429409 0.0037064837672486223 0.13716474173119442 -0.008788298214448067 0.026609540915383534 0.04250430033935692 -0.007309334863504893 0.029967081729700553 0.011321627954719603 -0.009170663381885758 0.03556159024767826 0.13716474173119442 -0.008788298214448067 0.026609540915383534 0.0683777696713103 0.0011520306060005437 0.0698188829186685 0.05136336153360522 0.0010902058892012885 0.08231765788583023 0.13716474173119442 -0.008788298214448067 0.026609540915383534 0.055429187302384164 -0.004830877061582822 0.05328273394847173 0.027114912300371427 -0.006897884319902085 0.0583812724505242 0.13716474173119442 -0.008788298214448067 0.026609540915383534 0.11307503492855238 0.006734036327427639 0.0007966936273007957 0.09344179438727496 0.0058427497758846356 -0.02290285961863351 -0.005767320709868434 -0.006298873982257518 0.003820600526478042 -0.01158301227917035 -0.007918559149167937 0.03950610425041422 0.035496460326867305 0.00178136178364891 0.09264956528814047 0.003594399423540673 -0.0052097724950867595 0.06601508662289346 0.07122405503528847 0.011275720937342042 -0.03742697791796916 0.041536519416243194 -0.0033068836823986593 0.0273921833338215 0.13720645034031495 -0.009690312539860097 0.021205878053686303 0.049109203700120084 -0.004489955471456541 0.0005198890165890244 0.016430300186235446 -0.008499310880841441 -0.0016971790944486087 0.13720645034031495 -0.009690312539860097 0.021205878053686303 0.04254600894847746 -0.008211349188916924 0.024563418868003322 0.011363336563840143 -0.01007267770729779 0.03015792738598103 0.13720645034031495 -0.009690312539860097 0.021205878053686303 0.06841947828043084 0.00025001628058851253 0.06441522005697128 0.05140507014272576 0.00018819156378925735 0.076913995024133 0.13720645034031495 -0.009690312539860097 0.021205878053686303 0.055470895911504704 -0.005732891386994853 0.0478790710867745 0.027156620909491967 -0.007799898645314116 0.05297760958882697 0.13720645034031495 -0.009690312539860097 0.021205878053686303 0.11311674353767293 0.005832022002015608 -0.004606969234396435 0.09348350299639549 0.0049407354504726044 -0.02830652248033074 -0.005725612100747894 -0.0072008883076695495 -0.0015830623352191889 -0.01154130367004981 -0.008820573474579967 0.034102441388716986 0.035538168935987845 0.0008793474582368789 0.08724590242644324 0.003636108032661213 -0.0061117868204987914 0.06061142376119623 0.07126576364440901 0.01037370661193001 -0.04283064077966639 -0.10250587614198475 0.029585381050005282 0.025057761218202513 -0.006835945217913003 0.023201952192543843 0.01887145593806732 -0.09493319185810786 0.0284023092609474 -0.0018145330990299614 -0.1276120953719925 0.024392953851562503 -0.0040316012100675945 -0.006835945217913003 0.023201952192543843 0.01887145593806732 -0.10149638660975048 0.024680915543487017 0.022228996752384336 -0.1326790589943878 0.022819587025106152 0.027823505270362044 -0.006835945217913003 0.023201952192543843 0.01887145593806732 -0.0756229172777971 0.03314228101299246 0.062080797941352295 -0.09263732541550218 0.033080456296193196 0.07457957290851401 -0.006835945217913003 0.023201952192543843 0.01887145593806732 -0.08857149964672324 0.027159373345409087 0.04554464897115551 -0.11688577464873598 0.025092366087089826 0.05064318747320798 -0.006835945217913003 0.023201952192543843 0.01887145593806732 -0.030925652020555028 0.03872428673441955 -0.006941391350015421 -0.05055889256183245 0.037833000182876546 -0.030640944595949727 -0.14976800765897585 0.025691376424734392 -0.003917484450838175 -0.15558369922827775 0.024071691257823973 0.031768019273098 -0.1085042266222401 0.03377161219064082 0.08491148031082425 -0.14040628752556672 0.02678047791190515 0.05827700164557724 -0.07277663191381895 0.04326597134433395 -0.04516506289528538 -0.052545808690623495 -0.022705313601587944 0.04389494505143625 0.043124122233448255 -0.029088742459049383 0.03770863977130105 -0.044973124406746605 -0.023888385390645826 0.017022650734203774 -0.07765202792063125 -0.027897740800030726 0.014805582623166141 0.043124122233448255 -0.029088742459049383 0.03770863977130105 -0.05153631915838923 -0.02760977910810621 0.041066180585618076 -0.08271899154302655 -0.029471107626487074 0.046660689103595776 0.043124122233448255 -0.029088742459049383 0.03770863977130105 -0.02566284982643585 -0.019148413638600773 0.08091798177458603 -0.04267725796414093 -0.019210238355400026 0.09341675674174775 0.043124122233448255 -0.029088742459049383 0.03770863977130105 -0.038611432195361985 -0.02513132130618414 0.06438183280438925 -0.06692570719737473 -0.0271983285645034 0.06948037130644172 0.043124122233448255 -0.029088742459049383 0.03770863977130105 0.01903441543080623 -0.013566407917173676 0.011895792483218315 -0.000598825110471192 -0.01445769446871668 -0.011803760762715991 -0.09980794020761458 -0.026599318226858834 0.014919699382395561 -0.1056236317769165 -0.028219003393769253 0.050605203106331736 -0.058544159170878844 -0.018519082460952407 0.10374866414405799 -0.09044622007420547 -0.025510216739688077 0.07711418547881098 -0.02281656446245768 -0.009024723307259274 -0.02632787906205164 -0.0699823406499255 -0.013789957658764826 -0.004288901907339603 0.025687590274146244 -0.020173386516226265 -0.010475207187474796 -0.062409656366048616 -0.014973029447822707 -0.03116119622457208 -0.09508855987993325 -0.01898238485720761 -0.03337826433560971 0.025687590274146244 -0.020173386516226265 -0.010475207187474796 -0.06897285111769123 -0.01869442316528309 -0.007117666373157779 -0.10015552350232856 -0.020555751683663956 -0.0015231578551800737 0.025687590274146244 -0.020173386516226265 -0.010475207187474796 -0.043099381785737856 -0.010233057695777655 0.032734134815810174 -0.06011378992344294 -0.010294882412576908 0.0452329097829719 0.025687590274146244 -0.020173386516226265 -0.010475207187474796 -0.056047964154663996 -0.01621596536336102 0.016197985845613397 -0.08436223915667673 -0.01828297262168028 0.021296524347665866 0.025687590274146244 -0.020173386516226265 -0.010475207187474796 0.001597883471504219 -0.004651051974350558 -0.03628805447555754 -0.018035357069773203 -0.005542338525893562 -0.059987607721491844 -0.1172444721669166 -0.017683962284035716 -0.03326414757638029 -0.1230601637362185 -0.019303647450946135 0.002421356147555881 -0.07598069113018086 -0.009603726518129288 0.05556481718528214 -0.10788275203350749 -0.01659486079686496 0.028930338520035126 -0.04025309642175969 -0.0001093673644361557 -0.07451172602082749 -0.06823994601884202 -0.011666615853501292 0.0004947207260081437 0.02742998490522973 -0.01805004471096273 -0.00569158455412705 -0.06066726173496513 -0.012849687642559173 -0.02637757359122433 -0.09334616524884977 -0.01685904305194407 -0.028594641702261964 0.02742998490522973 -0.01805004471096273 -0.00569158455412705 -0.06723045648660775 -0.016571081360019557 -0.0023340437398100327 -0.09841312887124506 -0.018432409878400422 0.003260464778167673 0.02742998490522973 -0.01805004471096273 -0.00569158455412705 -0.04135698715465437 -0.00810971589051412 0.037517757449157925 -0.058371395292359456 -0.008171540607313375 0.05001653241631965 0.02742998490522973 -0.01805004471096273 -0.00569158455412705 -0.05430556952358051 -0.014092623558097487 0.020981608478961144 -0.08261984452559325 -0.016159630816416748 0.026080146981013613 0.02742998490522973 -0.01805004471096273 -0.00569158455412705 0.0033402781025877043 -0.0025277101690870246 -0.03150443184220979 -0.016292962438689718 -0.0034189967206300284 -0.05520398508814409 -0.11550207753583311 -0.015560620478772182 -0.028480524943032545 -0.12131776910513503 -0.0171803056456826 0.007204978780903628 -0.07423829649909737 -0.007480384712865754 0.06034843981862989 -0.106140357402424 -0.014471518991601423 0.033713961153382876 -0.038510701790676206 0.002013974440827378 -0.06972810338747974 -0.077859275577732 -0.016332844200525026 -0.021450991965736032 0.017810655346339743 -0.022716273057986465 -0.027637297245871224 -0.07028659129385512 -0.01751591598958291 -0.0483232862829685 -0.10296549480773975 -0.02152527139896781 -0.05054035439400614 0.017810655346339743 -0.022716273057986465 -0.027637297245871224 -0.07684978604549773 -0.02123730970704329 -0.02427975643155421 -0.10803245843013506 -0.023098638225424156 -0.0186852479135765 0.017810655346339743 -0.022716273057986465 -0.027637297245871224 -0.050976316713544356 -0.012775944237537855 0.015572044757413746 -0.06799072485124943 -0.012837768954337109 0.02807081972457547 0.017810655346339743 -0.022716273057986465 -0.027637297245871224 -0.0639248990824705 -0.01875885190512122 -0.0009641042127830311 -0.09223917408448323 -0.020825859163440482 0.004134434289269438 0.017810655346339743 -0.022716273057986465 -0.027637297245871224 -0.0062790514563022815 -0.007193938516110759 -0.05345014453395397 -0.025912291997579703 -0.008085225067653763 -0.07714969777988827 -0.12512140709472308 -0.020226848825795916 -0.050426237634776716 -0.130937098664025 -0.021846533992706335 -0.014740733910840548 -0.08385762605798736 -0.012146613059889488 0.03840272712688571 -0.11575968696131399 -0.01913774733862516 0.011768248461638698 -0.04813003134956619 -0.002652253906196356 -0.09167381607922392 -0.07313955593719401 -0.017037584328411744 -0.010834172418608864 0.022530374986877738 -0.023421013185873182 -0.01702047769874406 -0.06556687165331712 -0.018220656117469626 -0.03770646673584134 -0.09824577516720176 -0.022230011526854526 -0.03992353484687897 0.022530374986877738 -0.023421013185873182 -0.01702047769874406 -0.07213006640495974 -0.02194204983493001 -0.01366293688442704 -0.10331273878959707 -0.023803378353310874 -0.008068428366449335 0.022530374986877738 -0.023421013185873182 -0.01702047769874406 -0.04625659707300636 -0.013480684365424572 0.026188864304540913 -0.06327100521071144 -0.013542509082223826 0.038687639271702635 0.022530374986877738 -0.023421013185873182 -0.01702047769874406 -0.0592051794419325 -0.01946359203300794 0.009652715334344137 -0.08751945444394524 -0.0215305992913272 0.014751253836396605 0.022530374986877738 -0.023421013185873182 -0.01702047769874406 -0.0015593318157642866 -0.007898678643997476 -0.0428333249868268 -0.02119257235704171 -0.00878996519554048 -0.0665328782327611 -0.1204016874541851 -0.020931588953682634 -0.039809418087649553 -0.126217379023487 -0.022551274120593053 -0.00412391436371338 -0.07913790641744936 -0.012851353187776205 0.04901954667401288 -0.11103996732077599 -0.019842487466511877 0.022385068008765864 -0.0434103117090282 -0.0033569940340830735 -0.08105699653209675 0.041402954616738055 0.0009934236757877355 0.036708178241891966 0.13707288554080982 -0.005390005181673704 0.03052187296175677 0.048975638900614946 -0.0001896481132701458 0.009835883924659491 0.016296735386730307 -0.004199003522655046 0.007618815813621858 0.13707288554080982 -0.005390005181673704 0.03052187296175677 0.04241244414897232 -0.00391104183073053 0.03387941377607379 0.011229771764335005 -0.005772370349111395 0.03947392229405149 0.13707288554080982 -0.005390005181673704 0.03052187296175677 0.0682859134809257 0.004550323638774907 0.07373121496504174 0.05127150534322062 0.0044884989219756526 0.08622998993220346 0.13707288554080982 -0.005390005181673704 0.03052187296175677 0.055337331111999566 -0.0014325840288084584 0.05719506599484497 0.02702305610998683 -0.003499591287127721 0.062293604496897435 0.13707288554080982 -0.005390005181673704 0.03052187296175677 0.11298317873816778 0.010132329360202003 0.004709025673674032 0.09334993819689036 0.009241042808658999 -0.018990527572260274 -0.0058591769002530325 -0.0029005809494831547 0.007732932572851278 -0.011674868469554948 -0.004520266116393574 0.04341843629678745 0.035404604136482706 0.005179654816423273 0.0965618973345137 0.0035025432331560746 -0.0018114794623123962 0.06992741866926669 0.07113219884490388 0.014674013970116405 -0.03351464587159592 -0.002140607039836482 0.00044132676047124606 -0.007584517961426653 0.09352932388423527 -0.005942102096990192 -0.013770823241561848 0.005432077244040406 -0.0007417450285866353 -0.03445681227865913 -0.02724682626984423 -0.004751100437971534 -0.03667388038969676 0.09352932388423527 -0.005942102096990192 -0.013770823241561848 -0.001131117507602213 -0.004463138746047019 -0.01041328242724483 -0.032313789892239535 -0.006324467264427884 -0.0048187739092671236 0.09352932388423527 -0.005942102096990192 -0.013770823241561848 0.024742351824351166 0.003998226723458418 0.029438518761723126 0.007727943686646085 0.003936402006659163 0.04193729372888485 0.09352932388423527 -0.005942102096990192 -0.013770823241561848 0.01179376945542503 -0.001984680944124948 0.012902369791526348 -0.016520505546587707 -0.00405168820244421 0.018000908293578817 0.09352932388423527 -0.005942102096990192 -0.013770823241561848 0.06943961708159324 0.009580232444885513 -0.039583670529644586 0.04980637654031582 0.00868894589334251 -0.06328322377557889 -0.04940273855682757 -0.003452677864799644 -0.03655976363046734 -0.05521843012612949 -0.005072363031710062 -0.0008742599065311692 -0.008138957520091833 0.004627557901106785 0.05226920113119509 -0.040041018423418465 -0.0023635763776288857 0.025634722465948077 0.027588637188329334 0.014121917054799916 -0.07780734207491455 -0.005152447858225396 0.0017662295427741082 -0.008514219613107173 0.09051748306584635 -0.004617199314687331 -0.014700524893242367 0.0024202364256514924 0.000583157753716227 -0.03538651393033965 -0.030258667088233146 -0.0034261976556686728 -0.03760358204137728 0.09051748306584635 -0.004617199314687331 -0.014700524893242367 -0.004142958325991127 -0.003138235963744157 -0.01134298407892535 -0.03532563071062845 -0.004999564482125023 -0.005748475560947644 0.09051748306584635 -0.004617199314687331 -0.014700524893242367 0.021730511005962252 0.00532312950576128 0.028508817110042606 0.004716102868257171 0.005261304788962025 0.04100759207720433 0.09051748306584635 -0.004617199314687331 -0.014700524893242367 0.008781928637036116 -0.0006597781618220856 0.011972668139845828 -0.019532346364976624 -0.0027267854201413486 0.017071206641898297 0.09051748306584635 -0.004617199314687331 -0.014700524893242367 0.06642777626320433 0.010905135227188376 -0.04051337218132511 0.046794535721926905 0.010013848675645372 -0.06421292542725941 -0.052414579375216486 -0.002127775082496782 -0.03748946528214786 -0.0582302709445184 -0.003747460249407201 -0.0018039615582116884 -0.011150798338480747 0.005952460683409646 0.05133949947951457 -0.04305285924180738 -0.0010386735953260234 0.024705020814267557 0.024576796369940417 0.015446819837102778 -0.07873704372659507 -0.05897080800452368 -0.017877068490406177 0.060158637263417594 0.03669912291954807 -0.024260497347867616 0.0539723319832824 -0.05139812372064679 -0.01906014027946406 0.03328634294618512 -0.08407702723453142 -0.02306949568884896 0.031069274835147487 0.03669912291954807 -0.024260497347867616 0.0539723319832824 -0.057961318472289414 -0.022781533996924442 0.05732987279759942 -0.08914399085692673 -0.024642862515305307 0.06292438131557712 0.03669912291954807 -0.024260497347867616 0.0539723319832824 -0.032087849140336036 -0.014320168527419005 0.09718167398656738 -0.049102257278041114 -0.01438199324421826 0.1096804489537291 0.03669912291954807 -0.024260497347867616 0.0539723319832824 -0.04503643150926217 -0.02030307619500237 0.0806455250163706 -0.0733507065112749 -0.022370083453321633 0.08574406351842306 0.03669912291954807 -0.024260497347867616 0.0539723319832824 0.012609416116906046 -0.00873816280599191 0.02815948469519966 -0.007023824424371376 -0.009629449357534913 0.004459931449265354 -0.10623293952151477 -0.021771073115677067 0.031183391594376907 -0.11204863109081668 -0.023390758282587486 0.06686889531831308 -0.06496915848477904 -0.013690837349770639 0.12001235635603934 -0.09687121938810567 -0.02068197162850631 0.09337787769079232 -0.029241563776357865 -0.004196478196077507 -0.010064186850070295 -0.05212319614176642 -0.017612369566336453 0.06350262119231453 0.04354673478230533 -0.02399579842379789 0.05731631591217934 -0.04455051185788953 -0.018795441355394335 0.03663032687508206 -0.07722941537177416 -0.022804796764779235 0.03441325876404443 0.04354673478230533 -0.02399579842379789 0.05731631591217934 -0.051113706609532156 -0.022516835072854718 0.06067385672649636 -0.08229637899416947 -0.024378163591235583 0.06626836524447406 0.04354673478230533 -0.02399579842379789 0.05731631591217934 -0.025240237277578775 -0.014055469603349281 0.1005256579154643 -0.042254645415283856 -0.014117294320148535 0.11302443288262604 0.04354673478230533 -0.02399579842379789 0.05731631591217934 -0.03818881964650491 -0.020038377270932647 0.08398950894526754 -0.06650309464851764 -0.02210538452925191 0.08908804744732 0.04354673478230533 -0.02399579842379789 0.05731631591217934 0.019457027979663304 -0.008473463881922185 0.0315034686240966 -0.0001762125616141183 -0.009364750433465189 0.007803915378162295 -0.09938532765875752 -0.021506374191607343 0.03452737552327385 -0.10520101922805943 -0.02312605935851776 0.07021287924721002 -0.05812154662202177 -0.013426138425700914 0.12335634028493628 -0.09002360752534841 -0.020417272704436586 0.09672186161968926 -0.022393951913600607 -0.0039317792720077824 -0.006720202921173354 -0.05217911561476958 -0.005011587169640171 0.06753609078594193 0.04349081530930217 -0.01139501602710161 0.061349785505806734 -0.04460643133089269 -0.006194658958698053 0.040663796468709455 -0.07728533484477733 -0.010204014368082952 0.03844672835767182 0.04349081530930217 -0.01139501602710161 0.061349785505806734 -0.051169626082535315 -0.009916052676158436 0.06470732632012376 -0.08235229846717262 -0.011777381194539301 0.07030183483810146 0.04349081530930217 -0.01139501602710161 0.061349785505806734 -0.025296156750581934 -0.0014546872066529995 0.10455912750909171 -0.042310564888287015 -0.0015165119234522547 0.11705790247625343 0.04349081530930217 -0.01139501602710161 0.061349785505806734 -0.03824473911950807 -0.007437594874236365 0.08802297853889493 -0.06655901412152081 -0.009504602132555627 0.0931215170409474 0.04349081530930217 -0.01139501602710161 0.061349785505806734 0.019401108506660145 0.004127318514774096 0.035536938217723996 -0.00023213203461727727 0.0032360319632310924 0.01183738497178969 -0.09944124713176067 -0.008905591794911061 0.03856084511690124 -0.10525693870106259 -0.01052527696182148 0.07424634884083742 -0.05817746609502493 -0.0008253560290046331 0.1273898098785637 -0.09007952699835156 -0.007816490307740303 0.10075533121331666 -0.022449871386603766 0.008669003124688499 -0.0026867333275459593 -0.05351740381822752 -0.012003356450887773 0.06734481997694668 0.04215252710584423 -0.01838678530834921 0.06115851469681148 -0.04594471953435063 -0.013186428239945654 0.0404725256597142 -0.07862362304823527 -0.017195783649330554 0.03825545754867657 0.04215252710584423 -0.01838678530834921 0.06115851469681148 -0.05250791428599325 -0.01690782195740604 0.0645160555111285 -0.08369058667063056 -0.018769150475786905 0.0701105640291062 0.04215252710584423 -0.01838678530834921 0.06115851469681148 -0.02663444495403987 -0.008446456487900602 0.10436785670009646 -0.04364885309174495 -0.008508281204699857 0.11686663166725818 0.04215252710584423 -0.01838678530834921 0.06115851469681148 -0.03958302732296601 -0.014429364155483966 0.08783170772989968 -0.06789730232497874 -0.01649637141380323 0.09293024623195215 0.04215252710584423 -0.01838678530834921 0.06115851469681148 0.018062820303202207 -0.0028644507664735055 0.03534566740872874 -0.0015704202380752152 -0.0037557373180165093 0.011646114162794437 -0.1007795353352186 -0.01589736107615866 0.03836957430790599 -0.10659522690452053 -0.01751704624306908 0.07405507803184216 -0.05951575429848287 -0.007817125310252235 0.1271985390695684 -0.0914178152018095 -0.014808259588987904 0.1005640604043214 -0.023788159590061704 0.0016772338434408972 -0.0028780041365412123 -0.06114722301514377 -0.010404531374191324 0.06354248064907833 0.03452270790892798 -0.016787960231652764 0.057356175368943135 -0.05357453873126688 -0.011587603163249204 0.03667018633184586 -0.08625344224515152 -0.015596958572634104 0.034453118220808224 0.03452270790892798 -0.016787960231652764 0.057356175368943135 -0.0601377334829095 -0.015308996880709589 0.06071371618326016 -0.09132040586754682 -0.017170325399090455 0.06630822470123786 0.03452270790892798 -0.016787960231652764 0.057356175368943135 -0.034264264150956125 -0.006847631411204152 0.1005655173722281 -0.0512786722886612 -0.006909456128003407 0.11306429233938983 0.03452270790892798 -0.016787960231652764 0.057356175368943135 -0.04721284651988226 -0.012830539078787517 0.08402936840203133 -0.075527121521895 -0.014897546337106781 0.0891279069040838 0.03452270790892798 -0.016787960231652764 0.057356175368943135 0.010433001106285957 -0.001265625689777056 0.0315433280808604 -0.009200239434991465 -0.00215691224132006 0.007843774834926091 -0.10840935453213485 -0.014298535999462214 0.034567234980037644 -0.11422504610143677 -0.015918221166372634 0.07025273870397382 -0.06714557349539912 -0.006218300233555785 0.12339619974170007 -0.09904763439872574 -0.013209434512291455 0.09676172107645306 -0.031417978786977954 0.0032760589201373466 -0.006680343464409558 -0.059915660038752996 -0.002717150016705948 0.0628945129653855 0.035754270885318754 -0.009100578874167386 0.0567082076852503 -0.052342975754876106 -0.0039002218057638295 0.03602221864815302 -0.08502187926876074 -0.00790957721514873 0.033805150537115386 0.035754270885318754 -0.009100578874167386 0.0567082076852503 -0.05890617050651873 -0.007621615523224213 0.06006574849956732 -0.09008884289115604 -0.009482944041605079 0.06566025701754502 0.035754270885318754 -0.009100578874167386 0.0567082076852503 -0.033032701174565346 0.0008397499462812238 0.09991754968853528 -0.05004710931227043 0.0007779252294819686 0.112416324655697 0.035754270885318754 -0.009100578874167386 0.0567082076852503 -0.045981283543491486 -0.005143157721302142 0.0833814007183385 -0.07429555854550422 -0.007210164979621405 0.08847993922039096 0.035754270885318754 -0.009100578874167386 0.0567082076852503 0.011664564082676729 0.0064217556677083195 0.03089536039716756 -0.007968676458600693 0.005530469116165316 0.007195807151233254 -0.10717779155574408 -0.006611154641976838 0.033919267296344806 -0.11299348312504601 -0.008230839808887256 0.06960477102028098 -0.06591401051900835 0.0014690811239295902 0.12274823205800724 -0.09781607142233498 -0.00552205315480608 0.09611375339276022 -0.030186415810587182 0.010963440277622721 -0.0073283111481023955 -0.07895697821676474 -0.014916183598148898 0.00263778225396929 0.016712952707307008 -0.021299612455610337 -0.003548523026165904 -0.07138429393288785 -0.01609925538720678 -0.024234512063263186 -0.10406319744677249 -0.02010861079659168 -0.02645158017430082 0.016712952707307008 -0.021299612455610337 -0.003548523026165904 -0.07794748868453047 -0.019820649104667163 -0.00019098221184888622 -0.10913016106916779 -0.021681977623048028 0.005403526306128819 0.016712952707307008 -0.021299612455610337 -0.003548523026165904 -0.05207401935257709 -0.011359283635161727 0.03966081897711907 -0.06908842749028217 -0.01142110835196098 0.05215959394428079 0.016712952707307008 -0.021299612455610337 -0.003548523026165904 -0.06502260172150323 -0.017342191302745093 0.02312467000692229 -0.09333687672351597 -0.019409198561064354 0.028223208508974758 0.016712952707307008 -0.021299612455610337 -0.003548523026165904 -0.007376754095335017 -0.00577727791373463 -0.029361370314248646 -0.02700999463661244 -0.006668564465277634 -0.05306092356018295 -0.12621910973375583 -0.018810188223419788 -0.0263374634150714 -0.13203480130305775 -0.020429873390330207 0.009348040308864774 -0.08495532869702009 -0.01072995245751336 0.06249150134659103 -0.11685738960034672 -0.01772108673624903 0.03585702268134402 -0.04922773398859893 -0.0012355933038202278 -0.0675850418595186 -0.07954381109541281 -0.015725080982387497 -0.0010388433765154226 0.01612611982865894 -0.022108509839848935 -0.0072251486566506165 -0.07197112681153592 -0.01690815277144538 -0.0279111376937479 -0.10465003032542056 -0.020917508180830276 -0.03012820580478553 0.01612611982865894 -0.022108509839848935 -0.0072251486566506165 -0.07853432156317854 -0.02062954648890576 -0.003867607842333599 -0.10971699394781587 -0.022490875007286627 0.0017269006756441068 0.01612611982865894 -0.022108509839848935 -0.0072251486566506165 -0.05266085223122516 -0.012168181019400325 0.03598419334663436 -0.06967526036893024 -0.012230005736199579 0.04848296831379608 0.01612611982865894 -0.022108509839848935 -0.0072251486566506165 -0.0656094346001513 -0.01815108868698369 0.019448044376437577 -0.09392370960216403 -0.020218095945302952 0.024546582878490045 0.01612611982865894 -0.022108509839848935 -0.0072251486566506165 -0.007963586973983083 -0.006586175297973229 -0.033037995944733355 -0.027596827515260505 -0.007477461849516233 -0.05673754919066766 -0.1268059426124039 -0.019619085607658387 -0.03001408904555611 -0.1326216341817058 -0.021238770774568805 0.005671414678380062 -0.08554216157566816 -0.011538849841751958 0.05881487571610632 -0.11744422247899479 -0.01852998412048763 0.03218039705085931 -0.049814566867246994 -0.0020444906880588264 -0.07126166749000332 -0.07897546878622191 0.005011004805805567 -0.029174330632922244 0.016694462137849836 -0.001372424051655872 -0.03536063591305744 -0.07140278450234502 0.003827933016747685 -0.05604662495015472 -0.10408168801622966 -0.00018142239263721407 -0.05826369306119235 0.016694462137849836 -0.001372424051655872 -0.03536063591305744 -0.07796597925398764 0.00010653929928730165 -0.03200309509874042 -0.10914865163862497 -0.0017547892190935641 -0.026408586580762713 0.016694462137849836 -0.001372424051655872 -0.03536063591305744 -0.052092509922034264 0.008567904768792739 0.007848706090227534 -0.06910691805973934 0.008506080051993483 0.020347481057389257 0.016694462137849836 -0.001372424051655872 -0.03536063591305744 -0.0650410922909604 0.002584997101209373 -0.008687442879969243 -0.09335536729297314 0.0005179898428901101 -0.0035889043779167747 0.016694462137849836 -0.001372424051655872 -0.03536063591305744 -0.007395244664792189 0.014149910490219835 -0.061173483201140175 -0.02702848520606961 0.013258623938676831 -0.08487303644707449 -0.12623760030321302 0.0011170001805346766 -0.058149576301962935 -0.1320532918725149 -0.0005026849863757421 -0.02246407257802676 -0.08497381926647726 0.009197235946441104 0.0306793884596995 -0.1168758801698039 0.002206101667705435 0.004044909794452486 -0.0492462245580561 0.018691595100134236 -0.09939715474641013 -0.07914814791058121 -0.00646241860085711 -0.030298385704262375 0.01652178301349054 -0.012845847458318549 -0.03648469098439757 -0.07157546362670432 -0.007645490389914991 -0.05717068002149485 -0.10425436714058896 -0.01165484579929989 -0.05938774813253248 0.01652178301349054 -0.012845847458318549 -0.03648469098439757 -0.07813865837834694 -0.011366884107375375 -0.03312715017008055 -0.10932133076298425 -0.013228212625756242 -0.027532641652102844 0.01652178301349054 -0.012845847458318549 -0.03648469098439757 -0.05226518904639356 -0.002905518637869938 0.006724651018887404 -0.06927959718409864 -0.002967343354669193 0.019223425986049127 0.01652178301349054 -0.012845847458318549 -0.03648469098439757 -0.0652137714153197 -0.008888426305453303 -0.009811497951309374 -0.09352804641733244 -0.010955433563772567 -0.004712959449256905 0.01652178301349054 -0.012845847458318549 -0.03648469098439757 -0.0075679237891514844 0.0026764870835571577 -0.06229753827248031 -0.027201164330428906 0.001785200532014154 -0.08599709151841461 -0.1264102794275723 -0.010356423226128 -0.05927363137330306 -0.13222597099687422 -0.011976108393038419 -0.02358812764936689 -0.08514649839083656 -0.0022761874602215716 0.02955533338835937 -0.11704855929416319 -0.009267321738957241 0.0029208547231123552 -0.049418903682415395 0.00721817169347156 -0.10052120981775026 -0.003701410412306736 0.007413545094204806 0.037371915408647906 0.09196852051176502 0.0010301162367433673 0.03118561012851271 0.0038712738715701526 0.0062304733051469245 0.010499621091415431 -0.028807629642314484 0.002221117895762025 0.008282552980377798 0.09196852051176502 0.0010301162367433673 0.03118561012851271 -0.002691920880072467 0.002509079587686541 0.03454315094282973 -0.03387459326470979 0.0006477510693056751 0.04013765946080743 0.09196852051176502 0.0010301162367433673 0.03118561012851271 0.02318154845188091 0.010970445057191977 0.07439495213179768 0.006167140314175831 0.010908620340392722 0.0868937270989594 0.09196852051176502 0.0010301162367433673 0.03118561012851271 0.010232966082954776 0.004987537389608612 0.05785880316160091 -0.018081308919057962 0.0029205301312893494 0.06295734166365338 0.09196852051176502 0.0010301162367433673 0.03118561012851271 0.06787881370912299 0.016552450778619075 0.005372762840429972 0.04824557316784557 0.01566116422707607 -0.018326790405504334 -0.05096354192929782 0.003519540468933916 0.008396669739607218 -0.05677923349859974 0.0018998553020234971 0.044082173463543387 -0.009699760892562088 0.011599776234840344 0.09722563450126964 -0.04160182179588871 0.004608641956104675 0.07059115583602263 0.02602783381585908 0.021094135388533476 -0.03285090870483998 -0.011409621497277886 0.013140749689006019 0.03421662213161788 0.08426030942679387 0.00675732083154458 0.028030316851482683 -0.003836937213400997 0.011957677899948138 0.007344327814385404 -0.036515840727285635 0.007948322490563238 0.005127259703347771 0.08426030942679387 0.00675732083154458 0.028030316851482683 -0.010400131965043616 0.008236284182487754 0.031387857665799705 -0.04158280434968094 0.006374955664106888 0.036982366183777406 0.08426030942679387 0.00675732083154458 0.028030316851482683 0.015473337366909761 0.01669764965199319 0.07123965885476766 -0.0015410707707953185 0.016635824935193937 0.08373843382192939 0.08426030942679387 0.00675732083154458 0.028030316851482683 0.002524754997983627 0.010714741984409824 0.05470350988457088 -0.025789520004029114 0.008647734726090563 0.05980204838662335 0.08426030942679387 0.00675732083154458 0.028030316851482683 0.06017060262415184 0.022279655373420287 0.0022174695633999444 0.040537362082874416 0.021388368821877283 -0.02148208368253436 -0.058671753014268975 0.009246745063735129 0.005241376462577191 -0.06448744458357089 0.00762705989682471 0.04092688018651336 -0.017407971977533236 0.017326980829641556 0.09407034122423963 -0.04931003288085987 0.010335846550905888 0.06743586255899262 0.018319622730887927 0.02682133998333469 -0.03600620198187001 -0.0032665577499952875 0.013076584589225566 0.03330551251908215 0.09240337317407646 0.006693155731764128 0.027119207238946952 0.004306126533881601 0.011893512800167686 0.006433218201849673 -0.028372776980003036 0.007884157390782786 0.00421615009081204 0.09240337317407646 0.006693155731764128 0.027119207238946952 -0.0022570682177610185 0.008172119082707301 0.03047674805326397 -0.033439740602398335 0.0063107905643264356 0.036071256571241675 0.09240337317407646 0.006693155731764128 0.027119207238946952 0.02361640111419236 0.016633484552212738 0.07032854924223192 0.006601992976487279 0.016571659835413484 0.08282732420939365 0.09240337317407646 0.006693155731764128 0.027119207238946952 0.010667818745266225 0.010650576884629372 0.05379240027203515 -0.017646456256746514 0.00858356962631011 0.05889093877408762 0.09240337317407646 0.006693155731764128 0.027119207238946952 0.06831366637143443 0.022215490273639834 0.0013063599508642137 0.04868042583015702 0.02132420372209683 -0.022393193295070092 -0.05052868926698637 0.009182579963954676 0.00433026685004146 -0.05634438083628829 0.0075628947970442575 0.040015770573977635 -0.009264908230250639 0.017262815729861103 0.09315923161170389 -0.041166969133577265 0.010271681451125435 0.06652475294645688 0.026462686478170527 0.02675717488355424 -0.03691731159440574 0.004234064120755508 0.015452926414083216 0.027689636707216726 0.09990399504482726 0.009069497556621777 0.02150333142708153 0.011806748404632396 0.014269854625025336 0.0008173423899842519 -0.02087215510925224 0.010260499215640435 -0.0013997257210533812 0.09990399504482726 0.009069497556621777 0.02150333142708153 0.005243553652989777 0.010548460907564951 0.02486087224139855 -0.025939118731647542 0.008687132389184084 0.030455380759376257 0.09990399504482726 0.009069497556621777 0.02150333142708153 0.031117022984943156 0.01900982637707039 0.0647126734303665 0.014102614847238074 0.018948001660271132 0.07721144839752822 0.09990399504482726 0.009069497556621777 0.02150333142708153 0.01816844061601702 0.013026918709487023 0.04817652446016973 -0.010145834385995717 0.010959911451167759 0.053275062962222196 0.09990399504482726 0.009069497556621777 0.02150333142708153 0.07581428824218524 0.024591832098497482 -0.004309515861001208 0.05618104770090781 0.023700545546954478 -0.028009069106935514 -0.04302806739623558 0.011558921788812326 -0.0012856089618239613 -0.0488437589655375 0.009939236621901907 0.03439989476211221 -0.0017642863594998434 0.019639157554718754 0.08754335579983846 -0.033666347262826475 0.012648023275983085 0.060908877134591456 0.03396330834892132 0.029133516708411886 -0.04253318740627116 0.0008154523107168891 0.00175118320099558 0.013079243004657197 0.09648538323478864 -0.004632245656465859 0.006892937724522003 0.008388136594593778 0.0005681114119376986 -0.013793051312575277 -0.02429076691929086 -0.003441243997447201 -0.016010119423612912 0.09648538323478864 -0.004632245656465859 0.006892937724522003 0.0018249418429511582 -0.003153282305522685 0.01025047853883902 -0.029357730541686163 -0.0050146108239035505 0.015844987056816726 0.09648538323478864 -0.004632245656465859 0.006892937724522003 0.027698411174904534 0.005308083163982752 0.050102279727806974 0.010684003037199456 0.005246258447183497 0.0626010546949687 0.09648538323478864 -0.004632245656465859 0.006892937724522003 0.014749828805978402 -0.000674824503600614 0.033566130757610196 -0.013564446196034337 -0.0027418317619198767 0.038664669259662665 0.09648538323478864 -0.004632245656465859 0.006892937724522003 0.07239567643214662 0.010890088885409847 -0.01891990956356074 0.052762435890869194 0.009998802333866843 -0.042619462809495044 -0.0464466792062742 -0.0021428214242753102 -0.015896002664383492 -0.05226237077557611 -0.003762506591185729 0.019789501059552683 -0.005182898169538462 0.005937414341631118 0.07293296209727894 -0.03708495907286509 -0.0010537199371045518 0.046298483432031926 0.030544696538882702 0.01543177349532425 -0.05714358110883069 0.0013794026429764959 0.00456417203557238 0.01772978810094455 0.09704933356704824 -0.0018192568218890585 0.011543482820809357 0.008952086926853384 0.0033811002465144986 -0.009142506216287923 -0.02372681658703125 -0.0006282551628704006 -0.011359574327325556 0.09704933356704824 -0.0018192568218890585 0.011543482820809357 0.002388892175210765 -0.0003402934709458849 0.014901023635126374 -0.028793780209426554 -0.0022016219893267507 0.020495532153104082 0.09704933356704824 -0.0018192568218890585 0.011543482820809357 0.028262361507164144 0.008121071998559552 0.054752824824094326 0.011247953369459062 0.008059247281760298 0.06725159979125606 0.09704933356704824 -0.0018192568218890585 0.011543482820809357 0.015313779138238007 0.0021381643309761863 0.038216675853897555 -0.01300049586377473 7.115707265692352e-05 0.043315214355950024 0.09704933356704824 -0.0018192568218890585 0.011543482820809357 0.07295962676440622 0.013703077719986648 -0.014269364467273383 0.0533263862231288 0.012811791168443644 -0.03796891771320769 -0.045882728874014594 0.00067016741030149 -0.011245457568096136 -0.05169842044331651 -0.0009495177566089287 0.024440046155840035 -0.004618947837278856 0.008750403176207918 0.0775835071935663 -0.03652100874060549 0.0017592688974722485 0.050949028528319285 0.03110864687114231 0.01824476232990105 -0.052493036012543334 -0.08674064182861177 -0.018680519151696825 0.019213718225149487 0.00892928909545998 -0.025063948009158264 0.013027412945014293 -0.07916795754473488 -0.019863590940754707 -0.007658576092082987 -0.11184686105861952 -0.023872946350139604 -0.00987564420312062 0.00892928909545998 -0.025063948009158264 0.013027412945014293 -0.0857311522963775 -0.02358498465821509 0.01638495375933131 -0.11691382468101483 -0.025446313176595955 0.021979462277309018 0.00892928909545998 -0.025063948009158264 0.013027412945014293 -0.05985768296442412 -0.015123619188709653 0.056236754948299265 -0.0768720911021292 -0.015185443905508907 0.06873552991546099 0.00892928909545998 -0.025063948009158264 0.013027412945014293 -0.07280626533335026 -0.02110652685629302 0.03970060597810249 -0.101120540335363 -0.02317353411461228 0.04479914448015496 0.00892928909545998 -0.025063948009158264 0.013027412945014293 -0.015160417707182045 -0.009541613467282557 -0.012785434343068447 -0.034793658248459466 -0.010432900018825561 -0.03648498758900275 -0.13400277334560284 -0.022574523776967715 -0.0097615274438912 -0.13981846491490477 -0.024194208943878134 0.02592397628004497 -0.09273899230886712 -0.014494288011061287 0.07906743731777123 -0.12464105321219375 -0.021485422289796958 0.05243295865252422 -0.057011397600445955 -0.004999928857368155 -0.0510091058883384 -0.07392438494269676 -0.0174080491510521 0.01448254506240175 0.021745545981374986 -0.02379147800851354 0.008296239782266556 -0.06635170065881987 -0.018591120940109982 -0.012389749254830724 -0.09903060417270451 -0.02260047634949488 -0.014606817365868358 0.021745545981374986 -0.02379147800851354 0.008296239782266556 -0.07291489541046249 -0.022312514657570365 0.011653780596583573 -0.10409756779509982 -0.02417384317595123 0.01724828911456128 0.021745545981374986 -0.02379147800851354 0.008296239782266556 -0.04704142607850911 -0.013851149188064928 0.05150558178555153 -0.06405583421621419 -0.013912973904864182 0.06400435675271325 0.021745545981374986 -0.02379147800851354 0.008296239782266556 -0.05999000844743525 -0.019834056855648294 0.03496943281535475 -0.08830428344944799 -0.021901064113967555 0.04006797131740722 0.021745545981374986 -0.02379147800851354 0.008296239782266556 -0.0023441608212670384 -0.008269143466637832 -0.017516607505816184 -0.02197740136254446 -0.009160430018180836 -0.04121616075175049 -0.12118651645968785 -0.02130205377632299 -0.014492700606638938 -0.12700220802898976 -0.02292173894323341 0.021192803117297234 -0.07992273542295211 -0.013221818010416561 0.0743362641550235 -0.11182479632627874 -0.020212952289152233 0.04770178548977648 -0.04419514071453095 -0.0037274588567234295 -0.05574027905108614 -0.04107479963002121 -0.016271743325230292 0.046429608289006344 0.05459513129405054 -0.02265517218269173 0.04024330300887115 -0.03350211534614432 -0.017454815114288175 0.01955731397177387 -0.06618101886002896 -0.021464170523673075 0.017340245860736236 0.05459513129405054 -0.02265517218269173 0.04024330300887115 -0.040065310097786945 -0.021176208831748557 0.04360084382318817 -0.07124798248242425 -0.023037537350129422 0.04919535234116587 0.05459513129405054 -0.02265517218269173 0.04024330300887115 -0.014191840765833564 -0.012714843362243121 0.08345264501215613 -0.031206248903538646 -0.012776668079042375 0.09595141997931785 0.05459513129405054 -0.02265517218269173 0.04024330300887115 -0.0271404231347597 -0.018697751029826487 0.06691649604195934 -0.05545469813677244 -0.020764758288145748 0.07201503454401181 0.05459513129405054 -0.02265517218269173 0.04024330300887115 0.030505424491408514 -0.007132837640816025 0.01443045572078841 0.010872183950131092 -0.008024124192359029 -0.009269097525145896 -0.0883369311470123 -0.020165747950501182 0.017454362619965656 -0.09415262271631422 -0.0217854331174116 0.05313986634390183 -0.04707315011027656 -0.012085512184594754 0.10628332738162809 -0.07897521101360319 -0.019076646463330425 0.07964884871638107 -0.011345555401855396 -0.002591153030901622 -0.023793215824481545 -0.0373032090283119 -0.011804040449500145 0.051022229593172645 0.05836672189575985 -0.018187469306961586 0.04483592431303745 -0.029730524744435008 -0.012987112238558026 0.02414993527594017 -0.062409428258319646 -0.016996467647942926 0.021932867164902538 0.05836672189575985 -0.018187469306961586 0.04483592431303745 -0.03629371949607763 -0.01670850595601841 0.04819346512735447 -0.06747639188071494 -0.018569834474399277 0.05378797364533217 0.05836672189575985 -0.018187469306961586 0.04483592431303745 -0.010420250164124251 -0.008247140486512974 0.08804526631632242 -0.027434658301829333 -0.00830896520331223 0.10054404128348415 0.05836672189575985 -0.018187469306961586 0.04483592431303745 -0.023368832533050388 -0.014230048154096338 0.07150911734612564 -0.051683107535063125 -0.016297055412415603 0.07660765584817811 0.05836672189575985 -0.018187469306961586 0.04483592431303745 0.03427701509311783 -0.002665134765085878 0.01902307702495471 0.014643774551840405 -0.0035564213166288817 -0.004676476220979595 -0.08456534054530299 -0.015698045074771037 0.022046983924131958 -0.09038103211460491 -0.017317730241681456 0.057732487648068126 -0.04330155950856725 -0.007617809308864607 0.1108759486857944 -0.07520362041189388 -0.014608943587600277 0.08424147002054738 -0.007573964800146084 0.0018765498448285248 -0.019200594520315244 -0.02285390967377793 -0.007951601901483836 0.003910653603989962 0.07281602125029382 -0.014335030758945275 -0.002275651676145232 -0.015281225389901043 -0.009134673690541717 -0.022961640713242512 -0.047960128903785676 -0.013144029099926617 -0.025178708824280145 0.07281602125029382 -0.014335030758945275 -0.002275651676145232 -0.021844420141543662 -0.012856067408002101 0.001081889138171786 -0.053027092526180986 -0.014717395926382968 0.006676397656149491 0.07281602125029382 -0.014335030758945275 -0.002275651676145232 0.004029049190409716 -0.004394701938496665 0.04093369032713974 -0.012985358947295364 -0.00445652665529592 0.053432465294301464 0.07281602125029382 -0.014335030758945275 -0.002275651676145232 -0.008919533178516419 -0.01037760960608003 0.024397541356942963 -0.037233808180529154 -0.012444616864399294 0.029496079858995432 0.07281602125029382 -0.014335030758945275 -0.002275651676145232 0.0487263144476518 0.0011873037829304312 -0.02808849896422797 0.029093073906374372 0.00029601723138742743 -0.05178805221016228 -0.07011604119076902 -0.011845606526754726 -0.025064592065050725 -0.07593173276007094 -0.013465291693665145 0.010620911658885446 -0.028852260154033284 -0.003765370760848298 0.0637643726966117 -0.06075432105735991 -0.010756505039583968 0.03712989403136469 0.006875334554387883 0.005728988392844834 -0.06631217050949792 -0.006596553934264279 0.014941169804193018 -0.00520114018568556 0.08907337698980747 0.00855774094673158 -0.011387445465820753 0.0009761303496126101 0.013758098015135138 -0.03207343450291803 -0.03170277316427203 0.009748742605750238 -0.034290502613955665 0.08907337698980747 0.00855774094673158 -0.011387445465820753 -0.005587064402030009 0.010036704297674753 -0.008029904651503736 -0.036769736786667326 0.008175375779293888 -0.0024353961335260303 0.08907337698980747 0.00855774094673158 -0.011387445465820753 0.02028640492992337 0.01849806976718019 0.03182189653746422 0.0032719967922182885 0.018436245050380936 0.044320671504625944 0.08907337698980747 0.00855774094673158 -0.011387445465820753 0.007337822560997234 0.012515162099596824 0.01528574756726744 -0.020976452441015505 0.010448154841277563 0.02038428606931991 0.08907337698980747 0.00855774094673158 -0.011387445465820753 0.06498367018716544 0.024080075488607286 -0.03720029275390349 0.04535042964588802 0.023188788937064282 -0.0608998459998378 -0.05385868545125537 0.011047165178922128 -0.034176385854726245 -0.05967437702055728 0.00942748001201171 0.0015091178692099244 -0.012594904414519631 0.01912740094482856 0.054652578906936186 -0.04449696531784626 0.012136266666092887 0.02801810024168917 0.023132690293901536 0.028621760098521687 -0.07542396429917345 -0.007101959443872637 0.019116826533985533 0.0026863923206780073 0.08856797148019911 0.012733397676524094 -0.003499912959457187 0.00047072484000425154 0.01793375474492765 -0.024185901996554467 -0.032208178673880386 0.013924399335542752 -0.0264029701075921 0.08856797148019911 0.012733397676524094 -0.003499912959457187 -0.006092469911638369 0.014212361027467268 -0.00014237214514016897 -0.03727514229627569 0.012351032509086403 0.005452136372837537 0.08856797148019911 0.012733397676524094 -0.003499912959457187 0.01978099942031501 0.022673726496972704 0.039709429043827786 0.00276659128260993 0.02261190178017345 0.05220820401098951 0.08856797148019911 0.012733397676524094 -0.003499912959457187 0.006832417051388875 0.016690818829389338 0.02317328007363101 -0.021481857950623864 0.014623811571070077 0.028271818575683477 0.08856797148019911 0.012733397676524094 -0.003499912959457187 0.06447826467755709 0.0282557322183998 -0.029312760247539926 0.044845024136279665 0.027364445666856797 -0.05301231349347423 -0.054364090960863726 0.015222821908714643 -0.02628885334836268 -0.06017978253016564 0.013603136741804224 0.009396650375573492 -0.013100309924127989 0.02330305767462107 0.06254011141329975 -0.04500237082745462 0.0163119233958854 0.03590563274805274 0.022627284784293177 0.032797416828314205 -0.06753643179280988 -0.013104239947257365 -0.007087427565908561 0.003686989088555813 0.08256569097681439 -0.013470856423369999 -0.002499316191579381 -0.005531555663380476 -0.008270499354966442 -0.02318530522867666 -0.038210459177265114 -0.012279854764351342 -0.025402373339714294 0.08256569097681439 -0.013470856423369999 -0.002499316191579381 -0.012094750415023095 -0.011991893072426825 0.0008582246227376369 -0.04327742279966042 -0.013853221590807692 0.006452733140715343 0.08256569097681439 -0.013470856423369999 -0.002499316191579381 0.013778718916930282 -0.003530527602921389 0.04071002581170559 -0.0032356892207747977 -0.003592352319720644 0.05320880077886731 0.08256569097681439 -0.013470856423369999 -0.002499316191579381 0.0008301365480041477 -0.009513435270504755 0.024173876841508814 -0.027484138454008593 -0.011580442528824017 0.029272415343561283 0.08256569097681439 -0.013470856423369999 -0.002499316191579381 0.05847598417417236 0.002051478118505707 -0.02831216347966212 0.03884274363289494 0.001160191566962703 -0.05201171672559643 -0.060366371464248454 -0.01098143219117945 -0.025288256580484874 -0.06618206303355037 -0.012601117358089869 0.010397247143451298 -0.019102590427512715 -0.0029011964252730225 0.06354070818117756 -0.05100465133083935 -0.009892330704008693 0.03690622951593054 0.016625004280908448 0.0065931627284201095 -0.06653583502493207 0.04230115884510096 0.009219726437145227 0.03561410561875117 0.13797108976917272 0.0028362975796837886 0.029427800338615973 0.04987384312897785 0.008036654648087347 0.008741811301518694 0.017194939615093212 0.0040272992387024465 0.006524743190481061 0.13797108976917272 0.0028362975796837886 0.029427800338615973 0.043310648377335226 0.004315260930626962 0.032785341152932995 0.01212797599269791 0.0024539324122460964 0.038379849670910696 0.13797108976917272 0.0028362975796837886 0.029427800338615973 0.0691841177092886 0.012776626400132399 0.07263714234190094 0.052169709571583525 0.012714801683333145 0.08513591730906267 0.13797108976917272 0.0028362975796837886 0.029427800338615973 0.05623553534036247 0.006793718732549033 0.05610099337170417 0.027921260338349733 0.004726711474229771 0.06119953187375664 0.13797108976917272 0.0028362975796837886 0.029427800338615973 0.11388138296653069 0.018358632121559495 0.0036149530505332345 0.09424814242525326 0.01746734557001649 -0.02008460019540107 -0.004960972671890128 0.005325721811874337 0.006638859949710481 -0.010776664241192044 0.0037060366449639184 0.042324363673646656 0.03630280836484561 0.013405957577780766 0.09546782471137291 0.004400747461518979 0.006414823299045096 0.0688333460461259 0.07203040307326677 0.0229003167314739 -0.03460871849473672 0.041907005718096656 0.004629748129690543 0.0375018471875422 0.1375769366421684 -0.0017536807277708953 0.031315541907407006 0.049479690001973546 0.003446676340632662 0.010629552870309728 0.016800786488088908 -0.0005626790687522374 0.008412484759272094 0.1375769366421684 -0.0017536807277708953 0.031315541907407006 0.04291649525033092 -0.00027471737682772165 0.03467308272172403 0.011733822865693605 -0.0021360458952085874 0.04026759123970173 0.1375769366421684 -0.0017536807277708953 0.031315541907407006 0.0687899645822843 0.008186648092677716 0.07452488391069198 0.05177555644457922 0.00812482337587846 0.08702365887785371 0.1375769366421684 -0.0017536807277708953 0.031315541907407006 0.055841382213358166 0.0022037404250943495 0.0579887349404952 0.02752710721134543 0.0001367331667750868 0.06308727344254766 0.1375769366421684 -0.0017536807277708953 0.031315541907407006 0.11348722983952639 0.01376865381410481 0.005502694619324268 0.09385398929824895 0.012877367262561806 -0.018196858626610038 -0.005355125798894432 0.0007357435044196533 0.008526601518501514 -0.011170817368196348 -0.0008839416624907654 0.04421210524243768 0.03590865523784131 0.008815979270326083 0.09735556628016395 0.004006594334514675 0.0018248449915904117 0.07072108761491694 0.07163624994626247 0.018310338424019214 -0.03272097692594569 -0.0039005932527464873 0.015746390219902033 0.027050621187411476 0.09176933767132527 0.009362961362440594 0.020864315907276283 0.0036720910311304014 0.014563318430844152 0.00017832687017900126 -0.029006812482754236 0.010553963021459252 -0.002038741240858632 0.09176933767132527 0.009362961362440594 0.020864315907276283 -0.0028911037205122184 0.010841924713383768 0.0242218567215933 -0.034073776105149535 0.008980596195002903 0.029816365239571006 0.09176933767132527 0.009362961362440594 0.020864315907276283 0.02298236561144116 0.019303290182889205 0.06407365791056126 0.005967957473736079 0.01924146546608995 0.07657243287772297 0.09176933767132527 0.009362961362440594 0.020864315907276283 0.010033783242515025 0.013320382515305838 0.04753750894036447 -0.018280491759497714 0.011253375256986577 0.05263604744241694 0.09176933767132527 0.009362961362440594 0.020864315907276283 0.06767963086868324 0.0248852959043163 -0.004948531380806458 0.04804639032740582 0.023994009352773297 -0.028648084626740764 -0.05116272476973757 0.011852385594631143 -0.001924624481629212 -0.05697841633903949 0.010232700427720724 0.03376087924230696 -0.009898943733001838 0.01993262136053757 0.08690434028003322 -0.041801004636328465 0.012941487081801902 0.0602698616147862 0.025828650975419327 0.029426980514230705 -0.04317220292607642 -0.02876640148580845 -0.011098907744876978 -0.016686230866862557 0.0669035294382633 -0.017482336602338416 -0.022872536146997753 -0.021193717201931563 -0.012281979533934858 -0.04355852518409503 -0.053872620715816194 -0.01629133494331976 -0.045775593295132665 0.0669035294382633 -0.017482336602338416 -0.022872536146997753 -0.02775691195357418 -0.016003373251395243 -0.019514995332680734 -0.058939584338211504 -0.017864701769776108 -0.013920486814703028 0.0669035294382633 -0.017482336602338416 -0.022872536146997753 -0.0018834426216208025 -0.007542007781889806 0.02033680585628722 -0.01889785075932588 -0.007603832498689061 0.032835580823448944 0.0669035294382633 -0.017482336602338416 -0.022872536146997753 -0.014832024990546937 -0.013524915449473172 0.0038006568860904436 -0.04314629999255967 -0.015591922707792433 0.008899195388142912 0.0669035294382633 -0.017482336602338416 -0.022872536146997753 0.04281382263562128 -0.00196000206046271 -0.04868538343508049 0.023180582094343854 -0.002851288612005714 -0.0723849366810148 -0.07602853300279953 -0.014992912370147868 -0.045661476535903245 -0.08184422457210146 -0.016612597537058287 -0.009975972811967073 -0.0347647519660638 -0.006912676604241439 0.043167488225759186 -0.06666681286939043 -0.013903810882977109 0.016533009560512173 0.000962842742357365 0.0025816825494516926 -0.08690905498035045 -0.013004037575381933 0.012882878569748443 -0.010067565196895304 0.08266589334868982 0.006499449712287005 -0.0162538704770305 -0.005431353291505044 0.011699806780690563 -0.03693985951412778 -0.03811025680538968 0.0076904513713056625 -0.039156927625165414 0.08266589334868982 0.006499449712287005 -0.0162538704770305 -0.011994548043147663 0.007978413063230178 -0.012896329662713481 -0.04317722042778498 0.006117084544849312 -0.0073018211447357755 0.08266589334868982 0.006499449712287005 -0.0162538704770305 0.013878921288805714 0.016439778532735615 0.026955471526254472 -0.0031354868488993656 0.01637795381593636 0.039454246493416195 0.08266589334868982 0.006499449712287005 -0.0162538704770305 0.0009303389198795798 0.010456870865152249 0.010419322556057696 -0.02738393608213316 0.008389863606832988 0.015517861058110165 0.08266589334868982 0.006499449712287005 -0.0162538704770305 0.05857618654604779 0.02202178425416271 -0.04206671776511324 0.03894294600477037 0.021130497702619707 -0.06576627101104754 -0.06026616909237302 0.008988873944477553 -0.039042810865935994 -0.06608186066167493 0.007369188777567134 -0.0033573071419998202 -0.019002388055637285 0.01706910971038398 0.04978615389572644 -0.05090444895896391 0.010077975431648312 0.023151675230479424 0.016725206652783882 0.026563468864077115 -0.0802903893103832 -0.0037733121133524655 0.008332676676341529 -0.0082381409771163 0.09189661881071928 0.00194924781888009 -0.014424446257251495 0.0037993721705244232 0.007149604887283647 -0.03511043529434878 -0.028879531343360215 0.003140249477898748 -0.03732750340538641 0.09189661881071928 0.00194924781888009 -0.014424446257251495 -0.0027638225811181965 0.0034282111698232635 -0.011066905442934477 -0.03394649496575552 0.0015668826514423978 -0.005472396924956772 0.09189661881071928 0.00194924781888009 -0.014424446257251495 0.023109646750835183 0.0118895766393287 0.028784895746033476 0.006095238613130102 0.011827751922529446 0.0412836707131952 0.09189661881071928 0.00194924781888009 -0.014424446257251495 0.010161064381909047 0.005906668971745335 0.0122487467758367 -0.018153210620103694 0.003839661713426072 0.017347285277889167 0.09189661881071928 0.00194924781888009 -0.014424446257251495 0.06780691200807726 0.017471582360755796 -0.040237293545334236 0.048173671466799836 0.016580295809212792 -0.06393684679126854 -0.051035443630343555 0.0044386720510706384 -0.03721338664615699 -0.05685113519964547 0.0028189868841602198 -0.0015278829222208166 -0.009771662593607816 0.012518907816977067 0.05161557811550544 -0.04167372349693445 0.005527773538241397 0.024981099450258427 0.025955932114813347 0.0220132669706702 -0.07846096509060418 -0.039507320039912114 -0.009404719521916217 -0.040226918881141806 0.056162610884159636 -0.015788148379377656 -0.046413224161277 -0.03193463575603522 -0.010587791310974098 -0.06709921319837428 -0.06461353926991986 -0.014597146720358998 -0.06931628130941192 0.056162610884159636 -0.015788148379377656 -0.046413224161277 -0.03849783050767785 -0.014309185028434483 -0.04305568334695998 -0.06968050289231517 -0.016170513546815347 -0.03746117482898228 0.056162610884159636 -0.015788148379377656 -0.046413224161277 -0.012624361175724467 -0.005847819558929046 -0.0032038821579920274 -0.02963876931342955 -0.005909644275728301 0.009294892809169696 0.056162610884159636 -0.015788148379377656 -0.046413224161277 -0.025572943544650603 -0.011830727226512412 -0.019740031128188805 -0.05388721854666334 -0.013897734484831673 -0.014641492626136336 0.056162610884159636 -0.015788148379377656 -0.046413224161277 0.03207290408151761 -0.0002658138375019499 -0.07222607144935975 0.01243966354024019 -0.0011571003890449537 -0.09592562469529405 -0.0867694515569032 -0.013298724147187108 -0.0692021645501825 -0.09258514312620511 -0.014918409314097526 -0.033516660826246325 -0.04550567052016746 -0.005218488381280679 0.019626800211479938 -0.0774077314234941 -0.012209622660016349 -0.007007678453767076 -0.0097780758117463 0.004275870772412453 -0.1104497429946297 -0.10322796822172692 0.033060928022887834 0.013095135092788934 -0.007558037297655168 0.026677499165426395 0.0069088298126537395 -0.09565528393785003 0.03187785623382995 -0.01377715922444354 -0.12833418745173467 0.02786850082444505 -0.015994227335481174 -0.007558037297655168 0.026677499165426395 0.0069088298126537395 -0.10221847868949265 0.02815646251636957 0.010266370626970757 -0.13340115107412998 0.026295133997988704 0.015860879144948464 -0.007558037297655168 0.026677499165426395 0.0069088298126537395 -0.07634500935753927 0.036617827985875005 0.05011817181593871 -0.09335941749524435 0.03655600326907575 0.06261694678310044 -0.007558037297655168 0.026677499165426395 0.0069088298126537395 -0.08929359172646541 0.03063492031829164 0.03358202284574194 -0.11760786672847814 0.028567913059972378 0.03868056134779441 -0.007558037297655168 0.026677499165426395 0.0069088298126537395 -0.03164774410029719 0.0421998337073021 -0.018904017475429 -0.051280984641574615 0.0413085471557591 -0.04260357072136331 -0.15049009973871802 0.029166923397616944 -0.015880110576251754 -0.15630579130801991 0.027547238230706525 0.019805393147684418 -0.10922631870198227 0.03724715916352337 0.07294885418541068 -0.14112837960530888 0.0302560248847877 0.04631437552016367 -0.07349872399356111 0.046741518317216506 -0.05712768902069895 0.03222710861903925 -0.0023236877514822667 0.023413988764499405 0.127897039543111 -0.008707116608943705 0.01722768348436421 0.03979979290291614 -0.003506759540540148 -0.0034583055527330694 0.0071208893890315 -0.007516114949925047 -0.0056753736637707025 0.127897039543111 -0.008707116608943705 0.01722768348436421 0.033236598151273514 -0.007228153258000532 0.020585224298681228 0.002053925766636197 -0.009089481776381397 0.026179732816658936 0.127897039543111 -0.008707116608943705 0.01722768348436421 0.05911006748322689 0.0012332122115049052 0.06043702548764918 0.04209565934552181 0.00117138749470565 0.0729358004548109 0.127897039543111 -0.008707116608943705 0.01722768348436421 0.04616148511430076 -0.0047496954560784605 0.043900876517452406 0.01784721011228802 -0.006816702714397723 0.048999415019504874 0.127897039543111 -0.008707116608943705 0.01722768348436421 0.10380733274046897 0.006815217932932001 -0.008585163803718529 0.08417409219919156 0.005923931381388997 -0.032284717049652835 -0.01503502289795184 -0.006217692376753157 -0.005561256904541283 -0.020850714467253756 -0.007837377543663576 0.03012424681939489 0.026228758138783895 0.0018625433891532716 0.08326770785712115 -0.005673302764542733 -0.005128590889582398 0.056633229191874135 0.06195635284720506 0.011356902542846404 -0.046808835348988484 0.041757488411637 -0.001734704104674725 0.022819422009044223 0.13742741933570873 -0.008118132962136164 0.016633116728909027 0.04933017269551389 -0.002917775893732606 -0.004052872308188252 0.01665126918162925 -0.0069271313031175055 -0.006269940419225885 0.13742741933570873 -0.008118132962136164 0.016633116728909027 0.042766977943871264 -0.00663916961119299 0.019990657543226046 0.011584305559233947 -0.008500498129573856 0.025585166061203753 0.13742741933570873 -0.008118132962136164 0.016633116728909027 0.06864044727582465 0.001822195858312447 0.059842458732194 0.05162603913811956 0.0017603711415131917 0.07234123369935572 0.13742741933570873 -0.008118132962136164 0.016633116728909027 0.05569186490689851 -0.004160711809270919 0.04330630976199722 0.02737758990488577 -0.006227719067590181 0.04840484826404969 0.13742741933570873 -0.008118132962136164 0.016633116728909027 0.11333771253306672 0.007404201579739543 -0.009179730559173711 0.0937044719917893 0.006512915028196539 -0.03287928380510802 -0.00550464310535409 -0.005628708729945615 -0.006155823659996465 -0.011320334674656006 -0.0072483938968560336 0.029529680063939707 0.03575913793138165 0.0024515270359608135 0.08267314110166596 0.003857077028055017 -0.004539607242774857 0.05603866243641895 0.07148673263980282 0.011945886189653945 -0.047403402104443666 0.042211613776360464 0.011280723708128609 0.0246164915704022 0.1378815447004322 0.00489729485066717 0.018430186290267006 0.049784298060237354 0.010097651919070728 -0.002255802746830276 0.017105394546352716 0.006088296509685828 -0.004472870857867909 0.1378815447004322 0.00489729485066717 0.018430186290267006 0.04322110330859473 0.006376258201610344 0.021787727104584022 0.012038430923957413 0.004514929683229478 0.02738223562256173 0.1378815447004322 0.00489729485066717 0.018430186290267006 0.06909457264054811 0.01483762367111578 0.06163952829355197 0.05208016450284303 0.014775798954316525 0.0741383032607137 0.1378815447004322 0.00489729485066717 0.018430186290267006 0.056145990271621975 0.008854716003532416 0.0451033793233552 0.027831715269609238 0.006787708745213152 0.05020191782540767 0.1378815447004322 0.00489729485066717 0.018430186290267006 0.11379183789779018 0.020419629392542875 -0.0073826609978157355 0.09415859735651277 0.01952834284099987 -0.03108221424375004 -0.005050517740630624 0.007386719082857719 -0.004358754098638489 -0.01086620930993254 0.0057670339159473 0.03132674962529768 0.036213263296105115 0.015466954848764147 0.08447021066302395 0.0043112023927784834 0.008475820570028478 0.05783573199777693 0.07194085800452628 0.02496131400245728 -0.04560633254308569 0.04156976530235128 0.012443950198958645 0.030346780271232724 0.137239696226423 0.0060605213414972065 0.02416047499109753 0.04914244958622817 0.011260878409900765 0.0034744859540002497 0.01646354607234353 0.007251523000515864 0.0012574178429626166 0.137239696226423 0.0060605213414972065 0.02416047499109753 0.04257925483458554 0.00753948469244038 0.027518015805414547 0.011396582449948227 0.005678156174059514 0.033112524323392255 0.137239696226423 0.0060605213414972065 0.02416047499109753 0.06845272416653893 0.01600085016194582 0.0673698169943825 0.05143831602883384 0.01593902544514656 0.07986859196154422 0.137239696226423 0.0060605213414972065 0.02416047499109753 0.05550414179761279 0.010017942494362452 0.05083366802418572 0.02718986679560005 0.007950935236043188 0.05593220652623819 0.137239696226423 0.0060605213414972065 0.02416047499109753 0.113149989423781 0.021582855883372914 -0.00165237229698521 0.09351674888250358 0.02069156933182991 -0.025351925542919516 -0.00569236621463981 0.008549945573687755 0.0013715346021920365 -0.011508057783941726 0.006930260406777336 0.03705703832612821 0.03557141482209593 0.016630181339594183 0.09020049936385446 0.003669353918769297 0.009639047060858514 0.06356602069860745 0.0712990095305171 0.026124540493287315 -0.03987604384225517 -0.08851763296976092 -0.006376694028685422 -0.024985664675384652 0.007152297954310827 -0.01276012288614686 -0.031171969955519845 -0.08094494868588403 -0.007559765817743303 -0.05185795899261712 -0.11362385219976867 -0.011569121227128203 -0.05407502710365476 0.007152297954310827 -0.01276012288614686 -0.031171969955519845 -0.08750814343752665 -0.011281159535203686 -0.02781442914120283 -0.11869081582216398 -0.013142488053584553 -0.02221992062322512 0.007152297954310827 -0.01276012288614686 -0.031171969955519845 -0.06163467410557327 -0.00281979406569825 0.012037372047765126 -0.07864908224327835 -0.002881618782497505 0.02453614701492685 0.007152297954310827 -0.01276012288614686 -0.031171969955519845 -0.07458325647449941 -0.008802701733281616 -0.004498776922431651 -0.10289753147651215 -0.010869708991600878 0.0005997615796208174 0.007152297954310827 -0.01276012288614686 -0.031171969955519845 -0.016937408848331198 0.002762211655728846 -0.05698481724360259 -0.03657064938960862 0.001870925104185842 -0.08068437048953689 -0.135779764486752 -0.010270698653956311 -0.053960910344425336 -0.14159545605605392 -0.01189038382086673 -0.018275406620489168 -0.09451598345001627 -0.0021904628880498834 0.03486805441723709 -0.12641804435334292 -0.009181597166785554 0.008233575751990078 -0.05878838874159511 0.0073038962656432485 -0.09520848878887254 -0.06664137406425354 -0.010599490990870564 0.0036055260113027772 0.029028556859818214 -0.016982919848332 -0.002580779268832417 -0.059068689780376646 -0.011782562779928445 -0.0232667683059297 -0.09174759329426128 -0.015791918189313345 -0.02548383641696733 0.029028556859818214 -0.016982919848332 -0.002580779268832417 -0.06563188453201926 -0.015503956497388829 0.000776761545484601 -0.09681455691665658 -0.017365285015769696 0.006371270063462307 0.029028556859818214 -0.016982919848332 -0.002580779268832417 -0.039758415200065886 -0.007042591027883393 0.040628562734452554 -0.05677282333777097 -0.007104415744682647 0.05312733770161428 0.029028556859818214 -0.016982919848332 -0.002580779268832417 -0.052706997568992026 -0.013025498695466757 0.024092413764255777 -0.08102127257100476 -0.015092505953786021 0.029190952266308245 0.029028556859818214 -0.016982919848332 -0.002580779268832417 0.004938850057176189 -0.0014605853064562965 -0.028393626556915158 -0.014694390484101233 -0.0023518718579993002 -0.052093179802849464 -0.11390350558124462 -0.014493495616141454 -0.02536971965773791 -0.11971919715054655 -0.01611318078305187 0.010315784066198262 -0.07263972454450889 -0.006413259850235026 0.06345924510392452 -0.10454178544783552 -0.013404394128970695 0.036824766438677506 -0.03691212983608772 0.003081099303458106 -0.06661729810218511 -0.058326131718692414 0.005204214667110711 0.05770836708467999 0.037343799205379336 -0.0011792141903507278 0.05152206180454479 -0.050753447434815524 0.004021142878052829 0.030836072767447514 -0.08343235094870016 1.1787468667930068e-05 0.02861900465640988 0.037343799205379336 -0.0011792141903507278 0.05152206180454479 -0.05731664218645815 0.0002997491605924458 0.054879602618861816 -0.08849931457109547 -0.00156157935778842 0.060474111136839516 0.037343799205379336 -0.0011792141903507278 0.05152206180454479 -0.031443172854504764 0.008761114630097882 0.09473140380782977 -0.04845758099220985 0.008699289913298627 0.1072301787749915 0.037343799205379336 -0.0011792141903507278 0.05152206180454479 -0.044391755223430904 0.002778206962514517 0.07819525483763298 -0.07270603022544364 0.0007111997041952542 0.08329379333968545 0.037343799205379336 -0.0011792141903507278 0.05152206180454479 0.01325409240273731 0.014343120351524978 0.025709214516462055 -0.006379148138540111 0.013451833799981975 0.002009661270527749 -0.1055882632356835 0.0013102100418398207 0.0287331214156393 -0.11140395480498541 -0.000309475125070598 0.06441862513957547 -0.06432448219894776 0.009390445807746249 0.11756208617730174 -0.0962265431022744 0.002399311529010579 0.09092760751205473 -0.0285968874905266 0.01888480496143938 -0.0125144570288079 -0.04933001502715648 0.0008894916179486928 0.06418833385422658 0.04633991589691527 -0.0054939372395127455 0.05800202857409138 -0.04175733074327959 -0.00029358017110918844 0.037316039536994104 -0.07443623425716422 -0.004302935580494088 0.03509897142595647 0.04633991589691527 -0.0054939372395127455 0.05800202857409138 -0.04832052549492222 -0.004014973888569572 0.061359569388408405 -0.07950319787955953 -0.005876302406950438 0.0669540779063861 0.04633991589691527 -0.0054939372395127455 0.05800202857409138 -0.022447056162968836 0.004446391580935865 0.10121137057737636 -0.03946146430067392 0.00438456686413661 0.11371014554453808 0.04633991589691527 -0.0054939372395127455 0.05800202857409138 -0.03539563853189497 -0.0015365160866475012 0.08467522160717958 -0.0637099135339077 -0.003603523344966764 0.08977376010923205 0.04633991589691527 -0.0054939372395127455 0.05800202857409138 0.022250209094273242 0.01002839730236296 0.032189181286008645 0.00261696855299582 0.009137110750819957 0.008489628040074339 -0.09659214654414758 -0.0030045130073221974 0.03521308818518589 -0.10240783811344949 -0.004624198174232616 0.07089859190912207 -0.05532836550741183 0.005075722758584231 0.12404205294684832 -0.08723042641073847 -0.001915411520151439 0.09740757428160131 -0.01960077079899067 0.014570081912277363 -0.00603449025926131 -0.006126143294853872 -0.005437061651369892 0.0033162443141447296 0.08954378762921787 -0.01182049050883133 -0.0028700609659904645 0.0014465409890230168 -0.0066201334404277735 -0.023556050003087744 -0.03123236252486162 -0.010629488849812673 -0.025773118114125377 0.08954378762921787 -0.01182049050883133 -0.0028700609659904645 -0.005116653762619603 -0.010341527157888157 0.0004874798483265534 -0.03629932614725692 -0.012202855676269022 0.0060819883663042595 0.08954378762921787 -0.01182049050883133 -0.0028700609659904645 0.020756815569333776 -0.0018801616883827202 0.040339281037294505 0.003742407431628695 -0.0019419864051819754 0.05283805600445623 0.08954378762921787 -0.01182049050883133 -0.0028700609659904645 0.0078082332004076405 -0.007863069355966087 0.02380313206709773 -0.020506041801605097 -0.009930076614285348 0.0289016705691502 0.08954378762921787 -0.01182049050883133 -0.0028700609659904645 0.06545408082657585 0.0037018440330443755 -0.028682908254073203 0.04582084028529843 0.0028105574815013717 -0.05238246150000751 -0.05338827481184496 -0.009331066276640782 -0.025659001354895957 -0.059203966381146875 -0.0109507514435512 0.010026502369040215 -0.012124493775109223 -0.0012508305107343538 0.06316996340676648 -0.04402655467843585 -0.008241964789470023 0.03653548474151946 0.023603100933311943 0.008243528642958778 -0.06690657979934315 -0.029513935515889232 0.006410486995406923 -0.03055229594236378 0.06615599540818251 2.7058137945483972e-05 -0.03673860122249897 -0.021941251232012342 0.005227415206349041 -0.05742459025959626 -0.05462015474589698 0.0012180597969641419 -0.059641658370633885 0.06615599540818251 2.7058137945483972e-05 -0.03673860122249897 -0.028504445983654963 0.0015060214888886576 -0.03338106040818196 -0.05968711836829228 -0.0003553070294922082 -0.02778655189020425 0.06615599540818251 2.7058137945483972e-05 -0.03673860122249897 -0.002630976651701585 0.009967386958394095 0.0064707407807859975 -0.019645384789406667 0.00990556224159484 0.01896951574794772 0.06615599540818251 2.7058137945483972e-05 -0.03673860122249897 -0.01557955902062772 0.003984479290810729 -0.01006540818941078 -0.04389383402264046 0.001917472032491466 -0.004966869687358311 0.06615599540818251 2.7058137945483972e-05 -0.03673860122249897 0.04206628860554049 0.015549392679821191 -0.06255144851058171 0.02243304806426307 0.014658106128278187 -0.08625100175651602 -0.07677606703288031 0.0025164823701360325 -0.05952754161140447 -0.08259175860218224 0.0008967972032256138 -0.023842037887468297 -0.03551228599614458 0.01059671813604246 0.029301423150257962 -0.0674143468994712 0.003605583857306791 0.002666944485010949 0.00021530871227658233 0.020091077289735592 -0.10077512005585167 -0.019744563261415726 0.015014801058956632 -0.01946254698281577 0.07592536766265602 0.008631372201495194 -0.025648852262950966 -0.012171878977538837 0.013831729269898752 -0.046334841300048245 -0.04485078249142348 0.009822373860513852 -0.04855190941108588 0.07592536766265602 0.008631372201495194 -0.025648852262950966 -0.018735073729181456 0.010110335552438367 -0.022291311448633947 -0.04991774611381877 0.008249007034057503 -0.01669680293065624 0.07592536766265602 0.008631372201495194 -0.025648852262950966 0.007138395602771921 0.018571701021943804 0.017560489740334008 -0.009876012534933159 0.01850987630514455 0.03005926470749573 0.07592536766265602 0.008631372201495194 -0.025648852262950966 -0.005810186766154213 0.012588793354360438 0.0010243407701372303 -0.034124461768166955 0.010521786096041177 0.006122879272189699 0.07592536766265602 0.008631372201495194 -0.025648852262950966 0.051835660860013996 0.0241537067433709 -0.051461699551033704 0.032202420318736574 0.023262420191827896 -0.075161252796968 -0.06700669477840682 0.011120796433685742 -0.04843779265185646 -0.07282238634770873 0.009501111266775324 -0.012752288927920286 -0.025742913741671078 0.01920103219959217 0.04039117210980597 -0.05764497464499771 0.012209897920856501 0.01375669344455896 0.009984680966750089 0.028695391353285304 -0.08968537109630366 -0.012863765969423988 0.014914711473169804 -0.021534999814740594 0.08280616495464777 0.008531282615708366 -0.02772130509487579 -0.0052910816855470996 0.013731639684111924 -0.04840729413197307 -0.03796998519943173 0.009722284274727024 -0.0506243622430107 0.08280616495464777 0.008531282615708366 -0.02772130509487579 -0.011854276437189719 0.01001024596665154 -0.02436376428055877 -0.04303694882182704 0.008148917448270673 -0.018769255762581063 0.08280616495464777 0.008531282615708366 -0.02772130509487579 0.014019192894763659 0.018471611436156977 0.015488036908409185 -0.002995215242941421 0.01840978671935772 0.027986811875570908 0.08280616495464777 0.008531282615708366 -0.02772130509487579 0.0010706105258375242 0.012488703768573611 -0.0010481120617875928 -0.027243664476175215 0.010421696510254347 0.004050426440264876 0.08280616495464777 0.008531282615708366 -0.02772130509487579 0.05871645815200574 0.02405361715758407 -0.05353415238295853 0.03908321761072832 0.023162330606041066 -0.07723370562889284 -0.06012589748641507 0.011020706847898914 -0.05051024548378128 -0.065941589055717 0.009401021680988495 -0.01482474175984511 -0.01886211644967934 0.019100942613805343 0.03831871927788115 -0.050764177353005965 0.012109808335069673 0.011684240612634136 0.016865478258741826 0.028595301767498475 -0.09175782392822848 -0.008298772369436762 0.014149183563879753 -0.015642132823052154 0.08737115855463498 0.007765754706418314 -0.021828438103187346 -0.0007260880855598732 0.012966111774821872 -0.042514427140284625 -0.03340499159944451 0.008956756365436972 -0.044731495251322265 0.08737115855463498 0.007765754706418314 -0.021828438103187346 -0.0072892828372024925 0.009244718057361488 -0.01847089728887033 -0.03847195522183981 0.007383389538980622 -0.012876388770892625 0.08737115855463498 0.007765754706418314 -0.021828438103187346 0.018584186494750885 0.017706083526866926 0.021380903900097625 0.0015697783570458052 0.01764425881006767 0.033879678867259344 0.08737115855463498 0.007765754706418314 -0.021828438103187346 0.005635604125824751 0.01172317585928356 0.004844754929900847 -0.022678670876187988 0.009656168600964295 0.009943293431953316 0.08737115855463498 0.007765754706418314 -0.021828438103187346 0.06328145175199296 0.023288089248294022 -0.04764128539127009 0.04364821121071554 0.02239680269675102 -0.07134083863720439 -0.05556090388642785 0.010255178938608863 -0.04461737849209284 -0.061376595455729765 0.008635493771698444 -0.00893187476815667 -0.014297122849692114 0.01833541470451529 0.044211586269569586 -0.04619918375301874 0.011344280425779622 0.017577107604322576 0.021430471858729053 0.027829773858208423 -0.08586495693654005 -0.004124871335314401 0.008972405946122699 -0.011549726061059033 0.09154505958875735 0.00258897708866126 -0.017736031341194225 0.003447812948562488 0.007789334157064817 -0.03842202037829151 -0.029231090565322148 0.003779978747679918 -0.04063908848932914 0.09154505958875735 0.00258897708866126 -0.017736031341194225 -0.003115381803080132 0.0040679404396044335 -0.01437849052687721 -0.034298054187717454 0.0022066119212235677 -0.008783982008899504 0.09154505958875735 0.00258897708866126 -0.017736031341194225 0.022758087528873247 0.01252930590910987 0.025473310662090746 0.005743679391168166 0.012467481192310614 0.03797208562925247 0.09154505958875735 0.00258897708866126 -0.017736031341194225 0.00980950515994711 0.006546398241526505 0.008937161691893968 -0.018504769842065626 0.004479390983207242 0.014035700193946437 0.09154505958875735 0.00258897708866126 -0.017736031341194225 0.06745535278611532 0.018111311630536968 -0.04354887862927696 0.0478221122448379 0.017220025078993964 -0.06724843187521128 -0.05138700285230549 0.005078401320851808 -0.040524971730099724 -0.05720269442160741 0.0034587161539413897 -0.004839468006163548 -0.010123221815569752 0.013158637086758237 0.048303993031562714 -0.042025282718896384 0.006167502808022567 0.021669514366315697 0.025604372892851415 0.02265299624045137 -0.08177255017454692 0.04694514960425827 0.010442683250153663 0.02445042758282011 0.14261508052833002 0.004059254392692224 0.018264122302684913 0.05451783388813516 0.009259611461095782 -0.002421866734412366 0.02183893037425052 0.005250256051710882 -0.004638934845449999 0.14261508052833002 0.004059254392692224 0.018264122302684913 0.04795463913649253 0.005538217743635398 0.021621663117001932 0.016771966751855216 0.003676889225254532 0.02721617163497964 0.14261508052833002 0.004059254392692224 0.018264122302684913 0.07382810846844591 0.013999583213140834 0.06147346430596989 0.05681370033074083 0.01393775849634158 0.07397223927313161 0.14261508052833002 0.004059254392692224 0.018264122302684913 0.06087952609951978 0.008016675545557468 0.04493731533577311 0.03256525109750704 0.005949668287238206 0.05003585383782558 0.14261508052833002 0.004059254392692224 0.018264122302684913 0.118525373725688 0.01958158893456793 -0.0075487249853978255 0.09889213318441056 0.018690302383024927 -0.03124827823133213 -0.0003169819127328208 0.006548678624882773 -0.004524818086220579 -0.006132673482034737 0.004928993457972354 0.031160685637715593 0.04094679912400292 0.014628914390789201 0.08430414667544185 0.009044738220676286 0.007637780112053532 0.05766966801019484 0.07667439383242408 0.024123273544482335 -0.04577239653066778 0.04628721331734282 0.011734696935674796 0.030092123723931486 0.14195714424141456 0.005351268078213357 0.023905818443796294 0.05385989760121971 0.010551625146616915 0.0032198294066990117 0.02118099408733507 0.006542269737232015 0.0010027612956613786 0.14195714424141456 0.005351268078213357 0.023905818443796294 0.047296702849577085 0.006830231429156531 0.02726335925811331 0.01611403046493977 0.004968902910775665 0.03285786777609102 0.14195714424141456 0.005351268078213357 0.023905818443796294 0.07317017218153046 0.015291596898661967 0.06711516044708127 0.056155764043825385 0.015229772181862711 0.07961393541424298 0.14195714424141456 0.005351268078213357 0.023905818443796294 0.06022158981260433 0.009308689231078603 0.05057901147688448 0.03190731481059159 0.007241681972759339 0.05567754997893695 0.14195714424141456 0.005351268078213357 0.023905818443796294 0.11786743743877254 0.02087360262008906 -0.001907028844286448 0.09823419689749513 0.019982316068546058 -0.025606582090220754 -0.0009749181996482684 0.007840692310403906 0.0011168780548907985 -0.006790609768950184 0.006221007143493487 0.03680238177882697 0.04028886283708747 0.015920928076310334 0.08994584281655323 0.008386801933760839 0.008929793797574664 0.06331136415130621 0.07601645754550863 0.025415287230003466 -0.040130700389556406 0.04738829628788646 0.008959022927815473 0.0355030948593309 0.1430582272119582 0.002575594070354034 0.0293167895791957 0.05496098057176335 0.007775951138757591 0.008630800542098423 0.022282077057878713 0.0037665957293726918 0.00641373243106079 0.1430582272119582 0.002575594070354034 0.0293167895791957 0.04839778582012073 0.0040545574212972075 0.032674330393512724 0.01721511343548341 0.0021932289029163417 0.038268838911490424 0.1430582272119582 0.002575594070354034 0.0293167895791957 0.07427125515207411 0.012515922890802644 0.07252613158248067 0.057256847014369026 0.012454098174003388 0.0850249065496424 0.1430582272119582 0.002575594070354034 0.0293167895791957 0.06132267278314797 0.006533015223219279 0.0559899826122839 0.033008397781135235 0.004466007964900016 0.06108852111433637 0.1430582272119582 0.002575594070354034 0.0293167895791957 0.11896852040931619 0.01809792861222974 0.003503942291112963 0.09933527986803876 0.017206642060686735 -0.020195610954821343 0.00012616477089537337 0.005065018302544582 0.0065278491902902094 -0.005689526798406543 0.0034453331356341637 0.042213352914226385 0.04138994580763111 0.01314525406845101 0.09535681395195264 0.00948788490430448 0.006154119789715341 0.06872233528670563 0.07711754051605227 0.022639613222144143 -0.03471972925415699 0.04714629545132857 0.004789227738547558 0.037312248169816195 0.1428162263754003 -0.0015942011189138804 0.031125942889681 0.05471897973520546 0.0036061559494896768 0.01043995385258372 0.02204007622132082 -0.0004031994598952225 0.008222885741546088 0.1428162263754003 -0.0015942011189138804 0.031125942889681 0.048155784983562835 -0.0001152377679707068 0.03448348370399802 0.01697311259892552 -0.0019765662863515726 0.04007799222197572 0.1428162263754003 -0.0015942011189138804 0.031125942889681 0.07402925431551621 0.00834612770153473 0.07433528489296598 0.057014846177811135 0.008284302984735474 0.0868340598601277 0.1428162263754003 -0.0015942011189138804 0.031125942889681 0.06108067194659008 0.0023632200339513644 0.057799135922769196 0.03276639694457734 0.00029621277563210164 0.06289767442482166 0.1428162263754003 -0.0015942011189138804 0.031125942889681 0.11872651957275829 0.013928133422961826 0.005313095601598261 0.09909327903148088 0.013036846871418822 -0.018386457644336045 -0.0001158360656625182 0.0008952231132766681 0.008337002500775507 -0.005931527634964434 -0.0007244620536337506 0.04402250622471168 0.04114794497107322 0.008975458879183097 0.09716596726243794 0.009245884067746589 0.0019843246004474266 0.07053148859719093 0.07687553967949438 0.01846981803287623 -0.032910575943671694 0.045606885337969215 0.0007249703168939875 0.036146000464632906 0.14127681626204097 -0.005658458540567451 0.02995969518449771 0.053179569621846105 -0.00045810147216389374 0.009273706147400432 0.020500666107961467 -0.004467456881548793 0.007056638036362799 0.14127681626204097 -0.005658458540567451 0.02995969518449771 0.04661637487020348 -0.004179495189624277 0.03331723599881473 0.015433702485566164 -0.006040823708005143 0.03891174451679243 0.14127681626204097 -0.005658458540567451 0.02995969518449771 0.07248984420215686 0.004281870279881159 0.07316903718778268 0.05547543606445178 0.004220045563081904 0.0856678121549444 0.14127681626204097 -0.005658458540567451 0.02995969518449771 0.059541261833230726 -0.0017010373877022064 0.05663288821758591 0.03122698683121799 -0.003768044646021469 0.061731426719638376 0.14127681626204097 -0.005658458540567451 0.02995969518449771 0.11718710945939895 0.009863876001308254 0.004146847896414972 0.09755386891812151 0.00897258944976525 -0.019552705349519334 -0.0016552461790218728 -0.0031690343083769024 0.0071707547955922185 -0.007470937748323789 -0.004788719475287321 0.04285625851952839 0.039608534857713866 0.004911201457529526 0.09599971955725464 0.007706473954387234 -0.0020799328212061444 0.06936524089200763 0.07533612956613503 0.014405560611222657 -0.03407682364885498 0.04818771134055371 0.007513866422912674 0.02153813805604847 0.14385764226462547 0.001130437565451235 0.015351832775913276 0.0557603956244306 0.006330794633854792 -0.005334156261184005 0.023081492110545963 0.002321439224469893 -0.007551224372221638 0.14385764226462547 0.001130437565451235 0.015351832775913276 0.04919720087278798 0.0026094009163944087 0.018709373590230293 0.01801452848815066 0.0007480723980135429 0.024303882108208 0.14385764226462547 0.001130437565451235 0.015351832775913276 0.07507067020474135 0.011070766385899846 0.05856117477919825 0.05805626206703628 0.01100894166910059 0.07105994974635997 0.14385764226462547 0.001130437565451235 0.015351832775913276 0.06212208783581522 0.00508785871831648 0.04202502580900147 0.033807812833802485 0.003020851459997217 0.04712356431105394 0.14385764226462547 0.001130437565451235 0.015351832775913276 0.11976793546198344 0.016652772107326942 -0.010461014512169464 0.10013469492070601 0.01576148555578394 -0.03416056775810377 0.0009255798235626236 0.0036198617976417836 -0.007437107612992218 -0.004890111745739292 0.002000176630731365 0.028248396110943954 0.04218936086029836 0.011700097563548211 0.08139185714867021 0.01028729995697173 0.004708963284812542 0.0547573784834232 0.07791695556871953 0.021194456717241343 -0.04868468605743942 0.04858091467605841 0.0038629349982943345 0.020783162120537758 0.14425084560013016 -0.002520493859167104 0.014596856840402564 0.056153598959935304 0.002679863209236453 -0.006089132196694717 0.023474695446050665 -0.0013294922001484463 -0.00830620030773235 0.14425084560013016 -0.002520493859167104 0.014596856840402564 0.04959040420829268 -0.0010415305082239305 0.01795439765471958 0.018407731823655363 -0.0029028590266047963 0.02354890617269729 0.14425084560013016 -0.002520493859167104 0.014596856840402564 0.07546387354024606 0.007419834961281506 0.05780619884368754 0.05844946540254098 0.007358010244482251 0.07030497381084926 0.14425084560013016 -0.002520493859167104 0.014596856840402564 0.06251529117131993 0.0014369272936981406 0.041270049873490755 0.03420101616930719 -0.0006300799646211221 0.046368588375543224 0.14425084560013016 -0.002520493859167104 0.014596856840402564 0.12016113879748813 0.013001840682708602 -0.011215990447680176 0.10052789825621072 0.012110554131165598 -0.03491554369361448 0.0013187831590673257 -3.106962697655563e-05 -0.00819208354850293 -0.00449690841023459 -0.0016507547938869743 0.027493420175433242 0.042582564195803065 0.008049166138929873 0.0806368812131595 0.010680503292476433 0.0010580318601942028 0.054002402547912484 0.07831015890422423 0.017543525292623006 -0.049439661992950135 0.04587376932599157 -0.0014685796130636081 0.02273096921269353 0.14154370025006333 -0.007852008470525047 0.016544663932558337 0.05344645360986846 -0.0026516514021214894 -0.004141325104538945 0.02076755009598382 -0.006661006811506389 -0.006358393215576578 0.14154370025006333 -0.007852008470525047 0.016544663932558337 0.046883258858225835 -0.006373045119581873 0.019902204746875353 0.015700586473588518 -0.00823437363796274 0.02549671326485306 0.14154370025006333 -0.007852008470525047 0.016544663932558337 0.07275672819017921 0.0020883203499235635 0.059754005935843305 0.055742320052474134 0.0020264956331243087 0.07225278090300503 0.14154370025006333 -0.007852008470525047 0.016544663932558337 0.05980814582125308 -0.003894587317659802 0.043217856965646534 0.03149387081924034 -0.0059615945759790645 0.048316395467699 0.14154370025006333 -0.007852008470525047 0.016544663932558337 0.1174539934474213 0.00767032607135066 -0.009268183355524404 0.09782075290614387 0.006779039519807656 -0.032967736601458714 -0.001388362190999519 -0.005362584238334498 -0.006244276456347158 -0.007204053760301435 -0.006982269405244917 0.029441227267589014 0.03987541884573622 0.0027176515275719303 0.08258468830531528 0.007973357942409588 -0.00427348275116374 0.05595020964006826 0.07560301355415738 0.012212010681265062 -0.047491854900794356 0.05300589568747033 0.006508721867425755 0.02145301374088258 0.14867582661154208 0.0001252930099643161 0.015266708460747387 0.06057857997134722 0.005325650078367873 -0.0054192805763498934 0.02789967645746258 0.001316294668982974 -0.0076363486873875265 0.14867582661154208 0.0001252930099643161 0.015266708460747387 0.054015385219704594 0.0016042563609074897 0.018624249275064404 0.022832712835067277 -0.00025707215747337604 0.02421875779304211 0.14867582661154208 0.0001252930099643161 0.015266708460747387 0.07988885455165798 0.010065621830412926 0.058476050464032356 0.0628744464139529 0.010003797113613672 0.07097482543119409 0.14867582661154208 0.0001252930099643161 0.015266708460747387 0.06694027218273184 0.004082714162829561 0.041939901493835585 0.0386259971807191 0.002015706904510298 0.047038439995888054 0.14867582661154208 0.0001252930099643161 0.015266708460747387 0.12458611980890005 0.015647627551840022 -0.010546138827335353 0.10495287926762263 0.014756341000297019 -0.03424569207326966 0.00574376417047924 0.0026147172421548646 -0.007522231928158107 -7.192739882267568e-05 0.000995032075244446 0.028163271795778065 0.04700754520721498 0.010694953008061293 0.08130673283350433 0.015105484303888347 0.003703818729325623 0.054672254168257314 0.08273513991563614 0.020189312161754423 -0.048769810372605304 0.055271564743134154 0.009857374967321855 0.024767852478448715 0.1509414956672059 0.0034739461098604162 0.018581547198313522 0.06284424902701104 0.008674303178263974 -0.0021044418387837598 0.030165345513126406 0.004664947768879074 -0.004321509949821393 0.1509414956672059 0.0034739461098604162 0.018581547198313522 0.05628105427536842 0.00495290946080359 0.021939088012630538 0.025098381890731103 0.003091580942422724 0.027533596530608245 0.1509414956672059 0.0034739461098604162 0.018581547198313522 0.0821545236073218 0.013414274930309026 0.06179088920159849 0.06514011546961672 0.01335245021350977 0.07428966416876022 0.1509414956672059 0.0034739461098604162 0.018581547198313522 0.06920594123839567 0.007431367262725661 0.04525474023140172 0.04089166623638293 0.005364360004406398 0.05035327873345419 0.1509414956672059 0.0034739461098604162 0.018581547198313522 0.12685178886456389 0.01899628065173612 -0.007231300089769219 0.10721854832328645 0.018104994100193117 -0.030930853335703525 0.008009433226143066 0.005963370342050965 -0.004207393190591973 0.00219374165684115 0.004343685175140546 0.0314781105333442 0.049273214262878805 0.014043606107957393 0.08462157157107046 0.017371153359552173 0.007052471829221724 0.05798709290582345 0.08500080897129997 0.023537965261650525 -0.04545497163503917 0.061166271428230695 0.00585751987807782 0.036126596483435254 0.15683620235230245 -0.0005259089793836188 0.029940291203300058 0.06873895571210759 0.0046744480890199384 0.00925430216620278 0.03606005219822295 0.0006650926796350392 0.007037234055165147 0.15683620235230245 -0.0005259089793836188 0.029940291203300058 0.06217576096046496 0.0009530543715595549 0.03329783201761708 0.030993088575827644 -0.0009082741468213109 0.03889234053559478 0.15683620235230245 -0.0005259089793836188 0.029940291203300058 0.08804923029241835 0.009414419841064992 0.07314963320658503 0.07103482215471327 0.009352595124265737 0.08564840817374675 0.15683620235230245 -0.0005259089793836188 0.029940291203300058 0.0751006479234922 0.003431512173481626 0.056613484236388255 0.04678637292147947 0.0013645049151623633 0.061712022738440724 0.15683620235230245 -0.0005259089793836188 0.029940291203300058 0.13274649554966042 0.014996425562492088 0.00412744391521732 0.113113255008383 0.014105139010949085 -0.019572109330716986 0.013904139911239607 0.0019635152528069298 0.0071513508143945664 0.008088448341937692 0.0003438300858965111 0.042836854538330735 0.055167920947975346 0.010043751018713357 0.09598031557605699 0.023265860044648715 0.0030526167399776882 0.06934583691080998 0.0908955156563965 0.01953811017240649 -0.034096227630052635 0.05609491102268552 0.008461915835659115 0.03527095887774794 0.15176484194675727 0.0020784869781976766 0.029084653597612746 0.06366759530656241 0.007278844046601234 0.008398664560515468 0.03098869179267777 0.0032694886372163345 0.006181596449477834 0.15176484194675727 0.0020784869781976766 0.029084653597612746 0.05710440055491978 0.00355745032914085 0.03244219441192977 0.025921728170282467 0.0016961218107599844 0.03803670292990747 0.15176484194675727 0.0020784869781976766 0.029084653597612746 0.08297786988687317 0.012018815798646287 0.07229399560089772 0.06596346174916809 0.011956991081847033 0.08479277056805945 0.15176484194675727 0.0020784869781976766 0.029084653597612746 0.07002928751794703 0.006035908131062921 0.05575784663070094 0.04171501251593429 0.003968900872743659 0.06085638513275341 0.15176484194675727 0.0020784869781976766 0.029084653597612746 0.12767513514411524 0.017600821520073383 0.003271806309530008 0.10804189460283782 0.01670953496853038 -0.020427746936404298 0.00883277950569443 0.004567911210388225 0.006295713208707254 0.0030170879363925138 0.0029482260434778064 0.04198121693264342 0.05009656054243017 0.012648146976294653 0.09512467797036969 0.018194499639103537 0.005657012697558984 0.06849019930512268 0.08582415525085133 0.022142506129987784 -0.03495186523573995 0.058311407532522105 0.009042523448381102 0.03391349225809901 0.15398133845659384 0.002659094590919663 0.027727186977963815 0.065884091816399 0.007859451659323221 0.0070411979408665365 0.03320518830251436 0.003850096249938321 0.004824129829828903 0.15398133845659384 0.002659094590919663 0.027727186977963815 0.05932089706475637 0.0041380579418628365 0.031084727792280834 0.028138224680119055 0.0022767294234819708 0.03667923631025854 0.15398133845659384 0.002659094590919663 0.027727186977963815 0.08519436639670976 0.012599423411368273 0.07093652898124879 0.06817995825900468 0.012537598694569017 0.0834353039484105 0.15398133845659384 0.002659094590919663 0.027727186977963815 0.07224578402778362 0.006616515743784908 0.05440038001105201 0.04393150902577088 0.004549508485465645 0.05949891851310448 0.15398133845659384 0.002659094590919663 0.027727186977963815 0.12989163165395184 0.01818142913279537 0.0019143396898810769 0.11025839111267441 0.017290142581252367 -0.02178521355605323 0.011049276015531018 0.005148518823110211 0.004938246589058323 0.005233584446229102 0.0035288336561997927 0.04062375031299449 0.052313057052266757 0.01322875458901664 0.09376721135072075 0.020410996148940125 0.00623762031028097 0.06713273268547373 0.08804065176068793 0.022723113742709772 -0.03630933185538888 0.06299993446550539 0.007593619103210995 0.034005058957316925 0.15866986538957714 0.001210190245749556 0.02781875367718173 0.07057261874938228 0.006410547314153113 0.0071327646400844505 0.037893715235497644 0.002401191904768214 0.004915696529046817 0.15866986538957714 0.001210190245749556 0.02781875367718173 0.06400942399773966 0.0026891535966927296 0.031176294491498748 0.03282675161310234 0.0008278250783118639 0.03677080300947645 0.15866986538957714 0.001210190245749556 0.02781875367718173 0.08988289332969304 0.011150519066198166 0.0710280956804667 0.07286848519198796 0.011088694349398912 0.08352687064762843 0.15866986538957714 0.001210190245749556 0.02781875367718173 0.0769343109607669 0.005167611398614801 0.054491946710269926 0.048620035958754165 0.003100604140295538 0.059590485212322394 0.15866986538957714 0.001210190245749556 0.02781875367718173 0.13458015858693512 0.016732524787625262 0.002005906389098991 0.1149469180456577 0.01584123823608226 -0.021693646856835315 0.015737802948514304 0.0036996144779401045 0.005029813288276237 0.009922111379212388 0.002079929311029686 0.04071531701221241 0.05700158398525004 0.011779850243846533 0.09385877804993867 0.02509952308192341 0.0047887159651108634 0.06722429938469165 0.0927291786936712 0.021274209397539663 -0.036217765156170964 0.0679859478249493 0.007059939065000033 0.032953454339714056 0.16365587874902104 0.0006765102075385939 0.02676714905957886 0.07555863210882618 0.005876867275942151 0.006081160022481581 0.042879728594941546 0.0018675118665572518 0.003864091911443948 0.16365587874902104 0.0006765102075385939 0.02676714905957886 0.06899543735718357 0.0021554735584817675 0.03012468987389588 0.037812764972546244 0.00029414504010090176 0.03571919839187358 0.16365587874902104 0.0006765102075385939 0.02676714905957886 0.09486890668913694 0.010616839027987204 0.06997649106286383 0.07785449855143187 0.010555014311187948 0.08247526603002556 0.16365587874902104 0.0006765102075385939 0.02676714905957886 0.0819203243202108 0.004633931360403839 0.053440342092667056 0.05360604931819807 0.002566924102084576 0.058538880594719525 0.16365587874902104 0.0006765102075385939 0.02676714905957886 0.13956617194637902 0.0161988447494143 0.0009543017714961216 0.1199329314051016 0.015307558197871296 -0.022745251474438184 0.020723816307958207 0.0031659344397291424 0.003978208670673368 0.01490812473865629 0.0015462492728187237 0.03966371239460954 0.061987597344693945 0.01124617020563557 0.0928071734323358 0.030085536441367314 0.004255035926899901 0.06617269476708879 0.0977151920531151 0.020740529359328703 -0.03726936977377383 0.06660760942586219 0.004869887798155385 0.03547029330416938 0.16227754034993394 -0.0015135410593060533 0.02928398802403418 0.07418029370973908 0.003686816009097504 0.008597998986936903 0.04150139019585444 -0.0003225394002873954 0.00638093087589927 0.16227754034993394 -0.0015135410593060533 0.02928398802403418 0.06761709895809646 -3.457770836287968e-05 0.032641528838351204 0.03643442657345914 -0.0018959062267437455 0.038236037356328904 0.16227754034993394 -0.0015135410593060533 0.02928398802403418 0.09349056829004984 0.008426787761142557 0.07249333002731916 0.07647616015234476 0.008364963044343303 0.08499210499448087 0.16227754034993394 -0.0015135410593060533 0.02928398802403418 0.0805419859211237 0.0024438800935591915 0.05595718105712238 0.052227710919110965 0.00037687283523992875 0.06105571955917485 0.16227754034993394 -0.0015135410593060533 0.02928398802403418 0.13818783354729192 0.014008793482569653 0.003471140735951443 0.1185545930060145 0.01311750693102665 -0.020228412509982863 0.019345477908871103 0.0009758831728844952 0.0064950476351286895 0.013529786339569187 -0.0006438019940259235 0.04218055135906486 0.06060925894560684 0.009056118938790924 0.09532401239679111 0.02870719804228021 0.0020649846600552537 0.0686895337315441 0.096336853654028 0.018550478092484057 -0.03475253080931851 0.056051299837178124 0.010421529998213348 0.03022016424181493 0.15172123076124988 0.004038101140751909 0.024033858961679734 0.06362398412105501 0.009238458209155467 0.0033478699245824556 0.030945080607170376 0.005229102799770567 0.0011308018135448225 0.15172123076124988 0.004038101140751909 0.024033858961679734 0.05706078936941239 0.0055170644916950826 0.027391399775996753 0.025878116984775074 0.003655735973314217 0.03298590829397446 0.15172123076124988 0.004038101140751909 0.024033858961679734 0.08293425870136577 0.013978429961200519 0.06724320096496471 0.06591985056366069 0.013916605244401265 0.07974197593212642 0.15172123076124988 0.004038101140751909 0.024033858961679734 0.06998567633243964 0.007995522293617153 0.05070705199476793 0.0416714013304269 0.005928515035297891 0.0558055904968204 0.15172123076124988 0.004038101140751909 0.024033858961679734 0.12763152395860786 0.019560435682627615 -0.001778988326403004 0.10799828341733042 0.01866914913108461 -0.02547854157233731 0.008789168320187037 0.0065275253729424575 0.0012449185727742423 0.0029734767508851206 0.004907840206032039 0.03693042229671041 0.050052949356922775 0.014607761138848886 0.09007388333443667 0.018150888453596144 0.007616626860113216 0.06343940466918965 0.08578054406534394 0.024102120292542016 -0.04000265987167296 0.06240410302418385 0.008826590378796668 0.029672351199366016 0.1580740339482556 0.0024431615213352294 0.02348604591923082 0.06997678730806074 0.007643518589738787 0.002800056882133542 0.037297883794176104 0.0036341631803538874 0.0005829887710959089 0.1580740339482556 0.0024431615213352294 0.02348604591923082 0.06341359255641812 0.003922124872278403 0.02684358673354784 0.0322309201717808 0.0020607963538975373 0.032438095251525544 0.1580740339482556 0.0024431615213352294 0.02348604591923082 0.0892870618883715 0.01238349034178384 0.0666953879225158 0.07227265375066642 0.012321665624984584 0.07919416288967751 0.1580740339482556 0.0024431615213352294 0.02348604591923082 0.07633847951944536 0.006400582674200474 0.05015923895231902 0.048024204517432625 0.0043335754158812115 0.055257777454371486 0.1580740339482556 0.0024431615213352294 0.02348604591923082 0.1339843271456136 0.017965496063210934 -0.0023268013688519176 0.11435108660433616 0.01707420951166793 -0.026026354614786223 0.015141971507192764 0.004932585753525778 0.0006971055303253287 0.009326279937890848 0.0033129005866153593 0.0363826092542615 0.0564057525439285 0.013012821519432206 0.08952607029198775 0.02450369164060187 0.006021687240696537 0.06289159162674074 0.09213334725234967 0.02250718067312534 -0.04055047291412187 0.06211784025771694 0.00831005977254027 0.025488025494598426 0.1577877711817887 0.0019266309150788308 0.019301720214463233 0.06969052454159383 0.007126987983482388 -0.0013842688226340487 0.03701162102770919 0.0031176325740974887 -0.0036013369336716818 0.1577877711817887 0.0019266309150788308 0.019301720214463233 0.06312732978995121 0.0034055942660220044 0.02265926102878025 0.03194465740531389 0.0015442657476411386 0.028253769546757956 0.1577877711817887 0.0019266309150788308 0.019301720214463233 0.08900079912190459 0.011866959735527441 0.0625110622177482 0.07198639098419951 0.011805135018728187 0.07500983718490993 0.1577877711817887 0.0019266309150788308 0.019301720214463233 0.07605221675297845 0.005884052067944076 0.04597491324755143 0.04773794175096571 0.003817044809624813 0.0510734517496039 0.1577877711817887 0.0019266309150788308 0.019301720214463233 0.13369806437914666 0.017448965456954537 -0.006511127073619508 0.11406482383786924 0.016557678905411533 -0.030210680319553814 0.014855708740725851 0.004416055147269379 -0.003487220174442262 0.009040017171423935 0.0027963699803589606 0.03219828354949391 0.05611948977746159 0.012496290913175808 0.08534174458722017 0.024217428874134958 0.005505156634440138 0.05870726592197316 0.09184708448588275 0.02199065006686894 -0.04473479861888946 0.06755103405275463 0.007841736215924766 0.025299159239841492 0.16322096497682637 0.0014583073584633274 0.0191128539597063 0.07512371833663152 0.006658664426866885 -0.0015731350773909823 0.04244481482274688 0.0026493090174819853 -0.0037902031884286154 0.16322096497682637 0.0014583073584633274 0.0191128539597063 0.0685605235849889 0.002937270709406501 0.022470394774023315 0.03737785120035158 0.0010759421910256353 0.028064903292001023 0.16322096497682637 0.0014583073584633274 0.0191128539597063 0.09443399291694228 0.011398636178911938 0.06232219596299127 0.0774195847792372 0.011336811462112684 0.074820970930153 0.16322096497682637 0.0014583073584633274 0.0191128539597063 0.08148541054801614 0.005415728511328572 0.045786046992794496 0.053171135546003404 0.0033487212530093095 0.050884585494846965 0.16322096497682637 0.0014583073584633274 0.0191128539597063 0.13913125817418437 0.016980641900339034 -0.006699993328376442 0.11949801763290693 0.01608935534879603 -0.030399546574310748 0.020288902535763542 0.003947731590653876 -0.0036760864291991956 0.014473210966461626 0.0023280464237434573 0.032009417294736976 0.06155268357249928 0.012027967356560304 0.08515287833246324 0.02965062266917265 0.005036833077824635 0.058518399667216225 0.09728027828092045 0.021522326510253438 -0.04492366487364639 0.06803936525517082 0.008498651746293195 0.02905386489041098 0.16370929617924257 0.0021152228888317564 0.022867559610275784 0.07561204953904771 0.007315579957235314 0.0021815705731785054 0.04293314602516307 0.0033062245478504143 -3.549753785912768e-05 0.16370929617924257 0.0021152228888317564 0.022867559610275784 0.06904885478740509 0.00359418623977493 0.026225100424592803 0.03786618240276777 0.0017328577213940643 0.03181960894257051 0.16370929617924257 0.0021152228888317564 0.022867559610275784 0.09492232411935847 0.012055551709280366 0.06607690161356075 0.07790791598165339 0.011993726992481111 0.07857567658072248 0.16370929617924257 0.0021152228888317564 0.022867559610275784 0.08197374175043233 0.006072644041697001 0.04954075264336398 0.05365946674841959 0.0040056367833777385 0.05463929114541645 0.16370929617924257 0.0021152228888317564 0.022867559610275784 0.13961958937660054 0.01763755743070746 -0.0029452876778069542 0.11998634883532312 0.016746270879164457 -0.02664484092374126 0.020777233738179732 0.004604647121022305 7.861922137029215e-05 0.014961542168877816 0.0029849619541118862 0.03576412294530647 0.06204101477491547 0.012684882886928733 0.08890758398303272 0.03013895387158884 0.005693748608193064 0.06227310531778571 0.09776860948333663 0.022179242040621865 -0.04116895922307691 0.05785402755208339 0.009702495006578923 0.026229070904276133 0.15352395847615513 0.0033190661491174847 0.020042765624140937 0.06542671183596027 0.008519423217521043 -0.0006432234129563411 0.03274780832207564 0.004510067808136143 -0.002860291523993974 0.15352395847615513 0.0033190661491174847 0.020042765624140937 0.058863517084317654 0.004798029500060658 0.023400306438457957 0.027680844699680338 0.0029367009816797926 0.028994814956435664 0.15352395847615513 0.0033190661491174847 0.020042765624140937 0.08473698641627103 0.013259394969566095 0.06325210762742592 0.06772257827856595 0.013197570252766841 0.07575088259458763 0.15352395847615513 0.0033190661491174847 0.020042765624140937 0.0717884040473449 0.0072764873019827295 0.046715958657229134 0.04347412904533216 0.005209480043663467 0.0518144971592816 0.15352395847615513 0.0033190661491174847 0.020042765624140937 0.1294342516735131 0.01884140069099319 -0.005770081663941801 0.1098010111322357 0.017950114139450187 -0.029469634909876107 0.0105918960350923 0.005808490381308033 -0.0027461747647645543 0.004776204465790385 0.0041888052143976146 0.03293932895917162 0.05185567707182804 0.013888726147214462 0.08608278999689788 0.019953616168501408 0.006897591868478792 0.05944831133165086 0.0875832717802492 0.023383085300907595 -0.043993753209211756 0.053952180196899055 0.010990971554269787 0.03015063962548551 0.1496221111209708 0.004607542696808348 0.023964334345350315 0.061524864480775945 0.009807899765211906 0.003278345308253036 0.028845960966891307 0.005798544355827006 0.001061277197215403 0.1496221111209708 0.004607542696808348 0.023964334345350315 0.05496166972913332 0.006086506047751522 0.027321875159667334 0.023778997344496004 0.004225177529370656 0.03291638367764504 0.1496221111209708 0.004607542696808348 0.023964334345350315 0.0808351390610867 0.014547871517256958 0.06717367634863529 0.06382073092338163 0.014486046800457703 0.079672451315797 0.1496221111209708 0.004607542696808348 0.023964334345350315 0.06788655669216057 0.008564963849673594 0.05063752737843851 0.03957228169014783 0.00649795659135433 0.05573606588049098 0.1496221111209708 0.004607542696808348 0.023964334345350315 0.1255324043183288 0.020129877238684056 -0.0018485129427324234 0.10589916377705136 0.019238590687141052 -0.02554806618866673 0.006690048679907967 0.007096966928998897 0.001175393956444823 0.0008743571106060513 0.005477281762088478 0.03686089768038099 0.047953829716643706 0.015177202694905325 0.09000435871810725 0.016051768813317074 0.008186068416169655 0.06336988005286023 0.08368142442506488 0.024671561848598457 -0.04007218448800238 0.0705248995733679 0.0046119731696449605 0.03302451063288106 0.16619483049743966 -0.0017714556878164782 0.026838205352745864 0.07809758385724479 0.003428901380587079 0.006152216315648586 0.04541868034336015 -0.0005804540287978202 0.003935148204610953 0.16619483049743966 -0.0017714556878164782 0.026838205352745864 0.07153438910560217 -0.0002924923368733045 0.030195746167062883 0.040351716720964846 -0.0021538208552541703 0.03579025468504059 0.16619483049743966 -0.0017714556878164782 0.026838205352745864 0.09740785843755555 0.008168873132632133 0.07004754735603083 0.08039345029985047 0.008107048415832877 0.08254632232319256 0.16619483049743966 -0.0017714556878164782 0.026838205352745864 0.08445927606862941 0.0021859654650487666 0.05351139838583406 0.05614500106661667 0.00011895820672950391 0.05860993688788653 0.16619483049743966 -0.0017714556878164782 0.026838205352745864 0.1421051236947976 0.013750878854059227 0.001025358064663126 0.1224718831535202 0.012859592302516223 -0.02267419518127118 0.02326276805637681 0.0007179685443740704 0.004049264963840372 0.017447076487074893 -0.0009017166225363483 0.03973476868777655 0.06452654909311255 0.0087982043102805 0.0928782297255028 0.032624488189785916 0.0018070700315448288 0.06624375106025579 0.10025414380153372 0.01829256346397363 -0.03719831348060683 0.0706574432313732 0.006900849034306056 0.03184893031452565 0.16632737415544496 0.0005174201768446173 0.025662625034390457 0.07823012751525009 0.0057177772452481745 0.004976635997293179 0.04555122400136545 0.0017084218358632752 0.0027595678862555456 0.16632737415544496 0.0005174201768446173 0.025662625034390457 0.07166693276360747 0.001996383527787791 0.029020165848707476 0.04048426037897015 0.00013505500940692514 0.03461467436668518 0.16632737415544496 0.0005174201768446173 0.025662625034390457 0.09754040209556085 0.010457748997293228 0.06887196703767542 0.08052599395785577 0.010395924280493973 0.08137074200483715 0.16632737415544496 0.0005174201768446173 0.025662625034390457 0.08459181972663471 0.004474841329709862 0.052335818067478654 0.05627754472462197 0.0024078340713905994 0.05743435656953112 0.16632737415544496 0.0005174201768446173 0.025662625034390457 0.1422376673528029 0.016039754718720323 -0.00015022225369228093 0.1226044268115255 0.015148468167177319 -0.023849775499626587 0.02339531171438211 0.003006844409035166 0.0028736846454849654 0.017579620145080195 0.0013871592421247471 0.03855918836942114 0.06465909275111785 0.011087080174941595 0.0917026494071474 0.03275703184779122 0.004095945896205924 0.06506817074190038 0.10038668745953902 0.020581439328634727 -0.038373893798962236 0.0708841383222769 0.007543071656774756 0.02856489455019251 0.16655406924634863 0.0011596427993133176 0.022378589270057314 0.07845682260615379 0.006359999867716875 0.0016926002329600356 0.04577791909226915 0.0023506444583319755 -0.0005244678780775974 0.16655406924634863 0.0011596427993133176 0.022378589270057314 0.07189362785451117 0.002638606150256491 0.025736130084374333 0.04071095546987385 0.0007772776318756254 0.03133063860235204 0.16655406924634863 0.0011596427993133176 0.022378589270057314 0.09776709718646455 0.011099971619761928 0.06558793127334228 0.08075268904875947 0.011038146902962672 0.07808670624050401 0.16655406924634863 0.0011596427993133176 0.022378589270057314 0.08481851481753841 0.005117063952178562 0.04905178230314551 0.05650423981552567 0.0030500566938592997 0.05415032080519798 0.16655406924634863 0.0011596427993133176 0.022378589270057314 0.14246436244370664 0.016681977341189022 -0.003434258018025424 0.1228311219024292 0.01579069078964602 -0.02713381126395973 0.02362200680528581 0.003649067031503866 -0.0004103511188481776 0.017806315235983895 0.0020293818645934474 0.035275152605088 0.06488578784202155 0.011729302797410295 0.08841861364281425 0.03298372693869492 0.004738168518674625 0.06178413497756724 0.10061338255044272 0.021223661951103426 -0.04165792956329538 0.07274431171338654 0.005078120679939885 0.028473860948221835 0.1684142426374583 -0.0013053081775215537 0.022287555668086642 0.08031699599726343 0.0038950488908820035 0.0016015666309893602 0.04763809248337879 -0.00011430651850289578 -0.0006155014800482729 0.1684142426374583 -0.0013053081775215537 0.022287555668086642 0.07375380124562081 0.00017365517342161994 0.025645096482403658 0.042571128860983486 -0.0016876733449592458 0.031239605000381365 0.1684142426374583 -0.0013053081775215537 0.022287555668086642 0.09962727057757419 0.008635020642927057 0.06549689767137161 0.08261286243986911 0.008573195926127802 0.07799567263853334 0.1684142426374583 -0.0013053081775215537 0.022287555668086642 0.08667868820864805 0.002652112975343691 0.04896074870117484 0.05836441320663531 0.0005851057170244284 0.05405928720322731 0.1684142426374583 -0.0013053081775215537 0.022287555668086642 0.14432453583481625 0.014217026364354152 -0.0035252916199960994 0.12469129529353884 0.013325739812811148 -0.027224844865930405 0.02548218019639545 0.0011841160546689948 -0.0005013847208188531 0.019666488627093533 -0.00043556911224142385 0.03518411900311732 0.06674596123313119 0.009264351820575424 0.08832758004084358 0.034843900329804556 0.0022732175418397533 0.06169310137559657 0.10247355594155236 0.018758710974268556 -0.04174896316526605 0.05211685707872556 0.004267530439764103 0.03741851851679515 0.14778678800279732 -0.0021158984176973357 0.031232213236659957 0.059689541362602454 0.0030844586507062215 0.010546224199562679 0.027010637848717815 -0.0009248967586786777 0.008329156088525046 0.14778678800279732 -0.0021158984176973357 0.031232213236659957 0.05312634661095983 -0.000636935066754162 0.03458975405097698 0.021943674226322513 -0.002498263585135028 0.04018426256895468 0.14778678800279732 -0.0021158984176973357 0.031232213236659957 0.0789998159429132 0.007824430402751275 0.07444155523994493 0.06198540780520813 0.00776260568595202 0.08694033020710665 0.14778678800279732 -0.0021158984176973357 0.031232213236659957 0.06605123357398708 0.0018415227351679091 0.057905406269748154 0.03773695857197434 -0.0002254845231513536 0.06300394477180063 0.14778678800279732 -0.0021158984176973357 0.031232213236659957 0.1236970812001553 0.01340643612417837 0.005419365948577219 0.10406384065887786 0.012515149572635366 -0.018280187297357087 0.004854725561734476 0.0003735258144932129 0.008443272847754466 -0.0009609660075674403 -0.0012461593524172058 0.044128776571690634 0.046118506598470214 0.008453761580399642 0.09727223760941689 0.014216445695143583 0.0014626273016639713 0.07063775894416988 0.08184610130689138 0.017948120734092774 -0.032804305596692736 0.060534044545033465 0.003380809000104834 0.036831730973141755 0.15620397546910522 -0.0030026198573566048 0.03064542569300656 0.06810672882891035 0.0021977372110469524 0.00995943665590928 0.03542782531502572 -0.0018116181983379468 0.007742368544871647 0.15620397546910522 -0.0030026198573566048 0.03064542569300656 0.06154353407726773 -0.0015236565064134311 0.03400296650732358 0.030360861692630414 -0.003384985024794297 0.03959747502530128 0.15620397546910522 -0.0030026198573566048 0.03064542569300656 0.08741700340922111 0.006937708963092006 0.07385476769629154 0.07040259527151603 0.006875884246292751 0.08635354266345326 0.15620397546910522 -0.0030026198573566048 0.03064542569300656 0.07446842104029498 0.00095480129550864 0.057318618726094756 0.04615414603828224 -0.0011122059628106227 0.062417157228147224 0.15620397546910522 -0.0030026198573566048 0.03064542569300656 0.1321142686664632 0.012519714684519102 0.004832578404923821 0.11248102812518576 0.011628428132976099 -0.018866974841010485 0.013271913028042377 -0.0005131956251660562 0.007856485304101067 0.007456221458740461 -0.002132880792076475 0.04354198902803724 0.054535694064778116 0.007567040140740372 0.0966854500657635 0.022633633161451484 0.0005759058620047022 0.07005097140051648 0.09026328877319928 0.017061399294433503 -0.033391093140346134 0.06593346582289322 0.0017945594595851027 0.03472045506630965 0.16160339674696497 -0.004588869397876336 0.028534149786174454 0.07350615010677011 0.0006114876705272214 0.007848160749077175 0.040827246592885474 -0.003397867738857678 0.005631092638039542 0.16160339674696497 -0.004588869397876336 0.028534149786174454 0.0669429553551275 -0.003109906046933162 0.031891690600491476 0.03576028297049017 -0.004971234565314028 0.03748619911846918 0.16160339674696497 -0.004588869397876336 0.028534149786174454 0.09281642468708087 0.005351459422572274 0.07174349178945943 0.0758020165493758 0.0052896347057730195 0.08424226675662115 0.16160339674696497 -0.004588869397876336 0.028534149786174454 0.07986784231815473 -0.0006314482450110912 0.05520734281926265 0.051553567316141996 -0.0026984555033303537 0.06030588132131512 0.16160339674696497 -0.004588869397876336 0.028534149786174454 0.13751368994432295 0.01093346514399937 0.0027213024980917155 0.11788044940304553 0.010042178592456366 -0.02097825074784259 0.018671334305902135 -0.0020994451656857873 0.005745209397268962 0.012855642736600219 -0.003719130332596206 0.04143071312120514 0.059935115342637874 0.005980790600220641 0.09457417415893139 0.028033054439311242 -0.001010343678515029 0.06793969549368438 0.09566271005105903 0.015475149753913772 -0.03550236904717824 0.06990270488769915 0.001875145424525796 0.0323243458278482 0.1655726358117709 -0.004508283432935642 0.026138040547713 0.07747538917157604 0.0006920736354679147 0.005452051510615723 0.0447964856576914 -0.003317281773916985 0.0032349833995780897 0.1655726358117709 -0.004508283432935642 0.026138040547713 0.07091219441993342 -0.003029320081992469 0.02949558136203002 0.039729522035296096 -0.004890648600373335 0.035090089880007724 0.1655726358117709 -0.004508283432935642 0.026138040547713 0.0967856637518868 0.005432045387512968 0.06934738255099798 0.07977125561418172 0.005370220670713712 0.0818461575181597 0.1655726358117709 -0.004508283432935642 0.026138040547713 0.08383708138296066 -0.0005508622800703979 0.0528112335808012 0.05552280638094792 -0.0026178695383896606 0.05790977208285367 0.1655726358117709 -0.004508283432935642 0.026138040547713 0.14148292900912887 0.011014051108940064 0.00032519325963026313 0.12184968846785145 0.01012276455739706 -0.023374359986304043 0.02264057337070806 -0.002018859200745094 0.0033491001588075095 0.016824881801406143 -0.003638544367655513 0.039034603882743685 0.0639043544074438 0.006061376565161335 0.09217806492046994 0.032002293504117166 -0.0009297577135743357 0.06554358625522293 0.09963194911586495 0.015555735718854467 -0.03789847828563969 0.06067132407325063 -0.00023246363223646828 0.03480211692985193 0.15634125499732238 -0.006615892489697907 0.028615811649716737 0.06824400835712752 -0.0014155354212943496 0.007929822612619458 0.035565104843242885 -0.005424890830679249 0.005712754501581825 0.15634125499732238 -0.006615892489697907 0.028615811649716737 0.0616808136054849 -0.0051369291387547335 0.03197335246403376 0.030498141220847583 -0.006998257657135599 0.03756786098201146 0.15634125499732238 -0.006615892489697907 0.028615811649716737 0.08755428293743828 0.003324436330750704 0.07182515365300171 0.0705398747997332 0.003262611613951448 0.08432392862016344 0.15634125499732238 -0.006615892489697907 0.028615811649716737 0.07460570056851215 -0.0026584713368326624 0.05528900468280493 0.04629142556649941 -0.004725478595151925 0.0603875431848574 0.15634125499732238 -0.006615892489697907 0.028615811649716737 0.13225154819468035 0.008906442052177799 0.0028029643616339986 0.11261830765340294 0.008015155500634795 -0.020896588884300307 0.013409192556259546 -0.004126468257507359 0.005826871260811245 0.00759350098695763 -0.005746153424417777 0.04151237498474741 0.054672973592995285 0.00395376750839907 0.09465583602247368 0.022770912689668653 -0.0030373667703365997 0.06802135735722667 0.09040056830141645 0.013448126662092202 -0.035420707183635956 0.06521621294432078 -0.00044778422392734195 0.03291336696955372 0.16088614386839253 -0.00683121308138878 0.026727061689418526 0.07278889722819767 -0.0016308560129852231 0.006041072652321247 0.040109993714313036 -0.005640211422370122 0.003824004541283614 0.16088614386839253 -0.00683121308138878 0.026727061689418526 0.06622570247655506 -0.005352249730445607 0.030084602503735545 0.03504303009191773 -0.0072135782488264725 0.03567911102171325 0.16088614386839253 -0.00683121308138878 0.026727061689418526 0.09209917180850843 0.00310911573905983 0.0699364036927035 0.07508476367080336 0.0030472910222605746 0.08243517865986522 0.16088614386839253 -0.00683121308138878 0.026727061689418526 0.0791505894395823 -0.002873791928523536 0.05340025472250672 0.05083631443756956 -0.004940799186842798 0.05849879322455919 0.16088614386839253 -0.00683121308138878 0.026727061689418526 0.1367964370657505 0.008691121460486926 0.0009142144013357875 0.11716319652447309 0.007799834908943922 -0.02278533884459852 0.017954081427329696 -0.004341788849198232 0.003938121300513034 0.01213838985802778 -0.0059614740161086505 0.0396236250244492 0.059217862464065435 0.003738446916708196 0.09276708606217546 0.027315801560738803 -0.0032526873620274737 0.06613260739692844 0.09494545717248659 0.013232806070401329 -0.03730945714393417 0.0685012032751909 -0.0005475853257031554 0.030470824578849115 0.16417113419926266 -0.006931014183164594 0.02428451929871392 0.07607388755906778 -0.0017306571147610366 0.0035985302616166406 0.043394984045183146 -0.005740012524145936 0.0013814621505790076 0.16417113419926266 -0.006931014183164594 0.02428451929871392 0.06951069280742517 -0.00545205083222142 0.02764206011303094 0.038328020422787844 -0.007313379350602286 0.03323656863100864 0.16417113419926266 -0.006931014183164594 0.02428451929871392 0.09538416213937854 0.0030093146372840163 0.06749386130199889 0.07836975400167347 0.0029474899204847615 0.07999263626916062 0.16417113419926266 -0.006931014183164594 0.02428451929871392 0.0824355797704524 -0.002973593030299349 0.050957712331802116 0.05412130476843967 -0.005040600288618612 0.056056250833854585 0.16417113419926266 -0.006931014183164594 0.02428451929871392 0.1400814273966206 0.008591320358711112 -0.001528327989368819 0.1204481868553432 0.007700033807168109 -0.025227881235303125 0.021239071758199807 -0.004441589950974045 0.0014955789098084274 0.01542338018889789 -0.006061275117884464 0.0371810826337446 0.06250285279493555 0.003638645814932383 0.09032454367147086 0.030600791891608914 -0.0033524884638032873 0.06369006500622384 0.09823044750335672 0.013133004968625515 -0.039751999534638774 0.06072392425256892 -0.002762191932192069 0.03135378711407189 0.15639385517664067 -0.009145620789653508 0.025167481833936696 0.06829660853644581 -0.0039452637212499505 0.0044814927968394175 0.035617705022561175 -0.00795461913063485 0.0022644246858017844 0.15639385517664067 -0.009145620789653508 0.025167481833936696 0.06173341378480319 -0.007666657438710334 0.028525022648253715 0.030550741400165872 -0.0095279859570912 0.03411953116623142 0.15639385517664067 -0.009145620789653508 0.025167481833936696 0.08760688311675657 0.0007947080307951029 0.06837682383722167 0.0705924749790515 0.0007328833139958477 0.08087559880438339 0.15639385517664067 -0.009145620789653508 0.025167481833936696 0.07465830074783043 -0.005188199636788263 0.05184067486702489 0.046344025745817696 -0.007255206895107526 0.05693921336907736 0.15639385517664067 -0.009145620789653508 0.025167481833936696 0.13230414837399865 0.006376713752222199 -0.0006453654541460421 0.11267090783272123 0.005485427200679195 -0.024344918700080348 0.013461792735577835 -0.006656196557462959 0.0023785414450312042 0.007646101166275919 -0.008275881724373378 0.03806404516896737 0.054725573772313574 0.0014240392084434693 0.09120750620669363 0.022823512868986942 -0.0055670950702922 0.06457302754144661 0.09045316848073473 0.010918398362136601 -0.038869036999416 0.06488860705174641 -0.0020907209726644437 0.030205984781132216 0.16055853797581815 -0.008474149830125881 0.024019679500997024 0.0724612913356233 -0.003273792761722325 0.003333690463899742 0.039782387821738666 -0.0072831481711072244 0.0011166223528621087 0.16055853797581815 -0.008474149830125881 0.024019679500997024 0.06589809658398069 -0.006995186479182709 0.02737722031531404 0.03471542419934336 -0.008856514997563575 0.03297172883329175 0.16055853797581815 -0.008474149830125881 0.024019679500997024 0.09177156591593406 0.0014661789903227282 0.06722902150428199 0.07475715777822899 0.001404354273523473 0.07972779647144372 0.16055853797581815 -0.008474149830125881 0.024019679500997024 0.07882298354700792 -0.0045167286772606376 0.05069287253408522 0.05050870854499519 -0.0065837359355799 0.05579141103613769 0.16055853797581815 -0.008474149830125881 0.024019679500997024 0.13646883117317615 0.007048184711749824 -0.0017931677870857178 0.11683559063189872 0.00615689816020682 -0.025492721033020024 0.017626475534755326 -0.005984725597935334 0.0012307391120915286 0.01181078396545341 -0.0076044107648457525 0.0369162428360277 0.058890256571491065 0.0020955101679710946 0.09005970387375396 0.026988195668164433 -0.004895624110764576 0.06342522520850695 0.09461785127991224 0.011589869321664226 -0.04001683933235567 0.048604019890416086 -0.002253449924410569 0.032868629406955056 0.14427395081448785 -0.008636878781872009 0.02668232412681986 0.05617670417429298 -0.0034365217134684507 0.005996335089722582 0.02349780066040834 -0.00744587712285335 0.003779266978684949 0.14427395081448785 -0.008636878781872009 0.02668232412681986 0.04961350942265035 -0.007157915430928834 0.03003986494113688 0.018430837038013036 -0.0090192439493097 0.035634373459114584 0.14427395081448785 -0.008636878781872009 0.02668232412681986 0.07548697875460374 0.0013034500385766027 0.06989166613010483 0.05847257061689865 0.0012416253217773475 0.08239044109726656 0.14427395081448785 -0.008636878781872009 0.02668232412681986 0.0625383963856776 -0.004679457629006763 0.05335551715990806 0.03422412138366486 -0.006746464887326026 0.058454055661960526 0.14427395081448785 -0.008636878781872009 0.02668232412681986 0.12018424401184581 0.006885455760003698 0.0008694768387371224 0.10055100347056839 0.005994169208460695 -0.022830076407197183 0.0013418883734249987 -0.006147454549681459 0.0038933837379143688 -0.004473803195876917 -0.007767139716591878 0.03957888746185054 0.04260566941016074 0.001932781216224969 0.0927223484995768 0.010703608506834106 -0.005058353062510701 0.0660878698343298 0.07833326411858191 0.011427140369918102 -0.03735419470653283 0.04896818726718064 0.0004043307131057856 0.036266388337772085 0.14463811819125239 -0.005979098144355653 0.03008008305763689 0.05654087155105753 -0.0007787410759520956 0.00939409402053961 0.023861968037172894 -0.004788096485336995 0.007177025909501977 0.14463811819125239 -0.005979098144355653 0.03008008305763689 0.04997767679941491 -0.004500134793412479 0.03343762387195391 0.01879500441477759 -0.006361463311793345 0.03903213238993161 0.14463811819125239 -0.005979098144355653 0.03008008305763689 0.07585114613136829 0.003961230676092957 0.07328942506092187 0.05883673799366321 0.003899405959293702 0.08578820002808359 0.14463811819125239 -0.005979098144355653 0.03008008305763689 0.06290256376244216 -0.0020216769914904085 0.056753276090725086 0.034588288760429416 -0.004088684249809671 0.061851814592777554 0.14463811819125239 -0.005979098144355653 0.03008008305763689 0.12054841138861036 0.009543236397520053 0.004267235769554151 0.10091517084733295 0.00865194984597705 -0.019432317476380155 0.0017060557501895543 -0.0034896739121651047 0.007291142668731397 -0.004109635819112362 -0.005109359079075523 0.04297664639266757 0.04296983678692529 0.004590561853741324 0.09612010743039383 0.011067775883598661 -0.0024005724249943463 0.06948562876514681 0.07869743149534646 0.014084921007434456 -0.033956435775715804 0.06745270471905065 -0.0020480315905370802 0.02935487863858052 0.1631226356431224 -0.008431460447998518 0.023168573358445327 0.07502538900292754 -0.0032311033795949613 0.002482584321348045 0.04234648548904291 -0.007240458788979861 0.0002655162103104118 0.1631226356431224 -0.008431460447998518 0.023168573358445327 0.06846219425128493 -0.006952497097055345 0.026526114172762343 0.037279521866647604 -0.008813825615436211 0.03212062269074005 0.1631226356431224 -0.008431460447998518 0.023168573358445327 0.0943356635832383 0.0015088683724500916 0.0663779153617303 0.07732125544553323 0.0014470436556508364 0.07887669032889202 0.1631226356431224 -0.008431460447998518 0.023168573358445327 0.08138708121431217 -0.0044740392951332746 0.049841766391533524 0.05307280621229943 -0.006541046553452537 0.05494030489358599 0.1631226356431224 -0.008431460447998518 0.023168573358445327 0.13903292884048038 0.007090874093877188 -0.0026442739296374147 0.11939968829920296 0.006199587542334184 -0.02634382717557172 0.020190573202059567 -0.00594203621580797 0.00037963296953983164 0.014374881632757651 -0.007561721382718389 0.036065136693476 0.061454354238795306 0.002138199550098458 0.08920859773120227 0.029552293335468674 -0.004852934728637212 0.06257411906595525 0.09718194894721646 0.01163255870379159 -0.040867945474907366 0.07238572379473107 0.002952405275404611 0.027662233800221883 0.16805565471880282 -0.0034310235820568277 0.021475928520086687 0.07995840807860796 0.0017693334863467297 0.0007899394829894088 0.047279504564723324 -0.00224002192303817 -0.0014271286280482243 0.16805565471880282 -0.0034310235820568277 0.021475928520086687 0.07339521332696534 -0.001952060231113654 0.024833469334403706 0.04221254094232802 -0.00381338874949452 0.030427977852381414 0.16805565471880282 -0.0034310235820568277 0.021475928520086687 0.09926868265891872 0.006509305238391783 0.06468527052337167 0.08225427452121364 0.006447480521592528 0.07718404549053338 0.16805565471880282 -0.0034310235820568277 0.021475928520086687 0.08632010028999258 0.0005263975708084171 0.048149121553174884 0.058005825287979845 -0.0015406096875108456 0.05324766005522735 0.16805565471880282 -0.0034310235820568277 0.021475928520086687 0.1439659479161608 0.012091310959818878 -0.004336918767996051 0.12433270737488337 0.011200024408275874 -0.028036472013930357 0.025123592277739984 -0.0009415993498662792 -0.0013130118688188044 0.019307900708438068 -0.002561284516776698 0.03437249185511737 0.06638737331447572 0.007138636416040149 0.08751595289284363 0.03448531241114909 0.0001475021373044793 0.06088147422759661 0.10211496802289688 0.016632995569733282 -0.042560590313266006 0.06015932205940122 0.006945705744449084 0.022674406286202514 0.15582925298347297 0.0005622768869876452 0.01648810100606732 0.06773200634327811 0.005762633955391202 -0.00419788803102996 0.03505310282939347 0.0017532785460063031 -0.006414956142067593 0.15582925298347297 0.0005622768869876452 0.01648810100606732 0.06116881159163549 0.002041240237930819 0.019845641820384338 0.02998613920699817 0.0001799117195499531 0.025440150338362045 0.15582925298347297 0.0005622768869876452 0.01648810100606732 0.08704228092358887 0.010502605707436255 0.05969744300935229 0.0700278727858838 0.010440780990637 0.07219621797651402 0.15582925298347297 0.0005622768869876452 0.01648810100606732 0.07409369855466273 0.00451969803985289 0.043161294039155515 0.045779423552649995 0.0024526907815336273 0.048259832541207984 0.15582925298347297 0.0005622768869876452 0.01648810100606732 0.13173954618083095 0.016084611428863353 -0.00932474628201542 0.11210630563955352 0.015193324877320348 -0.033024299527949726 0.012897190542410134 0.0030517011191781938 -0.006300839382838173 0.007081498973108218 0.001432015952267775 0.029384664341098 0.05416097157914587 0.011131936885084622 0.08252812537882426 0.02225891067581924 0.004140802606348953 0.055893646713577244 0.08988856628756703 0.020626296038777754 -0.047548417827285375 0.06691875529196625 0.005447931727981379 0.023124288320964564 0.162588686216038 -0.0009354971294800599 0.01693798304082937 0.07449143957584314 0.004264859938923497 -0.0037480059962679106 0.041812536061958505 0.000255504529538598 -0.005965074107305544 0.162588686216038 -0.0009354971294800599 0.01693798304082937 0.06792824482420053 0.0005434662214631137 0.020295523855146387 0.0367455724395632 -0.001317862296917752 0.025890032373124094 0.162588686216038 -0.0009354971294800599 0.01693798304082937 0.0938017141561539 0.009004831690968551 0.06014732504411434 0.07678730601844883 0.008943006974169295 0.07264610001127607 0.162588686216038 -0.0009354971294800599 0.01693798304082937 0.08085313178722776 0.003021924023385185 0.04361117607391757 0.05253885678521503 0.0009549167650659222 0.04870971457597004 0.162588686216038 -0.0009354971294800599 0.01693798304082937 0.13849897941339598 0.014586837412395647 -0.00887486424725337 0.11886573887211856 0.013695550860852643 -0.03257441749318768 0.019656623774975165 0.0015539271027104886 -0.005850957348076124 0.01384093220567325 -6.575806419993006e-05 0.029834546375860048 0.060920404811710904 0.009634162868616916 0.08297800741358631 0.029018343908384273 0.002643028589881247 0.0563435287483393 0.09664799952013206 0.019128522022310048 -0.04709853579252332 0.05966148051842354 0.004955246882961147 0.0214687671579937 0.1553314114424953 -0.0014281819745002918 0.015282461877858507 0.06723416480230043 0.0037721750939032654 -0.005403527159238773 0.034555261288415795 -0.0002371803154816339 -0.007620595270276406 0.1553314114424953 -0.0014281819745002918 0.015282461877858507 0.06067097005065781 5.078137644288182e-05 0.018640002692175524 0.029488297666020492 -0.001810547141937984 0.024234511210153232 0.1553314114424953 -0.0014281819745002918 0.015282461877858507 0.0865444393826112 0.008512146845948318 0.05849180388114348 0.06953003124490612 0.008450322129149063 0.0709905788483052 0.1553314114424953 -0.0014281819745002918 0.015282461877858507 0.07359585701368505 0.002529239178364953 0.0419556549109467 0.04528158201167232 0.00046223192004569025 0.04705419341299917 0.1553314114424953 -0.0014281819745002918 0.015282461877858507 0.13124170463985327 0.014094152567375414 -0.010530385410224233 0.11160846409857585 0.01320286601583241 -0.03422993865615854 0.012399349001432455 0.0010612422576902567 -0.0075064785110469864 0.006583657432130539 -0.000558442909220162 0.028179025212889185 0.053663130038168194 0.009141478023596685 0.08132248625061544 0.021761069134841562 0.002150343744861015 0.05468800758536843 0.08939072474658935 0.018635837177289817 -0.04875405695549419 0.06640780443460581 0.003610100579895256 0.021591164340624837 0.16207773535867756 -0.0027733282775661825 0.015404859060489643 0.0739804887184827 0.002427028790837375 -0.0052811299766076375 0.04130158520459806 -0.0015823266185475246 -0.007498198087645271 0.16207773535867756 -0.0027733282775661825 0.015404859060489643 0.06741729396684008 -0.001294364926623009 0.01876239987480666 0.03623462158220276 -0.0031556934450038747 0.024356908392784368 0.16207773535867756 -0.0027733282775661825 0.015404859060489643 0.09329076329879346 0.007167000542882428 0.058614201063774615 0.07627635516108838 0.007105175826083172 0.07111297603093633 0.16207773535867756 -0.0027733282775661825 0.015404859060489643 0.08034218092986732 0.0011840928752990623 0.04207805209357784 0.052027905927854584 -0.0008829143830202005 0.047176590595630306 0.16207773535867756 -0.0027733282775661825 0.015404859060489643 0.13798802855603554 0.012749006264309524 -0.010407988227593097 0.11835478801475811 0.01185771971276652 -0.0341075414735274 0.019145672917614723 -0.000283904045375634 -0.007384081328415851 0.013329981348312807 -0.0019035892122860527 0.02830142239552032 0.06040945395435046 0.007796331720530795 0.08144488343324657 0.02850739305102383 0.0008051974417951245 0.05481040476799957 0.09613704866277162 0.017290690874223927 -0.04863165977286305 0.07124498363053638 0.005439326077190991 0.023856566315799684 0.16691491455460813 -0.0009441027802704477 0.017670261035664492 0.07881766791441328 0.0042562542881331095 -0.00301572800143279 0.04613876440052864 0.0002468988787482102 -0.005232796112470423 0.16691491455460813 -0.0009441027802704477 0.017670261035664492 0.07225447316277066 0.0005348605706727259 0.021027801849981508 0.041071800778133334 -0.0013264679477081398 0.026622310367959215 0.16691491455460813 -0.0009441027802704477 0.017670261035664492 0.09812794249472404 0.008996226040178162 0.06087960303894946 0.08111353435701896 0.008934401323378909 0.07337837800611119 0.16691491455460813 -0.0009441027802704477 0.017670261035664492 0.0851793601257979 0.003013318372594797 0.04434345406875269 0.05686508512378516 0.0009463111142755344 0.04944199257080516 0.16691491455460813 -0.0009441027802704477 0.017670261035664492 0.1428252077519661 0.014578231761605259 -0.00814258625241825 0.12319196721068869 0.013686945210062255 -0.03184213949835256 0.023982852113545297 0.0015453214519201008 -0.005118679353241003 0.01816716054424338 -7.436371499031785e-05 0.03056682437069517 0.06524663315028104 0.00962555721782653 0.08371028540842143 0.033344572246954404 0.0026344229390908593 0.05707580674317442 0.10097422785870219 0.019119916371519663 -0.0463662577976882 0.07031305419586355 0.007114587062453726 0.02566268928061227 0.1659829851199353 0.000731158204992287 0.019476384000477076 0.07788573847974044 0.005931515273395844 -0.0012096050366202059 0.0452068349658558 0.001922159864010945 -0.003426673147657839 0.1659829851199353 0.000731158204992287 0.019476384000477076 0.07132254372809782 0.0022101215559354606 0.022833924814794092 0.0401398713434605 0.00034879303755459487 0.0284284333327718 0.1659829851199353 0.000731158204992287 0.019476384000477076 0.0971960130600512 0.010671487025440898 0.06268572600376204 0.08018160492234612 0.010609662308641642 0.07518450097092377 0.1659829851199353 0.000731158204992287 0.019476384000477076 0.08424743069112506 0.004688579357857532 0.04614957703356527 0.05593315568911232 0.002621572099538269 0.05124811553561774 0.1659829851199353 0.000731158204992287 0.019476384000477076 0.14189327831729326 0.016253492746867992 -0.0063364632876056655 0.12226003777601585 0.015362206195324989 -0.03003601653353997 0.02305092267887246 0.0032205824371828356 -0.003312556388428419 0.017235231109570544 0.0016008972702724169 0.03237294733550775 0.0643147037156082 0.011300818203089265 0.08551640837323402 0.03241264281228157 0.004309683924353594 0.058881929707987 0.10004229842402937 0.020795177356782397 -0.04456013483287562 0.04431349397215523 -0.002242331923262822 0.03226295069430753 0.13998342489622698 -0.008625760780724261 0.02607664541417233 0.05188617825603212 -0.003425403712320703 0.005390656377075052 0.01920727474214748 -0.007434759121705603 0.0031735882660374193 0.13998342489622698 -0.008625760780724261 0.02607664541417233 0.04532298350438949 -0.007146797429781087 0.02943418622848935 0.014140311119752176 -0.009008125948161952 0.035028694746467054 0.13998342489622698 -0.008625760780724261 0.02607664541417233 0.07119645283634288 0.00131456803972435 0.06928598741745731 0.05418204469863779 0.0012527433229250948 0.08178476238461903 0.13998342489622698 -0.008625760780724261 0.02607664541417233 0.05824787046741674 -0.004668339627859015 0.05274983844726053 0.029933595465404 -0.006735346886178278 0.057848376949312996 0.13998342489622698 -0.008625760780724261 0.02607664541417233 0.11589371809358495 0.006896573761151445 0.00026379812608959274 0.09626047755230753 0.0060052872096084415 -0.023435755119844713 -0.002948637544835861 -0.006136336548533712 0.003287705025266839 -0.008764329114137777 -0.007756021715444131 0.038973208749203014 0.03831514349189988 0.0019438992173727164 0.09211666978692927 0.006413082588573246 -0.0050472350613629535 0.06548219112168226 0.07404273820032103 0.011438258371065848 -0.03795987341918036 0.04463381041515578 -0.0030573909334417454 0.026581726089463055 0.14030374133922752 -0.009440819790903185 0.02039542080932786 0.05220649469903267 -0.0042404627224996265 -0.0002905682277694194 0.019527591185148033 -0.008249818131884527 -0.0025076363388070524 0.14030374133922752 -0.009440819790903185 0.02039542080932786 0.04564329994739005 -0.007961856439960011 0.02375296162364488 0.01446062756275273 -0.009823184958340876 0.029347470141622586 0.14030374133922752 -0.009440819790903185 0.02039542080932786 0.07151676927934343 0.0004995090295454264 0.06360476281261283 0.054502361141638346 0.0004376843127461712 0.07610353777977455 0.14030374133922752 -0.009440819790903185 0.02039542080932786 0.05856818691041729 -0.005483398638037939 0.047068613842416056 0.030253911908404554 -0.007550405896357202 0.052167152344468525 0.14030374133922752 -0.009440819790903185 0.02039542080932786 0.1162140345365855 0.006081514750972522 -0.005417426478754879 0.09658079399530808 0.005190228199429518 -0.029116979724689185 -0.002628321101835307 -0.006951395558712636 -0.0023935195795776326 -0.008444012671137223 -0.008571080725623055 0.033291984144358536 0.03863545993490043 0.0011288402071937928 0.08643544518208479 0.0067333990315738 -0.005862294071541877 0.059800966516837785 0.0743630546433216 0.010623199360886924 -0.043641098024024834 0.04843025086580523 -0.003266710390552375 0.026821971831518587 0.144100181789877 -0.009650139248013813 0.020635666551383394 0.05600293514968212 -0.004449782179610257 -5.032248571388773e-05 0.02332403163579748 -0.008459137588995157 -0.002267390596751521 0.144100181789877 -0.009650139248013813 0.020635666551383394 0.04943974039803949 -0.00817117589707064 0.02399320736570041 0.018257068013402176 -0.010032504415451506 0.029587715883678117 0.144100181789877 -0.009650139248013813 0.020635666551383394 0.07531320972999288 0.00029018957243479677 0.06384500855466836 0.05829880159228779 0.00022836485563554158 0.07634378352183009 0.144100181789877 -0.009650139248013813 0.020635666551383394 0.06236462736106674 -0.005692718095148569 0.04730885958447159 0.034050352359054 -0.007759725353467832 0.05240739808652406 0.144100181789877 -0.009650139248013813 0.020635666551383394 0.12001047498723495 0.0058721952938618925 -0.005177180736699347 0.10037723444595753 0.004980908742318889 -0.028876733982633653 0.0011681193488141395 -0.007160715015823265 -0.002153273837522101 -0.0046475722204877765 -0.008780400182733683 0.03353222988641407 0.04243190038554988 0.0009195207500831632 0.08667569092414033 0.010529839482223247 -0.006071613528652507 0.06004121225889332 0.07815949509397105 0.010413879903776294 -0.0434008522819693 0.06044365377651309 -0.0035875721466993547 0.026694569650586808 0.15611358470058484 -0.009971001004160793 0.020508264370451612 0.06801633806038998 -0.004770643935757236 -0.00017772466664566638 0.03533743454650534 -0.008779999345142135 -0.0023947927776832995 0.15611358470058484 -0.009971001004160793 0.020508264370451612 0.061453143308747356 -0.00849203765321762 0.02386580518476863 0.03027047092411004 -0.010353366171598485 0.02946031370274634 0.15611358470058484 -0.009971001004160793 0.020508264370451612 0.08732661264070074 -3.067218371218287e-05 0.06371760637373658 0.07031220450299566 -9.249690051143806e-05 0.07621638134089831 0.15611358470058484 -0.009971001004160793 0.020508264370451612 0.0743780302717746 -0.006013579851295549 0.04718145740353981 0.046063755269761864 -0.00808058710961481 0.05227999590559228 0.15611358470058484 -0.009971001004160793 0.020508264370451612 0.13202387789794282 0.005551333537714913 -0.005304582917631126 0.1123906373566654 0.004660046986171909 -0.029004136163565432 0.013181522259522002 -0.007481576771970245 -0.0022806760184538796 0.007365830690220086 -0.009101261938880664 0.033404827705482296 0.05444530329625774 0.0005986589939361835 0.08654828874320855 0.02254324239293111 -0.006392475284799486 0.05991381007796154 0.0901728980046789 0.010093018147629315 -0.04352825446290108 0.049756103689413245 -0.0018162394885796458 0.02283566670917936 0.145426034613485 -0.008199668346041085 0.016649361429044163 0.057328787973290135 -0.002999311277637527 -0.004036627608053116 0.024649884459405497 -0.007008666687022427 -0.006253695719090749 0.145426034613485 -0.008199668346041085 0.016649361429044163 0.05076559322164751 -0.006720704995097911 0.020006902243361182 0.019582920837010194 -0.008582033513478776 0.02560141076133889 0.145426034613485 -0.008199668346041085 0.016649361429044163 0.0766390625536009 0.001740660474407526 0.05985870343232914 0.05962465441589581 0.0016788357576082709 0.07235747839949086 0.145426034613485 -0.008199668346041085 0.016649361429044163 0.06369048018467476 -0.004242247193175839 0.04332255446213236 0.03537620518266202 -0.006309254451495102 0.04842109296418483 0.145426034613485 -0.008199668346041085 0.016649361429044163 0.12133632781084297 0.007322666195834621 -0.009163485859038575 0.10170308726956555 0.0064313796442916175 -0.03286303910497288 0.002493972172422157 -0.005710244113850536 -0.006139578959861329 -0.003321719396879759 -0.007329929280760955 0.029545924764074843 0.043757753209157896 0.0023699916520558925 0.0826893858018011 0.011855692305831264 -0.0046211426266797775 0.05605490713655409 0.07948534791757905 0.011864350805749024 -0.04738715740430853 0.053249917176089276 0.002875462940133934 0.020783158127718696 0.148919848100161 -0.003507965917327505 0.014596852847583502 0.060822601459966166 0.0016923911510760526 -0.006089136189513778 0.028143697946081528 -0.002316964258308847 -0.008306204300551411 0.148919848100161 -0.003507965917327505 0.014596852847583502 0.05425940670832354 -0.002029002566384331 0.01795439366190052 0.023076734323686225 -0.003890331084765197 0.023548902179878227 0.148919848100161 -0.003507965917327505 0.014596852847583502 0.08013287604027693 0.006432362903121106 0.05780619485086848 0.06311846790257185 0.0063705381863218506 0.0703049698180302 0.148919848100161 -0.003507965917327505 0.014596852847583502 0.06718429367135079 0.00044945523553774 0.041270045880671694 0.03887001866933805 -0.0016175520227815227 0.04636858438272416 0.148919848100161 -0.003507965917327505 0.014596852847583502 0.124830141297519 0.012014368624548202 -0.011215994440499238 0.10519690075624158 0.011123082073005199 -0.03491554768643354 0.005987785659098188 -0.0010185416851369563 -0.008192087541321991 0.00017209408979627222 -0.002638226852047375 0.02749341618261418 0.04725156669583393 0.007061694080769472 0.08063687722034044 0.015349505792507295 7.05598020338022e-05 0.05400239855509342 0.0829791614042551 0.016556053234462603 -0.049439665985769196 0.060231934822104774 0.002105209738126176 0.02107235074086393 0.15590186574617654 -0.004278219119335263 0.014886045460728735 0.06780461910598166 0.0009221379490682946 -0.005799943576368545 0.035125715592097026 -0.003087217460316605 -0.008017011687406178 0.15590186574617654 -0.004278219119335263 0.014886045460728735 0.06124142435433904 -0.002799255768392089 0.018243586275045753 0.030058751969701723 -0.004660584286772955 0.02383809479302346 0.15590186574617654 -0.004278219119335263 0.014886045460728735 0.08711489368629242 0.005662109701113348 0.05809538746401371 0.07010048554858735 0.0056002849843140926 0.07059416243117543 0.15590186574617654 -0.004278219119335263 0.014886045460728735 0.07416631131736628 -0.000320797966470018 0.04155923849381693 0.04585203631535355 -0.0023878052247892807 0.0466577769958694 0.15590186574617654 -0.004278219119335263 0.014886045460728735 0.13181215894353449 0.011244115422540443 -0.010926801827354005 0.11217891840225708 0.010352828870997439 -0.03462635507328831 0.012969803305113686 -0.0017887948871447143 -0.007902894928176758 0.00715411173581177 -0.003408480054055133 0.027782608795759414 0.054233584341849425 0.006291440878761714 0.08092606983348567 0.022331523438522793 -0.0006996933999739558 0.05429159116823866 0.0899611790502706 0.015785800032454847 -0.04915047337262396 0.06023518416154241 -0.0010986094980324696 0.02227010158686217 0.15590511508561417 -0.0074820383554939085 0.016083796306726975 0.06780786844541929 -0.002281681287090351 -0.004602192730370304 0.03512896493153466 -0.006291036696475251 -0.006819260841407937 0.15590511508561417 -0.0074820383554939085 0.016083796306726975 0.061244673693776674 -0.006003075004550735 0.019441337121043994 0.030062001309139358 -0.0078644035229316 0.0250358456390217 0.15590511508561417 -0.0074820383554939085 0.016083796306726975 0.08711814302573005 0.0024582904649547025 0.05929313831001195 0.07010373488802497 0.002396465748155447 0.07179191327717367 0.15590511508561417 -0.0074820383554939085 0.016083796306726975 0.07416956065680393 -0.0035246172026286637 0.04275698933981517 0.04585528565479118 -0.005591624460947926 0.04785552784186764 0.15590511508561417 -0.0074820383554939085 0.016083796306726975 0.13181540828297214 0.008040296186381798 -0.009729050981355764 0.1121821677416947 0.007149009634838794 -0.03342860422729007 0.01297305264455132 -0.00499261412330336 -0.006705144082178517 0.007157361075249405 -0.006612299290213779 0.028980359641757655 0.05423683368128706 0.0030876216426030684 0.08212382067948391 0.022334772777960428 -0.003903512636132601 0.0554893420142369 0.08996442838970822 0.0125819807962962 -0.04795272252662572 0.06545106671167952 0.0011622410564297004 0.02175788809588471 0.16112099763575127 -0.005221187801031738 0.015571582815749515 0.07302375099555641 -2.083073262818089e-05 -0.005114406221347765 0.040344847481671775 -0.00403018614201308 -0.007331474332385398 0.16112099763575127 -0.005221187801031738 0.015571582815749515 0.0664605562439138 -0.0037422244500885647 0.018929123630066533 0.03527788385927647 -0.005603552968469431 0.02452363214804424 0.16112099763575127 -0.005221187801031738 0.015571582815749515 0.09233402557586717 0.004719141019416872 0.05878092481903449 0.0753196174381621 0.004657316302617617 0.07127969978619621 0.16112099763575127 -0.005221187801031738 0.015571582815749515 0.07938544320694103 -0.0012637666481664935 0.04224477584883771 0.0510711682049283 -0.0033307739064857562 0.047343314350890175 0.16112099763575127 -0.005221187801031738 0.015571582815749515 0.13703129083310925 0.010301146740843968 -0.010241264472333225 0.11739805029183183 0.009409860189300965 -0.03394081771826753 0.018188935194688435 -0.0027317635688411898 -0.007217357573155978 0.01237324362538652 -0.004351448735751608 0.028468146150780194 0.059452716231424174 0.005348472197065239 0.08161160718850645 0.027550655328097542 -0.0016426620816704313 0.054977128523259436 0.09518031093984533 0.014842831350758371 -0.04846493601760318 0.06483322258725398 -0.0008591856291028779 0.023260250797093977 0.1605031535113257 -0.007242614486564316 0.01707394551695878 0.07240590687113087 -0.002042257418160759 -0.003612043520138497 0.03972700335724623 -0.006051612827545658 -0.00582911163117613 0.1605031535113257 -0.007242614486564316 0.01707394551695878 0.06584271211948825 -0.005763651135621143 0.0204314863312758 0.03466003973485093 -0.007624979654002008 0.026025994849253508 0.1605031535113257 -0.007242614486564316 0.01707394551695878 0.09171618145144163 0.002697714333884294 0.060283287520243756 0.07470177331373655 0.0026358896170850387 0.07278206248740549 0.1605031535113257 -0.007242614486564316 0.01707394551695878 0.07876759908251549 -0.003285193333699072 0.04374713855004698 0.05045332408050275 -0.005352200592018334 0.04884567705209945 0.1605031535113257 -0.007242614486564316 0.01707394551695878 0.13641344670868372 0.00827972005531139 -0.008738901771123957 0.11678020616740628 0.007388433503768386 -0.03243845501705826 0.01757109107026289 -0.004753190254373768 -0.00571499487194671 0.011755399500960974 -0.006372875421284186 0.02997050885198946 0.05883487210699863 0.0033270455115326602 0.08311396988971573 0.026932811203671997 -0.0036640887672030097 0.05647949122446871 0.0945624668154198 0.012821404665225793 -0.04696257331639391 0.06493367336131779 -0.002675488027881772 0.026613702658985588 0.16060360428538956 -0.00905891688534321 0.020427397378850395 0.07250635764519468 -0.003858559816939653 -0.00025859165824688654 0.039827454131310044 -0.007867915226324552 -0.0024756597692845196 0.16060360428538956 -0.00905891688534321 0.020427397378850395 0.06594316289355207 -0.007579953534400037 0.02378493819316741 0.03476049050891474 -0.009441282052780903 0.02937944671114512 0.16060360428538956 -0.00905891688534321 0.020427397378850395 0.09181663222550544 0.0008814119351053997 0.06363673938213536 0.07480222408780036 0.0008195872183061445 0.07613551434929709 0.16060360428538956 -0.00905891688534321 0.020427397378850395 0.0788680498565793 -0.0051014957324779665 0.04710059041193859 0.050553774854566566 -0.007168502990797229 0.05219912891399106 0.16060360428538956 -0.00905891688534321 0.020427397378850395 0.1365138974827475 0.006463417656532496 -0.005385449909232346 0.1168806569414701 0.005572131104989492 -0.029085003155166652 0.017671541844326705 -0.006569492653152662 -0.0023615430100551 0.011855850275024789 -0.00818917782006308 0.03332396071388107 0.058935322881062444 0.0015107431127537661 0.08646742175160733 0.027033261977735812 -0.005480391165981904 0.05983294308636032 0.09466291758948361 0.011005102266446899 -0.0436091214545023 0.0690734541390392 0.0006173115372542522 0.023549686427153396 0.16474338506311095 -0.005766117320207187 0.0173633811470182 0.0766461384229161 -0.0005657602518036291 -0.003322607890079078 0.043967234909031455 -0.004575115661188529 -0.005539676001116711 0.16474338506311095 -0.005766117320207187 0.0173633811470182 0.07008294367127348 -0.004287153969264013 0.02072092196133522 0.03890027128663615 -0.006148482487644879 0.026315430479312927 0.16474338506311095 -0.005766117320207187 0.0173633811470182 0.09595641300322685 0.004174211500241424 0.060572723150303175 0.07894200486552178 0.004112386783442169 0.0730714981174649 0.16474338506311095 -0.005766117320207187 0.0173633811470182 0.08300783063430071 -0.0018086961673419418 0.0440365741801064 0.05469355563228798 -0.0038757034256612045 0.049135112682158866 0.16474338506311095 -0.005766117320207187 0.0173633811470182 0.14065367826046893 0.00975621722166852 -0.008449466141064538 0.1210204377191915 0.008864930670125516 -0.032149019386998844 0.021811322622048115 -0.003276693088016638 -0.005425559241887291 0.0159956310527462 -0.004896378254927057 0.03025994448204888 0.06307510365878385 0.00480354267788979 0.08340340551977514 0.031173042755457223 -0.0021875916008458796 0.056768926854528126 0.09880269836720501 0.014297901831582922 -0.04667313768633449 0.07054106505210413 0.003267013543720469 0.0232713219391105 0.1662109959761759 -0.00311641531374097 0.017085016658975306 0.07811374933598102 0.0020839417546625874 -0.0036009723781219756 0.04543484582209638 -0.001925413654722312 -0.005818040489159609 0.1662109959761759 -0.00311641531374097 0.017085016658975306 0.0715505545843384 -0.0016374519627977962 0.020442557473292322 0.040367882199701076 -0.003498780481178662 0.02603706599127003 0.1662109959761759 -0.00311641531374097 0.017085016658975306 0.09742402391629178 0.00682391350670764 0.06029435866226028 0.0804096157785867 0.0067620887899083855 0.072793133629422 0.1662109959761759 -0.00311641531374097 0.017085016658975306 0.08447544154736564 0.000841005839124275 0.043758209692063496 0.0561611665453529 -0.0012260014191949878 0.048856748194115965 0.1662109959761759 -0.00311641531374097 0.017085016658975306 0.14212128917353384 0.012405919228134736 -0.008727830629107435 0.12248804863225643 0.011514632676591733 -0.03242738387504174 0.02327893353511304 -0.0006269910815504213 -0.005703923729930189 0.017463241965811123 -0.00224667624846084 0.029981579994005983 0.06454271457184878 0.007453244684356007 0.08312504103173224 0.032640653668522146 0.0004621104056203372 0.056490562366485225 0.10027030928026995 0.01694760383804914 -0.046951502174377394 0.07036803228413432 0.00022345516608193313 0.027048873418780074 0.16603796320820607 -0.006159973691379506 0.02086256813864488 0.07794071656801121 -0.0009596166229759481 0.00017657910154759981 0.045261813054126576 -0.004968972032360848 -0.0020404890094900333 0.16603796320820607 -0.006159973691379506 0.02086256813864488 0.0713775218163686 -0.004681010340436332 0.024220108952961898 0.040194849431731274 -0.006542338858817198 0.029814617470939605 0.16603796320820607 -0.006159973691379506 0.02086256813864488 0.09725099114832197 0.003780355129069105 0.06407191014192985 0.0802365830106169 0.0037185304122698496 0.07657068510909157 0.16603796320820607 -0.006159973691379506 0.02086256813864488 0.08430240877939583 -0.002202552538514261 0.047535761171733075 0.0559881337773831 -0.004269559796833524 0.052634299673785544 0.16603796320820607 -0.006159973691379506 0.02086256813864488 0.14194825640556405 0.009362360850496201 -0.00495027914943786 0.12231501586428663 0.008471074298953198 -0.028649832395372166 0.023105900767143236 -0.003670549459188957 -0.0019263722502606134 0.01729020919784132 -0.005290234626099376 0.033759131473675555 0.06436968180387898 0.004409686306717471 0.08690259251140181 0.032467620900552344 -0.0025814479720181987 0.060268113846154804 0.10009727651230013 0.013904045460410604 -0.043173950694707815 0.06761623002871774 -0.0007419739385066238 0.02401171230687139 0.16328616095278947 -0.007125402795968063 0.017825407026736198 0.07518891431259463 -0.001925045727564505 -0.002860582010361084 0.04251001079870999 -0.005934401136949405 -0.005077650121398717 0.16328616095278947 -0.007125402795968063 0.017825407026736198 0.06862571956095201 -0.005646439445024889 0.021182947841053214 0.037443047176314685 -0.007507767963405755 0.02677745635903092 0.16328616095278947 -0.007125402795968063 0.017825407026736198 0.09449918889290539 0.002814926024480548 0.061034749030021165 0.07748478075520031 0.0027531013076812928 0.0735335239971829 0.16328616095278947 -0.007125402795968063 0.017825407026736198 0.08155060652397925 -0.003167981643102818 0.044498600059824395 0.05323633152196651 -0.0052349889014220805 0.04959713856187686 0.16328616095278947 -0.007125402795968063 0.017825407026736198 0.13919645415014748 0.008396931745907645 -0.007987440261346544 0.11956321360887004 0.00750564519436464 -0.03168699350728085 0.020354098511726648 -0.004635978563777514 -0.004963533362169297 0.014538406942424732 -0.006255663730687933 0.030721970361766875 0.06161787954846239 0.0034442572021289143 0.08386543139949314 0.029715818645135755 -0.0035468770766067556 0.057230952734246124 0.09734547425688356 0.012938616355822047 -0.046211111806616495 0.06802680336557447 -0.0011851605872927023 0.026933520361589896 0.1636967342896462 -0.007568589444754141 0.020747215081454704 0.07559948764945136 -0.0023682323763505836 6.122604435742154e-05 0.04292058413556672 -0.006377587785735483 -0.0021558420666802115 0.1636967342896462 -0.007568589444754141 0.020747215081454704 0.06903629289780874 -0.006089626093810968 0.02410475589577172 0.03785362051317142 -0.007950954612191833 0.029699264413749427 0.1636967342896462 -0.007568589444754141 0.020747215081454704 0.09490976222976212 0.0023717393756944698 0.06395655708473967 0.07789535409205704 0.002309914658895214 0.0764553320519014 0.1636967342896462 -0.007568589444754141 0.020747215081454704 0.08196117986083598 -0.0036111682918888964 0.0474204081145429 0.053646904858823244 -0.005678175550208159 0.05251894661659537 0.1636967342896462 -0.007568589444754141 0.020747215081454704 0.1396070274870042 0.007953745097121566 -0.005065632206628038 0.11997378694572677 0.007062458545578561 -0.028765185452562344 0.020764671848583383 -0.005079165212563593 -0.0020417253074507917 0.014948980279281467 -0.006698850379474011 0.03364377841648538 0.06202845288531912 0.0030010705533428357 0.08678723945421164 0.03012639198199249 -0.003990063725392834 0.06015276078896463 0.09775604759374029 0.012495429707035969 -0.04328930375189799 0.03486067784138204 -7.2962648304342e-05 0.001236744420688531 0.1305306087654538 -0.0064563915057657805 -0.0049495608594466636 0.04243336212525893 -0.0012560344373622233 -0.025635549896543944 0.009754458611374292 -0.005265389846747123 -0.027852618007581577 0.1305306087654538 -0.0064563915057657805 -0.0049495608594466636 0.035870167373616306 -0.004977428154822607 -0.0015920200451296452 0.004687494988978989 -0.006838756673203473 0.00400248847284806 0.1305306087654538 -0.0064563915057657805 -0.0049495608594466636 0.06174363670556969 0.00348393731468283 0.03825978114383831 0.044729228567864605 0.003422112597883575 0.05075855611100003 0.1305306087654538 -0.0064563915057657805 -0.0049495608594466636 0.04879505433664355 -0.0024989703529005357 0.02172363217364153 0.020480779334630814 -0.0045659776112197984 0.026822170675694 0.1305306087654538 -0.0064563915057657805 -0.0049495608594466636 0.10644090196281177 0.009065943036109926 -0.030762408147529403 0.08680766142153434 0.008174656484566922 -0.05446196139346371 -0.012401453675609048 -0.003966967273575232 -0.027738501248352157 -0.018217145244910964 -0.005586652440485651 0.007947002475584015 0.028862327361126688 0.004113268492331196 0.061090463513310274 -0.0030397335421999405 -0.0028778657864044735 0.03445598484806326 0.06458992206954786 0.013607627646024328 -0.06898607969279935 0.03420742956669619 -0.0011059946673640172 -0.00495252647012616 0.12987736049076792 -0.007489423524825456 -0.011138831750261355 0.04178011385057308 -0.0022890664564218987 -0.03182482078735863 0.00910121033668844 -0.006298421865806798 -0.034041888898396266 0.12987736049076792 -0.007489423524825456 -0.011138831750261355 0.03521691909893045 -0.006010460173882282 -0.007781290935944336 0.004034246714293137 -0.007871788692263147 -0.0021867824179666305 0.12987736049076792 -0.007489423524825456 -0.011138831750261355 0.06109038843088384 0.0024509052956231546 0.03207051025302362 0.04407598029317875 0.0023890805788238994 0.04456928522018534 0.12987736049076792 -0.007489423524825456 -0.011138831750261355 0.0481418060619577 -0.003532002371960211 0.015534361282826842 0.01982753105994496 -0.005599009630279474 0.02063289978487931 0.12987736049076792 -0.007489423524825456 -0.011138831750261355 0.10578765368812591 0.00803291101705025 -0.03695167903834409 0.08615441314684849 0.0071416244655072465 -0.0606512322842784 -0.0130547019502949 -0.004999999292634907 -0.03392777213916685 -0.018870393519596816 -0.006619684459545326 0.0017577315847693243 0.028209079086440835 0.003080236473271521 0.054901192622495584 -0.003692981816885793 -0.0039108978054641485 0.02826671395724857 0.06393667379486201 0.012574595626964653 -0.07517535058361405 0.028827375793984207 -0.0005288153349990998 -0.003132289496451668 0.12449730671805595 -0.0069122441924605385 -0.009318594776586862 0.0364000600778611 -0.001711887124056981 -0.030004583813684142 0.003721156563976459 -0.005721242533441881 -0.032221651924721775 0.12449730671805595 -0.0069122441924605385 -0.009318594776586862 0.029836865326218476 -0.005433280841517365 -0.0059610539622698445 -0.0013458070584188436 -0.007294609359898231 -0.0003665454442921385 0.12449730671805595 -0.0069122441924605385 -0.009318594776586862 0.05571033465817185 0.003028084627988072 0.03389074722669811 0.03869592652046677 0.002966259911188817 0.04638952219385983 0.12449730671805595 -0.0069122441924605385 -0.009318594776586862 0.04276175228924572 -0.0029548230395952937 0.017354598256501333 0.01444747728723298 -0.0050218302979145564 0.0224531367585538 0.12449730671805595 -0.0069122441924605385 -0.009318594776586862 0.10040759991541393 0.008610090349415168 -0.0351314420646696 0.08077435937413652 0.007718803797872164 -0.05883099531060391 -0.01843475572300688 -0.00442281996026999 -0.032107535165492355 -0.024250447292308797 -0.006042505127180409 0.0035779685584438163 0.022829025313728855 0.0036574158056364384 0.056721429596170075 -0.009073035589597774 -0.0033337184730992315 0.030086950930923062 0.05855662002215002 0.01315177495932957 -0.07335511360993956 0.03000408231738618 0.0004798610506981197 0.0020357820382912164 0.12567401324145794 -0.005903567806763319 -0.004150523241843978 0.03757676660126307 -0.0007032107383597616 -0.024836512278941257 0.004897863087378433 -0.004712566147744661 -0.02705358038997889 0.12567401324145794 -0.005903567806763319 -0.004150523241843978 0.03101357184962045 -0.004424604455820145 -0.0007929824275269598 -0.0001691005350168695 -0.006285932974201011 0.004801526090450746 0.12567401324145794 -0.005903567806763319 -0.004150523241843978 0.056887041181573825 0.0040367610136852914 0.039058818761440996 0.039872633043868747 0.003974936296886037 0.05155759372860272 0.12567401324145794 -0.005903567806763319 -0.004150523241843978 0.04393845881264769 -0.0019461466538980743 0.022522669791244218 0.015624183810634955 -0.004013153912217337 0.027621208293296687 0.12567401324145794 -0.005903567806763319 -0.004150523241843978 0.10158430643881591 0.009618766735112387 -0.029963370529926717 0.08195106589753848 0.008727480183569383 -0.05366292377586102 -0.017258049199604907 -0.0034141435745727706 -0.02693946363074947 -0.023073740768906822 -0.005033828741483189 0.008746040093186701 0.02400573183713083 0.004666092191333658 0.06188950113091296 -0.0078963290661958 -0.002325042087402012 0.03525502246566595 0.059733326545551996 0.01416045134502679 -0.06818704207519667 0.034983640661921805 0.013569596702817762 0.00349336101296119 0.13065357158599356 0.007186167845356323 -0.0026929442671740043 0.042556324945798696 0.012386524913759881 -0.023378933304271286 0.009877421431914057 0.008377169504374981 -0.02559600141530892 0.13065357158599356 0.007186167845356323 -0.0026929442671740043 0.03599313019415607 0.008665131196299497 0.0006645965471430136 0.004810457809518755 0.006803802677918631 0.006259105065120719 0.13065357158599356 0.007186167845356323 -0.0026929442671740043 0.061866599526109456 0.017126496665804933 0.040516397736110966 0.04485219138840437 0.01706467194900568 0.05301517270327269 0.13065357158599356 0.007186167845356323 -0.0026929442671740043 0.048918017157183316 0.011143588998221567 0.02398024876591419 0.02060374215517058 0.009076581739902306 0.029078787267966658 0.13065357158599356 0.007186167845356323 -0.0026929442671740043 0.10656386478335153 0.02270850238723203 -0.028505791555256746 0.08693062424207411 0.021817215835689026 -0.05220534480119105 -0.012278490855069282 0.009675592077546872 -0.0254818846560795 -0.018094182424371198 0.008055906910636453 0.010203619067856674 0.028985290181666453 0.017755827843453302 0.06334708010558293 -0.002916770721660175 0.01076469356471763 0.03671260144033592 0.06471288489008761 0.02725018699714643 -0.0667294631005267 0.035415681043073396 0.007810708753002853 0.005473525322656832 0.13108561196714513 0.0014272798955414145 -0.0007127799574783624 0.04298836532695029 0.006627636963944972 -0.021398768994575643 0.010309461813065648 0.0026182815545600724 -0.023615837105613276 0.13108561196714513 0.0014272798955414145 -0.0007127799574783624 0.03642517057530766 0.002906243246484588 0.0026447608568386555 0.005242498190670346 0.0010449147281037224 0.00823926937481636 0.13108561196714513 0.0014272798955414145 -0.0007127799574783624 0.06229863990726105 0.011367608715990025 0.04249656204580661 0.04528423176955596 0.01130578399919077 0.05499533701296833 0.13108561196714513 0.0014272798955414145 -0.0007127799574783624 0.04935005753833491 0.005384701048406659 0.025960413075609833 0.02103578253632217 0.0033176937900873966 0.0310589515776623 0.13108561196714513 0.0014272798955414145 -0.0007127799574783624 0.10699590516450312 0.01694961443741712 -0.026525627245561102 0.0873626646232257 0.016058327885874118 -0.05022518049149541 -0.011846450473917691 0.003916704127731963 -0.023501720346383856 -0.017662142043219607 0.0022970189608215444 0.012183783377552316 0.029417330562818044 0.01199693989363839 0.06532724441527857 -0.002484730340508584 0.005005805614902721 0.03869276575003156 0.06514492527123922 0.021491299047331523 -0.06474929879083105 0.03110404227505799 0.009040769469454632 0.006487121370730132 0.12677397319912975 0.0026573406119931933 0.00030081609059493756 0.03867672655893488 0.007857697680396751 -0.020385172946502342 0.005997823045050241 0.0038483422710118512 -0.022602241057539975 0.12677397319912975 0.0026573406119931933 0.00030081609059493756 0.032113531807292255 0.004136303962936367 0.0036583569049119555 0.000930859422654938 0.002274975444555501 0.009252865422889662 0.12677397319912975 0.0026573406119931933 0.00030081609059493756 0.05798700113924564 0.012597669432441803 0.04351015809387991 0.040972593001540554 0.01253584471564255 0.056008933061041634 0.12677397319912975 0.0026573406119931933 0.00030081609059493756 0.0450384187703195 0.006614761764858438 0.026974009123683133 0.016724143768306762 0.004547754506539175 0.0320725476257356 0.12677397319912975 0.0026573406119931933 0.00030081609059493756 0.10268426639648771 0.0181796751538689 -0.0255120311974878 0.08305102585521029 0.017288388602325896 -0.04921158444342211 -0.0161580892419331 0.005146764844183742 -0.022488124298310555 -0.021973780811235015 0.003527079677273323 0.013197379425625617 0.025105691794802636 0.01322700061009017 0.06634084046335187 -0.006796369108523992 0.006235866331354501 0.03970636179810486 0.0608332865032238 0.022721359763783304 -0.06373570274275776 0.030281048743567764 0.014678721953694383 0.003123387417430574 0.12595097966763952 0.008295293096232944 -0.00306291786270462 0.03785373302744465 0.013495650164636502 -0.0237489068998019 0.005174829513560016 0.009486294755251602 -0.025965975010839533 0.12595097966763952 0.008295293096232944 -0.00306291786270462 0.031290538275802034 0.009774256447176118 0.00029462295161239785 0.0001078658911647136 0.007912927928795253 0.0058891314695901035 0.12595097966763952 0.008295293096232944 -0.00306291786270462 0.05716400760775541 0.018235621916681554 0.04014642414058035 0.04014959947005033 0.0181737971998823 0.052645199107742076 0.12595097966763952 0.008295293096232944 -0.00306291786270462 0.04421542523882928 0.012252714249098188 0.023610275170383575 0.015901150236816538 0.010185706990778927 0.028708813672436044 0.12595097966763952 0.008295293096232944 -0.00306291786270462 0.10186127286499749 0.02381762763810865 -0.02887576515078736 0.08222803232372007 0.022926341086565646 -0.052575318396721665 -0.016981082773423323 0.010784717328423492 -0.025851858251610113 -0.02279677434272524 0.009165032161513074 0.009833645472326059 0.024282698263312412 0.018864953094329923 0.06297710651005231 -0.007619362640014216 0.011873818815594251 0.036342627844805304 0.060010292971733575 0.02835931224802305 -0.06709943669605732 0.03392964773986682 0.01628255654932036 -0.0023845267911932217 0.12959957866393856 0.009899127691858921 -0.008570832071328416 0.04150233202374371 0.01509948476026248 -0.029256821108425694 0.008823428509859073 0.01109012935087758 -0.03147388921946333 0.12959957866393856 0.009899127691858921 -0.008570832071328416 0.03493913727210109 0.011378091042802095 -0.005213291257011398 0.00375646488746377 0.00951676252442123 0.0003812172609663077 0.12959957866393856 0.009899127691858921 -0.008570832071328416 0.060812606604054464 0.01983945651230753 0.03463850993195656 0.043798198466349386 0.019777631795508278 0.04713728489911828 0.12959957866393856 0.009899127691858921 -0.008570832071328416 0.04786402423512833 0.013856548844724165 0.01810236096175978 0.019549749233115594 0.011789541586404904 0.02320089946381225 0.12959957866393856 0.009899127691858921 -0.008570832071328416 0.10550987186129654 0.025421462233734628 -0.034383679359411154 0.08587663132001913 0.024530175682191624 -0.05808323260534546 -0.013332483777124267 0.01238855192404947 -0.03135977246023391 -0.019148175346426183 0.010768866757139051 0.0043257312637022625 0.02793129725961147 0.0204687876899559 0.05746919230142852 -0.00397076364371516 0.013477653411220229 0.03083471363618151 0.06365889196803264 0.02996314684364903 -0.07260735090468111 0.028634233491063248 0.016619143282820305 -0.002668091447603274 0.124304164415135 0.010235714425358866 -0.008854396727738467 0.03620691777494014 0.015436071493762424 -0.02954038576483575 0.0035280142610554996 0.011426716084377524 -0.03175745387587338 0.124304164415135 0.010235714425358866 -0.008854396727738467 0.029643723023297517 0.01171467777630204 -0.00549685591342145 -0.001538949361339803 0.009853349257921175 9.765260455625547e-05 0.124304164415135 0.010235714425358866 -0.008854396727738467 0.05551719235525089 0.020176043245807476 0.03435494527554651 0.03850278421754581 0.020114218529008222 0.04685372024270823 0.124304164415135 0.010235714425358866 -0.008854396727738467 0.04256860998632476 0.01419313557822411 0.017818796305349726 0.014254334984312021 0.012126128319904849 0.022917334807402195 0.124304164415135 0.010235714425358866 -0.008854396727738467 0.10021445761249298 0.025758048967234572 -0.034667244015821205 0.08058121707121554 0.02486676241569157 -0.05836679726175551 -0.01862789802592784 0.012725138657549415 -0.03164333711664396 -0.024443589595229756 0.011105453490638996 0.00404216660729221 0.022635883010807895 0.02080537442345584 0.05718562764501847 -0.009266177892518733 0.013814240144720174 0.030551148979771455 0.05836347771922906 0.030299733577148977 -0.07289091556109116 0.02549214103104232 0.015757446158397005 0.003979311287823295 0.12116207195511407 0.009374017300935567 -0.0022069939923118993 0.03306482531491921 0.014574374369339125 -0.02289298302940918 0.0003859218010345729 0.010565018959954224 -0.02511005114044681 0.12116207195511407 0.009374017300935567 -0.0022069939923118993 0.02650163056327659 0.01085298065187874 0.0011505468220051186 -0.00468104182136073 0.008991652133497875 0.006745055339982825 0.12116207195511407 0.009374017300935567 -0.0022069939923118993 0.05237509989522997 0.019314346121384177 0.04100234801097307 0.03536069175752489 0.019252521404584923 0.053501122978134794 0.12116207195511407 0.009374017300935567 -0.0022069939923118993 0.039426517526303835 0.01333143845380081 0.024466199040776297 0.011112242524291095 0.01126443119548155 0.029564737542828765 0.12116207195511407 0.009374017300935567 -0.0022069939923118993 0.09707236515247204 0.024896351842811273 -0.028019841280394638 0.07743912461119462 0.02400506529126827 -0.05171939452632895 -0.021769990485948767 0.011863441533126115 -0.024995934381217392 -0.027585682055250683 0.010243756366215696 0.01068956934271878 0.01949379055078697 0.01994367729903254 0.06383303038044504 -0.01240827035253966 0.012952543020296874 0.03719855171519802 0.05522138525920814 0.029438036452725677 -0.0662435128256646 0.02567542811975318 0.009366464375351 0.00722229016776783 0.12134535904382493 0.0029830355178895613 0.001035984887632636 0.03324811240363007 0.00818339258629312 -0.019650004149464644 0.0005692088897454317 0.004174037176908219 -0.021867072260502277 0.12134535904382493 0.0029830355178895613 0.001035984887632636 0.02668491765198745 0.004461998868832735 0.0043935257019496535 -0.004497754732649871 0.002600670350451869 0.009988034219927359 0.12134535904382493 0.0029830355178895613 0.001035984887632636 0.05255838698394083 0.012923364338338171 0.044245326890917605 0.035543978846235745 0.012861539621538916 0.056744101858079335 0.12134535904382493 0.0029830355178895613 0.001035984887632636 0.03960980461501469 0.006940456670754806 0.02770917792072083 0.011295529613001953 0.004873449412435543 0.0328077164227733 0.12134535904382493 0.0029830355178895613 0.001035984887632636 0.0972556522411829 0.01850537005976527 -0.024776862400450104 0.07762241169990548 0.017614083508222265 -0.04847641564638441 -0.021586703397237908 0.00547245975008011 -0.021752955501272857 -0.027402394966539824 0.003852774583169691 0.013932548222663314 0.019677077639497827 0.013552695515986538 0.06707600926038958 -0.0122249832638288 0.006561561237250869 0.040441530595142564 0.055404672347918994 0.02304705466967967 -0.06300053394572006 0.0043867480421829735 0.008502754826172052 0.010318434733634616 0.10005667896625473 0.0021193259687106135 0.004132129453499422 0.011959432326059862 0.007319683037114171 -0.016553859583597858 -0.020719471187824773 0.0033103276277292714 -0.01877092769463549 0.10005667896625473 0.0021193259687106135 0.004132129453499422 0.005396237574417243 0.003598289319653787 0.0074896702678164395 -0.025786434810220075 0.0017369608012729213 0.013084178785794145 0.10005667896625473 0.0021193259687106135 0.004132129453499422 0.03126970690637062 0.012059654789159224 0.0473414714567844 0.01425529876866554 0.01199783007235997 0.059840246423946114 0.10005667896625473 0.0021193259687106135 0.004132129453499422 0.018321124537444486 0.006076747121575858 0.030805322486587617 -0.009993150464568253 0.0040097398632565956 0.03590386098864008 0.10005667896625473 0.0021193259687106135 0.004132129453499422 0.0759669721636127 0.01764166051058632 -0.021680717834583318 0.05633373162233528 0.016750373959043316 -0.04538027108051762 -0.04287538347480811 0.004608750200901162 -0.01865681093540607 -0.04869107504411003 0.0029890650339907433 0.0170286927885301 -0.001611602438072378 0.01268898596680759 0.07017215382625636 -0.033513663341399005 0.005697851688071921 0.04353767516100934 0.03411599227034879 0.02218334512050072 -0.059904389379853276 0.0046242568317915985 0.015418243866267662 0.007571629459701451 0.10029418775586335 0.009034815008806223 0.001385324179566257 0.012196941115668488 0.014235172077209781 -0.019300664857531024 -0.02048196239821615 0.010225816667824881 -0.021517732968568657 0.10029418775586335 0.009034815008806223 0.001385324179566257 0.005633746364025867 0.010513778359749397 0.0047428649938832754 -0.025548926020611453 0.00865244984136853 0.010337373511860981 0.10029418775586335 0.009034815008806223 0.001385324179566257 0.031507215695979245 0.018975143829254835 0.04459466618285123 0.014492807558274166 0.018913319112455577 0.057093441150012955 0.10029418775586335 0.009034815008806223 0.001385324179566257 0.018558633327053112 0.012992236161671469 0.02805851721265445 -0.009755641674959629 0.010925228903352204 0.03315705571470692 0.10029418775586335 0.009034815008806223 0.001385324179566257 0.07620448095322133 0.02455714955068193 -0.024427523108516484 0.056571240411943904 0.023665862999138927 -0.048127076354450786 -0.04263787468519949 0.011524239240996772 -0.021403616209339237 -0.0484535662545014 0.009904554074086353 0.014281887514596935 -0.001374093648463753 0.0196044750069032 0.0674253485523232 -0.03327615455179038 0.01261334072816753 0.040790869887076184 0.034353501059957416 0.029098834160596332 -0.06265119465378644 0.0014718055127141778 -0.0028996741072770628 -0.003462691865655344 0.09714173643678593 -0.009283102964738502 -0.009648997145790539 0.009044489796591067 -0.004082745896334944 -0.030334986182887817 -0.02363441371729357 -0.008092101305719843 -0.03255205429392545 0.09714173643678593 -0.009283102964738502 -0.009648997145790539 0.0024812950449484466 -0.007804139613795328 -0.00629145633147352 -0.028701377339688874 -0.009665468132176194 -0.0006969478134958144 0.09714173643678593 -0.009283102964738502 -0.009648997145790539 0.028354764376901823 0.0006572258557101091 0.033560344857494435 0.011340356239196745 0.0005954011389108539 0.04605911982465616 0.09714173643678593 -0.009283102964738502 -0.009648997145790539 0.01540618200797569 -0.005325681811873257 0.017024195887297658 -0.012908092994037048 -0.007392689070192519 0.022122734389350127 0.09714173643678593 -0.009283102964738502 -0.009648997145790539 0.07305202963414391 0.006239231577137205 -0.03546184443387328 0.05341878909286648 0.005347945025594201 -0.05916139767980758 -0.04579032600427691 -0.006793678732547953 -0.03243793753469603 -0.05160601757357883 -0.008413363899458372 0.0032475661892401404 -0.0045265449675411734 0.0012865570333584755 0.0563910272269664 -0.036428605870867804 -0.005704577245377195 0.029756548561719387 0.03120104974087999 0.010780916187051608 -0.07368551597914323 0.002677002224488801 0.0001955743521799071 -0.005645498130537017 0.09834693314856055 -0.0061878545052815315 -0.01183180341067221 0.01024968650836569 -0.0009874974368779743 -0.03251779244776949 -0.022429217005518948 -0.0049968528462628736 -0.034734860558807125 0.09834693314856055 -0.0061878545052815315 -0.01183180341067221 0.00368649175672307 -0.004708891154338358 -0.008474262596355192 -0.02749618062791425 -0.006570219672719224 -0.0028797540783774872 0.09834693314856055 -0.0061878545052815315 -0.01183180341067221 0.029559961088676447 0.003752474315167079 0.03137753859261276 0.012545552950971369 0.003690649598367824 0.043876313559774484 0.09834693314856055 -0.0061878545052815315 -0.01183180341067221 0.016611378719750314 -0.0022304333524162867 0.014841389622415983 -0.011702896282262426 -0.004297440610735549 0.019939928124468452 0.09834693314856055 -0.0061878545052815315 -0.01183180341067221 0.07425722634591853 0.009334480036594175 -0.03764465069875495 0.054623985804641104 0.008443193485051171 -0.06134420394468926 -0.04458512929250229 -0.003698430273090983 -0.034620743799577705 -0.0504008208618042 -0.005318115440001402 0.0010647599243584676 -0.0033213482557665503 0.0043818054928154455 0.054208220962084726 -0.03522340915909318 -0.0026093287859202245 0.027573742296837712 0.032406246452654615 0.013876164646508577 -0.0758683222440249 0.03536318573006083 0.002887595202503255 0.00410766152400663 0.1310331166541326 -0.003495833654958184 -0.002078643756128564 0.04293587001393772 0.0017045234134453735 -0.022764632793225846 0.010256966500053082 -0.002304831995939526 -0.02498170090426348 0.1310331166541326 -0.003495833654958184 -0.002078643756128564 0.036372675262295096 -0.0020168703040150102 0.0012788970581884538 0.005190002877657779 -0.003878198822395876 0.006873405576166159 0.1310331166541326 -0.003495833654958184 -0.002078643756128564 0.06224614459424847 0.006444495165490427 0.04113069824715641 0.045231736456543395 0.006382670448691171 0.05362947321431813 0.1310331166541326 -0.003495833654958184 -0.002078643756128564 0.04929756222532234 0.0004615874979070609 0.02459454927695963 0.020983287223309603 -0.0016054197604122018 0.029693087779012098 0.1310331166541326 -0.003495833654958184 -0.002078643756128564 0.10694340985149056 0.012026500886917523 -0.027891491044211306 0.08731016931021313 0.011135214335374519 -0.05159104429014561 -0.011898945786930258 -0.0010064094227676353 -0.02486758414503406 -0.017714637356232174 -0.002626094589678054 0.010817919578902114 0.029364835249805477 0.0070738263431387935 0.06396138061662837 -0.002537225653521151 8.269206440312312e-05 0.03732690195138136 0.06509242995822664 0.016568185496831925 -0.06611516258948126 0.030869613531102433 0.003963780466860301 0.005223765408641514 0.12653954445517418 -0.0024196483906011373 -0.0009625398714936803 0.03844229781497932 0.00278070867780242 -0.02164852890859096 0.0057633943010946855 -0.0012286467315824794 -0.023865597019628593 0.12653954445517418 -0.0024196483906011373 -0.0009625398714936803 0.0318791030633367 -0.0009406850396579637 0.0023950009428233376 0.0006964306786993828 -0.0028020135580388295 0.007989509460801044 0.12653954445517418 -0.0024196483906011373 -0.0009625398714936803 0.05775257239529008 0.007520680429847474 0.04224680213179129 0.040738164257585 0.007458855713048218 0.054745577098953016 0.12653954445517418 -0.0024196483906011373 -0.0009625398714936803 0.04480399002636395 0.0015377727622641075 0.025710653161594516 0.016489715024351207 -0.0005292344960551552 0.030809191663646984 0.12653954445517418 -0.0024196483906011373 -0.0009625398714936803 0.10244983765253216 0.013102686151274568 -0.02677538715957642 0.08281659711125473 0.012211399599731564 -0.050474940405510725 -0.016392517985888654 6.977584158941123e-05 -0.023751480260399173 -0.02220820955519057 -0.0015499093253210075 0.011934023463536999 0.02487126305084708 0.00815001160749584 0.06507748450126326 -0.007030797852479547 0.0011588773287601697 0.038443005836016245 0.06059885775926825 0.017644370761188972 -0.06499905870484637 0.022903160206352222 0.0010386513954591169 -0.010412330652026411 0.11857309113042397 -0.005344777462002322 -0.016598635932161605 0.03047584449022911 -0.0001444203935987644 -0.037284624969258884 -0.0022030590236555257 -0.004153775802983664 -0.03950169308029652 0.11857309113042397 -0.005344777462002322 -0.016598635932161605 0.02391264973858649 -0.0038658141110591484 -0.013241095117844588 -0.007270022646050828 -0.005727142629440014 -0.007646586599866882 0.11857309113042397 -0.005344777462002322 -0.016598635932161605 0.04978611907053987 0.004595551358446289 0.02661070607112337 0.03277171093283479 0.004533726641647033 0.03910948103828509 0.11857309113042397 -0.005344777462002322 -0.016598635932161605 0.036837536701613736 -0.001387356309137077 0.01007455710092659 0.008523261699600996 -0.00345436356745634 0.015173095602979058 0.11857309113042397 -0.005344777462002322 -0.016598635932161605 0.09448338432778194 0.010177557079873384 -0.04241148322024434 0.07485014378650452 0.00928627052833038 -0.06611103646617865 -0.024358971310638865 -0.0028553532298117735 -0.0393875763210671 -0.03017466287994078 -0.004475038396722192 -0.003702072597130927 0.01690480972609687 0.005224882536094655 0.049441388440595334 -0.014997251177229758 -0.0017662517426410148 0.02280690977534832 0.05263240443451804 0.014719241689787787 -0.0806351547655143 0.023356022358531 -0.0023930070675403326 -0.006200784909995932 0.11902595328260275 -0.008776435925001772 -0.012387090190131126 0.03092870664240789 -0.003576078856598214 -0.03307307922722841 -0.0017501968714767474 -0.007585434265983113 -0.03529014733826604 0.11902595328260275 -0.008776435925001772 -0.012387090190131126 0.02436551189076527 -0.007297472574058598 -0.009029549375814109 -0.00681716049387205 -0.009158801092439463 -0.0034350408578364025 0.11902595328260275 -0.008776435925001772 -0.012387090190131126 0.05023898122271865 0.0011638928954468392 0.030822251813153845 0.033224573085013566 0.001102068178647584 0.04332102678031557 0.11902595328260275 -0.008776435925001772 -0.012387090190131126 0.03729039885379251 -0.0048190147721365265 0.014286102842957069 0.008976123851779774 -0.006886022030455789 0.019384641345009536 0.11902595328260275 -0.008776435925001772 -0.012387090190131126 0.09493624647996073 0.006745898616873935 -0.03819993747821387 0.0753030059386833 0.005854612065330931 -0.06189949072414817 -0.023906109158460087 -0.006287011692811223 -0.03517603057903662 -0.029721800727762003 -0.007906696859721642 0.0005094731448995523 0.017357671878275648 0.0017932240730952056 0.05365293418262581 -0.01454438902505098 -0.005197910205640465 0.027018455517378796 0.053085266586696815 0.011287583226788338 -0.07642360902348382 0.028681696173761952 -0.00041528909858466463 -0.008030337487648911 0.1243516270978337 -0.0067987179560461035 -0.014216642767784105 0.03625438045763884 -0.001598360887642546 -0.03490263180488139 0.0035754769437542043 -0.005607716297027446 -0.03711969991591902 0.1243516270978337 -0.0067987179560461035 -0.014216642767784105 0.02969118570599622 -0.00531975460510293 -0.010859101953467088 -0.0014914866786410984 -0.007181083123483796 -0.005264593435489382 0.1243516270978337 -0.0067987179560461035 -0.014216642767784105 0.0555646550379496 0.0031416108644025074 0.028992699235500866 0.03855024690024452 0.003079786147603252 0.04149147420266259 0.1243516270978337 -0.0067987179560461035 -0.014216642767784105 0.042616072669023466 -0.0028412968031808587 0.01245655026530409 0.014301797667010726 -0.0049083040615001215 0.017555088767356557 0.1243516270978337 -0.0067987179560461035 -0.014216642767784105 0.10026192029519168 0.008723616585829604 -0.04002949005586685 0.08062867975391426 0.0078323300342866 -0.06372904330180115 -0.018580435343229135 -0.004309293723855555 -0.0370055831566896 -0.02439612691253105 -0.005928978890765974 -0.0013200794327534269 0.0226833456935066 0.0037709420420508734 0.05182338160497283 -0.009218715209820028 -0.003220192236684796 0.025188902939725817 0.05841094040192776 0.013265301195744006 -0.0782531616011368 0.028443259992599133 0.0035916875185384774 -0.011730074400404803 0.12411319091667089 -0.0027917413389229612 -0.017916379680539996 0.036015944276476024 0.002408615729480596 -0.03860236871763728 0.0033370407625913853 -0.0016007396799043033 -0.04081943682867491 0.12411319091667089 -0.0027917413389229612 -0.017916379680539996 0.029452749524833403 -0.0013127779879797876 -0.01455883886622298 -0.0017299228598039174 -0.0031741065063606534 -0.008964330348245274 0.12411319091667089 -0.0027917413389229612 -0.017916379680539996 0.05532621885678678 0.007148587481525649 0.025292962322744975 0.0383118107190817 0.007086762764726394 0.0377917372899067 0.12411319091667089 -0.0027917413389229612 -0.017916379680539996 0.042377636487860644 0.0011656798139422836 0.008756813352548198 0.014063361485847907 -0.0009013274443769792 0.013855351854600666 0.12411319091667089 -0.0027917413389229612 -0.017916379680539996 0.10002348411402887 0.012730593202952745 -0.043729226968622734 0.08039024357275143 0.011839306651409741 -0.06742878021455705 -0.018818871524391954 -0.0003023171067324127 -0.040705320069445494 -0.02463456309369387 -0.0019220022736428314 -0.005019816345509319 0.02244490951234378 0.007777918659174016 0.048123644692216944 -0.009457151390982847 0.0007867843804383458 0.021489166026969927 0.05817250422076495 0.017272277812867148 -0.08195289851389269 0.0022510027457281153 -0.0001543984102331646 0.008345949607550902 0.09792093366979987 -0.006537827267694603 0.002159644327415708 0.009823687029605004 -0.0013374701992910458 -0.01852634470968157 -0.02285521648427963 -0.005346825608675945 -0.020743412820719204 0.09792093366979987 -0.006537827267694603 0.002159644327415708 0.0032604922779623843 -0.005058863916751429 0.005517185141732725 -0.027922180106674934 -0.006920192435132295 0.011111693659710431 0.09792093366979987 -0.006537827267694603 0.002159644327415708 0.029133961609915764 0.003402501552754007 0.04536898633070068 0.012119553472210682 0.003340676835954752 0.057867761297862405 0.09792093366979987 -0.006537827267694603 0.002159644327415708 0.016185379240989627 -0.0025804061148293586 0.028832837360503905 -0.012128895761023111 -0.004647413373148621 0.03393137586255637 0.09792093366979987 -0.006537827267694603 0.002159644327415708 0.07383122686715785 0.008984507274181102 -0.02365320296066703 0.054197986325880416 0.008093220722638099 -0.047352756206601336 -0.045011128771262975 -0.0040484030355040545 -0.020629296061489784 -0.05082682034056489 -0.005668088202414473 0.015056207662446386 -0.003747347734527236 0.004031832730402374 0.06819966870017265 -0.03564940863785387 -0.0029593015483332964 0.041565190034925634 0.03198024697389393 0.013526191884095505 -0.061876874505936985 0.0008849154089909112 -0.0023776655991438137 0.002478561231130136 0.09655484633306266 -0.008761094456605252 -0.003707744049005058 0.0084575996928678 -0.003560737388201695 -0.024393733086102338 -0.024221303821016837 -0.0075700927975865945 -0.02661080119713997 0.09655484633306266 -0.008761094456605252 -0.003707744049005058 0.0018944049412251802 -0.007282131105662079 -0.00035020323468804015 -0.02928826744341214 -0.009143459624042945 0.0052443052832896655 0.09655484633306266 -0.008761094456605252 -0.003707744049005058 0.027767874273178558 0.0011792343638433581 0.03950159795427991 0.010753466135473478 0.001117409647044103 0.052000372921441634 0.09655484633306266 -0.008761094456605252 -0.003707744049005058 0.014819291904252423 -0.004803673303740008 0.022965448984083137 -0.013494983097760316 -0.00687068056205927 0.028063987486135606 0.09655484633306266 -0.008761094456605252 -0.003707744049005058 0.07246513953042064 0.006761240085270454 -0.029520591337087797 0.052831898989143214 0.00586995353372745 -0.05322014458302211 -0.04637721610800018 -0.006271670224414704 -0.02649668443791055 -0.05219290767730209 -0.007891355391325123 0.00918881928602562 -0.00511343507126444 0.0018085655414917245 0.062332280323751876 -0.03701549597459107 -0.005182568737243945 0.03569780165850486 0.030614159637156725 0.011302924695184857 -0.06774426288235776 0.0037907756554923055 0.0033687916639043177 0.0099221252294965 0.09946070657956406 -0.003014637193557121 0.003735819949361306 0.011363459939369195 0.0021857198748464366 -0.016950169087735972 -0.021315443574515442 -0.001823635534538463 -0.019167237198773605 0.09946070657956406 -0.003014637193557121 0.003735819949361306 0.0048002651877265745 -0.0015356738426139474 0.007093360763678324 -0.026382407196910745 -0.003397002360994813 0.01268786928165603 0.09946070657956406 -0.003014637193557121 0.003735819949361306 0.030673734519679953 0.0069256916268914896 0.04694516195264628 0.013659326381974873 0.006863866910092234 0.059443936919808 0.09946070657956406 -0.003014637193557121 0.003735819949361306 0.017725152150753817 0.0009427839593081238 0.030409012982449503 -0.01058912285125892 -0.001124223299011139 0.03550755148450197 0.09946070657956406 -0.003014637193557121 0.003735819949361306 0.07537099977692203 0.012507697348318586 -0.022077027338721432 0.055737759235644606 0.011616410796775582 -0.04577658058465574 -0.043471355861498785 -0.0005252129613665724 -0.019053120439544186 -0.0492870474308007 -0.002144898128276991 0.016632383284391983 -0.002207574824763046 0.007555022804539856 0.06977584432211824 -0.03410963572808968 0.000563888525804186 0.04314136565687123 0.03352001988365812 0.01704938195823299 -0.06030069888399139 0.02281463357991909 0.007391876861162398 -0.012205547002150825 0.11848456450399084 0.0010084480037009591 -0.01839185228228602 0.030387317863795976 0.006208805072104516 -0.0390778413193833 -0.0022915856500886587 0.002199449662719617 -0.04129490943042093 0.11848456450399084 0.0010084480037009591 -0.01839185228228602 0.02382412311215336 0.0024874113546441328 -0.015034311467969002 -0.007358549272483961 0.000626082836263267 -0.009439802949991296 0.11848456450399084 0.0010084480037009591 -0.01839185228228602 0.049697592444106736 0.01094877682414957 0.024817489720998953 0.03268318430640166 0.010886952107350314 0.037316264688160676 0.11848456450399084 0.0010084480037009591 -0.01839185228228602 0.0367490100751806 0.004965869156566204 0.008281340750802176 0.008434735073167863 0.002898861898246941 0.013379879252854644 0.11848456450399084 0.0010084480037009591 -0.01839185228228602 0.09439485770134881 0.016530782545576665 -0.04420469957036876 0.07476161716007139 0.01563949599403366 -0.06790425281630307 -0.024447497937072 0.0034978722358915077 -0.04118079267119151 -0.030263189506373914 0.001878187068981089 -0.005495288947255341 0.016816283099663737 0.011578108001797937 0.04764817209047092 -0.015085777803662891 0.004586973723062266 0.021013693425223905 0.05254387780808491 0.02107246715549107 -0.08242837111563872 0.023013141650915867 0.013996403787469148 -0.010404857717834273 0.11868307257498761 0.0076129749300077095 -0.016591162997969467 0.030585825934792754 0.012813331998411268 -0.03727715203506675 -0.002093077579091881 0.008803976589026367 -0.03949422014610438 0.11868307257498761 0.0076129749300077095 -0.016591162997969467 0.024022631183150137 0.009091938280950883 -0.01323362218365245 -0.0071600412014871835 0.007230609762570017 -0.007639113665674744 0.11868307257498761 0.0076129749300077095 -0.016591162997969467 0.049896100515103514 0.01755330375045632 0.026618179005315504 0.032881692377398436 0.017491479033657064 0.03911695397247723 0.11868307257498761 0.0076129749300077095 -0.016591162997969467 0.03694751814617738 0.011570396082872955 0.010082030035118728 0.00863324314416464 0.00950338882455369 0.015180568537171197 0.11868307257498761 0.0076129749300077095 -0.016591162997969467 0.09459336577234559 0.023135309471883414 -0.04240401028605221 0.07496012523106817 0.02224402292034041 -0.06610356353198651 -0.02424898986607522 0.010102399162198258 -0.03938010338687496 -0.030064681435377136 0.00848271399528784 -0.0036945996629387887 0.017014791170660515 0.018182634928104686 0.04944886137478747 -0.014887269732666113 0.011191500649369017 0.022814382709540455 0.052742385879081685 0.02767699408179782 -0.08062768183132216 0.003759405132204626 0.015077557371877045 -0.006762541715917102 0.09942933605627638 0.008694128514415606 -0.012948846996052296 0.011332089416081515 0.013894485582819164 -0.033634836033149575 -0.021346814097803122 0.009885130173434264 -0.03585190414418721 0.09942933605627638 0.008694128514415606 -0.012948846996052296 0.0047688946644388955 0.01017309186535878 -0.009591306181735279 -0.026413777720198425 0.008311763346977915 -0.003996797663757573 0.09942933605627638 0.008694128514415606 -0.012948846996052296 0.030642363996392273 0.018634457334864216 0.030260495007232678 0.013627955858687193 0.018572632618064962 0.0427592699743944 0.09942933605627638 0.008694128514415606 -0.012948846996052296 0.01769378162746614 0.01265154966728085 0.013724346037035899 -0.0106204933745466 0.01058454240896159 0.01882288453908837 0.09942933605627638 0.008694128514415606 -0.012948846996052296 0.07533962925363435 0.024216463056291312 -0.038761694284135034 0.05570638871235693 0.02332517650474831 -0.06246124753006934 -0.04350272638478646 0.011183552746606155 -0.03573778738495779 -0.04931841795408838 0.009563867579695736 -5.228366102161784e-05 -0.0022389453480507254 0.019263788512512585 0.05309117737670464 -0.03414100625137735 0.012272654233776914 0.02645669871145763 0.03348864936037044 0.028758147666205713 -0.07698536582940499 0.004020505630296293 0.008461751423038325 -0.00876285969373577 0.09969043655436804 0.002078322565576886 -0.014949164973870964 0.011593189914173182 0.007278679633980443 -0.03563515401096824 -0.021085713599711453 0.003269324224595544 -0.037852222122005875 0.09969043655436804 0.002078322565576886 -0.014949164973870964 0.005029995162530563 0.00355728591652006 -0.011591624159553946 -0.026152677222106756 0.001695957398139194 -0.005997115641576241 0.09969043655436804 0.002078322565576886 -0.014949164973870964 0.03090346449448394 0.012018651386025496 0.02826017702941401 0.01388905635677886 0.01195682666922624 0.04075895199657573 0.09969043655436804 0.002078322565576886 -0.014949164973870964 0.017954882125557806 0.006035743718442131 0.011724028059217231 -0.010359392876454933 0.003968736460122868 0.0168225665612697 0.09969043655436804 0.002078322565576886 -0.014949164973870964 0.07560072975172602 0.017600657107452594 -0.0407620122619537 0.0559674892104486 0.01670937055590959 -0.06446156550788801 -0.04324162588669479 0.004567746797767435 -0.037738105362776456 -0.04905731745599671 0.002948061630857016 -0.0020526016388402856 -0.0019778448499590583 0.012647982563673863 0.051090859398885975 -0.033879905753285686 0.005656848284938194 0.024456380733638962 0.03374974985846211 0.022142341717366995 -0.07898568380722366 0.02571681936326598 0.0036241132518717947 0.00698169602324446 0.12138675028733772 -0.002759315605589644 0.000795390743109266 0.03328950364714287 0.0024410414628139136 -0.019890598293988013 0.0006106001332582336 -0.001568313946570986 -0.022107666405025646 0.12138675028733772 -0.002759315605589644 0.000795390743109266 0.02672630889550025 -0.0012803522546464704 0.004152931557426284 -0.004456363489137069 -0.003141680773027336 0.00974744007540399 0.12138675028733772 -0.002759315605589644 0.000795390743109266 0.052599778227453625 0.0071810132148589665 0.044004732746394236 0.03558537008974855 0.007119188498059712 0.05650350771355596 0.12138675028733772 -0.002759315605589644 0.000795390743109266 0.03965119585852749 0.0011981055472756008 0.027468583776197462 0.011336920856514755 -0.0008689017110436619 0.03256712227824993 0.12138675028733772 -0.002759315605589644 0.000795390743109266 0.0972970434846957 0.012763018936286062 -0.025017456544973473 0.07766380294341829 0.011871732384743058 -0.04871700979090778 -0.021545312153725106 -0.00026989137339909547 -0.021993549645796227 -0.027361003723027022 -0.0018895765403095142 0.013691954078139945 0.01971846888301063 0.0078103443925073325 0.0668354151158662 -0.012183592020315999 0.000819210113771663 0.04020093645061919 0.055446063591431796 0.017304703546200464 -0.06324112809024343 0.024202093872730843 -0.0027412462917346886 -0.0007659120934576821 0.11987202479680259 -0.009124675149196126 -0.006952217373592876 0.03177477815660773 -0.00392431808079257 -0.027638206410690157 -0.0009041253572769047 -0.00793367349017747 -0.02985527452172779 0.11987202479680259 -0.009124675149196126 -0.006952217373592876 0.025211583404965113 -0.007645711798252954 -0.0035946765592758585 -0.005971088979672207 -0.00950704031663382 0.001999831958701847 0.11987202479680259 -0.009124675149196126 -0.006952217373592876 0.05108505273691849 0.0008156536712524832 0.0362571246296921 0.03407064459921341 0.000753828954453228 0.04875589959685382 0.11987202479680259 -0.009124675149196126 -0.006952217373592876 0.03813647036799236 -0.0051672539963308825 0.019720975659495318 0.009822195365979617 -0.007234261254650145 0.024819514161547786 0.11987202479680259 -0.009124675149196126 -0.006952217373592876 0.09578231799416057 0.006397659392679579 -0.032765064661675614 0.07614907745288314 0.005506372841136575 -0.05646461790760992 -0.023060037644260244 -0.006635250917005579 -0.02974115776249837 -0.02887572921356216 -0.008254936083915997 0.005944345961437802 0.01820374339247549 0.0014449848489008496 0.059087806999164064 -0.013698317510851137 -0.005546149429834821 0.03245332833391705 0.05393133810089666 0.01093934400259398 -0.07098873620694557 0.025030042333602506 -0.0011011084506707446 0.003945384685384599 0.12069997325767426 -0.007484537308132183 -0.0022409205947505955 0.03260272661747939 -0.002284180239728626 -0.022926909631847875 -7.617689640524242e-05 -0.006293535649113525 -0.025143977742885508 0.12069997325767426 -0.007484537308132183 -0.0022409205947505955 0.026039531865836775 -0.00600557395718901 0.0011166202195664224 -0.005143140518800545 -0.007866902475569875 0.006711128737544128 0.12069997325767426 -0.007484537308132183 -0.0022409205947505955 0.05191300119779015 0.0024557915123164273 0.04096842140853438 0.034898593060085074 0.002393966795517172 0.0534671963756961 0.12069997325767426 -0.007484537308132183 -0.0022409205947505955 0.03896441882886402 -0.0035271161552669385 0.0244322724383376 0.01065014382685128 -0.005594123413586201 0.02953081094039007 0.12069997325767426 -0.007484537308132183 -0.0022409205947505955 0.09661026645503223 0.008037797233743524 -0.028053767882833335 0.07697702591375481 0.007146510682200519 -0.05175332112876764 -0.022232089183388582 -0.004995113075941635 -0.025029860983656088 -0.028047780752690498 -0.006614798242852053 0.010655642740280084 0.019031691853347153 0.0030851226899647937 0.06379910377800634 -0.012870369049979475 -0.0039060115887708763 0.03716462511275933 0.05475928656176832 0.012579481843657925 -0.0662774394281033 0.02392146823519918 0.01714431660420649 -0.0029873846287948465 0.11959139915927093 0.010760887746745051 -0.009173689908930041 0.03149415251907607 0.015961244815148608 -0.02985967894602732 -0.0011847509948085672 0.01195188940576371 -0.03207674705706495 0.11959139915927093 0.010760887746745051 -0.009173689908930041 0.02493095776743345 0.012239851097688225 -0.005816149094613023 -0.00625171461720387 0.01037852257930736 -0.00022164057663531713 0.11959139915927093 0.010760887746745051 -0.009173689908930041 0.05080442709938683 0.02070121656719366 0.03403565209435493 0.033790018961681746 0.020639391850394408 0.046534427061516656 0.11959139915927093 0.010760887746745051 -0.009173689908930041 0.03785584473046069 0.014718308899610295 0.017499503124158156 0.009541569728447954 0.012651301641291034 0.022598041626210624 0.11959139915927093 0.010760887746745051 -0.009173689908930041 0.0955016923566289 0.026283222288620758 -0.03498653719701278 0.07586845181535148 0.025391935737077754 -0.058686090442947085 -0.023340663281791907 0.0132503119789356 -0.03196263029783553 -0.029156354851093823 0.011630626812025181 0.0037228734261006377 0.01792311775494383 0.021330547744842027 0.0568663344638269 -0.0139789431483828 0.014339413466106359 0.030231855798579885 0.053650712463364995 0.030824906898535162 -0.07321020874228273 0.028588129465085637 0.014341407704133924 -0.010129930557422142 0.12425806038915739 0.007957978846672485 -0.016316235837557334 0.036160813748962524 0.013158335915076043 -0.03700222487465461 0.003481910235077889 0.009148980505691143 -0.03921929298569225 0.12425806038915739 0.007957978846672485 -0.016316235837557334 0.029597618997319906 0.009436942197615658 -0.012958695023240319 -0.0015850533873174137 0.007575613679234793 -0.007364186505262613 0.12425806038915739 0.007957978846672485 -0.016316235837557334 0.055471088329273284 0.017898307667121097 0.026893106165727636 0.038456680191568206 0.01783648295032184 0.039391881132889356 0.12425806038915739 0.007957978846672485 -0.016316235837557334 0.04252250596034715 0.01191539999953773 0.010356957195530859 0.01420823095833441 0.009848392741218466 0.015455495697583328 0.12425806038915739 0.007957978846672485 -0.016316235837557334 0.10016835358651537 0.02348031338854819 -0.04212908312564008 0.08053511304523794 0.022589026837005186 -0.06582863637157438 -0.01867400205190545 0.010447403078863033 -0.039105176226462826 -0.024489693621207367 0.008827717911952615 -0.0034196725025266578 0.022589778984830285 0.018527638844769462 0.0497237885351996 -0.009312281918496344 0.011536504566033792 0.023089309869952588 0.05831737369325145 0.028021997998462594 -0.08035275467091003 0.04606805397654758 0.009635142871437574 -0.013198373111565373 0.14173798490061934 0.0032517140139761355 -0.019384678391700567 0.05364073826042447 0.008452071082379694 -0.04007066742879785 0.02096183474653983 0.004442715672994793 -0.04228773553983548 0.14173798490061934 0.0032517140139761355 -0.019384678391700567 0.04707754350878184 0.004730677364919309 -0.016027137577383548 0.015894871124144526 0.0028693488465384434 -0.010432629059405844 0.14173798490061934 0.0032517140139761355 -0.019384678391700567 0.07295101284073523 0.013192042834424746 0.023824663611584404 0.05593660470303014 0.013130218117625492 0.03632343857874613 0.14173798490061934 0.0032517140139761355 -0.019384678391700567 0.06000243047180909 0.00720913516684138 0.007288514641387628 0.03168815546979635 0.005142127908522118 0.012387053143440097 0.14173798490061934 0.0032517140139761355 -0.019384678391700567 0.1176482780979773 0.018774048555851842 -0.04519752567978331 0.09801503755669988 0.017882762004308838 -0.06889707892571761 -0.0011940775404435111 0.005741138246166684 -0.04217361878060606 -0.007009769109745427 0.004121453079256265 -0.006488115056669888 0.04006970349629223 0.013821374012073112 0.04665534598105637 0.008167642592965596 0.006830239733337443 0.020020867315809356 0.0757972982047134 0.023315733165766246 -0.08342119722505326 0.03375334355799883 0.009438275537348008 -0.012992661526095624 0.12942327448207058 0.003054846679886569 -0.019178966806230817 0.04132602784187572 0.008255203748290127 -0.039864955843328095 0.008647124327991085 0.004245848338905227 -0.042082023954365735 0.12942327448207058 0.003054846679886569 -0.019178966806230817 0.0347628330902331 0.0045338100308297425 -0.0158214259919138 0.003580160705595782 0.0026724815124488767 -0.010226917473936096 0.12942327448207058 0.003054846679886569 -0.019178966806230817 0.06063630242218648 0.012995175500335179 0.024030375197054154 0.0436218942844814 0.012933350783535923 0.03652915016421587 0.12942327448207058 0.003054846679886569 -0.019178966806230817 0.04768772005326034 0.007012267832751814 0.007494226226857376 0.019373445051247606 0.004945260574432551 0.012592764728909845 0.12942327448207058 0.003054846679886569 -0.019178966806230817 0.10533356767942856 0.018577181221762273 -0.04499181409431356 0.08570032713815114 0.01768589467021927 -0.06869136734024786 -0.013508787958992255 0.005544270912077117 -0.04196790719513631 -0.01932447952829417 0.003924585745166699 -0.00628240347120014 0.02775499307774348 0.013624506677983546 0.046861057566526115 -0.004147067825583148 0.006633372399247876 0.020226578901279105 0.06348258778616464 0.023118865831676678 -0.08321548563958352 0.03409801503193772 0.004320977977972348 -0.012567934666482915 0.12976794595600946 -0.0020624508794890905 -0.01875423994661811 0.04167069931581461 0.0031379061889144667 -0.03944022898371539 0.00899179580192997 -0.0008714492204704325 -0.04165729709475302 0.12976794595600946 -0.0020624508794890905 -0.01875423994661811 0.035107504564171985 -0.0005834875285459168 -0.015396699132301092 0.003924832179534668 -0.0024448160469267826 -0.009802190614323386 0.12976794595600946 -0.0020624508794890905 -0.01875423994661811 0.06098097389612536 0.00787787794095952 0.024455102056666865 0.043966565758420284 0.007816053224160265 0.03695387702382859 0.12976794595600946 -0.0020624508794890905 -0.01875423994661811 0.04803239152719923 0.0018949702733761543 0.007918953086470086 0.019718116525186492 -0.0001720369849431084 0.013017491588522554 0.12976794595600946 -0.0020624508794890905 -0.01875423994661811 0.10567823915336744 0.013459883662386617 -0.04456708723470085 0.08604499861209003 0.012568597110843613 -0.06826664048063516 -0.013164116485053369 0.0004269733527014581 -0.0415431803355236 -0.018979808054355285 -0.0011927118142089606 -0.005857676611587431 0.028099664551682366 0.008507209118607886 0.04728578442613883 -0.003802396351644262 0.0015160748398722165 0.020651305760891817 0.06382725926010353 0.018001568272301018 -0.0827907587799708 0.047152266543127264 0.004837476274686923 -0.014046276977897322 0.142822197467199 -0.0015459525827745159 -0.020232582258032518 0.054724950827004154 0.0036544044856290413 -0.040918571295129796 0.022046047313119516 -0.000354950923755858 -0.04313563940616743 0.142822197467199 -0.0015459525827745159 -0.020232582258032518 0.04816175607536153 -6.698923183134226e-05 -0.0168750414437155 0.016979083690724213 -0.001928317750212208 -0.011280532925737793 0.142822197467199 -0.0015459525827745159 -0.020232582258032518 0.07403522540731491 0.008394376237674094 0.022976759745252456 0.05702081726960983 0.00833255152087484 0.03547553471241418 0.142822197467199 -0.0015459525827745159 -0.020232582258032518 0.061086643038388774 0.002411468570090729 0.006440610775055679 0.03277236803637604 0.0003444613117714662 0.011539149277108147 0.142822197467199 -0.0015459525827745159 -0.020232582258032518 0.11873249066455699 0.01397638195910119 -0.046045429546115256 0.09909925012327957 0.013085095407558187 -0.06974498279204956 -0.0001098649738638241 0.0009434716494160326 -0.04302152264693801 -0.00592555654316574 -0.000676213517494386 -0.007336018923001838 0.041153916062871915 0.009023707415322461 0.04580744211472442 0.009251855159545283 0.002032573136586791 0.019172963449477408 0.07688151077129307 0.01851806656901559 -0.08426910109138522 0.02854936908640526 0.009168728033715809 -0.012872609339422197 0.12421930001047701 0.0027852991762543702 -0.01905891461955739 0.036122053370282146 0.007985656244657928 -0.03974490365665467 0.0034431498563975114 0.003976300835273028 -0.041961971767692306 0.12421930001047701 0.0027852991762543702 -0.01905891461955739 0.02955885861863953 0.004264262527197544 -0.015701373805240372 -0.0016238137659977912 0.002402934008816678 -0.010106865287262668 0.12421930001047701 0.0027852991762543702 -0.01905891461955739 0.055432327950592906 0.01272562799670298 0.02415042738372758 0.03841791981288783 0.012663803279903726 0.0366492023508893 0.12421930001047701 0.0027852991762543702 -0.01905891461955739 0.042483745581666774 0.006742720329119615 0.007614278413530804 0.014169470579654033 0.004675713070800352 0.012712816915583272 0.12421930001047701 0.0027852991762543702 -0.01905891461955739 0.10012959320783499 0.018307633718130076 -0.04487176190764013 0.08049635266655757 0.017416347166587073 -0.06857131515357444 -0.018712762430585828 0.005274723408444919 -0.041847855008462886 -0.024528453999887744 0.0036550382415345 -0.006162351284526713 0.022551018606149907 0.013354959174351347 0.046981109753199544 -0.009351042297176721 0.006363824895615678 0.02034663108795253 0.05827861331457107 0.02284931832804448 -0.08309543345291008 0.03340549619305482 0.014256866489460118 -0.009475164803178263 0.12907542711712658 0.00787343763199868 -0.015661470083313457 0.04097818047693171 0.013073794700402238 -0.036347459120410736 0.008299276963047074 0.009064439291017337 -0.03856452723144837 0.12907542711712658 0.00787343763199868 -0.015661470083313457 0.03441498572528909 0.009352400982941853 -0.01230392926899644 0.0032323133406517712 0.007491072464560987 -0.006709420751018734 0.12907542711712658 0.00787343763199868 -0.015661470083313457 0.060288455057242465 0.01781376645244729 0.027547871919971517 0.04327404691953739 0.017751941735648036 0.04004664688713324 0.12907542711712658 0.00787343763199868 -0.015661470083313457 0.04733987268831633 0.011830858784863924 0.011011722949774738 0.019025597686303596 0.009763851526544663 0.01611026145182721 0.12907542711712658 0.00787343763199868 -0.015661470083313457 0.10498572031448455 0.023395772173874386 -0.041474317371396195 0.08535247977320712 0.022504485622331382 -0.0651738706173305 -0.013856635323936266 0.010362861864189228 -0.03845041047221895 -0.01967232689323818 0.00874317669727881 -0.0027649067482827788 0.02740714571279947 0.018443097630095655 0.05037855428944348 -0.004494915190527159 0.011451963351359987 0.02374407562419647 0.06313474042122064 0.02793745678378879 -0.07969798891666616 0.050292809065844414 -0.0011495568270459117 -0.002577009001652098 0.14596273998991616 -0.007532985684507351 -0.008763314281787293 0.057865493349721304 -0.0023326286161037928 -0.02944930331888457 0.025186589835836666 -0.006341984025488693 -0.03166637142992221 0.14596273998991616 -0.007532985684507351 -0.008763314281787293 0.05130229859807868 -0.006054022333564177 -0.005405773467470274 0.020119626213441363 -0.007915350851945042 0.00018873505050743134 0.14596273998991616 -0.007532985684507351 -0.008763314281787293 0.07717576793003206 0.00240734313594126 0.03444602772149768 0.06016135979232698 0.002345518419142005 0.0469448026886594 0.14596273998991616 -0.007532985684507351 -0.008763314281787293 0.06422718556110593 -0.0035755645316421056 0.017909878751300904 0.03591291055909319 -0.005642571789961368 0.023008417253353373 0.14596273998991616 -0.007532985684507351 -0.008763314281787293 0.12187303318727413 0.007989348857368355 -0.034576161569870034 0.10223979264599672 0.007098062305825352 -0.05827571481580434 0.0030306775488533264 -0.005043561452316802 -0.03155225467069279 -0.0027850140204485896 -0.006663246619227221 0.004133249053243386 0.044294458585589065 0.0030366743135896265 0.05727671009096964 0.012392397682262433 -0.003954459965146043 0.030642231425722633 0.08002205329401023 0.012531033467282758 -0.07279983311513999 0.04983290291631976 -0.0017999963274442107 -0.008593510918540005 0.1455028338403915 -0.00818342518490565 -0.014779816198675199 0.05740558720019665 -0.002983068116502092 -0.03546580523577248 0.024726683686312013 -0.006992423525886991 -0.037682873346810114 0.1455028338403915 -0.00818342518490565 -0.014779816198675199 0.05084239244855403 -0.006704461833962476 -0.011422275384358182 0.01965972006391671 -0.008565790352343342 -0.005827766866380476 0.1455028338403915 -0.00818342518490565 -0.014779816198675199 0.0767158617805074 0.0017569036355429611 0.028429525804609772 0.05970145364280233 0.001695078918743706 0.040928300771771495 0.1455028338403915 -0.00818342518490565 -0.014779816198675199 0.06376727941158128 -0.004226004032040404 0.011893376834412996 0.035453004409568535 -0.006293011290359667 0.016991915336465463 0.1455028338403915 -0.00818342518490565 -0.014779816198675199 0.12141312703774948 0.007338909356970057 -0.04059266348675794 0.10177988649647207 0.006447622805427053 -0.06429221673269224 0.0025707713993286738 -0.005694000952715101 -0.037568756587580694 -0.003244920169973242 -0.007313686119625519 -0.0018832528636445207 0.04383455243606441 0.0023862348131913277 0.05126020817408174 0.011932491532737781 -0.004604899465544343 0.024625729508834723 0.07956214714448558 0.01188059396688446 -0.0788163350320279 0.050450166269036464 0.0016170377976654836 0.000931600972015729 0.1461200971931082 -0.004766391059795955 -0.0052547043081194655 0.058022850552913355 0.0004339660086076023 -0.025940693345216745 0.025343947039028716 -0.003575389400777297 -0.028157761456254378 0.1461200971931082 -0.004766391059795955 -0.0052547043081194655 0.05145965580127073 -0.0032874277088527815 -0.0018971634938024472 0.020276983416633414 -0.005148756227233648 0.0036973450241752585 0.1461200971931082 -0.004766391059795955 -0.0052547043081194655 0.07733312513322411 0.005173937760652655 0.03795463769516551 0.06031871699551903 0.0051121130438534 0.05045341266232723 0.1461200971931082 -0.004766391059795955 -0.0052547043081194655 0.06438454276429798 -0.0008089699069307103 0.02141848872496873 0.03607026776228524 -0.002875977165249973 0.0265170272270212 0.1461200971931082 -0.004766391059795955 -0.0052547043081194655 0.12203039039046619 0.010755943482079752 -0.031067551596202204 0.10239714984918877 0.009864656930536748 -0.05476710484213651 0.0031880347520453767 -0.0022769668276054066 -0.028043644697024958 -0.0026276568172565393 -0.0038966519945158253 0.007641859026911213 0.044451815788781116 0.005803268938301022 0.06078532006463747 0.012549754885454484 -0.001187865340434648 0.03415084139939046 0.08017941049720229 0.015297628091994154 -0.06929122314147217 0.004005731414445815 0.018340559012685685 0.00035486239385893343 0.09967566233851756 0.011957130155224246 -0.005831442886276261 0.011578415698322703 0.017157487223627803 -0.026517431923373542 -0.02110048781556193 0.013148131814242904 -0.028734500034411175 0.09967566233851756 0.011957130155224246 -0.005831442886276261 0.005015220946680084 0.01343609350616742 -0.002473902071959243 -0.026167451437957234 0.011574764987786555 0.0031206064460184628 0.09967566233851756 0.011957130155224246 -0.005831442886276261 0.03088869027863346 0.021897458975672857 0.037377899117008714 0.013874282140928382 0.021835634258873603 0.04987667408417044 0.09967566233851756 0.011957130155224246 -0.005831442886276261 0.017940107909707327 0.01591455130808949 0.020841750146811933 -0.010374167092305412 0.01384754404977023 0.025940288648864402 0.09967566233851756 0.011957130155224246 -0.005831442886276261 0.07558595553587553 0.027479464697099953 -0.031644290174359 0.05595271499459812 0.02658817814555695 -0.055343843420293304 -0.04325640010254527 0.014446554387414795 -0.028620383275181755 -0.04907209167184719 0.012826869220504376 0.0070651204487544176 -0.001992619065809537 0.02252679015332122 0.06020858148648068 -0.033894679969136164 0.015535655874585554 0.033574102821233666 0.03373497564261163 0.03202114930701436 -0.06986796171962896 0.047251684982991496 0.011337186246544902 0.0016096556412616412 0.14292161590706326 0.004953757389083463 -0.004576649638873553 0.054824369266868386 0.010154114457487021 -0.025262638675970832 0.022145465752983748 0.006144759048102121 -0.027479706787008465 0.14292161590706326 0.004953757389083463 -0.004576649638873553 0.04826117451522576 0.006432720740026637 -0.001219108824556535 0.017078502130588445 0.004571392221645771 0.004375399693421171 0.14292161590706326 0.004953757389083463 -0.004576649638873553 0.07413464384717915 0.014894086209532073 0.03863269236441142 0.05712023570947406 0.01483226149273282 0.051131467331573144 0.14292161590706326 0.004953757389083463 -0.004576649638873553 0.06118606147825301 0.008911178541948707 0.022096543394214643 0.03287178647624027 0.006844171283629445 0.027195081896267112 0.14292161590706326 0.004953757389083463 -0.004576649638873553 0.11883190910442122 0.02047609193095917 -0.03038949692695629 0.0991986685631438 0.019584805379416165 -0.0540890501728906 -1.0446533999591834e-05 0.0074431816212740115 -0.027365590027779045 -0.005826138103301508 0.005823496454363593 0.008319913696157125 0.04125333450273615 0.01552341738718044 0.061463374733883386 0.009351273599409515 0.00853228310844477 0.03482889606863637 0.07698092921115732 0.025017776540873574 -0.06861316847222625 0.049272257815475166 0.005270768764928574 0.0027013595844527 0.14494218873954692 -0.0011126600925328647 -0.003484945695682494 0.05684494209935206 0.0040876969758706925 -0.024170934732779772 0.02416603858546742 7.834156648579317e-05 -0.026388002843817406 0.14494218873954692 -0.0011126600925328647 -0.003484945695682494 0.05028174734770943 0.0003663032584103089 -0.00012740488136547606 0.019099074963072116 -0.0014950252599705569 0.005467103636612229 0.14494218873954692 -0.0011126600925328647 -0.003484945695682494 0.07615521667966281 0.008827668727915745 0.03972439630760248 0.05914080854195773 0.008765844011116491 0.0522231712747642 0.14494218873954692 -0.0011126600925328647 -0.003484945695682494 0.06320663431073668 0.00284476106033238 0.023188247337405703 0.03489235930872394 0.0007777538020131173 0.02828678583945817 0.14494218873954692 -0.0011126600925328647 -0.003484945695682494 0.1208524819369049 0.014409674449342842 -0.029297792983765232 0.10121924139562746 0.013518387897799838 -0.05299734622969954 0.0020101262984840787 0.0013767641396576838 -0.026273886084587986 -0.0038055652708178372 -0.0002429210272527349 0.009411617639348184 0.04327390733521982 0.009456999905564112 0.06255507867707444 0.011371846431893186 0.0024658656268284423 0.03592060001182743 0.07900150204364098 0.018951359059257246 -0.0675214645290352 0.0341017568159575 9.51397312228224e-05 -0.009935869490396876 0.12977168774002926 -0.006288289126238617 -0.01612217477053207 0.04167444109983439 -0.0010879320578350588 -0.03680816380762935 0.008995537585949752 -0.005097287467219959 -0.03902523191866698 0.12977168774002926 -0.006288289126238617 -0.01612217477053207 0.035111246348191766 -0.004809325775295443 -0.012764633956215053 0.003928573963554449 -0.006670654293676309 -0.007170125438237347 0.12977168774002926 -0.006288289126238617 -0.01612217477053207 0.06098471568014514 0.0036520396942099943 0.027087167232752903 0.043970307542440065 0.003590214977410739 0.039585942199914625 0.12977168774002926 -0.006288289126238617 -0.01612217477053207 0.04803613331121901 -0.0023308679733733714 0.010551018262556125 0.019721858309206274 -0.004397875231692635 0.015649556764608594 0.12977168774002926 -0.006288289126238617 -0.01612217477053207 0.10568198093738723 0.00923404541563709 -0.04193502205861481 0.0860487403961098 0.008342758864094087 -0.06563457530454911 -0.013160374701033588 -0.0037988648940480677 -0.03891111515943756 -0.018976066270335504 -0.005418550060958487 -0.0032256114355013916 0.028103406335702148 0.00428137087185836 0.04991784960222487 -0.0037986545676244807 -0.002709763406877309 0.023283370936977854 0.06383100104412331 0.013775730025551493 -0.08015869360388476 0.04891500018565565 0.0006739983669721191 -0.012612382844630222 0.1445849311097274 -0.00570943049048932 -0.018798688124765414 0.05648768446953254 -0.0005090734220857621 -0.0394846771618627 0.023808780955647903 -0.004518428831470662 -0.041701745272900326 0.1445849311097274 -0.00570943049048932 -0.018798688124765414 0.04992448971788992 -0.004230467139546146 -0.015441147310448398 0.0187418173332526 -0.006091795657927012 -0.009846638792470693 0.1445849311097274 -0.00570943049048932 -0.018798688124765414 0.0757979590498433 0.004230898329959291 0.024410653878519557 0.058783550912138216 0.0041690736131600355 0.03690942884568128 0.1445849311097274 -0.00570943049048932 -0.018798688124765414 0.06284937668091717 -0.0017520093376240746 0.007874504908322779 0.034535101678904424 -0.0038190165959433374 0.012973043410375248 0.1445849311097274 -0.00570943049048932 -0.018798688124765414 0.12049522430708537 0.009812904051386387 -0.04461153541284815 0.10086198376580796 0.008921617499843383 -0.06831108865878247 0.001652868668664563 -0.003220006258298771 -0.04158762851367091 -0.004162822900637353 -0.00483969142520919 -0.005902124789734738 0.0429166497054003 0.004860229507607657 0.047241336247991525 0.01101458880207367 -0.0021309047711280124 0.020606857582744508 0.07864424441382147 0.01435458866130079 -0.08283520695811811 0.04560177660366591 0.013170228412590553 -0.01033454041263356 0.14127170752773766 0.006786799555129114 -0.016520845692768755 0.0531744608875428 0.011987156623532672 -0.03720683472986604 0.020495557373658164 0.007977801214147772 -0.03942390284090367 0.14127170752773766 0.006786799555129114 -0.016520845692768755 0.04661126613590018 0.008265762906072288 -0.013163304878451737 0.015428593751262862 0.006404434387691422 -0.007568796360474032 0.14127170752773766 0.006786799555129114 -0.016520845692768755 0.07248473546785356 0.016727128375577726 0.026688496310516216 0.05547032733014848 0.01666530365877847 0.03918727127767794 0.14127170752773766 0.006786799555129114 -0.016520845692768755 0.05953615309892742 0.01074422070799436 0.01015234734031944 0.031221878096914686 0.008677213449675095 0.015250885842371909 0.14127170752773766 0.006786799555129114 -0.016520845692768755 0.11718200072509563 0.022309134097004822 -0.042333692980851496 0.09754876018381822 0.02141784754546182 -0.0660332462267858 -0.0016603549133251752 0.009276223787319663 -0.03930978608167425 -0.007476046482627091 0.007656538620409244 -0.0036242823577380765 0.039603426123410564 0.01735645955322609 0.04951917867998818 0.007701365220083932 0.010365325274490422 0.022884700014741167 0.07533102083183173 0.026850818706919223 -0.08055736452612144 0.044966479112826196 0.014924035024641727 -0.003645552598797696 0.14063641003689795 0.008540606167180288 -0.009831857878932891 0.05253916339670309 0.013740963235583846 -0.03051784691603017 0.01986025988281845 0.009731607826198946 -0.0327349150270678 0.14063641003689795 0.008540606167180288 -0.009831857878932891 0.04597596864506046 0.010019569518123462 -0.006474317064615872 0.014793296260423146 0.008158240999742595 -0.0008798085466381667 0.14063641003689795 0.008540606167180288 -0.009831857878932891 0.07184943797701385 0.0184809349876289 0.03337748412435208 0.05483502983930876 0.018419110270829642 0.045876259091513806 0.14063641003689795 0.008540606167180288 -0.009831857878932891 0.05890085560808771 0.012498027320045534 0.016841335154155306 0.03058658060607497 0.010431020061726269 0.021939873656207774 0.14063641003689795 0.008540606167180288 -0.009831857878932891 0.11654670323425592 0.024062940709055992 -0.03564470516701563 0.0969134626929785 0.02317165415751299 -0.059344258412949935 -0.0022956524041648912 0.011030030399370836 -0.03262079826783838 -0.008111343973466807 0.009410345232460418 0.003064705456097788 0.03896812863257085 0.019110266165277265 0.05620816649382405 0.007066067729244216 0.012119131886541595 0.029573687828577035 0.074695723340992 0.028604625318970397 -0.07386837671228559 0.0509537699527662 0.012507017704601523 -0.010432287084368826 0.14662370087683796 0.006123588847140085 -0.01661859236450402 0.05852645423664309 0.011323945915543643 -0.0373045814016013 0.025847550722758454 0.007314590506158743 -0.03952164951263894 0.14662370087683796 0.006123588847140085 -0.01661859236450402 0.05196325948500047 0.007602552198083258 -0.013261051550187003 0.02078058710036315 0.005741223679702393 -0.007666543032209297 0.14662370087683796 0.006123588847140085 -0.01661859236450402 0.07783672881695385 0.016063917667588697 0.026590749638780952 0.06082232067924877 0.01600209295078944 0.03908952460594267 0.14662370087683796 0.006123588847140085 -0.01661859236450402 0.06488814644802772 0.01008101000000533 0.010054600668584174 0.036573871446014976 0.008014002741686066 0.015153139170636643 0.14662370087683796 0.006123588847140085 -0.01661859236450402 0.12253399407419593 0.02164592338901579 -0.042431439652586764 0.1029007535329185 0.020754636837472785 -0.06613099289852106 0.0036916384357751145 0.008613013079330633 -0.03940753275340951 -0.0021240531335268015 0.006993327912420215 -0.003722029029473342 0.04495541947251085 0.01669324884523706 0.049421432008252913 0.013053358569184222 0.009702114566501392 0.022786953343005904 0.08068301418093202 0.026187607998930194 -0.08065511119785672 0.05090234387037967 0.013889268446898582 -0.004358891173564057 0.14657227479445142 0.0075058395894371435 -0.010545196453699252 0.05847502815425656 0.012706196657840702 -0.03123118549079653 0.02579612464037192 0.008696841248455801 -0.03344825360183416 0.14657227479445142 0.0075058395894371435 -0.010545196453699252 0.05191183340261393 0.008984802940380317 -0.007187655639382234 0.020729161017976616 0.007123474421999451 -0.001593147121404528 0.14657227479445142 0.0075058395894371435 -0.010545196453699252 0.07778530273456731 0.017446168409885755 0.03266414554958572 0.06077089459686223 0.017384343693086498 0.045162920516747446 0.14657227479445142 0.0075058395894371435 -0.010545196453699252 0.06483672036564118 0.011463260742302389 0.016127996579388945 0.03652244536362844 0.009396253483983125 0.021226535081441414 0.14657227479445142 0.0075058395894371435 -0.010545196453699252 0.1224825679918094 0.023028174131312848 -0.03635804374178199 0.10284932745053196 0.022136887579769844 -0.060057596987716295 0.003640212353388579 0.009995263821627692 -0.03333413684260474 -0.002175479215913337 0.008375578654717273 0.002351366881331427 0.04490399339012432 0.01807549958753412 0.05549482791905769 0.013001932486797686 0.011084365308798451 0.028860349253810674 0.08063158809854548 0.027569858741227252 -0.07458171528705194 0.05316675489506837 0.010435979028836499 0.0011177478512371308 0.1488366858191401 0.00405255017137506 -0.005068557428898063 0.06073943917894526 0.009252907239778618 -0.025754546465995343 0.028060535665060622 0.005243551830393718 -0.027971614577032976 0.1488366858191401 0.00405255017137506 -0.005068557428898063 0.054176244427302636 0.005531513522318234 -0.0017110166145810454 0.02299357204266532 0.003670185003937368 0.00388349190339666 0.1488366858191401 0.00405255017137506 -0.005068557428898063 0.08004971375925601 0.01399287899182367 0.03814078457438691 0.06303530562155094 0.013931054275024415 0.05063955954154863 0.1488366858191401 0.00405255017137506 -0.005068557428898063 0.06710113139032989 0.008009971324240306 0.021604635604190132 0.038786856388317144 0.005942964065921042 0.0267031741062426 0.1488366858191401 0.00405255017137506 -0.005068557428898063 0.12474697901649809 0.019574884713250765 -0.030881404716980802 0.10511373847522068 0.01868359816170776 -0.05458095796291511 0.0059046233780772825 0.006541974403565609 -0.027857497817803556 8.893180877536655e-05 0.00492228923665519 0.007828005906132616 0.04716840441481302 0.014622210169472037 0.060971466943858875 0.01526634351148639 0.007631075890736368 0.03433698827861186 0.08289599912323418 0.02411656932316517 -0.06910507626225076 0.05446024326377399 0.004943378808098604 0.0018236235473948746 0.15013017418784574 -0.001440050049362835 -0.00436268173274032 0.06203292754765088 0.003760307019040722 -0.0250486707698376 0.02935402403376624 -0.0002490483903441771 -0.02726573888087523 0.15013017418784574 -0.001440050049362835 -0.00436268173274032 0.05546973279600825 3.891330158033862e-05 -0.0010051409184233017 0.024287060411370937 -0.0018224152168005272 0.004589367599554404 0.15013017418784574 -0.001440050049362835 -0.00436268173274032 0.08134320212796163 0.008500278771085775 0.038846660270544654 0.06432879399025655 0.008438454054286521 0.05134543523770638 0.15013017418784574 -0.001440050049362835 -0.00436268173274032 0.0683946197590355 0.00251737110350241 0.022310511300347877 0.04008034475702276 0.00045036384518314706 0.027409049802400345 0.15013017418784574 -0.001440050049362835 -0.00436268173274032 0.12604046738520372 0.014082284492512871 -0.030175529020823058 0.10640722684392628 0.013190997940969867 -0.053875082266757364 0.0071981117467828995 0.0010493741828277135 -0.027151622121645812 0.0013824201774809836 -0.0005703109840827052 0.008533881602290358 0.04846189278351864 0.009129609948734142 0.06167734264001662 0.016559831880192007 0.002138475669998472 0.035042863974769606 0.0841894874919398 0.018623969102427272 -0.06839920056609301 0.0546756538089663 0.0014020186712807717 4.9896024604033185e-05 0.15034558473303805 -0.004981410186180667 -0.006136409255531161 0.06224833809284319 0.00021894688222289047 -0.02682239829262844 0.029569434578958553 -0.003790408527162009 -0.029039466403666073 0.15034558473303805 -0.004981410186180667 -0.006136409255531161 0.05568514334120057 -0.003502446835237493 -0.0027788684412141432 0.02450247095656325 -0.005363775353618359 0.0028156400767635624 0.15034558473303805 -0.004981410186180667 -0.006136409255531161 0.08155861267315395 0.004958918634267943 0.03707293274775381 0.06454420453544887 0.004897093917468689 0.049571707714915536 0.15034558473303805 -0.004981410186180667 -0.006136409255531161 0.06861003030422781 -0.0010239890333154221 0.020536783777557036 0.040295755302215075 -0.0030909962916346847 0.025635322279609504 0.15034558473303805 -0.004981410186180667 -0.006136409255531161 0.12625587793039603 0.01054092435569504 -0.0319492565436139 0.1066226373891186 0.009649637804152036 -0.055648809789548205 0.007413522291975214 -0.002491985953990118 -0.028925349644436653 0.0015978307226732977 -0.004111671120900537 0.006760154079499517 0.04867730332871095 0.00558824981191631 0.05990361511722578 0.01677524242538432 -0.00140288446681936 0.033269136451978765 0.08440489803713211 0.015082608965609442 -0.07017292808888385 0.05162304477118506 0.00954261900523333 -0.0133648353035236 0.14729297569525682 0.003159190147771891 -0.019551140583658796 0.05919572905506195 0.00835954721617545 -0.040237129620756075 0.026516825541177312 0.004350191806790549 -0.04245419773179371 0.14729297569525682 0.003159190147771891 -0.019551140583658796 0.052632534303419326 0.004638153498715065 -0.016193599769341777 0.02144986191878201 0.002776824980334199 -0.010599091251364072 0.14729297569525682 0.003159190147771891 -0.019551140583658796 0.0785060036353727 0.013099518968220501 0.023658201419626178 0.061491595497667625 0.013037694251421247 0.0361569763867879 0.14729297569525682 0.003159190147771891 -0.019551140583658796 0.06555742126644658 0.007116611300637136 0.0071220524494294 0.037243146264433834 0.005049604042317873 0.012220590951481869 0.14729297569525682 0.003159190147771891 -0.019551140583658796 0.12320326889261479 0.018681524689647597 -0.045363987871741535 0.10357002835133736 0.017790238138104594 -0.06906354111767585 0.004360913254193972 0.00564861437996244 -0.04234008097256429 -0.0014547783151079435 0.004028929213052021 -0.006654577248628116 0.04562469429092971 0.013728850145868868 0.04648888378909814 0.01372263338760308 0.006737715867133199 0.01985440512385113 0.08135228899935087 0.023223209299562002 -0.08358765941701149 0.05271543434183673 0.005087210523906688 -0.014651620485876812 0.14838536526590848 -0.0012962183335547507 -0.020837925766012004 0.06028811862571362 0.0039041387348488065 -0.04152391480310928 0.027609215111828983 -0.00010521667453609277 -0.04374098291414692 0.14838536526590848 -0.0012962183335547507 -0.020837925766012004 0.053724923874071 0.00018274501738842295 -0.01748038495169499 0.02254225148943368 -0.0016785835009924428 -0.011885876433717283 0.14838536526590848 -0.0012962183335547507 -0.020837925766012004 0.07959839320602438 0.00864411048689386 0.022371416237272967 0.0625839850683193 0.008582285770094605 0.034870191204434686 0.14838536526590848 -0.0012962183335547507 -0.020837925766012004 0.06664981083709824 0.002661202819310494 0.005835267267076189 0.038335535835085505 0.0005941955609912314 0.010933805769128658 0.14838536526590848 -0.0012962183335547507 -0.020837925766012004 0.12429565846326646 0.014226116208320955 -0.04665077305409475 0.10466241792198903 0.013334829656777951 -0.07035032630002905 0.005453302824845643 0.0011932058986357979 -0.043626866154917496 -0.0003623887444562726 -0.00042647926827462084 -0.007941362430981327 0.04671708386158138 0.009273441664542227 0.04520209860674493 0.01481502295825475 0.0022823073858065563 0.01856761994149792 0.08244467857000254 0.01876780081823536 -0.0848744445993647 0.05242519795139407 0.0005377033699405383 -0.012568823949622509 0.14809512887546583 -0.0058457254875209 -0.0187551292297577 0.05999788223527096 -0.0006453684191173429 -0.03944111826685498 0.02731897872138632 -0.004654723828502242 -0.04165818637789262 0.14809512887546583 -0.0058457254875209 -0.0187551292297577 0.05343468748362833 -0.004366762136577726 -0.015397588415440686 0.022252015098991017 -0.006228090654958593 -0.00980307989746298 0.14809512887546583 -0.0058457254875209 -0.0187551292297577 0.07930815681558172 0.00409460333292771 0.02445421277352727 0.06229374867787663 0.0040327786161284546 0.03695298774068899 0.14809512887546583 -0.0058457254875209 -0.0187551292297577 0.06635957444665558 -0.0018883043346556556 0.007918063803330492 0.03804529944464284 -0.003955311592974919 0.01301660230538296 0.14809512887546583 -0.0058457254875209 -0.0187551292297577 0.12400542207282379 0.009676609054354806 -0.044567976517840446 0.10437218153154637 0.008785322502811803 -0.06826752976377475 0.00516306643440298 -0.003356301255330352 -0.04154406961866319 -0.0006526251348989362 -0.00497598642224077 -0.005858565894727025 0.04642684747113872 0.004723934510576077 0.04728489514299923 0.014524786567812087 -0.0022671997681595933 0.02065041647775222 0.08215444217955989 0.014218293664269209 -0.0827916480631104 0.058483531848341125 0.008513092568396356 -0.014751714679605923 0.15415346277241287 0.0021296637109349172 -0.020938019959741115 0.06605621613221802 0.007330020779338474 -0.041624008996838394 0.03337731261833338 0.003320665369953575 -0.043841077107876034 0.15415346277241287 0.0021296637109349172 -0.020938019959741115 0.05949302138057539 0.003608627061878091 -0.0175804791454241 0.028310348995938074 0.001747298543497225 -0.011985970627446394 0.15415346277241287 0.0021296637109349172 -0.020938019959741115 0.08536649071252878 0.012069992531383527 0.022271322043543856 0.0683520825748237 0.012008167814584272 0.034770097010705575 0.15415346277241287 0.0021296637109349172 -0.020938019959741115 0.07241790834360264 0.006087084863800162 0.005735173073347078 0.0441036333415899 0.004020077605480899 0.010833711575399547 0.15415346277241287 0.0021296637109349172 -0.020938019959741115 0.13006375596977085 0.017651998252810622 -0.04675086724782386 0.11043051542849343 0.016760711701267618 -0.07045042049375816 0.011221400331350037 0.004619087943125466 -0.04372696034864661 0.005405708762048121 0.002999402776215047 -0.008041456624710439 0.052485181368085776 0.012699323709031894 0.04510200441301582 0.020583120464759144 0.005708189430296225 0.018467525747768807 0.08821277607650693 0.022193682862725026 -0.08497453879309382 0.059466583277706896 0.01168511915232714 -0.01193096337105655 0.15513651420177865 0.005301690294865701 -0.018117268651191745 0.06703926756158378 0.010502047363269259 -0.038803257688289024 0.03436036404769915 0.006492691953884359 -0.04102032579932666 0.15513651420177865 0.005301690294865701 -0.018117268651191745 0.06047607280994116 0.0067806536458088745 -0.014759727836874726 0.029293400425303845 0.004919325127428009 -0.00916521931889702 0.15513651420177865 0.005301690294865701 -0.018117268651191745 0.08634954214189454 0.015242019115314311 0.02509207335209323 0.06933513400418946 0.015180194398515055 0.03759084831925495 0.15513651420177865 0.005301690294865701 -0.018117268651191745 0.07340095977296841 0.009259111447730946 0.008555924381896451 0.04508668477095567 0.007192104189411683 0.01365446288394892 0.15513651420177865 0.005301690294865701 -0.018117268651191745 0.13104680739913663 0.02082402483674141 -0.04393011593927448 0.11141356685785919 0.019932738285198405 -0.0676296691852088 0.012204451760715808 0.007791114527056249 -0.04090620904009724 0.006388760191413892 0.006171429360145831 -0.005220705316161065 0.05346823279745155 0.015871350292962678 0.047922755721565194 0.021566171894124915 0.008880216014227008 0.02128827705631818 0.08919582750587271 0.02536570944665581 -0.08215378748454444 0.07400677322947792 0.007246325694584039 -0.00283656036972128 0.16967670415354968 0.0008628968371226006 -0.009022865649856474 0.08157945751335481 0.006063253905526158 -0.029708854686953754 0.04890055399947017 0.0020538984961412585 -0.03192592279799139 0.16967670415354968 0.0008628968371226006 -0.009022865649856474 0.0750162627617122 0.002341860188065774 -0.005665324835539456 0.04383359037707487 0.0004805316696849084 -7.081631756175079e-05 0.16967670415354968 0.0008628968371226006 -0.009022865649856474 0.10088973209366557 0.01080322565757121 0.034186476353428495 0.08387532395596049 0.010741400940771955 0.04668525132059022 0.16967670415354968 0.0008628968371226006 -0.009022865649856474 0.08794114972473943 0.004820317989987845 0.01765032738323172 0.059626874722726694 0.0027533107316685826 0.02274886588528419 0.16967670415354968 0.0008628968371226006 -0.009022865649856474 0.14558699735090763 0.016385231378998305 -0.03483571293793922 0.12595375680963022 0.015493944827455303 -0.05853526618387352 0.026744641712486833 0.003352321069313149 -0.03181180603876197 0.020928950143184917 0.0017326359024027304 0.003873697685174204 0.06800842274922257 0.011432556835219577 0.05701715872290046 0.03610636184589594 0.004441422556483908 0.03038268005765345 0.10373601745764374 0.02092691598891271 -0.07305938448320917 0.06831450181209958 0.008072258244179524 -0.0014685725925970314 0.16398443273617133 0.0016888293867180857 -0.007654877872732226 0.07588718609597647 0.006889186455121643 -0.028340866909829506 0.043208282582091834 0.0028798310457367436 -0.03055793502086714 0.16398443273617133 0.0016888293867180857 -0.007654877872732226 0.06932399134433385 0.0031677927376612593 -0.004297337058415208 0.03814131895969653 0.0013064642192803936 0.001297171459562498 0.16398443273617133 0.0016888293867180857 -0.007654877872732226 0.09519746067628723 0.011629158207166696 0.03555446413055275 0.07818305253858215 0.01156733349036744 0.04805323909771447 0.16398443273617133 0.0016888293867180857 -0.007654877872732226 0.08224887830736109 0.0056462505395833305 0.01901831516035597 0.053934603305348355 0.0035792432812640678 0.024116853662408438 0.16398443273617133 0.0016888293867180857 -0.007654877872732226 0.1398947259335293 0.017211163928593794 -0.03346772516081496 0.12026148539225189 0.01631987737705079 -0.05716727840674927 0.021052370295108494 0.004178253618908634 -0.03044381826163772 0.015236678725806578 0.0025585684519982155 0.005241685462298452 0.06231615133184423 0.012258489384815063 0.058385146500024715 0.0304140904285176 0.005267355106079393 0.0317506678347777 0.09804374604026539 0.021752848538508195 -0.07169139670608492 0.06850614055056478 0.010058164604137157 -0.0031966400575764945 0.16417607147463653 0.003674735746675718 -0.009382945337711689 0.07607882483444167 0.008875092815079276 -0.030068934374808967 0.04339992132055703 0.004865737405694376 -0.0322860024858466 0.16417607147463653 0.003674735746675718 -0.009382945337711689 0.06951563008279905 0.005153699097618892 -0.006025404523394671 0.03833295769816173 0.003292370579238026 -0.0004308960054169651 0.16417607147463653 0.003674735746675718 -0.009382945337711689 0.09538909941475243 0.013615064567124328 0.033826396665573286 0.07837469127704735 0.013553239850325072 0.04632517163273501 0.16417607147463653 0.003674735746675718 -0.009382945337711689 0.08244051704582629 0.007632156899540963 0.017290247695376508 0.054126242043813555 0.0055651496412217 0.022388786197428977 0.16417607147463653 0.003674735746675718 -0.009382945337711689 0.1400863646719945 0.019197070288551422 -0.03519579262579443 0.12045312413071708 0.01830578373700842 -0.05889534587172873 0.021244009033573694 0.0061641599788662665 -0.03217188572661718 0.015428317464271778 0.004544474811955848 0.0035136179973189897 0.06250779007030943 0.014244395744772695 0.05665707903504525 0.0306057291669828 0.007253261466037025 0.030022600369798237 0.09823538477873059 0.023738754898465827 -0.07341946417106439 0.07376935388427076 0.009533399543886186 -0.004516849250590255 0.16943928480834253 0.003149970686424747 -0.01070315453072545 0.08134203816814765 0.008350327754828305 -0.03138914356782273 0.048663134654263016 0.004340972345443405 -0.03360621167886036 0.16943928480834253 0.003149970686424747 -0.01070315453072545 0.07477884341650504 0.004628934037367921 -0.007345613716408432 0.04359617103186771 0.002767605518987055 -0.0017511051984307256 0.16943928480834253 0.003149970686424747 -0.01070315453072545 0.10065231274845841 0.013090299506873357 0.032506187472559525 0.08363790461075334 0.013028474790074102 0.04500496243972125 0.16943928480834253 0.003149970686424747 -0.01070315453072545 0.08770373037953227 0.007107391839289992 0.015970038502362748 0.05938945537751954 0.005040384580970729 0.021068577004415216 0.16943928480834253 0.003149970686424747 -0.01070315453072545 0.14534957800570047 0.018672305228300455 -0.03651600181880819 0.12571633746442307 0.01778101867675745 -0.06021555506474249 0.026507222367279676 0.005639394918615296 -0.03349209491963094 0.02069153079797776 0.004019709751704877 0.002193408804305229 0.06777100340401541 0.013719630684521724 0.05533686984203149 0.03586894250068878 0.0067284964057860545 0.028702391176784477 0.10349859811243659 0.023213989838214856 -0.07473967336407815 0.06266272581815119 0.010657492751331663 -0.0008919160205736388 0.15833265674222294 0.004274063893870224 -0.007078221300708833 0.07023541010202808 0.009474420962273782 -0.027764210337806114 0.03755650658814344 0.005465065552888882 -0.029981278448843747 0.15833265674222294 0.004274063893870224 -0.007078221300708833 0.06367221535038546 0.005753027244813398 -0.003720680486391815 0.03248954296574814 0.003891698726432532 0.0018738280315858907 0.15833265674222294 0.004274063893870224 -0.007078221300708833 0.08954568468233884 0.014214392714318834 0.03613112070257614 0.07253127654463376 0.014152567997519579 0.04862989566973786 0.15833265674222294 0.004274063893870224 -0.007078221300708833 0.0765971023134127 0.00823148504673547 0.01959497173237936 0.04828282731139996 0.006164477788416206 0.02469351023443183 0.15833265674222294 0.004274063893870224 -0.007078221300708833 0.1342429499395809 0.019796398435745932 -0.032891068588791574 0.11460970939830349 0.01890511188420293 -0.05659062183472588 0.0154005943011601 0.006763488126060773 -0.029867161689614327 0.009584902731858184 0.005143802959150354 0.0058183420343218455 0.05666437533789584 0.014843723891967201 0.058961803072048104 0.024762314434569208 0.007852589613231532 0.03232732440680109 0.092391970046317 0.024338083045660333 -0.07111474013406152 0.0642033373808163 0.01137480579680659 -0.0029140868697556067 0.15987326830488804 0.004991376939345151 -0.0091003921498908 0.07177602166469318 0.010191734007748709 -0.029786381186988082 0.039097118150808546 0.006182378598363809 -0.03200344929802571 0.15987326830488804 0.004991376939345151 -0.0091003921498908 0.06521282691305057 0.006470340290288324 -0.0057428513355737825 0.034030154528413244 0.004609011771907459 -0.0001483428175960773 0.15987326830488804 0.004991376939345151 -0.0091003921498908 0.09108629624500394 0.014931705759793761 0.034108949853394174 0.07407188810729887 0.014869881042994505 0.0466077248205559 0.15987326830488804 0.004991376939345151 -0.0091003921498908 0.0781377138760778 0.008948798092210396 0.017572800883197393 0.04982343887406507 0.006881790833891133 0.022671339385249862 0.15987326830488804 0.004991376939345151 -0.0091003921498908 0.13578356150224602 0.02051371148122086 -0.03491323943797354 0.1161503209609686 0.019622424929677855 -0.058612792683907844 0.016941205863825207 0.007480801171535699 -0.03188933253879629 0.01112551429452329 0.005861116004625281 0.0037961711851398775 0.058204986900560945 0.015561036937442128 0.05693963222286614 0.026302925997234314 0.008569902658706458 0.030305153557619122 0.0939325816089821 0.02505539609113526 -0.0731369109832435 0.06207192151057558 0.012609175047392677 -0.006713766381464589 0.15774185243464733 0.006225746189931238 -0.012900071661599783 0.06964460579445246 0.011426103258334796 -0.03358606069869706 0.03696570228056783 0.007416747848949896 -0.0358031288097347 0.15774185243464733 0.006225746189931238 -0.012900071661599783 0.06308141104280984 0.007704709540874412 -0.009542530847282765 0.031898738658172526 0.005843381022493546 -0.00394802232930506 0.15774185243464733 0.006225746189931238 -0.012900071661599783 0.08895488037476322 0.016166075010379848 0.03030927034168519 0.07194047223705814 0.016104250293580594 0.04280804530884691 0.15774185243464733 0.006225746189931238 -0.012900071661599783 0.0760062980058371 0.010183167342796482 0.013773121371488412 0.04769202300382435 0.008116160084477221 0.01887165987354088 0.15774185243464733 0.006225746189931238 -0.012900071661599783 0.1336521456320053 0.021748080731806944 -0.038712918949682526 0.11401890509072787 0.02085679418026394 -0.062412472195616825 0.01480978999358449 0.008715170422121787 -0.03568901205050527 0.008994098424282573 0.007095485255211368 -3.5083265691043808e-06 0.05607357103032023 0.016795406188028217 0.05313995271115715 0.024171510126993596 0.009804271909292546 0.02650547404591014 0.09180116573874139 0.026289765341721345 -0.07693659049495248 0.06773483546962564 0.01129307599406875 -0.00777173013384914 0.1634047663936974 0.004909647136607312 -0.013958035413984334 0.07530751975350253 0.01011000420501087 -0.03464402445108161 0.04262861623961789 0.00610064879562597 -0.036861092562119245 0.1634047663936974 0.004909647136607312 -0.013958035413984334 0.06874432500185991 0.0063886104875504855 -0.010600494599667316 0.037561652617222586 0.00452728196916962 -0.00500598608168961 0.1634047663936974 0.004909647136607312 -0.013958035413984334 0.09461779433381329 0.014849975957055922 0.029251306589300637 0.07760338619610821 0.014788151240256668 0.041750081556462364 0.1634047663936974 0.004909647136607312 -0.013958035413984334 0.08166921196488715 0.008867068289472556 0.01271515761910386 0.05335493696287441 0.006800061031153294 0.01781369612115633 0.1634047663936974 0.004909647136607312 -0.013958035413984334 0.13931505959105536 0.020431981678483018 -0.03977088270206707 0.11968181904977794 0.019540695126940014 -0.06347043594800138 0.02047270395263455 0.00739907136879786 -0.036746975802889825 0.014657012383332634 0.005779386201887442 -0.001061472078953656 0.06173648498937029 0.015479307134704289 0.052081988958772606 0.029834424086043657 0.00848817285596862 0.02544751029352559 0.09746407969779144 0.024973666288397423 -0.07799455424733703 0.0660850099122872 0.010743943075327193 -0.012297307166037967 0.16175494083635894 0.004360514217865754 -0.01848361244617316 0.0736576941961641 0.009560871286269312 -0.03916960148327044 0.040978790682279456 0.005551515876884412 -0.041386669594308076 0.16175494083635894 0.004360514217865754 -0.01848361244617316 0.06709449944452148 0.005839477568808928 -0.015126071631856143 0.035911827059884154 0.003978149050428062 -0.009531563113878438 0.16175494083635894 0.004360514217865754 -0.01848361244617316 0.09296796877647485 0.014300843038314364 0.02472572955711181 0.07595356063876978 0.014239018321515109 0.03722450452427353 0.16175494083635894 0.004360514217865754 -0.01848361244617316 0.08001938640754871 0.008317935370731 0.008189580586915034 0.05170511140553598 0.006250928112411736 0.013288119088967503 0.16175494083635894 0.004360514217865754 -0.01848361244617316 0.13766523403371694 0.01988284875974146 -0.0442964597342559 0.11803199349243951 0.018991562208198455 -0.0679960129801902 0.018822878395296117 0.006849938450056303 -0.041272552835078656 0.0130071868259942 0.005230253283145884 -0.0055870491111424826 0.060086659432031855 0.014930174215962731 0.047556411926583775 0.028184598528705224 0.007939039937227062 0.02092193326133676 0.09581425414045303 0.024424533369655863 -0.08252013127952586 0.07158429292062381 0.010963895675772516 -0.013627342713793214 0.16725422384469557 0.004580466818311077 -0.01981364799392841 0.0791569772045007 0.009780823886714635 -0.04049963703102569 0.04647807369061606 0.005771468477329735 -0.04271670514206332 0.16725422384469557 0.004580466818311077 -0.01981364799392841 0.07259378245285808 0.006059430169254251 -0.01645610717961139 0.041411110068220756 0.004198101650873385 -0.010861598661633685 0.16725422384469557 0.004580466818311077 -0.01981364799392841 0.09846725178481146 0.014520795638759687 0.023395694009356566 0.08145284364710638 0.014458970921960433 0.03589446897651829 0.16725422384469557 0.004580466818311077 -0.01981364799392841 0.08551866941588532 0.00853788797117632 0.006859545039159786 0.05720439441387258 0.006470880712857059 0.011958083541212255 0.16725422384469557 0.004580466818311077 -0.01981364799392841 0.14316451704205352 0.020102801360186783 -0.04562649528201115 0.12353127650077611 0.01921151480864378 -0.06932604852794545 0.02432216140363272 0.0070698910505016255 -0.0426025883828339 0.018506469834330803 0.005450205883591207 -0.00691708465889773 0.06558594244036846 0.015150126816408054 0.04622637637882853 0.033683881537041827 0.008158992537672384 0.019591897713581517 0.10131353714878963 0.024644485970101188 -0.08385016682728111 0.07345413528530025 0.011751760137167654 -0.00915606111623611 0.16912406620937198 0.005368331279706215 -0.015342366396371303 0.08102681956917714 0.010568688348109773 -0.036028355433468585 0.0483479160552925 0.006559332938724873 -0.03824542354450622 0.16912406620937198 0.005368331279706215 -0.015342366396371303 0.07446362481753452 0.006847294630649389 -0.011984825582054286 0.043280952432897195 0.004985966112268523 -0.00639031706407658 0.16912406620937198 0.005368331279706215 -0.015342366396371303 0.1003370941494879 0.015308660100154825 0.027866975606913667 0.08332268601178282 0.01524683538335557 0.04036575057407539 0.16912406620937198 0.005368331279706215 -0.015342366396371303 0.08738851178056176 0.009325752432571461 0.011330826636716891 0.05907423677854902 0.007258745174252197 0.01642936513876936 0.16912406620937198 0.005368331279706215 -0.015342366396371303 0.14503435940672998 0.020890665821581923 -0.041155213684454045 0.12540111886545255 0.01999937927003892 -0.06485476693038834 0.026192003768309158 0.007857755511896764 -0.0381313067852768 0.020376312199007242 0.006238070344986345 -0.002445803061340625 0.0674557848050449 0.015937991277803192 0.05069765797638563 0.035553723901718265 0.008946856999067523 0.02406317931113862 0.10318337951346607 0.025432350431496324 -0.079378885229724 0.062490804430093784 0.012091912562695754 -0.010487390169537945 0.15816073535416553 0.005708483705234316 -0.01667369544967314 0.07006348871397067 0.010908840773637874 -0.03735968448677042 0.037384585200086036 0.006899485364252974 -0.03957675259780805 0.15816073535416553 0.005708483705234316 -0.01667369544967314 0.06350029396232805 0.007187447056177489 -0.013316154635356122 0.03231762157769073 0.0053261185377966236 -0.007721646117378416 0.15816073535416553 0.005708483705234316 -0.01667369544967314 0.08937376329428143 0.015648812525682926 0.026535646553611833 0.07235935515657635 0.015586987808883672 0.039034421520773556 0.15816073535416553 0.005708483705234316 -0.01667369544967314 0.0764251809253553 0.00966590485809956 0.009999497583415055 0.04811090592334256 0.007598897599780298 0.015098036085467524 0.15816073535416553 0.005708483705234316 -0.01667369544967314 0.1340710285515235 0.021230818247110022 -0.04248654273775588 0.1144377880102461 0.020339531695567018 -0.06618609598369019 0.015228672913102696 0.008197907937424864 -0.03946263583857863 0.00941298134380078 0.0065782227705144455 -0.003777132114642461 0.056492453949838435 0.01627814370333129 0.0493663289230838 0.024590393046511803 0.009287009424595623 0.022731850257836785 0.0922200486582596 0.025772502857024426 -0.08071021428302583 0.07684983266963866 0.009436928676156878 -0.0063394792216998775 0.1725197635937104 0.003053499818695439 -0.012525784501835072 0.08442251695351555 0.008253856887098997 -0.03321177353893235 0.05174361343963091 0.004244501477714097 -0.03542884164996998 0.1725197635937104 0.003053499818695439 -0.012525784501835072 0.07785932220187293 0.004532463169638613 -0.009168243687518054 0.046676649817235606 0.002671134651257747 -0.003573735169540348 0.1725197635937104 0.003053499818695439 -0.012525784501835072 0.10373279153382631 0.012993828639144049 0.030683557501449903 0.08671838339612123 0.012932003922344795 0.043182332468611626 0.1725197635937104 0.003053499818695439 -0.012525784501835072 0.09078420916490017 0.007010920971560684 0.014147408531253123 0.06246993416288743 0.004943913713241421 0.019245947033305594 0.1725197635937104 0.003053499818695439 -0.012525784501835072 0.14843005679106838 0.018575834360571145 -0.03833863178991781 0.12879681624979095 0.01768454780902814 -0.062038185035852116 0.02958770115264757 0.0055429240508859876 -0.03531472489074056 0.023772009583345653 0.003923238883975569 0.0003707788331956067 0.07085148218938331 0.013623159816792416 0.05351423987092187 0.038949421286056676 0.0066320255380567465 0.026879761205674854 0.10657907689780446 0.02311751897048555 -0.07656230333518776 0.07830238101007216 0.007253315389222624 -0.006428131177301024 0.17397231193414392 0.0008698865317611857 -0.012614436457436217 0.08587506529394905 0.006070243600164743 -0.0333004254945335 0.05319616178006441 0.0020608881907798436 -0.03551749360557113 0.17397231193414392 0.0008698865317611857 -0.012614436457436217 0.07931187054230643 0.0023488498827043593 -0.0092568956431192 0.048129198157669105 0.00048752136432349356 -0.0036623871251414944 0.17397231193414392 0.0008698865317611857 -0.012614436457436217 0.1051853398742598 0.010810215352209796 0.030594905545848754 0.08817093173655473 0.01074839063541054 0.04309368051301048 0.17397231193414392 0.0008698865317611857 -0.012614436457436217 0.09223675750533367 0.0048273076846264305 0.014058756575651976 0.06392248250332093 0.0027603004263071678 0.019157295077704445 0.17397231193414392 0.0008698865317611857 -0.012614436457436217 0.14988260513150187 0.016392221073636894 -0.03842728374551896 0.13024936459022446 0.015500934522093888 -0.062126836991453264 0.031040249493081068 0.0033593107639517342 -0.03540337684634171 0.025224557923779152 0.0017396255970413155 0.0002821268775944604 0.0723040305298168 0.011439546529858163 0.05342558791532072 0.040401969626490175 0.004448412251122493 0.026791109250073705 0.10803162523823798 0.020933905683551295 -0.07665095529078891 0.05933195371355751 0.013182380037286485 -0.005796390705486025 0.15500188463762926 0.0067989511798250465 -0.011982695985621218 0.0669046379974344 0.011999308248228605 -0.0326686850227185 0.03422573448354976 0.007989952838843704 -0.03488575313375613 0.15500188463762926 0.0067989511798250465 -0.011982695985621218 0.06034144324579178 0.00827791453076822 -0.0086251551713042 0.02915877086115446 0.006416586012387354 -0.0030306466533264955 0.15500188463762926 0.0067989511798250465 -0.011982695985621218 0.08621491257774516 0.01673928000027366 0.031226646017663753 0.06920050444004008 0.0166774552834744 0.04372542098482548 0.15500188463762926 0.0067989511798250465 -0.011982695985621218 0.07326633020881902 0.010756372332690292 0.014690497047466975 0.044952055206806285 0.008689365074371028 0.019789035549519444 0.15500188463762926 0.0067989511798250465 -0.011982695985621218 0.13091217783498724 0.02232128572170075 -0.037795543273703956 0.11127893729370981 0.021429999170157747 -0.06149509651963826 0.012069822196566424 0.009288375412015595 -0.03477163637452671 0.006254130627264508 0.007668690245105176 0.0009138673494094593 0.05333360323330216 0.017368611177922023 0.05405732838713572 0.02143154232997553 0.010377476899186354 0.027422849721888704 0.08906119794172332 0.026862970331615155 -0.07601921481897392 0.059222295666998014 0.005777493199998409 0.0012855621045953826 0.15489222659106977 -0.0006059356574630295 -0.004900743175539812 0.0667949799508749 0.004594421410940528 -0.025586732212637093 0.034116076436990266 0.0005850660015556284 -0.027803800323674726 0.15489222659106977 -0.0006059356574630295 -0.004900743175539812 0.06023178519923228 0.0008730276934801441 -0.0015432023612227937 0.029049112814594963 -0.0009883008249007216 0.004051306156754912 0.15489222659106977 -0.0006059356574630295 -0.004900743175539812 0.08610525453118566 0.009334393162985581 0.03830859882774516 0.06909084639348058 0.009272568446186326 0.050807373794906886 0.15489222659106977 -0.0006059356574630295 -0.004900743175539812 0.07315667216225953 0.0033514854954022153 0.021772449857548382 0.04484239716024679 0.0012844782370829526 0.02687098835960085 0.15489222659106977 -0.0006059356574630295 -0.004900743175539812 0.13080251978842775 0.014916398884412676 -0.030713590463622552 0.11116927924715031 0.014025112332869672 -0.054413143709556855 0.011960164150006926 0.001883488574727519 -0.027689683564445306 0.00614447258070501 0.00026380340781710036 0.007995820159490867 0.053223945186742665 0.009963724340633948 0.06113928119721713 0.021321884283416033 0.0029725900618982775 0.034504802531970115 0.08895153989516383 0.01945808349432708 -0.06893726200889251 0.06830378333703906 0.005033961110475031 -0.0010415451372567039 0.1639737142611108 -0.0013494677469864077 -0.007227850417391898 0.07587646762091595 0.0038508893214171495 -0.027913839454489178 0.04319756410703131 -0.00015846608796774974 -0.03013090756552681 0.1639737142611108 -0.0013494677469864077 -0.007227850417391898 0.06931327286927333 0.00012949560395676598 -0.00387030960307488 0.038130600484636006 -0.0017318329144240998 0.0017241989149028255 0.1639737142611108 -0.0013494677469864077 -0.007227850417391898 0.0951867422012267 0.008590861073462203 0.035981491585893075 0.07817233406352163 0.008529036356662948 0.0484802665530548 0.1639737142611108 -0.0013494677469864077 -0.007227850417391898 0.08223815983230057 0.002607953405878837 0.019445342615696297 0.05392388483028783 0.0005409461475595744 0.024543881117748766 0.1639737142611108 -0.0013494677469864077 -0.007227850417391898 0.1398840074584688 0.0141728667948893 -0.03304069770547464 0.12025076691719136 0.013281580243346296 -0.056740250951408944 0.02104165182004797 0.0011399564852041409 -0.03001679080629739 0.015225960250746053 -0.0004797286817062778 0.00566871291763878 0.06230543285678371 0.009220192251110568 0.05881217395536504 0.030403371953457076 0.0022290579723748993 0.032177695290118026 0.09803302756520488 0.0187145514048037 -0.07126436925074459 0.0743978136337607 0.004075236911559702 -0.0034869999121290925 0.17006774455783247 -0.0023081919459017365 -0.009673305192264286 0.0819704979176376 0.0028921651225018207 -0.030359294229361566 0.049291594403752956 -0.0011171902868830786 -0.0325763623403992 0.17006774455783247 -0.0023081919459017365 -0.009673305192264286 0.07540730316599498 -0.0008292285949585629 -0.006315764377947269 0.04422463078135765 -0.0026905571133394287 -0.0007212558599695631 0.17006774455783247 -0.0023081919459017365 -0.009673305192264286 0.10128077249794835 0.007632136874546874 0.033536036811020686 0.08426636436024328 0.007570312157747619 0.04603481177818241 0.17006774455783247 -0.0023081919459017365 -0.009673305192264286 0.08833219012902221 0.0016492292069635083 0.01699988784082391 0.06001791512700948 -0.00041777805135575444 0.022098426342876377 0.17006774455783247 -0.0023081919459017365 -0.009673305192264286 0.14597803775519042 0.01321414259597397 -0.035486152480347026 0.126344797213913 0.012322856044430966 -0.05918570572628133 0.027135682116769616 0.00018123228628881202 -0.03246224558116978 0.0213199905474677 -0.0014384528806216067 0.0032232581427663917 0.06839946315350535 0.00826146805219524 0.05636671918049265 0.03649740225017872 0.0012703337734595705 0.029732240515245638 0.10412705786192653 0.01775582720588837 -0.07370982402561699 0.0784668023402346 0.004683876828013235 -0.008106937612583753 0.17413673326430634 -0.0016995520294482034 -0.014293242892718947 0.0860394866241115 0.0035008050389553538 -0.034979231929816224 0.05336058311022686 -0.0005085503704295455 -0.037196300040853864 0.17413673326430634 -0.0016995520294482034 -0.014293242892718947 0.07947629187246888 -0.0002205886785050298 -0.01093570207840193 0.048293619487831556 -0.0020819171968858956 -0.005341193560424224 0.17413673326430634 -0.0016995520294482034 -0.014293242892718947 0.10534976120442226 0.008240776791000408 0.028916099110566026 0.08833535306671718 0.008178952074201152 0.041414874077727745 0.17413673326430634 -0.0016995520294482034 -0.014293242892718947 0.09240117883549612 0.0022578691234170414 0.012379950140369248 0.06408690383348338 0.00019086186509777864 0.017478488642421717 0.17413673326430634 -0.0016995520294482034 -0.014293242892718947 0.15004702646166435 0.013822782512427502 -0.04010609018080169 0.1304137859203869 0.012931495960884498 -0.06380564342673599 0.03120467082324352 0.0007898722027423451 -0.03708218328162444 0.025388979253941603 -0.0008298129641680736 -0.0013966795576882685 0.07246845185997926 0.008870107968648774 0.05174678148003799 0.040566390956652626 0.0018789736899131036 0.025112302814790977 0.10819604656840043 0.018364467122341906 -0.07832976172607165 0.06841131806340209 0.0014392838812995743 -0.0031352944453134257 0.16408124898747384 -0.004944144976161864 -0.00932159972544862 0.07598400234727898 0.00025621209224169304 -0.0300075887625459 0.04330509883339434 -0.0037531433171432062 -0.032224656873583536 0.16408124898747384 -0.004944144976161864 -0.00932159972544862 0.06942080759563636 -0.0034651816252186905 -0.005964058911131602 0.03823813521099904 -0.005326510143599556 -0.00036955039315389633 0.16408124898747384 -0.004944144976161864 -0.00932159972544862 0.09529427692758974 0.004996183844286746 0.03388774227783635 0.07827986878988466 0.004934359127487491 0.04638651724499807 0.16408124898747384 -0.004944144976161864 -0.00932159972544862 0.0823456945586636 -0.0009867238232966196 0.017351593307639575 0.05403141955665086 -0.003053731081615882 0.022450131809692044 0.16408124898747384 -0.004944144976161864 -0.00932159972544862 0.1399915421848318 0.010578189565713842 -0.03513444701353136 0.12035830164355439 0.009686903014170838 -0.05883400025946567 0.021149186546411 -0.0024547207439713156 -0.032110540114354116 0.015333494977109084 -0.004074405910881734 0.0035749636095820585 0.06241296758314674 0.005625515021935113 0.056718424647308315 0.030510906679820107 -0.0013656192568005574 0.030083945982061305 0.0981405622915679 0.015119874175628245 -0.07335811855880131 0.07418541021611255 0.0016239863350445676 -0.005556789171566397 0.1698553411401843 -0.004759442522416871 -0.011743094451701592 0.08175809449998944 0.00044091454598668635 -0.032429083488798874 0.049079190986104804 -0.003568440863398213 -0.03464615159983651 0.1698553411401843 -0.004759442522416871 -0.011743094451701592 0.07519489974834682 -0.0032804791714736974 -0.008385553637384573 0.0440122273637095 -0.005141807689854563 -0.0027910451194068675 0.1698553411401843 -0.004759442522416871 -0.011743094451701592 0.1010683690803002 0.005180886298031739 0.03146624755158338 0.08405396094259512 0.005119061581232484 0.0439650225187451 0.1698553411401843 -0.004759442522416871 -0.011743094451701592 0.08811978671137406 -0.0008020213695516263 0.014930098581386605 0.059805511709361325 -0.002869028627870889 0.020028637083439074 0.1698553411401843 -0.004759442522416871 -0.011743094451701592 0.14576563433754228 0.010762892019458835 -0.03755594173978433 0.12613239379626484 0.009871605467915831 -0.06125549498571864 0.026923278699121464 -0.0022700182902263225 -0.03453203484060709 0.021107587129819548 -0.0038897034571367412 0.0011534688833290873 0.0681870597358572 0.005810217475680106 0.054296929921055344 0.03628499883253057 -0.001180916803055564 0.027662451255808334 0.10391465444427836 0.015304576629373238 -0.07577961328505428 0.07721396077444645 0.002643125808930674 -0.00950131409543716 0.1728838916985182 -0.003740303048530765 -0.015687619375572354 0.08478664505832334 0.0014600540198727926 -0.036373608412669636 0.0521077415444387 -0.002549301389512107 -0.03859067652370727 0.1728838916985182 -0.003740303048530765 -0.015687619375572354 0.07822345030668072 -0.0022613396975875912 -0.012330078561255337 0.0470407779220434 -0.004122668215968457 -0.006735570043277631 0.1728838916985182 -0.003740303048530765 -0.015687619375572354 0.1040969196386341 0.006200025771917845 0.027521722627712616 0.08708251150092902 0.0061382010551185905 0.04002049759487434 0.1728838916985182 -0.003740303048530765 -0.015687619375572354 0.09114833726970796 0.00021711810433447994 0.01098557365751584 0.06283406226769522 -0.0018498891539847828 0.016084112159568308 0.1728838916985182 -0.003740303048530765 -0.015687619375572354 0.14879418489587617 0.011782031493344941 -0.041500466663655096 0.12916094435459874 0.010890744941801938 -0.0652000199095894 0.029951829257455362 -0.0012508788163402163 -0.03847655976447785 0.024136137688153446 -0.002870563983250635 -0.002791056040541676 0.0712156102941911 0.006829356949566212 0.05035240499718458 0.03931354939086447 -0.00016177732916945785 0.023717926331937568 0.10694320500261226 0.016323716103259344 -0.07972413820892504 0.06801420868979327 -0.0013927316101320524 -0.006835972985675655 0.16368413961386502 -0.007776160467593491 -0.013022278265810849 0.07558689297367016 -0.0025758033991899335 -0.03370826730290813 0.04290798945978552 -0.006585158808574833 -0.03592533541394576 0.16368413961386502 -0.007776160467593491 -0.013022278265810849 0.06902369822202754 -0.006297197116650317 -0.009664737451493832 0.03784102583739022 -0.008158525635031184 -0.004070228933516126 0.16368413961386502 -0.007776160467593491 -0.013022278265810849 0.09489716755398092 0.0021641683528551194 0.030187063737474124 0.07788275941627584 0.0021023436360558642 0.042685838704635846 0.16368413961386502 -0.007776160467593491 -0.013022278265810849 0.08194858518505478 -0.0038187393147282463 0.013650914767277346 0.053634310183042044 -0.0058857465730475095 0.018749453269329815 0.16368413961386502 -0.007776160467593491 -0.013022278265810849 0.139594432811223 0.0077461740742822156 -0.03883512555389359 0.11996119226994557 0.006854887522739212 -0.0625346787998279 0.020752077172802183 -0.005286736235402942 -0.03581121865471634 0.014936385603500267 -0.006906421402313361 -0.00012571493078017068 0.06201585820953792 0.002793499530503486 0.05301774610694609 0.03011379730621129 -0.004197634748232184 0.026383267441699075 0.09774345291795908 0.012287858684196618 -0.07705879709916355 0.07352398397958042 -0.0004465734237493879 -0.009158800231862906 0.16919391490365215 -0.006830002281210826 -0.0153451055119981 0.08109666826345731 -0.001629645212807269 -0.03603109454909538 0.04841776474957267 -0.005639000622192168 -0.03824816266013301 0.16919391490365215 -0.006830002281210826 -0.0153451055119981 0.07453347351181469 -0.005351038930267653 -0.011987564697681082 0.04335080112717737 -0.007212367448648518 -0.006393056179703377 0.16919391490365215 -0.006830002281210826 -0.0153451055119981 0.10040694284376807 0.003110326539237784 0.027864236491286873 0.08339253470606299 0.0030485018224385286 0.040363011458448596 0.16919391490365215 -0.006830002281210826 -0.0153451055119981 0.08745836047484193 -0.002872581128345582 0.011328087521090095 0.05914408547282919 -0.004939588386664844 0.016426626023142564 0.16919391490365215 -0.006830002281210826 -0.0153451055119981 0.14510420810101016 0.008692332260664879 -0.04115795280008084 0.12547096755973272 0.007801045709121876 -0.06485750604601515 0.02626185246258933 -0.004340578049020278 -0.03813404590090359 0.020446160893287414 -0.005960263215930696 -0.0024485421769674214 0.06752563349932507 0.0037396577168861502 0.05069491886075884 0.03562357259599844 -0.0032514765618495197 0.024060440195511824 0.10325322820774624 0.013234016870579282 -0.07938162434535079 0.056874699974466245 -0.0014302975470687287 -0.003972290046139665 0.15254463089853798 -0.007813726404530168 -0.010158595326274859 0.06444738425834313 -0.00261336933612661 -0.03084458436337214 0.0317684807444585 -0.006622724745511509 -0.03306165247440977 0.15254463089853798 -0.007813726404530168 -0.010158595326274859 0.05788418950670051 -0.0063347630535869935 -0.0068010545119578415 0.026701517122063194 -0.00819609157196786 -0.0012065459939801355 0.15254463089853798 -0.007813726404530168 -0.010158595326274859 0.0837576588386539 0.002126602415918443 0.033050746677010114 0.06674325070094882 0.002064777699119188 0.045549521644171836 0.15254463089853798 -0.007813726404530168 -0.010158595326274859 0.07080907646972776 -0.0038563052516649224 0.016514597706813336 0.04249480146771502 -0.005923312509984185 0.021613136208865805 0.15254463089853798 -0.007813726404530168 -0.010158595326274859 0.12845492409589598 0.007708608137345539 -0.0359714426143576 0.10882168355461855 0.006817321585802535 -0.059670995860291905 0.009612568457475157 -0.005324302172339619 -0.03294753571518035 0.003796876888173241 -0.006943987339250037 0.0027379680087558193 0.050876349494210896 0.0027559335935668098 0.05588142904648208 0.018974288590884264 -0.004235200685168861 0.029246950381235065 0.08660394420263207 0.01225029274725994 -0.07419511415962755 0.05803060625837344 0.0012498743100191445 -0.00020137606974429846 0.1537005371824452 -0.005133554547442294 -0.006387681349879493 0.06560329054225032 6.68025209612632e-05 -0.02707367038697677 0.03292438702836569 -0.003942552888423636 -0.029290738498014404 0.1537005371824452 -0.005133554547442294 -0.006387681349879493 0.059040095790607705 -0.0036545911964991204 -0.0030301405355624748 0.02785742340597039 -0.005515919714879986 0.002564367982415231 0.1537005371824452 -0.005133554547442294 -0.006387681349879493 0.08491356512256108 0.004806774273006316 0.03682166065340548 0.067899156984856 0.004744949556207061 0.049320435620567205 0.1537005371824452 -0.005133554547442294 -0.006387681349879493 0.07196498275363496 -0.0011761333945770494 0.020285511683208704 0.04365070775162221 -0.003243140652896312 0.025384050185261173 0.1537005371824452 -0.005133554547442294 -0.006387681349879493 0.12961083037980317 0.010388779994433411 -0.03220052863796223 0.10997758983852574 0.009497493442890408 -0.05590008188389654 0.010768474741382351 -0.0026441303152517455 -0.029176621738784984 0.0049527831720804355 -0.004263815482162164 0.006508881985151186 0.05203225577811809 0.005436105450654683 0.059652343022877446 0.02013019487479146 -0.0015550288280809872 0.03301786435763043 0.08775985048653925 0.014930464604347814 -0.07042420018323219 0.07560805009098302 0.0009973643952519513 -0.01028096381839421 0.17127798101505476 -0.005386064462209487 -0.016467269098529407 0.08318073437485991 -0.00018570739380592994 -0.037153258135626685 0.050501830860975275 -0.004195062803190829 -0.03937032624666432 0.17127798101505476 -0.005386064462209487 -0.016467269098529407 0.0766175396232173 -0.0039071011112663135 -0.013109728284212387 0.04543486723857997 -0.005768429629647179 -0.007515219766234682 0.17127798101505476 -0.005386064462209487 -0.016467269098529407 0.10249100895517067 0.004554264358239123 0.026742072904755568 0.0854766008174656 0.004492439641439868 0.03924084787191729 0.17127798101505476 -0.005386064462209487 -0.016467269098529407 0.08954242658624453 -0.0014286433093442426 0.01020592393455879 0.061228151584231796 -0.003495650567663505 0.015304462436611259 0.17127798101505476 -0.005386064462209487 -0.016467269098529407 0.14718827421241276 0.010136270079666219 -0.042280116386612145 0.12755503367113533 0.009244983528123215 -0.06597966963254645 0.028345918573991935 -0.0028966402300189386 -0.0392562094874349 0.02253022700469002 -0.004516325396929357 -0.0035707057634987265 0.06960969961072767 0.00518359553588749 0.04957275527422753 0.03770763870740104 -0.0018075387428481803 0.02293827660898052 0.10533729431914884 0.014677954689580622 -0.08050378793188209 0.0787699769497595 0.009360539406508342 -0.010846505521188933 0.17443990787383123 0.0029771105490469033 -0.017032810801324128 0.08634266123363639 0.008177467617450461 -0.037718799838421406 0.05366375771975175 0.004168112208065561 -0.03993586794945904 0.17443990787383123 0.0029771105490469033 -0.017032810801324128 0.07977946648199377 0.004456073899990077 -0.01367526998700711 0.04859679409735645 0.002594745381609211 -0.008080761469029404 0.17443990787383123 0.0029771105490469033 -0.017032810801324128 0.10565293581394715 0.012917439369495513 0.026176531201960847 0.08863852767624207 0.01285561465269626 0.03867530616912257 0.17443990787383123 0.0029771105490469033 -0.017032810801324128 0.09270435344502101 0.006934531701912148 0.009640382231764067 0.06439007844300827 0.004867524443592885 0.014738920733816536 0.17443990787383123 0.0029771105490469033 -0.017032810801324128 0.15035020107118924 0.01849944509092261 -0.042845658089406866 0.1307169605299118 0.017608158539379606 -0.06654521133534118 0.03150784543276841 0.005466534781237452 -0.03982175119022962 0.025692153863466495 0.003846849614327033 -0.004136247466293449 0.07277162646950415 0.01354677054714388 0.04900721357143281 0.04086956556617752 0.006555636268408211 0.0223727349061858 0.10849922117792532 0.023041129700837014 -0.08106932963467682 0.0789928213101902 0.006146648960141516 -0.012040861038314803 0.17466275223426195 -0.0002367798973199227 -0.01822716631845 0.08656550559406709 0.0049635771710836345 -0.03891315535554728 0.05388660208018245 0.0009542217616987352 -0.04113022346658491 0.17466275223426195 -0.0002367798973199227 -0.01822716631845 0.08000231084242447 0.001242183453623251 -0.01486962550413298 0.04881963845778715 -0.0006191450647576148 -0.009275116986155274 0.17466275223426195 -0.0002367798973199227 -0.01822716631845 0.10587578017437785 0.009703548923128687 0.024982175684834976 0.08886137203667277 0.009641724206329434 0.0374809506519967 0.17466275223426195 -0.0002367798973199227 -0.01822716631845 0.09292719780545171 0.003720641255545322 0.008446026714638198 0.06461292280343897 0.0016536339972260594 0.013544565216690667 0.17466275223426195 -0.0002367798973199227 -0.01822716631845 0.15057304543161992 0.015285554644555784 -0.04404001360653274 0.13093980489034251 0.01439426809301278 -0.06773956685246704 0.03173068979319911 0.002252644334870626 -0.04101610670735549 0.025914998223897194 0.0006329591679602072 -0.0053306029834193185 0.07299447082993485 0.010332880100777054 0.04781285805430694 0.04109240992660822 0.0033417458220413843 0.021178379389059927 0.108722065538356 0.019827239254470184 -0.08226368515180268 0.07741566856448827 0.010507884956172296 -0.010187536096318651 0.17308559948856 0.0041244560987108575 -0.016373841376453847 0.08498835284836516 0.009324813167114416 -0.037059830413551126 0.05230944933448052 0.005315457757729515 -0.03927689852458876 0.17308559948856 0.0041244560987108575 -0.016373841376453847 0.07842515809672254 0.005603419449654031 -0.013016300562136828 0.04724248571208522 0.0037420909312731654 -0.0074217920441591225 0.17308559948856 0.0041244560987108575 -0.016373841376453847 0.10429862742867592 0.014064784919159468 0.026835500626831127 0.08728421929097084 0.014002960202360214 0.03933427559399285 0.17308559948856 0.0041244560987108575 -0.016373841376453847 0.09135004505974978 0.008081877251576101 0.01029935165663435 0.06303577005773704 0.00601486999325684 0.015397890158686818 0.17308559948856 0.0041244560987108575 -0.016373841376453847 0.148995892685918 0.019646790640586564 -0.042186688664536585 0.12936265214464057 0.01875550408904356 -0.06588624191047089 0.03015353704749718 0.006613880330901406 -0.03916278176535934 0.024337845478195265 0.004994195163990987 -0.0034772780414231673 0.07141731808423292 0.014694116096807834 0.04966618299630309 0.03951525718090629 0.007702981818072165 0.02303170433105608 0.10714491279265409 0.024188475250500968 -0.08041036020980655 0.06552343236348186 0.009857409546399468 -0.014122663729844286 0.16119336328755363 0.0034739806889380297 -0.02030896900997948 0.07309611664735875 0.008674337757341588 -0.04099495804707676 0.040417213133474114 0.004664982347956688 -0.0432120261581144 0.16119336328755363 0.0034739806889380297 -0.02030896900997948 0.06653292189571614 0.004952944039881203 -0.016951428195662463 0.03535024951107881 0.0030916155215003375 -0.011356919677684757 0.16119336328755363 0.0034739806889380297 -0.02030896900997948 0.09240639122766951 0.01341430950938664 0.022900372993305492 0.07539198308996443 0.013352484792587386 0.03539914796046721 0.16119336328755363 0.0034739806889380297 -0.02030896900997948 0.07945780885874337 0.0074314018418032745 0.0063642240231087145 0.051143533856730636 0.005364394583484012 0.011462762525161183 0.16119336328755363 0.0034739806889380297 -0.02030896900997948 0.13710365648491157 0.018996315230813736 -0.046121816298062224 0.11747041594363417 0.018105028679270732 -0.06982136954399652 0.018261300846490774 0.005963404921128578 -0.04309790939888497 0.012445609277188859 0.0043437197542181595 -0.007412405674948802 0.05952508188322651 0.014043640687035007 0.045731055362777454 0.02762302097989988 0.007052506408299337 0.019096576697530444 0.09525267659164768 0.023537999840728137 -0.08434548784333218 0.07167426450779472 0.009337952579838046 -0.015259997764096481 0.16734419543186646 0.002954523722376607 -0.021446303044231674 0.07924694879167161 0.008154880790780165 -0.04213229208132896 0.046568045277786976 0.004145525381395265 -0.044349360192366585 0.16734419543186646 0.002954523722376607 -0.021446303044231674 0.072683754040029 0.004433487073319781 -0.018088762229914658 0.041501081655391674 0.002572158554938915 -0.012494253711936952 0.16734419543186646 0.002954523722376607 -0.021446303044231674 0.09855722337198237 0.012894852542825217 0.021763038959053297 0.0815428152342773 0.012833027826025963 0.03426181392621502 0.16734419543186646 0.002954523722376607 -0.021446303044231674 0.08560864100305624 0.006911944875241852 0.005226889988856519 0.0572943660010435 0.004844937616922589 0.010325428490908988 0.16734419543186646 0.002954523722376607 -0.021446303044231674 0.14325448862922446 0.018476858264252313 -0.04725915033231441 0.12362124808794703 0.01758557171270931 -0.07095870357824872 0.024412132990803637 0.0054439479545671556 -0.04423524343313717 0.01859644142150172 0.003824262787656737 -0.008549739709200997 0.06567591402753938 0.013524183720473584 0.044593721328525265 0.033773853124212744 0.0065330494417379145 0.01795924266327825 0.10140350873596055 0.023018542874166714 -0.08548282187758437 0.06525745950166346 0.007787204025777511 -0.015933297628731677 0.16092739042573523 0.0014037751683160724 -0.022119602908866873 0.07283014378554035 0.0066041322367196295 -0.04280559194596415 0.040151240271655717 0.0025947768273347303 -0.045022660057001784 0.16092739042573523 0.0014037751683160724 -0.022119602908866873 0.06626694903389774 0.002882738519259246 -0.018762062094549854 0.035084276649260414 0.0010214100008783802 -0.013167553576572148 0.16092739042573523 0.0014037751683160724 -0.022119602908866873 0.09214041836585112 0.011344103988764682 0.0210897390944181 0.07512601022814604 0.011282279271965429 0.033588514061579824 0.16092739042573523 0.0014037751683160724 -0.022119602908866873 0.07919183599692498 0.005361196321181317 0.004553590124221324 0.05087756099491224 0.0032941890628620544 0.009652128626273793 0.16092739042573523 0.0014037751683160724 -0.022119602908866873 0.13683768362309318 0.01692610971019178 -0.04793245019694961 0.11720444308181577 0.016034823158648775 -0.07163200344288392 0.017995327984672377 0.003893199400506621 -0.044908543297772364 0.012179636415370461 0.002273514233596202 -0.009223039573836193 0.059259109021408116 0.01197343516641305 0.043920421463890066 0.027357048118081484 0.00498230088767738 0.017285942798643053 0.09498670372982929 0.021467794320106183 -0.08615612174221957 0.07215174783755245 0.007392378996871462 -0.016653494094684883 0.16782167876162418 0.0010089501394100232 -0.02283979937482008 0.07972443212142934 0.00620930720781358 -0.04352578841191736 0.0470455286075447 0.002199951798428681 -0.04574285652295499 0.16782167876162418 0.0010089501394100232 -0.02283979937482008 0.07316123736978672 0.002487913490353197 -0.01948225856050306 0.041978564985149396 0.0006265849719723311 -0.013887750042525354 0.16782167876162418 0.0010089501394100232 -0.02283979937482008 0.0990347067017401 0.010949278959858633 0.020369542628464896 0.08202029856403502 0.01088745424305938 0.03286831759562662 0.16782167876162418 0.0010089501394100232 -0.02283979937482008 0.08608612433281396 0.004966371292275268 0.003833393658268118 0.05777184933080122 0.0028993640339560053 0.008931932160320587 0.16782167876162418 0.0010089501394100232 -0.02283979937482008 0.14373197195898219 0.01653128468128573 -0.04865264666290282 0.12409873141770475 0.015639998129742726 -0.07235219990883712 0.02488961632056136 0.0034983743716005718 -0.04562873976372557 0.019073924751259443 0.001878689204690153 -0.009943236039789399 0.0661533973572971 0.011578610137507 0.04320022499793686 0.034251336453970466 0.004587475858771331 0.016565746332689847 0.10188099206571827 0.02107296929120013 -0.08687631820817276 0.07628030152112182 0.00932089640380403 -0.014957066309934581 0.17195023244519358 0.002937467546342592 -0.021143371590069775 0.08385298580499871 0.00813782461474615 -0.04182936062716706 0.05117408229111407 0.00412846920536125 -0.04404642873820469 0.17195023244519358 0.002937467546342592 -0.021143371590069775 0.0772897910533561 0.0044164308972857655 -0.017785830775752756 0.04610711866871877 0.0025551023789048997 -0.012191322257775052 0.17195023244519358 0.002937467546342592 -0.021143371590069775 0.10316326038530947 0.012877796366791202 0.022065970413215195 0.0861488522476044 0.012815971649991948 0.03456474538037692 0.17195023244519358 0.002937467546342592 -0.021143371590069775 0.09021467801638333 0.006894888699207837 0.0055298214430184196 0.061900403014370595 0.004827881440888574 0.010628359945070888 0.17195023244519358 0.002937467546342592 -0.021143371590069775 0.14786052564255153 0.018459802088218298 -0.04695621887815252 0.12822728510127412 0.017568515536675294 -0.07065577212408682 0.029018170004130733 0.00542689177853314 -0.04393231197897527 0.023202478434828817 0.0038072066116227217 -0.008246808255039097 0.07028195104086647 0.013507127544439569 0.04489665278268716 0.03837989013753984 0.006515993265703899 0.018262174117440147 0.10600954574928764 0.0230014866981327 -0.08517989042342247 0.07609155994746881 0.010509970514295437 -0.013637553922268451 0.17176149087154058 0.004126541656833998 -0.019823859202403645 0.0836642442313457 0.009326898725237556 -0.04050984823950093 0.05098534071746107 0.005317543315852656 -0.04272691635053856 0.17176149087154058 0.004126541656833998 -0.019823859202403645 0.07710104947970309 0.0056055050077771715 -0.016466318388086626 0.045918377095065764 0.0037441764893963057 -0.010871809870108922 0.17176149087154058 0.004126541656833998 -0.019823859202403645 0.10297451881165647 0.014066870477282608 0.023385482800881326 0.08596011067395139 0.014005045760483354 0.03588425776804305 0.17176149087154058 0.004126541656833998 -0.019823859202403645 0.09002593644273033 0.008083962809699242 0.00684933383068455 0.06171166144071759 0.00601695555137998 0.011947872332737018 0.17176149087154058 0.004126541656833998 -0.019823859202403645 0.14767178406889853 0.019648876198709704 -0.04563670649048639 0.12803854352762112 0.0187575896471667 -0.06933625973642069 0.028829428430477727 0.006615965889024546 -0.04261279959130914 0.02301373686117581 0.004996280722114128 -0.006927295867372967 0.07009320946721347 0.014696201654930975 0.04621616517035329 0.038191148563886834 0.007705067376195305 0.019581686505106277 0.10582080417563464 0.024190560808624105 -0.08386037803575634 0.05367936879007566 -0.0008914139221248343 -0.003530426007752419 0.1493492997141474 -0.007274842779586273 -0.009716731287887612 0.06125205307395255 -0.0020744857111827156 -0.030402720324984894 0.028573149560067915 -0.006083841120567615 -0.03261978843602253 0.1493492997141474 -0.007274842779586273 -0.009716731287887612 0.05468885832230993 -0.0057958794286431 -0.006359190473570595 0.023506185937672612 -0.007657207947023965 -0.0007646819555928897 0.1493492997141474 -0.007274842779586273 -0.009716731287887612 0.08056232765426331 0.0026654860408623377 0.03349261071539736 0.06354791951655824 0.0026036613240630825 0.04599138568255908 0.1493492997141474 -0.007274842779586273 -0.009716731287887612 0.06761374528533717 -0.003317421626721028 0.01695646174520058 0.039299470283324436 -0.005384428885040291 0.02205500024725305 0.1493492997141474 -0.007274842779586273 -0.009716731287887612 0.1252595929115054 0.008247491762289434 -0.035529578575970354 0.10562635237022797 0.007356205210746429 -0.05922913182190466 0.006417237273084575 -0.004785418547395725 -0.03250567167679311 0.0006015457037826591 -0.006405103714306143 0.003179832047143065 0.047681018309820314 0.003294817218510704 0.05632329308486932 0.015778957406493682 -0.003696317060224966 0.02968881441962231 0.08340861301824148 0.012789176372203837 -0.0737532501212403 0.052749557680812326 -0.0013475070365777239 -0.008913616125816518 0.14841948860488408 -0.0077309358940391626 -0.015099921405951712 0.060322241964689216 -0.0025305788256356054 -0.03578591044304899 0.027643338450804578 -0.006539934235020505 -0.038002978554086624 0.14841948860488408 -0.0077309358940391626 -0.015099921405951712 0.05375904721304659 -0.006251972543095989 -0.011742380591634695 0.022576374828409275 -0.008113301061476855 -0.006147872073656989 0.14841948860488408 -0.0077309358940391626 -0.015099921405951712 0.07963251654499998 0.002209392926409448 0.028109420597333262 0.0626181084072949 0.002147568209610193 0.040608195564494985 0.14841948860488408 -0.0077309358940391626 -0.015099921405951712 0.06668393417607384 -0.0037735147411739178 0.011573271627136483 0.0383696591740611 -0.0058405219994931805 0.016671810129188953 0.14841948860488408 -0.0077309358940391626 -0.015099921405951712 0.12432978180224205 0.007791398647836544 -0.04091276869403445 0.10469654126096463 0.00690011209629354 -0.06461232193996876 0.005487426163821238 -0.005241511661848614 -0.037888861794857204 -0.000328265405480678 -0.006861196828759033 -0.0022033580709210337 0.04675120720055698 0.0028387241040578144 0.05094010296680523 0.014849146297230345 -0.004152410174677856 0.024305624301558214 0.08247880190897813 0.012333083257750947 -0.07913644023930441 0.055596050120658 -0.0018885023478195345 -0.009341201153702627 0.15126598104472974 -0.008271931205280973 -0.015527506433837822 0.06316873440453488 -0.0030715741368774157 -0.0362134954709351 0.03048983089065025 -0.0070809295462623155 -0.038430563581972735 0.15126598104472974 -0.008271931205280973 -0.015527506433837822 0.056605539652892264 -0.0067929678543378 -0.012169965619520804 0.025422867268254948 -0.008654296372718666 -0.006575457101543098 0.15126598104472974 -0.008271931205280973 -0.015527506433837822 0.08247900898484564 0.0016683976151676374 0.02768183556944715 0.06546460084714056 0.0016065728983683822 0.040180610536608874 0.15126598104472974 -0.008271931205280973 -0.015527506433837822 0.06953042661591952 -0.004314510052415729 0.011145686599250373 0.04121615161390677 -0.006381517310734991 0.016244225101302842 0.15126598104472974 -0.008271931205280973 -0.015527506433837822 0.12717627424208772 0.007250403336594733 -0.04134035372192056 0.10754303370081031 0.006359116785051729 -0.06503990696785486 0.00833391860366691 -0.005782506973090425 -0.038316446822743315 0.002518227034364995 -0.0074021921400008435 -0.002630943098807143 0.04959769964040265 0.0022977287928160036 0.050512517938919116 0.017695638737076018 -0.004693405485919666 0.023878039273672103 0.08532529434882381 0.011792087946509136 -0.07956402526719052 0.06674954750536603 -0.0014445721417557368 -0.011770568392677025 0.16241947842943777 -0.007828000999217176 -0.01795687367281222 0.07432223178924292 -0.002627643930813618 -0.0386428627099095 0.041643328275358285 -0.006636999340198518 -0.04085993082094713 0.16241947842943777 -0.007828000999217176 -0.01795687367281222 0.0677590370376003 -0.006349037648274002 -0.014599332858495202 0.03657636465296298 -0.008210366166654867 -0.009004824340517496 0.16241947842943777 -0.007828000999217176 -0.01795687367281222 0.09363250636955368 0.002112327821231435 0.025252468330472753 0.0766180982318486 0.00205050310443218 0.037751243297634476 0.16241947842943777 -0.007828000999217176 -0.01795687367281222 0.08068392400062754 -0.0038705798463519307 0.008716319360275976 0.05236964899861481 -0.005937587104671193 0.013814857862328445 0.16241947842943777 -0.007828000999217176 -0.01795687367281222 0.13832977162679577 0.00769433354265853 -0.04376972096089496 0.11869653108551834 0.0068030469911155265 -0.06746927420682927 0.019487415988374945 -0.005338576767026627 -0.04074581406171771 0.01367172441907303 -0.006958261933937046 -0.005060310337781541 0.060751197025110684 0.0027416589988798015 0.04808315069994472 0.028849136121784053 -0.0042494752798558685 0.021448672034697705 0.09647879173353185 0.012236018152572933 -0.08199339250616491 0.055311757058461926 0.00046474288288865837 -0.013401131851823043 0.15098168798253367 -0.00591868597457278 -0.019587437131958235 0.06288444134233881 -0.0007183289061692228 -0.04027342616905552 0.030205537828454178 -0.004727684315554122 -0.04249049428009315 0.15098168798253367 -0.00591868597457278 -0.019587437131958235 0.05632124659069619 -0.004439722623629606 -0.01622989631764122 0.025138574206058875 -0.006301051142010472 -0.010635387799663514 0.15098168798253367 -0.00591868597457278 -0.019587437131958235 0.08219471592264957 0.00402164284587583 0.023621904871326736 0.06518030778494449 0.003959818129076575 0.03612067983848846 0.15098168798253367 -0.00591868597457278 -0.019587437131958235 0.06924613355372344 -0.0019612648217075357 0.007085755901129958 0.0409318585517107 -0.004028272080026798 0.012184294403182427 0.15098168798253367 -0.00591868597457278 -0.019587437131958235 0.12689198117989164 0.009603648567302926 -0.04540028442004097 0.10725874063861424 0.008712362015759922 -0.06909983766597529 0.008049625541470838 -0.003429261742382232 -0.042376377520863734 0.002233933972168922 -0.00504894690929265 -0.006690873796927559 0.04931340657820658 0.004650974023524197 0.046452587240798704 0.017411345674879945 -0.0023401602552114735 0.019818108575551687 0.08504100128662774 0.014145333177217329 -0.08362395596531093 0.05764670205576588 0.005058302935301811 -0.015489980912827281 0.15331663297983764 -0.001325125922159628 -0.021676286192962475 0.06521938633964276 0.003875231146243929 -0.042362275230059754 0.03254048282575813 -0.00013412426314097017 -0.04457934334109739 0.15331663297983764 -0.001325125922159628 -0.021676286192962475 0.058656191588000145 0.00015383742878354555 -0.018318745378645456 0.02747351920336283 -0.0017074910895973202 -0.012724236860667752 0.15331663297983764 -0.001325125922159628 -0.021676286192962475 0.08452966091995352 0.008615202898288982 0.0215330558103225 0.06751525278224844 0.008553378181489726 0.03403183077748422 0.15331663297983764 -0.001325125922159628 -0.021676286192962475 0.0715810785510274 0.0026322952307056167 0.00499690684012572 0.04326680354901465 0.000565287972386354 0.010095445342178188 0.15331663297983764 -0.001325125922159628 -0.021676286192962475 0.1292269261771956 0.014197208619716078 -0.04748913348104521 0.10959368563591818 0.013305922068173074 -0.07118868672697952 0.010384570538774791 0.0011642983100309204 -0.04446522658186797 0.004568878969472875 -0.00045538685687949824 -0.008779722857931797 0.05164835157551053 0.009244534075937349 0.044363738179794464 0.0197462906721839 0.002253399797201679 0.01772925951454745 0.0873759462839317 0.01873889322963048 -0.08571280502631518 0.06485480123161988 0.005059477419151797 -0.016554695812385282 0.16052473215569163 -0.0013239514383096415 -0.022741001092520474 0.07242748551549677 0.0038764056300939157 -0.04342699012961776 0.03974858200161213 -0.00013294977929098357 -0.045644058240655386 0.16052473215569163 -0.0013239514383096415 -0.022741001092520474 0.06586429076385415 0.00015501191263353215 -0.01938346027820346 0.03468161837921683 -0.0017063166057473336 -0.013788951760225753 0.16052473215569163 -0.0013239514383096415 -0.022741001092520474 0.09173776009580753 0.00861637738213897 0.020468340910764497 0.07472335195810245 0.008554552665339714 0.03296711587792622 0.16052473215569163 -0.0013239514383096415 -0.022741001092520474 0.07878917772688139 0.0026334697145556033 0.003932191940567719 0.05047490272486865 0.0005664624562363406 0.009030730442620188 0.16052473215569163 -0.0013239514383096415 -0.022741001092520474 0.1364350253530496 0.014198383103566064 -0.04855384838060321 0.11680178481177218 0.01330709655202306 -0.07225340162653753 0.017592669714628792 0.001165472793880907 -0.04552994148142597 0.011776978145326876 -0.00045421237302951164 -0.009844437757489798 0.05885645075136453 0.009245708559787336 0.043299023280236465 0.0269543898480379 0.0022545742810516655 0.016664544614989448 0.09458404545978569 0.01874006771348047 -0.08677751992587317 0.06571154181331203 0.0013581680573438422 -0.015444524787599905 0.1613814727373838 -0.0050252608001175965 -0.0216308300677351 0.07328422609718892 0.00017509626828596096 -0.04231681910483238 0.04060532258330428 -0.0038342591410989385 -0.04453388721587001 0.1613814727373838 -0.0050252608001175965 -0.0216308300677351 0.0667210313455463 -0.003546297449174423 -0.01827328925341808 0.035538358960908976 -0.005407625967555289 -0.012678780735440376 0.1613814727373838 -0.0050252608001175965 -0.0216308300677351 0.09259450067749968 0.0049150680203310145 0.021578511935549875 0.0755800925397946 0.004853243303531759 0.0340772869027116 0.1613814727373838 -0.0050252608001175965 -0.0216308300677351 0.07964591830857354 -0.0010678396472523517 0.005042362965353096 0.0513316433065608 -0.0031348469055716144 0.010140901467405565 0.1613814727373838 -0.0050252608001175965 -0.0216308300677351 0.13729176593474174 0.010497073741758109 -0.04744367735581784 0.11765852539346433 0.009605787190215105 -0.07114323060175215 0.01844941029632094 -0.002535836567927048 -0.04441977045664059 0.012633718727019023 -0.004155521734837467 -0.00873426673270442 0.05971319133305668 0.0055443991979793805 0.04440919430502184 0.027811130429730047 -0.0014467350807562895 0.017774715639774827 0.09544078604147785 0.015038758351672513 -0.08566734890108779 0.07178482352349605 0.005386528687427981 -0.01759649013715919 0.1674547544475678 -0.000996900170033458 -0.023782795417294382 0.07935750780737294 0.004203456898370099 -0.04446878445439166 0.0466786042934883 0.0001941014889851999 -0.0466858525654293 0.1674547544475678 -0.000996900170033458 -0.023782795417294382 0.07279431305573032 0.0004820631809097156 -0.020425254602977366 0.041611640671093 -0.0013792653374711502 -0.01483074608499966 0.1674547544475678 -0.000996900170033458 -0.023782795417294382 0.0986677823876837 0.008943428650415152 0.01942654658599059 0.08165337424997862 0.008881603933615898 0.03192532155315231 0.1674547544475678 -0.000996900170033458 -0.023782795417294382 0.08571920001875756 0.0029605209828317868 0.002890397615793811 0.05740492501674482 0.000893513724512524 0.00798893611784628 0.1674547544475678 -0.000996900170033458 -0.023782795417294382 0.14336504764492577 0.014525434371842248 -0.04959564270537713 0.12373180710364835 0.013634147820299244 -0.07329519595131143 0.024522692006504962 0.0014925240621570905 -0.046571735806199874 0.018707000437203046 -0.00012716110475332817 -0.010886232082263705 0.0657864730432407 0.009572759828063519 0.04225722895546255 0.03388441213991407 0.002581625549327849 0.01562275029021554 0.10151406775166186 0.01906711898175665 -0.08781931425064708 0.07061119079034503 0.002507652000478643 -0.016379818665038213 0.16628112171441678 -0.0038757768569827955 -0.022566123945173405 0.07818387507422192 0.0013245802114207619 -0.04325211298227069 0.04550497156033728 -0.0026847751979641376 -0.04546918109330832 0.16628112171441678 -0.0038757768569827955 -0.022566123945173405 0.0716206803225793 -0.002396813506039622 -0.01920858313085639 0.04043800793794198 -0.004258142024420488 -0.013614074612878684 0.16628112171441678 -0.0038757768569827955 -0.022566123945173405 0.09749414965453268 0.006064551963465815 0.020643218058111566 0.0804797415168276 0.00600272724666656 0.03314199302527329 0.16628112171441678 -0.0038757768569827955 -0.022566123945173405 0.08454556728560654 8.164429588244926e-05 0.004107069087914788 0.0562312922835938 -0.0019853629624368135 0.009205607589967257 0.16628112171441678 -0.0038757768569827955 -0.022566123945173405 0.14219141491177476 0.011646557684892912 -0.04837897123325614 0.12255817437049733 0.010755271133349908 -0.07207852447919046 0.023349059273353942 -0.001386352624792247 -0.045355064334078904 0.017533367704052026 -0.0030060377917026657 -0.009669560610142729 0.06461284031008968 0.006693883141114181 0.043473900427583534 0.03271077940676305 -0.00029725113762148854 0.016839421762336517 0.10034043501851084 0.016188242294807312 -0.0866026427785261 0.07208264731594803 -0.00041180264979401396 -0.012887104965293097 0.16775257824001977 -0.006795231507255453 -0.01907341024542829 0.07965533159982492 -0.0015948744388518952 -0.03975939928252557 0.04697642808594028 -0.005604229848236795 -0.041976467393563206 0.16775257824001977 -0.006795231507255453 -0.01907341024542829 0.0730921368481823 -0.005316268156312279 -0.015715869431111272 0.04190946446354498 -0.007177596674693145 -0.010121360913133568 0.16775257824001977 -0.006795231507255453 -0.01907341024542829 0.09896560618013568 0.003145097313193158 0.02413593175785668 0.0819511980424306 0.0030832725963939028 0.0366347067250184 0.16775257824001977 -0.006795231507255453 -0.01907341024542829 0.08601702381120954 -0.002837810354390208 0.007599782787659904 0.057702748809196805 -0.0049048176127094705 0.012698321289712372 0.16775257824001977 -0.006795231507255453 -0.01907341024542829 0.14366287143737777 0.008727103034620253 -0.04488625753351103 0.12402963089610033 0.007835816483077249 -0.06858581077944534 0.024820515798956944 -0.004305807275064904 -0.041862350634333786 0.019004824229655028 -0.005925492441975323 -0.006176846910397613 0.06608429683569268 0.0037744284908415244 0.046966614127328644 0.03418223593236605 -0.0032167057878941456 0.02033213546208163 0.10181189154411385 0.013268787644534655 -0.08310992907878098 0.0762489708571714 0.005425225033628463 -0.01649457013789361 0.17191890178124314 -0.0009582038238329753 -0.022680875418028802 0.08382165514104829 0.004242153244570582 -0.04336686445512608 0.051142751627163655 0.00023279783518568263 -0.04558393256616372 0.17191890178124314 -0.0009582038238329753 -0.022680875418028802 0.07725846038940568 0.0005207595271101984 -0.019323334603711786 0.04607578800476835 -0.0013405689912706674 -0.01372882608573408 0.17191890178124314 -0.0009582038238329753 -0.022680875418028802 0.10313192972135905 0.008982124996615635 0.02052846658525617 0.08611752158365397 0.008920300279816381 0.03302724155241789 0.17191890178124314 -0.0009582038238329753 -0.022680875418028802 0.09018334735243291 0.0029992173290322695 0.003992317615059391 0.061869072350420176 0.0009322100707130068 0.00909085611711186 0.17191890178124314 -0.0009582038238329753 -0.022680875418028802 0.14782919497860114 0.014564130718042731 -0.04849372270611155 0.1281959544373237 0.013672844166499727 -0.07219327595204585 0.028986839340180315 0.0015312204083575733 -0.045469815806934294 0.0231711477708784 -8.846475855284544e-05 -0.009784312082998126 0.07025062037691605 0.009611456174264002 0.04335914895472813 0.03834855947358942 0.0026203218955283317 0.01672467028948112 0.10597821508533722 0.019105815327957132 -0.0867173942513815 0.07660811980017813 0.007748006866668718 -0.015816246541048438 0.1722780507242499 0.001364578009207279 -0.02200255182118363 0.08418080408405502 0.006564935077610836 -0.042688540858280916 0.051501900570170386 0.002555579668225937 -0.04490560896931854 0.1722780507242499 0.001364578009207279 -0.02200255182118363 0.07761760933241241 0.0028435413601504526 -0.018645011006866614 0.046434936947775084 0.0009822128417695869 -0.013050502488888909 0.1722780507242499 0.001364578009207279 -0.02200255182118363 0.10349107866436578 0.011304906829655889 0.02120679018210134 0.0864766705266607 0.011243082112856635 0.03370556514926307 0.1722780507242499 0.001364578009207279 -0.02200255182118363 0.09054249629543965 0.005321999162072524 0.004670641211904563 0.06222822129342691 0.003254991903753261 0.009769179713957032 0.1722780507242499 0.001364578009207279 -0.02200255182118363 0.14818834392160785 0.016886912551082985 -0.04781539910926637 0.12855510338033044 0.01599562599953998 -0.07151495235520068 0.029345988283187047 0.0038540022413978275 -0.04479149221008913 0.02353029671388513 0.002234317074487409 -0.009105988486152954 0.07060976931992279 0.011934238007304256 0.04403747255157331 0.038707708416596154 0.0049431037285685864 0.017402993886326292 0.10633736402834396 0.02142859716099739 -0.08603907065453632 0.07796979214616806 0.004159025995132675 -0.012595394125975429 0.1736397230702398 -0.0022244028623287634 -0.018781699406110623 0.08554247643004495 0.002975954206074794 -0.0394676884432079 0.05286357291616031 -0.0010334012033101055 -0.041684756554245535 0.1736397230702398 -0.0022244028623287634 -0.018781699406110623 0.07897928167840233 -0.0007454395113855898 -0.015424158591793606 0.04779660929376501 -0.0026067680297664556 -0.0098296500738159 0.1736397230702398 -0.0022244028623287634 -0.018781699406110623 0.10485275101035571 0.0077159259581198476 0.02442764259717435 0.08783834287265063 0.007654101241320592 0.036926417564336074 0.1736397230702398 -0.0022244028623287634 -0.018781699406110623 0.09190416864142957 0.0017330182905364814 0.007891493626977572 0.06358989363941683 -0.00033398896778278134 0.01299003212903004 0.1736397230702398 -0.0022244028623287634 -0.018781699406110623 0.14955001626759779 0.013297931679546942 -0.04459454669419336 0.12991677572632038 0.012406645128003938 -0.06829409994012767 0.030707660629176972 0.00026502136986178513 -0.041570639795016115 0.024891969059875056 -0.0013546637970486336 -0.005885136071079945 0.07197144166591271 0.008345257135768214 0.047258324966646316 0.04006938076258608 0.0013541228570325436 0.020623846301399303 0.10769903637433387 0.017839616289461346 -0.08281821823946332 0.07443460373371767 0.003003268423743678 -0.016034996459649845 0.1701045346577894 -0.0033801604337177606 -0.022221301739785038 0.08200728801759456 0.0018201966346857968 -0.04290729077688232 0.049328384503709924 -0.0021891587746991027 -0.04512435888791995 0.1701045346577894 -0.0033801604337177606 -0.022221301739785038 0.07544409326595194 -0.001901197082774587 -0.018863760925468022 0.04426142088131462 -0.0037625256011554527 -0.013269252407490316 0.1701045346577894 -0.0033801604337177606 -0.022221301739785038 0.10131756259790532 0.00656016838673085 0.020988040263499933 0.08430315446020024 0.006498343669931595 0.03348681523066166 0.1701045346577894 -0.0033801604337177606 -0.022221301739785038 0.08836898022897918 0.0005772607191474842 0.0044518912933031556 0.060054705226966446 -0.0014897465391717785 0.009550429795355624 0.1701045346577894 -0.0033801604337177606 -0.022221301739785038 0.1460148278551474 0.012142174108157947 -0.048034149027867776 0.12638158731386998 0.011250887556614943 -0.07173370227380209 0.027172472216726584 -0.0008907362015272121 -0.045010242128690536 0.021356780647424668 -0.0025104213684376308 -0.009324738404754361 0.06843625325346232 0.007189499564379216 0.0438187226329719 0.03653419235013569 0.0001983652856435464 0.017184243967724885 0.1041638479618835 0.016683858718072347 -0.08625782057313773 0.07580127046652804 0.001706175323678241 -0.012910634295391396 0.1714712013905998 -0.0046772535337831975 -0.019096939575526592 0.08337395475040493 0.0005231035346203597 -0.03978292861262387 0.050695051236520294 -0.0034862518747645396 -0.041999996723661503 0.1714712013905998 -0.0046772535337831975 -0.019096939575526592 0.07681075999876232 -0.003198290182840024 -0.015739398761209573 0.04562808761412499 -0.00505961870122089 -0.010144890243231867 0.1714712013905998 -0.0046772535337831975 -0.019096939575526592 0.10268422933071569 0.005263075286665413 0.024112402427758382 0.08566982119301061 0.005201250569866158 0.036611177394920105 0.1714712013905998 -0.0046772535337831975 -0.019096939575526592 0.08973564696178955 -0.0007198323809179529 0.007576253457561605 0.061421371959776816 -0.0027868396392372154 0.012674791959614073 0.1714712013905998 -0.0046772535337831975 -0.019096939575526592 0.14738149458795777 0.010845081008092509 -0.04490978686360933 0.12774825404668033 0.009953794456549505 -0.06860934010954364 0.028539138949536955 -0.002187829301592649 -0.041885879964432084 0.02272344738023504 -0.0038075144685030676 -0.006200376240495912 0.0698029199862727 0.0058924064643137795 0.04694308479723035 0.03790085908294606 -0.0010987278144218907 0.020308606131983334 0.10553051469469385 0.015386765618006911 -0.08313345840887928 0.021354245470169703 -0.0006053390555853288 -0.021077360069283634 0.11702417639424145 -0.006988767913046767 -0.027263665349418827 0.028926929754046593 -0.00178841084464321 -0.047949654386516105 -0.0037519737598380454 -0.0057977662540281095 -0.050166722497553745 0.11702417639424145 -0.006988767913046767 -0.027263665349418827 0.022363735002403972 -0.005509804562103594 -0.02390612453510181 -0.008818937382233348 -0.00737113308048446 -0.018311616017124104 0.11702417639424145 -0.006988767913046767 -0.027263665349418827 0.04823720433435735 0.002951560907401843 0.015945676653866144 0.031222796196652268 0.002889736190602588 0.028444451621027867 0.11702417639424145 -0.006988767913046767 -0.027263665349418827 0.03528862196543121 -0.0030313467601815226 -0.0005904723163306334 0.006974346963418476 -0.005098354018500785 0.004508066185721835 0.11702417639424145 -0.006988767913046767 -0.027263665349418827 0.09293446959159943 0.00853356662882894 -0.05307651263750157 0.073301229050322 0.007642280077285935 -0.07677606588343587 -0.025907886046821385 -0.004499343680856219 -0.05005260573832432 -0.0317235776161233 -0.006119028847766638 -0.01436710201438815 0.01535589498991435 0.0035808920850502095 0.038776359023338106 -0.016546165913412278 -0.0034102421936854604 0.012141880358091096 0.05108348969833552 0.01307525123874334 -0.09130018418277153 0.01920876917401656 -0.003468594285772611 -0.025519186449136772 0.11487870009808832 -0.00985202314323405 -0.031705491729271965 0.02678145345789345 -0.004651666074830492 -0.05239148076636925 -0.005897450055991189 -0.008661021484215391 -0.054608548877406876 0.11487870009808832 -0.00985202314323405 -0.031705491729271965 0.020218258706250828 -0.008373059792290876 -0.02834795091495495 -0.010964413678386492 -0.010234388310671742 -0.02275344239697724 0.11487870009808832 -0.00985202314323405 -0.031705491729271965 0.0460917280382042 8.83056772145608e-05 0.011503850274013006 0.029077319900499124 2.648096041530561e-05 0.02400262524117473 0.11487870009808832 -0.00985202314323405 -0.031705491729271965 0.03314314566927807 -0.005894601990368805 -0.005032298696183771 0.004828870667265332 -0.007961609248688068 6.623980586869735e-05 0.11487870009808832 -0.00985202314323405 -0.031705491729271965 0.09078899329544629 0.005670311398641657 -0.0575183390173547 0.07115575275416886 0.004779024847098653 -0.08121789226328902 -0.02805336234297453 -0.007362598911043501 -0.05449443211817746 -0.033869053912276445 -0.00898228407795392 -0.018808928394241288 0.013210418693761206 0.0007176368548629272 0.034334532643484975 -0.018691642209565422 -0.006273497423872743 0.007700053978237958 0.04893801340218237 0.01021199600855606 -0.09574201056262466 0.014768679758744834 -0.0035295214260465174 -0.023879007317856575 0.11043861068281659 -0.009912950283507957 -0.03006531259799177 0.02234136404262172 -0.004712593215104399 -0.05075130163508905 -0.010337539471262914 -0.008721948624489297 -0.05296836974612668 0.11043861068281659 -0.009912950283507957 -0.03006531259799177 0.015778169290979104 -0.008433986932564783 -0.026707771783674752 -0.015404503093658217 -0.010295315450945648 -0.021113263265697044 0.11043861068281659 -0.009912950283507957 -0.03006531259799177 0.04165163862293248 2.7378536940654476e-05 0.013144029405293203 0.024637230485227403 -3.444617985860071e-05 0.025642804372454926 0.11043861068281659 -0.009912950283507957 -0.03006531259799177 0.02870305625400635 -0.005955529130642711 -0.0033921195649035743 0.0003887812519936078 -0.008022536388961974 0.0017064189371488944 0.11043861068281659 -0.009912950283507957 -0.03006531259799177 0.08634890388017456 0.00560938425836775 -0.05587815988607451 0.06671566333889714 0.004718097706824746 -0.07957771313200881 -0.03249345175824625 -0.0074235260513174075 -0.05285425298689726 -0.03830914332754817 -0.009043211218227827 -0.01716874926296109 0.008770329278489482 0.0006567097145890209 0.03597471177476517 -0.023131731624837146 -0.0063344245641466495 0.009340233109518155 0.044497923986910645 0.010151068868282154 -0.09410183143134446 0.01715340218383554 -0.00048645947357370094 -0.01957231826102666 0.11282333310790729 -0.00686988833103514 -0.025758623541161853 0.024726086467712426 -0.0016695312626315822 -0.04644461257825913 -0.00795281704617221 -0.005678886672016482 -0.04866168068929677 0.11282333310790729 -0.00686988833103514 -0.025758623541161853 0.018162891716069808 -0.005390924980091966 -0.022401082726844837 -0.013019780668567512 -0.007252253498472832 -0.01680657420886713 0.11282333310790729 -0.00686988833103514 -0.025758623541161853 0.044036361048023186 0.003070440489413471 0.017450718462123118 0.027021952910318107 0.0030086157726142157 0.02994949342928484 0.11282333310790729 -0.00686988833103514 -0.025758623541161853 0.031087778679097053 -0.002912467178169895 0.0009145694919263404 0.0027735036770843123 -0.0049794744364891575 0.006013107993978809 0.11282333310790729 -0.00686988833103514 -0.025758623541161853 0.08873362630526527 0.008652446210840567 -0.0515714708292446 0.06910038576398785 0.007761159659297563 -0.0752710240751789 -0.03010872933315555 -0.004380464098844591 -0.048547563930067344 -0.03592442090245747 -0.00600014926575501 -0.012862060206131176 0.011155051703580186 0.0036997716670618373 0.04028140083159508 -0.020747009199746442 -0.0032913626116738326 0.01364692216634807 0.04688264641200135 0.01319413082075497 -0.08979514237451455 0.0207510552361223 0.01223286479817056 -0.023594061457770345 0.11642098616019406 0.005849435940709122 -0.029780366737905538 0.02832373951999919 0.01104979300911268 -0.050466355775002816 -0.004355163993885448 0.00704043759972778 -0.052683423886040456 0.11642098616019406 0.005849435940709122 -0.029780366737905538 0.02176054476835657 0.007328399291652295 -0.026422825923588522 -0.009422127616280751 0.00546707077327143 -0.020828317405610815 0.11642098616019406 0.005849435940709122 -0.029780366737905538 0.04763401410030994 0.015789764761157732 0.013428975265379433 0.030619605962604865 0.015727940044358478 0.025927750232541156 0.11642098616019406 0.005849435940709122 -0.029780366737905538 0.03468543173138381 0.009806857093574366 -0.0031071737048173446 0.006371156729371073 0.007739849835255104 0.001991364797235124 0.11642098616019406 0.005849435940709122 -0.029780366737905538 0.09233127935755203 0.021371770482584828 -0.05559321402598828 0.0726980388162746 0.020480483931041824 -0.07929276727192258 -0.026511076280868788 0.00833886017289967 -0.05256930712681103 -0.032326767850170704 0.006719175005989252 -0.01688380340287486 0.014752704755866947 0.016419095938806097 0.036259657634851394 -0.01714935614745968 0.00942796166007043 0.009625178969604384 0.050480299464288114 0.025913455092499232 -0.09381688557125824 0.022296866580762825 0.00855931779159367 -0.02058657969405908 0.11796679750483458 0.0021758889341322307 -0.026772884974194278 0.029869550864639716 0.007376246002535788 -0.047458874011291556 -0.002809352649244923 0.0033668905931508886 -0.04967594212232919 0.11796679750483458 0.0021758889341322307 -0.026772884974194278 0.023306356112997095 0.0036548522850754044 -0.02341534415987726 -0.007876316271640225 0.0017935237666945386 -0.01782083564189955 0.11796679750483458 0.0021758889341322307 -0.026772884974194278 0.049179825444950476 0.01211621775458084 0.016436457029090697 0.03216541730724539 0.012054393037781587 0.02893523199625242 0.11796679750483458 0.0021758889341322307 -0.026772884974194278 0.036231243076024336 0.0061333100869974755 -9.969194110608093e-05 0.007916968074011599 0.004066302828678213 0.004998846560946388 0.11796679750483458 0.0021758889341322307 -0.026772884974194278 0.09387709070219255 0.017698223476007937 -0.052585732262277016 0.07424385016091513 0.016806936924464933 -0.07628528550821131 -0.024965264936228262 0.004665313166322779 -0.04956182536309977 -0.03078095650553018 0.0030456279994123606 -0.013876321639163598 0.016298516100507473 0.012745548932229208 0.03926713939856266 -0.015603544802819155 0.005754414653493538 0.012632660733315648 0.05202611080892864 0.02223990808592234 -0.09080940380754697 0.01849771531394793 0.00891596706624254 -0.019031083447572403 0.11416764623801968 0.002532538208781101 -0.025217388727707596 0.02607039959782482 0.007732895277184658 -0.04590337776480488 -0.0066085039160598165 0.003723539867799759 -0.04812044587584251 0.11416764623801968 0.002532538208781101 -0.025217388727707596 0.0195072048461822 0.0040115015597242745 -0.02185984791339058 -0.01167546753845512 0.0021501730413434087 -0.016265339395412873 0.11416764623801968 0.002532538208781101 -0.025217388727707596 0.04538067417813558 0.012472867029229711 0.017991953275577375 0.0283662660404305 0.012411042312430457 0.030490728242739098 0.11416764623801968 0.002532538208781101 -0.025217388727707596 0.032432091809209446 0.006489959361646346 0.0014558043053805973 0.004117816807196705 0.004422952103327083 0.006554342807433066 0.11416764623801968 0.002532538208781101 -0.025217388727707596 0.09007793943537766 0.018054872750656807 -0.051030236015790334 0.07044469889410024 0.017163586199113803 -0.07472978926172465 -0.028764416203043156 0.005021962440971649 -0.048006329116613095 -0.034580107772345076 0.0034022772740612307 -0.01232082539267692 0.01249936483369258 0.013102198206878078 0.04082263564504934 -0.01940269606963405 0.006111063928142408 0.014188156979802326 0.04822695954211374 0.022596557360571208 -0.08925390756106029 0.015919336043812734 0.012910507959242723 -0.02186886739129032 0.11158926696788449 0.006527079101781285 -0.028055172671425516 0.02349202032768962 0.011727436170184843 -0.048741161708522794 -0.009186883186195014 0.007718080760799943 -0.05095822981956043 0.11158926696788449 0.006527079101781285 -0.028055172671425516 0.016928825576047003 0.008006042452724458 -0.024697631857108496 -0.014253846808590317 0.0061447139343435925 -0.01910312333913079 0.11158926696788449 0.006527079101781285 -0.028055172671425516 0.04280229490800038 0.016467407922229896 0.015154169331859459 0.025787886770295303 0.01640558320543064 0.02765294429902118 0.11158926696788449 0.006527079101781285 -0.028055172671425516 0.029853712539074248 0.01048450025464653 -0.001381979638337319 0.0015394375370615075 0.008417492996327266 0.0037165588637151498 0.11158926696788449 0.006527079101781285 -0.028055172671425516 0.08749956016524246 0.022049413643656993 -0.053868019959508254 0.06786631962396504 0.02115812709211399 -0.07756757320544255 -0.03134279547317835 0.009016503333971833 -0.05084411306033101 -0.03715848704248027 0.0073968181670614145 -0.015158609336394836 0.009920985563557382 0.01709673909987826 0.037984851701331424 -0.021981075339769247 0.010105604821142592 0.01135037303608441 0.045648580271978545 0.026591098253571394 -0.09209169150477821 0.02026440093560407 0.012916537577077546 -0.029142657441893607 0.11593433185967582 0.006533108719616107 -0.0353289627220288 0.02783708521948096 0.011733465788019665 -0.05601495175912608 -0.00484181829440368 0.007724110378634765 -0.058232019870163715 0.11593433185967582 0.006533108719616107 -0.0353289627220288 0.021273890467838338 0.008012072070559281 -0.03197142190771178 -0.009908781916798982 0.006150743552178415 -0.026376913389734077 0.11593433185967582 0.006533108719616107 -0.0353289627220288 0.04714735979979172 0.01647343754006472 0.007880379281256171 0.030132951662086634 0.016411612823265462 0.020379154248417894 0.11593433185967582 0.006533108719616107 -0.0353289627220288 0.03419877743086558 0.010490529872481353 -0.008655769688940607 0.005884502428852842 0.008423522614162089 -0.003557231186888138 0.11593433185967582 0.006533108719616107 -0.0353289627220288 0.0918446250570338 0.022055443261491815 -0.06114181001011154 0.07221138451575637 0.02116415670994881 -0.08484136325604585 -0.02699773058138702 0.009022532951806656 -0.058117903110934295 -0.032813422150688935 0.007402847784896237 -0.022432399386998123 0.014266050455348716 0.017102768717713084 0.030711061650728136 -0.017636010447977912 0.010111634438977415 0.0040765829854811225 0.04999364516376988 0.026597127871406216 -0.0993654815553815 0.013578690472807067 0.013684370690675676 -0.02723930115776967 0.10924862139687881 0.007300941833214237 -0.03342560643790486 0.021151374756683956 0.012501298901617795 -0.05411159547500215 -0.011527528757200681 0.008491943492232895 -0.05632866358603977 0.10924862139687881 0.007300941833214237 -0.03342560643790486 0.014588180005041336 0.00877990518415741 -0.030068065623587846 -0.016594492379595982 0.006918576665776545 -0.02447355710561014 0.10924862139687881 0.007300941833214237 -0.03342560643790486 0.04046164933699471 0.01724127065366285 0.009783735565380109 0.023447241199289634 0.01717944593686359 0.022282510532541832 0.10924862139687881 0.007300941833214237 -0.03342560643790486 0.02751306696806858 0.011258362986079483 -0.0067524134048166685 -0.0008012080339441594 0.009191355727760218 -0.0016538749027641998 0.10924862139687881 0.007300941833214237 -0.03342560643790486 0.08515891459423679 0.02282327637508994 -0.0592384537259876 0.06552567405295937 0.021931989823546938 -0.08293800697192191 -0.03368344104418402 0.009790366065404786 -0.05621454682681036 -0.039499132613485935 0.008170680898494367 -0.020529043102874185 0.0075803399925517155 0.017870601831311214 0.03261441793485208 -0.024321720910774912 0.010879467552575545 0.005979939269605061 0.04330793470097288 0.027364960985004346 -0.09746212527125755 0.01108030121429751 0.01412693135258351 -0.0205641146820799 0.10675023213836926 0.007743502495122071 -0.026750419962215097 0.018652985498174398 0.01294385956352563 -0.047436408999312375 -0.014025918015710239 0.008934504154140729 -0.04965347711035001 0.10675023213836926 0.007743502495122071 -0.026750419962215097 0.012089790746531779 0.009222465846065245 -0.023392879147898078 -0.01909288163810554 0.007361137327684379 -0.01779837062992037 0.10675023213836926 0.007743502495122071 -0.026750419962215097 0.037963260078485155 0.01768383131557068 0.016458922041069877 0.020948851940780076 0.017622006598771427 0.0289576970082316 0.10675023213836926 0.007743502495122071 -0.026750419962215097 0.02501467770955902 0.011700923647987315 -7.72269291269001e-05 -0.003299597292453717 0.009633916389668054 0.005021311572925569 0.10675023213836926 0.007743502495122071 -0.026750419962215097 0.08266052533572724 0.023265837036997777 -0.052563267250297835 0.06302728479444981 0.022374550485454774 -0.07626282049623215 -0.03618183030269358 0.01023292672731262 -0.04953936035112059 -0.04199752187199549 0.008613241560402201 -0.013853856627184417 0.005081950734042158 0.01831316249321905 0.03928960441054184 -0.02682011016928447 0.011322028214483379 0.012655125745294829 0.040809545442463326 0.02780752164691218 -0.09078693879556779 0.014369778909436299 0.009494148131602867 -0.017793165368464852 0.11003970983350805 0.003110719274141428 -0.023979470648600044 0.021942463193313187 0.008311076342544986 -0.04466545968569732 -0.01073644032057145 0.004301720933160086 -0.04688252779673496 0.11003970983350805 0.003110719274141428 -0.023979470648600044 0.015379268441670568 0.004589682625084602 -0.02062192983428303 -0.015803403942966754 0.002728354106703736 -0.015027421316305323 0.11003970983350805 0.003110719274141428 -0.023979470648600044 0.04125273777362395 0.013051048094590038 0.019229871354684926 0.024238329635918866 0.012989223377790782 0.031728646321846646 0.11003970983350805 0.003110719274141428 -0.023979470648600044 0.02830415540469781 0.007068140427006673 0.0026937223844881487 -1.0119597314927828e-05 0.00500113316868741 0.0077922608865406175 0.11003970983350805 0.003110719274141428 -0.023979470648600044 0.08595000303086603 0.018633053816017132 -0.04979231793668279 0.06631676248958861 0.01774176726447413 -0.07349187118261709 -0.03289235260755479 0.0056001435063319765 -0.046768411037505536 -0.03870804417685671 0.003980458339421558 -0.011082907313569368 0.008371428429180948 0.013680379272238405 0.04206055372415689 -0.023530632474145684 0.006689244993502735 0.015426075058909878 0.04409902313760211 0.023174738425931537 -0.08801598948195274 -0.00014959608986160475 0.009163869259258037 -0.013246340127218188 0.09552033483421014 0.002780440401796598 -0.019432645407353382 0.007423088194015284 0.007980797470200156 -0.040118634444450664 -0.025255815319869354 0.003971442060815256 -0.0423357025554883 0.09552033483421014 0.002780440401796598 -0.019432645407353382 0.0008598934423726641 0.004259403752739772 -0.016075104593036363 -0.030322778942264657 0.002398075234358906 -0.010480596075058659 0.09552033483421014 0.002780440401796598 -0.019432645407353382 0.02673336277432604 0.012720769222245208 0.02377669659593159 0.009718954636620963 0.012658944505445954 0.03627547156309331 0.09552033483421014 0.002780440401796598 -0.019432645407353382 0.013784780405399908 0.006737861554661843 0.007240547625734813 -0.01452949459661283 0.00467085429634258 0.012339086127787282 0.09552033483421014 0.002780440401796598 -0.019432645407353382 0.07143062803156812 0.018302774943672304 -0.045245492695436124 0.0517973874902907 0.0174114883921293 -0.06894504594137042 -0.047411727606852694 0.005269864633987147 -0.04222158579625888 -0.05322741917615461 0.003650179467076728 -0.006536082072322704 -0.006147946570116956 0.013350100399893575 0.046607378965403554 -0.03805000747344359 0.0063589661211579055 0.01997290030015654 0.02957964813830421 0.02284445955358671 -0.08346916424070608 -0.002104883356448753 0.014635643497590445 -0.017108525007370763 0.093565047567623 0.008252214640129006 -0.02329483028750596 0.005467800927428136 0.013452571708532564 -0.04398081932460324 -0.027211102586456502 0.009443216299147664 -0.04619788743564087 0.093565047567623 0.008252214640129006 -0.02329483028750596 -0.001095393824214484 0.00973117799107218 -0.01993728947318894 -0.032278066208851805 0.007869849472691315 -0.014342780955211234 0.093565047567623 0.008252214640129006 -0.02329483028750596 0.024778075507738893 0.018192543460577616 0.019914511715779015 0.0077636673700338145 0.018130718743778362 0.03241328668294074 0.093565047567623 0.008252214640129006 -0.02329483028750596 0.01182949313881276 0.01220963579299425 0.0033783627455822376 -0.01648478186319998 0.010142628534674989 0.008476901247634706 0.093565047567623 0.008252214640129006 -0.02329483028750596 0.06947534076498098 0.023774549182004712 -0.0491076775755887 0.04984210022370355 0.02288326263046171 -0.072807230821523 -0.04936701487343984 0.010741638872319555 -0.04608377067641145 -0.05518270644274176 0.009121953705409136 -0.010398266952475279 -0.008103233836704105 0.01882187463822598 0.04274519408525098 -0.040005294740030735 0.011830740359490314 0.016110715420003967 0.02762436087171706 0.028316233791919117 -0.08733134912085866 0.02217930527993083 0.0038008706769975236 -0.01999148995957433 0.11784923620400257 -0.002582558180463915 -0.026177795239709527 0.029751989563807715 0.002617798887939642 -0.046863784276806805 -0.0029269139500769197 -0.0013915565214452572 -0.04908085238784444 0.11784923620400257 -0.002582558180463915 -0.026177795239709527 0.023188794812165098 -0.0011035948295207414 -0.022820254425392508 -0.007993877572472222 -0.002964923347901607 -0.0172257459074148 0.11784923620400257 -0.002582558180463915 -0.026177795239709527 0.049062264144118475 0.007357770639984695 0.017031546763575448 0.0320478560064134 0.00729594592318544 0.02953032173073717 0.11784923620400257 -0.002582558180463915 -0.026177795239709527 0.03611368177519234 0.0013748629724013297 0.0004953977933786699 0.007799406773179602 -0.000692144285917933 0.005593936295431139 0.11784923620400257 -0.002582558180463915 -0.026177795239709527 0.09375952940136055 0.012939776361411791 -0.051990642527792265 0.07412628886008313 0.012048489809868787 -0.07569019577372657 -0.02508282623706026 -9.313394827336653e-05 -0.04896673562861502 -0.030898517806362175 -0.0017128191151837852 -0.013281231904678847 0.016180954799675476 0.007987101817633062 0.03986222913304741 -0.015721106103651152 0.000995967538897392 0.013227750467800399 0.051908549508096646 0.017481460971326194 -0.09021431407306221 0.0186903000370298 0.004004096540879226 -0.018470891430256167 0.11436023096110155 -0.0023793323165822123 -0.024657196710391363 0.026262984320906686 0.002821024751821345 -0.04534318574748864 -0.006415919192977949 -0.0011883306575635544 -0.047560253858526275 0.11436023096110155 -0.0023793323165822123 -0.024657196710391363 0.01969978956926407 -0.0009003689656390387 -0.021299655896074344 -0.011482882815373251 -0.0027616974840199045 -0.015705147378096636 0.11436023096110155 -0.0023793323165822123 -0.024657196710391363 0.045573258901217446 0.007560996503866399 0.01855214529289361 0.028558850763512368 0.007499171787067143 0.031050920260055334 0.11436023096110155 -0.0023793323165822123 -0.024657196710391363 0.032624676532291313 0.0015780888362830325 0.0020159963226968336 0.004310401530278573 -0.0004889184220362303 0.007114534824749302 0.11436023096110155 -0.0023793323165822123 -0.024657196710391363 0.09027052415845953 0.013143002225293493 -0.0504700439984741 0.0706372836171821 0.01225171567375049 -0.07416959724440841 -0.02857183147996129 0.0001100919156083362 -0.047446137099296855 -0.03438752304926321 -0.0015095932513020825 -0.011760633375360683 0.012691949556774447 0.008190327681514765 0.041382827662365576 -0.01921011134655218 0.0011991934027790947 0.014748348997118563 0.04841954426519561 0.017684686835207897 -0.08869371554374406 0.008076347131802233 -0.002536738064508549 -0.030908915478906885 0.10374627805587398 -0.008920166921969987 -0.03709522075904208 0.015649031415679124 -0.0037198098535664303 -0.05778120979613936 -0.017029872098205515 -0.00772916526295133 -0.05999827790717699 0.10374627805587398 -0.008920166921969987 -0.03709522075904208 0.009085836664036503 -0.007441203571026814 -0.03373767994472506 -0.022096835720600817 -0.00930253208940768 -0.028143171426747354 0.10374627805587398 -0.008920166921969987 -0.03709522075904208 0.034959305995989884 0.001020161898478623 0.006114121244242893 0.0179448978582848 0.0009583371816793678 0.018612896211404616 0.10374627805587398 -0.008920166921969987 -0.03709522075904208 0.022010723627063744 -0.004962745769104743 -0.010422027725953884 -0.006303551374948993 -0.0070297530274240055 -0.0053234892239014155 0.10374627805587398 -0.008920166921969987 -0.03709522075904208 0.07965657125323196 0.006602167619905719 -0.06290806804712482 0.06002333071195454 0.005710881068362715 -0.08660762129305913 -0.039185784385188854 -0.006430742689779439 -0.059884161147947576 -0.04500147595449077 -0.008050427856689857 -0.0241986574240114 0.002077996651546882 0.0016494930761269894 0.02894480361371486 -0.029824064251779747 -0.005341641202608681 0.002310324948467845 0.03780559135996805 0.01114385222982012 -0.10113173959239477 0.009298486441884527 -0.0046466396434780245 -0.026735194216977093 0.10496841736595627 -0.011030068500939464 -0.03292149949711229 0.016871170725761414 -0.005829711432535906 -0.05360748853420957 -0.01580773278812322 -0.009839066841920804 -0.0558245566452472 0.10496841736595627 -0.011030068500939464 -0.03292149949711229 0.010307975974118797 -0.00955110514999629 -0.02956395868279527 -0.020874696410518524 -0.011412433668377155 -0.023969450164817562 0.10496841736595627 -0.011030068500939464 -0.03292149949711229 0.036181445306072174 -0.0010897396804908526 0.010287842506172686 0.019167037168367096 -0.0011515643972901078 0.02278661747333441 0.10496841736595627 -0.011030068500939464 -0.03292149949711229 0.02323286293714604 -0.007072647348074218 -0.006248306464024092 -0.005081412064866699 -0.009139654606393481 -0.0011497679619716233 0.10496841736595627 -0.011030068500939464 -0.03292149949711229 0.08087871056331425 0.004492266040936243 -0.05873434678519503 0.06124547002203683 0.0036009794893932393 -0.08243390003112933 -0.037963645075106564 -0.008540644268748915 -0.05571043988601778 -0.04377933664440847 -0.010160329435659334 -0.02002493616208161 0.0033001359616291756 -0.0004604085028424862 0.03311852487564465 -0.028601924941697453 -0.007451542781578157 0.006484046210397637 0.039027730670050345 0.009033950650850647 -0.09695801833046498 0.013134956179107508 -0.003571637525870585 -0.02905055101316487 0.10880488710317926 -0.009955066383332024 -0.03523685629330006 0.020707640462984397 -0.004754709314928466 -0.05592284533039735 -0.01197126305090024 -0.008764064724313365 -0.05813991344143497 0.10880488710317926 -0.009955066383332024 -0.03523685629330006 0.014144445711341777 -0.00847610303238885 -0.031879315478983046 -0.01703822667329554 -0.010337431550769716 -0.02628480696100534 0.10880488710317926 -0.009955066383332024 -0.03523685629330006 0.04001791504329515 -1.4737562883412967e-05 0.007972485709984909 0.023003506905590075 -7.656227968266816e-05 0.020471260677146632 0.10880488710317926 -0.009955066383332024 -0.03523685629330006 0.02706933267436902 -0.005997645230466779 -0.008563663260211869 -0.0012449423276437183 -0.008064652488786041 -0.0034651247581594 0.10880488710317926 -0.009955066383332024 -0.03523685629330006 0.08471518030053724 0.005567268158543683 -0.0610497035813828 0.06508193975925981 0.004675981607000679 -0.08474925682731711 -0.03412717533788358 -0.007465642151141475 -0.05802579668220556 -0.039942866907185494 -0.009085327318051895 -0.022340292958269385 0.0071366056988521566 0.0006145936147649534 0.030803168079456874 -0.02476545520447447 -0.006376540663970717 0.004168689414209861 0.042864200407273324 0.010108952768458086 -0.09927337512665275 0.01232004760184707 -0.0012807125434276632 -0.032643460492614025 0.10798997852591882 -0.007664141400889102 -0.03882976577274922 0.019892731885723956 -0.0024637843324855444 -0.0595157548098465 -0.012786171628160679 -0.006473139741870444 -0.06173282292088413 0.10798997852591882 -0.007664141400889102 -0.03882976577274922 0.013329537134081339 -0.006185178049945928 -0.0354722249584322 -0.01785313525055598 -0.008046506568326794 -0.029877716440454494 0.10798997852591882 -0.007664141400889102 -0.03882976577274922 0.039203006466034716 0.0022761874195595085 0.004379576230535753 0.022188598328329638 0.0022143627027602537 0.016878351197697476 0.10798997852591882 -0.007664141400889102 -0.03882976577274922 0.026254424097108583 -0.003706720248023857 -0.012156572739661024 -0.002059850904904157 -0.0057737275063431195 -0.007058034237608556 0.10798997852591882 -0.007664141400889102 -0.03882976577274922 0.0839002717232768 0.007858193140986604 -0.06464261306083197 0.06426703118199938 0.006966906589443601 -0.08834216630676626 -0.034942083915144015 -0.005174717168698553 -0.06161870616165471 -0.04075777548444594 -0.006794402335608972 -0.02593320243771854 0.006321697121591718 0.0029055185972078753 0.027210258600007718 -0.02558036378173491 -0.004085615681527795 0.0005757799347607048 0.04204929183001288 0.012399877750901006 -0.10286628460610192 -0.003614861333550486 -0.0014285282362551542 -0.012418272770534635 0.09205506959052126 -0.007811957093716593 -0.01860457805066983 0.003957822950326402 -0.0026116000253130355 -0.03929056708776711 -0.028721080563558234 -0.006620955434697935 -0.041507635198804745 0.09205506959052126 -0.007811957093716593 -0.01860457805066983 -0.002605371801316217 -0.0063329937427734195 -0.015247037236352812 -0.033788044185953534 -0.008194322261154284 -0.009652528718375106 0.09205506959052126 -0.007811957093716593 -0.01860457805066983 0.02326809753063716 0.002128371726732018 0.02460476395261514 0.006253689392932081 0.0020665470099327623 0.037103538919776864 0.09205506959052126 -0.007811957093716593 -0.01860457805066983 0.010319515161711026 -0.0038545359408513483 0.008068614982418365 -0.017994759840301713 -0.005921543199170611 0.013167153484470834 0.09205506959052126 -0.007811957093716593 -0.01860457805066983 0.06796536278787924 0.007710377448159113 -0.04441742533875257 0.04833212224660182 0.006819090896616109 -0.06811697858468688 -0.05087699285054157 -0.0053225328615260446 -0.041393518439575325 -0.056692684419843486 -0.006942218028436463 -0.005708014715639151 -0.009613211813805837 0.002757702904380384 0.047435446322087106 -0.04151527271713246 -0.004233431374355286 0.020800967656840093 0.026114382894615328 0.012252062058073516 -0.08264109688402252 -0.007464411045435572 -0.003115587547533479 -0.017213152672407323 0.08820551987863617 -0.009499016404994919 -0.023399457952542516 0.00010827323844131691 -0.0042986593365913605 -0.0440854469896398 -0.03257063027544332 -0.008308014745976259 -0.04630251510067743 0.08820551987863617 -0.009499016404994919 -0.023399457952542516 -0.006454921513201303 -0.008020053054051745 -0.0200419171382255 -0.03763759389783862 -0.00988138157243261 -0.014447408620247794 0.08820551987863617 -0.009499016404994919 -0.023399457952542516 0.019418547818752074 0.00044131241545369284 0.019809884050742455 0.0024041396810469953 0.00037948769865443766 0.03230865901790418 0.08820551987863617 -0.009499016404994919 -0.023399457952542516 0.006469965449825941 -0.005541595252129673 0.0032737350805456776 -0.0218443095521868 -0.007608602510448936 0.008372273582598146 0.08820551987863617 -0.009499016404994919 -0.023399457952542516 0.06411581307599415 0.0060233181368807885 -0.049212305240625254 0.044482572534716734 0.005132031585337785 -0.07291185848655957 -0.05472654256242666 -0.007009592172804369 -0.046188398341448014 -0.06054223413172857 -0.008629277339714789 -0.010502894617511839 -0.013462761525690923 0.0010706435931020592 0.042640566420214424 -0.04536482242901755 -0.005920490685633611 0.016006087754967407 0.022264833182730242 0.010565002746795192 -0.08743597678589521 -0.0003266411200753966 0.0030492636806838266 -0.011943339993968414 0.09534328980399635 -0.003334165176777612 -0.018129645274103608 0.007246043163801492 0.0018661918916259453 -0.038815634311200886 -0.025432860350083145 -0.002143163517758954 -0.04103270242223852 0.09534328980399635 -0.003334165176777612 -0.018129645274103608 0.0006828484121588724 -0.0018552018258344385 -0.01477210445978659 -0.030499823972478447 -0.0037165303442153043 -0.009177595941808885 0.09534328980399635 -0.003334165176777612 -0.018129645274103608 0.02655631774411225 0.006606163643670998 0.025079696729181367 0.00954190960640717 0.006544338926871743 0.03757847169634309 0.09534328980399635 -0.003334165176777612 -0.018129645274103608 0.013607735375186116 0.0006232559760876327 0.008543547758984587 -0.014706539626826623 -0.00144375128223163 0.013642086261037056 0.09534328980399635 -0.003334165176777612 -0.018129645274103608 0.07125358300135433 0.012188169365098095 -0.043942492562186346 0.05162034246007691 0.01129688281355509 -0.06764204580812065 -0.047588772637066484 -0.0008447409445870636 -0.0409185856630091 -0.0534044642063684 -0.0024644261114974823 -0.005233081939072929 -0.006324991600330748 0.007235494821319365 0.04791037909865333 -0.03822705250365738 0.0002443605425836949 0.021275900433406318 0.029402603108090418 0.016729853975012497 -0.08216616410745631 0.0073648046595109285 0.00332816897903239 -0.03372745809084218 0.10303473558358268 -0.0030552598784290485 -0.03991376337097738 0.014937488943387818 0.0021450971899745087 -0.06059975240807466 -0.01774141457049682 -0.0018642582194103906 -0.06281682051911229 0.10303473558358268 -0.0030552598784290485 -0.03991376337097738 0.008374294191745197 -0.001576296527485875 -0.036556222556660356 -0.022808378192892123 -0.0034376250458667407 -0.030961714038682652 0.10303473558358268 -0.0030552598784290485 -0.03991376337097738 0.03424776352369858 0.0068850689420195624 0.0032955786323075956 0.017233355385993496 0.006823244225220307 0.01579435359946932 0.10303473558358268 -0.0030552598784290485 -0.03991376337097738 0.021299181154772442 0.0009021612744361963 -0.013240570337889182 -0.007015093847240298 -0.0011648459838830665 -0.008142031835836713 0.10303473558358268 -0.0030552598784290485 -0.03991376337097738 0.07894502878094066 0.012467074663446657 -0.06572661065906012 0.05931178823966323 0.011575788111903653 -0.08942616390499442 -0.03989732685748016 -0.0005658356462385 -0.06270270375988288 -0.045713018426782076 -0.0021855208131489187 -0.0270172000359467 0.001366454179255577 0.007514400119667928 0.02612626100177956 -0.030535606724071053 0.0005232658409322585 -0.0005082176634674529 0.03709404888767674 0.01700875927336106 -0.10395028220433007 0.006646414635493921 0.010411745245415164 -0.03241075783908363 0.10231634555956567 0.004028316387953725 -0.03859706311921882 0.01421909891937081 0.009228673456357283 -0.0592830521563161 -0.018459804594513827 0.005219318046972383 -0.061500120267353735 0.10231634555956567 0.004028316387953725 -0.03859706311921882 0.0076559041677281905 0.005507279738896899 -0.0352395223049018 -0.02352676821690913 0.003645951220516033 -0.029645013786924097 0.10231634555956567 0.004028316387953725 -0.03859706311921882 0.03352937349968157 0.013968645208402335 0.004612278884066151 0.01651496536197649 0.013906820491603081 0.017111053851227874 0.10231634555956567 0.004028316387953725 -0.03859706311921882 0.020580791130755435 0.00798573754081897 -0.011923870086130627 -0.007733483871257305 0.005918730282499707 -0.006825331584078158 0.10231634555956567 0.004028316387953725 -0.03859706311921882 0.07822663875692365 0.01955065092982943 -0.06440991040730157 0.05859339821564623 0.018659364378286428 -0.08810946365323587 -0.04061571688149716 0.006517740620144274 -0.061386003508124315 -0.046431408450799086 0.004898055453233855 -0.025700499784188143 0.0006480641552385697 0.014597976386050702 0.027442961253538116 -0.031253996748088056 0.007606842107315033 0.0008084825882911026 0.03637565886365973 0.024092335539743832 -0.10263358195257152 -0.007223596506203628 0.009717086880860804 -0.02887030204491187 0.08844633441786812 0.0033336580233993655 -0.03505660732504706 0.0003490877776732605 0.008534015091802924 -0.05574259636214435 -0.032329815736211374 0.0045246596824180235 -0.057959664473181974 0.08844633441786812 0.0033336580233993655 -0.03505660732504706 -0.006214106973969359 0.004812621374342539 -0.031699066510730046 -0.03739677935860668 0.0029512928559616734 -0.02610455799275234 0.08844633441786812 0.0033336580233993655 -0.03505660732504706 0.019659362357984017 0.013273986843847976 0.008152734678237909 0.002644954220278939 0.013212162127048722 0.02065150964539963 0.08844633441786812 0.0033336580233993655 -0.03505660732504706 0.006710779989057884 0.00729107917626461 -0.008383414291958869 -0.021603495012954853 0.005224071917945348 -0.0032848757899064003 0.08844633441786812 0.0033336580233993655 -0.03505660732504706 0.06435662761522609 0.018855992565275072 -0.0608694546131298 0.04472338707394868 0.017964706013732068 -0.08456900785906411 -0.054485728023194714 0.005823082255589914 -0.05784554771395256 -0.06030141959249663 0.004203397088679495 -0.022160043990016386 -0.013221946986458979 0.013903318021496342 0.030983417047709873 -0.04512400788978561 0.006912183742760673 0.00434893838246286 0.022505647721962188 0.023397677175189473 -0.09909312615839976 -0.008174493672566592 0.003594839316090334 -0.028434262240035025 0.08749543725150516 -0.002788589541371105 -0.03462056752017022 -0.0006018093886897037 0.002411767527032453 -0.0553065565572675 -0.03328071290257434 -0.0015975878823524469 -0.05752362466830513 0.08749543725150516 -0.002788589541371105 -0.03462056752017022 -0.007165004140332323 -0.0013096261904279312 -0.0312630267058532 -0.03834767652496964 -0.003170954708808797 -0.025668518187875494 0.08749543725150516 -0.002788589541371105 -0.03462056752017022 0.018708465191621053 0.007151739279077506 0.008588774483114753 0.0016940570539159747 0.007089914562278251 0.021087549450276476 0.08749543725150516 -0.002788589541371105 -0.03462056752017022 0.00575988282269492 0.00116883161149414 -0.007947374487082024 -0.022554392179317817 -0.0008981756468251227 -0.0028488359850295554 0.08749543725150516 -0.002788589541371105 -0.03462056752017022 0.06340573044886313 0.012733745000504601 -0.060433414808252955 0.04377248990758571 0.011842458448961597 -0.08413296805418727 -0.05543662518955768 -0.00029916530918055627 -0.057409507909075716 -0.061252316758859594 -0.001918850476090975 -0.02172400418513954 -0.014172844152821943 0.007781070456725872 0.03141945685258672 -0.04607490505614857 0.0007899361779902022 0.004784978187339705 0.021554750555599224 0.017275429610419005 -0.09865708635352291 0.015165903791192053 0.004323809853221815 -0.016878898070184747 0.1108358347152638 -0.002059619004239624 -0.02306520335031994 0.02273858807506894 0.0031407380641639334 -0.04375119238741722 -0.009940315438815696 -0.0008686173452209659 -0.04596826049845486 0.1108358347152638 -0.002059619004239624 -0.02306520335031994 0.01617539332342632 -0.0005806556532964502 -0.019707662536002923 -0.015007279061210998 -0.002441984171677316 -0.014113154018025218 0.1108358347152638 -0.002059619004239624 -0.02306520335031994 0.0420488626553797 0.007880709816208987 0.02014413865296503 0.02503445451767462 0.007818885099409732 0.03264291362012675 0.1108358347152638 -0.002059619004239624 -0.02306520335031994 0.029100280286453565 0.001897802148625621 0.003607989682768254 0.0007860052844408261 -0.00016920510969364172 0.008706528184820723 0.1108358347152638 -0.002059619004239624 -0.02306520335031994 0.08674612791262178 0.013462715537636082 -0.048878050638402684 0.06711288737134435 0.012571428986093078 -0.07257760388433698 -0.03209622772579904 0.00042980522795092475 -0.04585414373922543 -0.03791191929510095 -0.001189879938959494 -0.010168640015289263 0.009167553310936702 0.008510040993857354 0.04297482102243699 -0.02273450759238993 0.0015189067151216832 0.016340342357189983 0.044895148019357865 0.018004400147550486 -0.08710172218367264 0.010898828480412622 -0.0041581774786874975 -0.021799668480164465 0.10656875940448438 -0.010541606336148937 -0.02798597376029966 0.01847151276428951 -0.005341249267745379 -0.04867196279739694 -0.014207390749595126 -0.009350604677130277 -0.05088903090843457 0.10656875940448438 -0.010541606336148937 -0.02798597376029966 0.011908318012646892 -0.009062642985205763 -0.02462843294598264 -0.01927435437199043 -0.010923971503586628 -0.019033924428004934 0.10656875940448438 -0.010541606336148937 -0.02798597376029966 0.03778178734460027 -0.0006012775157003256 0.015223368242985313 0.02076737920689519 -0.0006631022324995808 0.027722143210147036 0.10656875940448438 -0.010541606336148937 -0.02798597376029966 0.024833204975674136 -0.006584185183283691 -0.0013127807272114642 -0.003481070026338604 -0.008651192441602954 0.0037857577748410046 0.10656875940448438 -0.010541606336148937 -0.02798597376029966 0.08247905260184235 0.00498072820572677 -0.0537988210483824 0.06284581206056493 0.004089441654183766 -0.0774983742943167 -0.03636330303657846 -0.008052182103958389 -0.05077491414920515 -0.042178994605880385 -0.009671867270868807 -0.01508941042526898 0.004900478000157271 2.8053661948040758e-05 0.03805405061245728 -0.02700158290316936 -0.00696308061678763 0.011419571947210265 0.04062807270857843 0.009522412815641174 -0.09202249259365236 0.013845129178875811 -0.0009802478282029546 -0.017809008746691325 0.10951506010294756 -0.007363676685664393 -0.023995314026826517 0.021417813462752698 -0.0021633196172608357 -0.0446813030639238 -0.011261090051131937 -0.006172675026645735 -0.04689837117496143 0.10951506010294756 -0.007363676685664393 -0.023995314026826517 0.01485461871111008 -0.005884713334721219 -0.0206377732125095 -0.01632805367352724 -0.007746041853102086 -0.015043264694531796 0.10951506010294756 -0.007363676685664393 -0.023995314026826517 0.04072808804306346 0.0025766521347842172 0.019214027976458454 0.02371367990535838 0.002514827417984962 0.03171280294362018 0.10951506010294756 -0.007363676685664393 -0.023995314026826517 0.027779505674137325 -0.0034062555327991485 0.0026778790062616763 -0.0005347693278754152 -0.005473262791118412 0.007776417508314145 0.10951506010294756 -0.007363676685664393 -0.023995314026826517 0.08542535330030554 0.008158657856211313 -0.049808161314909255 0.06579211275902812 0.00726737130466831 -0.07350771456084357 -0.03341700233811527 -0.004874252453473844 -0.046784254415732016 -0.039232693907417196 -0.006493937620384263 -0.01109875069179584 0.007846778698620459 0.0032059833124325836 0.04204471034593042 -0.02405528220470617 -0.0037851509663030863 0.015410231680683405 0.04357437340704162 0.012700342466125716 -0.08803183286017921 0.008384919570215957 0.014157728290143121 -0.0261618562144362 0.10405485049428771 0.007774299432681682 -0.03234816149457139 0.015957603854092846 0.01297465650108524 -0.05303415053166867 -0.016721299659791793 0.00896530109170034 -0.05525121864270631 0.10405485049428771 0.007774299432681682 -0.03234816149457139 0.009394409102450227 0.009253262783624856 -0.028990620680254375 -0.021788263282187095 0.00739193426524399 -0.023396112162276668 0.10405485049428771 0.007774299432681682 -0.03234816149457139 0.035267878434403606 0.017714628253130294 0.01086118050871358 0.018253470296698524 0.017652803536331037 0.023359955475875303 0.10405485049428771 0.007774299432681682 -0.03234816149457139 0.02231929606547747 0.011731720585546928 -0.005674968461483198 -0.005994978936535269 0.009664713327227663 -0.0005764299594307291 0.10405485049428771 0.007774299432681682 -0.03234816149457139 0.07996514369164569 0.02329663397455739 -0.058161008782654136 0.06033190315036826 0.022405347423014386 -0.08186056202858844 -0.03887721194677513 0.01026372366487223 -0.05513710188347688 -0.04469290351607705 0.008644038497961812 -0.019451598159540714 0.0023865690899606056 0.01834395943077866 0.03369186287818554 -0.029515491813366025 0.01135282515204299 0.007057384212938531 0.03811416379838177 0.02783831858447179 -0.09638468032792409 0.01225146150690797 0.010119929077827801 -0.03317869584209797 0.10792139243097972 0.0037365002203663625 -0.039365001122233165 0.01982414579078486 0.00893685728876992 -0.06005099015933044 -0.012854757723099778 0.0049275018793850205 -0.062268058270368076 0.10792139243097972 0.0037365002203663625 -0.039365001122233165 0.01326095103914224 0.005215463571309536 -0.03600746030791614 -0.01792172134549508 0.0033541350529286704 -0.030412951789938438 0.10792139243097972 0.0037365002203663625 -0.039365001122233165 0.039134420371095616 0.013676829040814973 0.0038443408810518095 0.022120012233390537 0.013615004324015717 0.016343115848213532 0.10792139243097972 0.0037365002203663625 -0.039365001122233165 0.026185838002169483 0.007693921373231607 -0.012691808089144968 -0.002128436999843256 0.005626914114912345 -0.007593269587092499 0.10792139243097972 0.0037365002203663625 -0.039365001122233165 0.08383168562833769 0.01925883476224207 -0.0651778484103159 0.06419844508706027 0.018367548210699067 -0.08887740165625022 -0.035010670010083116 0.006225924452556911 -0.062153941511138656 -0.04082636157938503 0.004606239285646492 -0.026468437787202485 0.006253111026652619 0.01430616021846334 0.026675023250523774 -0.02564894987667401 0.00731502593972767 4.054458527676108e-05 0.04198070573507379 0.02380051937215647 -0.10340151995558586 0.032599719100375325 0.004782013946223978 -0.03981163522759785 0.12826965002444707 -0.0016014149112374603 -0.045997940507733044 0.040172403384252216 0.003598942157166097 -0.06668392954483032 0.007493499870367577 -0.00041041325221880236 -0.06890099765586796 0.12826965002444707 -0.0016014149112374603 -0.045997940507733044 0.03360920863260959 -0.00012245156029428664 -0.04264039969341602 0.0024265362479722746 -0.0019837800786751524 -0.03704589117543832 0.12826965002444707 -0.0016014149112374603 -0.045997940507733044 0.05948267796456297 0.00833891390921115 -0.00278859850444807 0.04246826982685789 0.008277089192411895 0.009710176462713653 0.12826965002444707 -0.0016014149112374603 -0.045997940507733044 0.046534095595636836 0.0023560062416277845 -0.019324747474644847 0.0182198205936241 0.0002889989833085218 -0.014226208972592379 0.12826965002444707 -0.0016014149112374603 -0.045997940507733044 0.10417994322180504 0.013920919630638247 -0.07181078779581579 0.08454670268052764 0.013029633079095243 -0.09551034104175009 -0.014662412416615762 0.0008880093209530883 -0.06878688089663854 -0.02047810398591768 -0.0007316758459573304 -0.03310137717270237 0.026601368620119973 0.008968245086859516 0.020042083865023895 -0.005300692283206655 0.0019771108081238467 -0.006592394800223118 0.06232896332854114 0.018462604240552648 -0.11003445934108574 0.016398416225491007 0.004211352364382163 -0.03625796824289974 0.11206834714956276 -0.0021720764930792755 -0.04244427352303493 0.023971100509367897 0.0030282805753242817 -0.06313026256013221 -0.008707803004516741 -0.0009810748340606176 -0.06534733067116985 0.11206834714956276 -0.0021720764930792755 -0.04244427352303493 0.017407905757725276 -0.0006931131421361019 -0.03908673270871791 -0.013774766626912044 -0.0025544416605169677 -0.03349222419074021 0.11206834714956276 -0.0021720764930792755 -0.04244427352303493 0.04328137508967865 0.0077682523273693346 0.0007650684802500418 0.026266966951973572 0.00770642761057008 0.013263843447411765 0.11206834714956276 -0.0021720764930792755 -0.04244427352303493 0.030332792720752517 0.0017853446597859693 -0.015771080489946736 0.0020185177187397804 -0.00028166259853329347 -0.010672541987894267 0.11206834714956276 -0.0021720764930792755 -0.04244427352303493 0.08797864034692074 0.01335025804879643 -0.06825712081111768 0.0683453998056433 0.012458971497253427 -0.09195667405705198 -0.03086371529150008 0.000317347739111273 -0.06523321391194042 -0.036679406860802 -0.0013023374277991457 -0.029547710188004252 0.010400065745235654 0.008397583505017701 0.023595750849722007 -0.021501995158090974 0.0014064492262820315 -0.0030387278155250066 0.04612766045365682 0.017891942658710833 -0.10648079235638763 0.017095781631967382 -0.0012178733841071059 -0.03407365684204499 0.11276571255603914 -0.007601302241568545 -0.040259962122180186 0.02466846591584427 -0.0024009451731649874 -0.060945951159277464 -0.008010437598040366 -0.006410300582549887 -0.06316301927031509 0.11276571255603914 -0.007601302241568545 -0.040259962122180186 0.01810527116420165 -0.006122338890625371 -0.03690242130786316 -0.013077401220435669 -0.007983667409006237 -0.03130791278988546 0.11276571255603914 -0.007601302241568545 -0.040259962122180186 0.04397874049615503 0.002339026578880066 0.0029493798811047883 0.02696433235844995 0.0022772018620808108 0.015448154848266511 0.11276571255603914 -0.007601302241568545 -0.040259962122180186 0.031030158127228896 -0.0036438810887032998 -0.01358676908909199 0.0027158831252161557 -0.0057108883470225625 -0.00848823058703952 0.11276571255603914 -0.007601302241568545 -0.040259962122180186 0.08867600575339711 0.007921032300307163 -0.06607280941026292 0.06904276521211969 0.007029745748764158 -0.08977236265619723 -0.030166349885023706 -0.005111878009377996 -0.06304890251108568 -0.035982041454325625 -0.006731563176288415 -0.027363398787149506 0.01109743115171203 0.0029683577565284324 0.025780062250576753 -0.0208046297516146 -0.004022776522207238 -0.0008544164146702601 0.04682502586013319 0.012462716910221563 -0.10429648095553287 0.033055149979942126 0.000452026479062063 -0.03948651388377787 0.12872508090401388 -0.005931402378399376 -0.04567281916391307 0.04062783426381902 -0.0007310453099958183 -0.06635880820101034 0.007948930749934378 -0.004740400719380718 -0.06857587631204798 0.12872508090401388 -0.005931402378399376 -0.04567281916391307 0.03406463951217639 -0.004452439027456202 -0.042315278349596044 0.0028819671275390757 -0.006313767545837068 -0.036720769831618344 0.12872508090401388 -0.005931402378399376 -0.04567281916391307 0.05993810884412977 0.004008926442049235 -0.002463477160628093 0.04292370070642469 0.00394710172524998 0.01003529780653363 0.12872508090401388 -0.005931402378399376 -0.04567281916391307 0.04698952647520364 -0.001973981225534131 -0.01899962613082487 0.0186752514731909 -0.004040988483853394 -0.013901087628772402 0.12872508090401388 -0.005931402378399376 -0.04567281916391307 0.10463537410137186 0.009590932163476331 -0.0714856664519958 0.08500213356009442 0.008699645611933328 -0.09518521969793012 -0.014206981537048961 -0.003441978146208827 -0.06846175955281855 -0.020022673106350877 -0.005061663313119246 -0.032776255828882384 0.027056799499686774 0.004638257619697601 0.020367205208843872 -0.004845261403639854 -0.0023528766590380687 -0.006267273456403141 0.06278439420810794 0.014132616773390734 -0.10970933799726576 0.012267619526105902 0.003855281907345402 -0.03528032183306616 0.10793755045017765 -0.002528146950116037 -0.04146662711320136 0.019840303809982793 0.002672210118287521 -0.062152616150298635 -0.012838599703901846 -0.001337145291097379 -0.06436968426133627 0.10793755045017765 -0.002528146950116037 -0.04146662711320136 0.013277109058340172 -0.0010491835991728632 -0.038109086298884334 -0.01790556332629715 -0.002910512117553729 -0.032514577780906634 0.10793755045017765 -0.002528146950116037 -0.04146662711320136 0.03915057839029355 0.007412181870332574 0.0017427148900836173 0.022136170252588468 0.007350357153533318 0.01424148985724534 0.10793755045017765 -0.002528146950116037 -0.04146662711320136 0.026201996021367413 0.001429274202749208 -0.01479343408011316 -0.002112278980645324 -0.0006377330555700548 -0.009694895578060692 0.10793755045017765 -0.002528146950116037 -0.04146662711320136 0.08384784364753563 0.01299418759175967 -0.0672794744012841 0.0642146031062582 0.012102901040216666 -0.09097902764721841 -0.034994511990885185 -3.8722717925488304e-05 -0.06425556750210684 -0.0408102035601871 -0.001658407884835907 -0.028570063778170677 0.006269269045850551 0.00804151304798094 0.024573397259555582 -0.025632791857476078 0.0010503787692452702 -0.002061081405691431 0.04199686375427172 0.01753587220167407 -0.10550314594655405 0.0175255441698827 0.009958648662120036 -0.03446441973786788 0.11319547509395445 0.0035752198046585977 -0.04065072501800308 0.025098228453759586 0.008775576873062156 -0.061336714055100355 -0.007580675060125049 0.004766221463677256 -0.063553782166138 0.11319547509395445 0.0035752198046585977 -0.04065072501800308 0.018535033702116968 0.005054183155601771 -0.037293184203686054 -0.012647638682520352 0.0031928546372209056 -0.031698675685708354 0.11319547509395445 0.0035752198046585977 -0.04065072501800308 0.044408503034070346 0.013515548625107208 0.0025586169852818974 0.027394094896365268 0.013453723908307954 0.01505739195244362 0.11319547509395445 0.0035752198046585977 -0.04065072501800308 0.03145992066514421 0.0075326409575238425 -0.01397753198491488 0.0031456456631314723 0.00546563369920458 -0.008878993482862411 0.11319547509395445 0.0035752198046585977 -0.04065072501800308 0.08910576829131242 0.019097554346534304 -0.06646357230608582 0.069472527750035 0.0182062677949913 -0.09016312555202012 -0.02973658734710839 0.006064644036849146 -0.06343966540690857 -0.0355522789164103 0.0044449588699387275 -0.027754161682972397 0.011527193689627346 0.014144879802755575 0.025389299354753862 -0.020374867213699282 0.007153745524019905 -0.001245179310493151 0.04725478839804852 0.023639238956448705 -0.10468724385135578 0.03677541022342328 -0.0017331914593255431 -0.02685971581449254 0.13244534114749504 -0.008116620316786982 -0.03304602109462773 0.04434809450730017 -0.0029162632483834246 -0.053732010131725016 0.011669190993415533 -0.006925618657768324 -0.05594907824276264 0.13244534114749504 -0.008116620316786982 -0.03304602109462773 0.03778489975565755 -0.006637656965843808 -0.029688480280310715 0.006602227371020231 -0.008498985484224675 -0.024093971762333008 0.13244534114749504 -0.008116620316786982 -0.03304602109462773 0.06365836908761092 0.0018237085036616287 0.01016332090865724 0.04664396094990585 0.0017618837868623735 0.022662095875818963 0.13244534114749504 -0.008116620316786982 -0.03304602109462773 0.05070978671868479 -0.004159199163921737 -0.006372828061539538 0.022395511716672055 -0.006226206422241 -0.0012742895594870692 0.13244534114749504 -0.008116620316786982 -0.03304602109462773 0.10835563434485301 0.0074057142250887244 -0.05885886838271047 0.08872239380357558 0.006514427673545721 -0.08255842162864478 -0.010486721293567806 -0.005627196084596433 -0.05583496148353323 -0.016302412862869722 -0.007246881251506852 -0.020149457759597054 0.03077705974316793 0.002453039681309995 0.03299400327812921 -0.0011250011601586993 -0.004538094597425674 0.006359524612882191 0.0665046544515891 0.011947398835003127 -0.09708253992798042 0.03475200568036558 -0.003961808302932941 -0.03135459498302053 0.13042193660443732 -0.010345237160394379 -0.03754090026315573 0.04232468996424247 -0.005144880091990822 -0.05822688930025301 0.00964578645035783 -0.009154235501375722 -0.06044395741129064 0.13042193660443732 -0.010345237160394379 -0.03754090026315573 0.035761495212599845 -0.008866273809451205 -0.034183359448838706 0.004578822827962528 -0.010727602327832072 -0.028588850930861002 0.13042193660443732 -0.010345237160394379 -0.03754090026315573 0.06163496454455322 -0.00040490833994576885 0.005668441740129246 0.044620556406848144 -0.00046673305674502404 0.01816721670729097 0.13042193660443732 -0.010345237160394379 -0.03754090026315573 0.04868638217562709 -0.006387816007529135 -0.010867707230067532 0.020372107173614352 -0.008454823265848397 -0.005769168728015063 0.13042193660443732 -0.010345237160394379 -0.03754090026315573 0.1063322298017953 0.005177097381481327 -0.06335374755123846 0.08669898926051789 0.004285810829938323 -0.08705330079717277 -0.012510125836625509 -0.00785581292820383 -0.06032984065206122 -0.018325817405927425 -0.009475498095114249 -0.02464433692812505 0.028753655200110226 0.00022442283770259756 0.02849912410960121 -0.0031484057032164017 -0.006766711441033073 0.0018646454443541974 0.0644812499085314 0.009718781991395729 -0.10157741909650841 0.036058875980323146 0.002118730222548179 -0.024948290230727695 0.1317288069043949 -0.00426469863491326 -0.031134595510862888 0.04363156026420004 0.0009356584334902979 -0.051820584547960166 0.010952656750315398 -0.0030736969758946016 -0.054037652658997806 0.1317288069043949 -0.00426469863491326 -0.031134595510862888 0.03706836551255741 -0.002785735283970086 -0.027777054696545872 0.0058856931279200955 -0.004647063802350951 -0.022182546178568165 0.1317288069043949 -0.00426469863491326 -0.031134595510862888 0.0629418348445108 0.005675630185535351 0.012074746492422083 0.04592742670680571 0.005613805468736096 0.024573521459583806 0.1317288069043949 -0.00426469863491326 -0.031134595510862888 0.04999325247558466 -0.0003072774820480147 -0.0044614024777746945 0.02167897747357192 -0.0023742847403672774 0.0006371360242777742 0.1317288069043949 -0.00426469863491326 -0.031134595510862888 0.10763910010175287 0.011257635906962446 -0.05694744279894563 0.08800585956047545 0.010366349355419443 -0.08064699604487993 -0.011203255536667941 -0.001775274402722711 -0.05392353589976838 -0.017018947105969857 -0.0033949595696331296 -0.01823803217583221 0.030060525500067794 0.006304961363183717 0.034905428861894044 -0.0018415354032588344 -0.0006861729155519525 0.008270950196647035 0.06578812020848895 0.01579932051687685 -0.09517111434421559 -0.005105801445485266 0.015467249887711707 -0.02358414846453855 0.09056412947858648 0.009083821030250268 -0.02977045374467374 0.0024668828383916227 0.014284178098653826 -0.05045644278177103 -0.030212020675493015 0.010274822689268926 -0.05267351089280865 0.09056412947858648 0.009083821030250268 -0.02977045374467374 -0.0040963119132509974 0.010562784381193442 -0.026412912930356726 -0.03527898429788832 0.008701455862812575 -0.02081840441237902 0.09056412947858648 0.009083821030250268 -0.02977045374467374 0.02177715741870238 0.01902414985069888 0.01343888825861123 0.004762749280997301 0.018962325133899623 0.025937663225772952 0.09056412947858648 0.009083821030250268 -0.02977045374467374 0.008828575049776247 0.013041242183115514 -0.0030972607115855484 -0.019485699952236493 0.01097423492479625 0.0020012777904669203 0.09056412947858648 0.009083821030250268 -0.02977045374467374 0.06647442267594446 0.024606155572125976 -0.05558330103275648 0.046841182134667037 0.023714869020582972 -0.07928285427869079 -0.052367932962476355 0.011573245262440817 -0.05255939413357924 -0.05818362453177827 0.009953560095530398 -0.016873890409643065 -0.011104151925740617 0.019653481028347245 0.0362695706280832 -0.04300621282906725 0.012662346749611576 0.00963509196283618 0.024623442782680548 0.029147840182040377 -0.09380697257802643 -0.009046421597322156 -0.001963780226883271 -0.0243246479469074 0.08662350932674959 -0.00834720908434471 -0.030510953227042593 -0.0014737373134452673 -0.0031468520159411524 -0.05119694226413987 -0.034152640827329904 -0.007156207425326052 -0.05341401037517751 0.08662350932674959 -0.00834720908434471 -0.030510953227042593 -0.008036932065087887 -0.006868245733401536 -0.027153412412725578 -0.03921960444972521 -0.0087295742517824 -0.02155890389474787 0.08662350932674959 -0.00834720908434471 -0.030510953227042593 0.01783653726686549 0.001593119736103901 0.012698388776242377 0.0008221291291604111 0.0015312950193046458 0.0251971637434041 0.08662350932674959 -0.00834720908434471 -0.030510953227042593 0.0048879548979393565 -0.004389787931479465 -0.0038377601939544002 -0.023426320104073382 -0.0064567951897987275 0.0012607783080980685 0.08662350932674959 -0.00834720908434471 -0.030510953227042593 0.06253380252410756 0.007175125457530997 -0.05632380051512534 0.04290056198283015 0.006283838905987993 -0.08002335376105964 -0.056308553114313244 -0.005857784852154161 -0.053299893615948085 -0.06212424468361516 -0.00747747001906458 -0.017614389892011917 -0.015044772077577508 0.0022224509137522674 0.03552907114571434 -0.04694683298090414 -0.004768683364983402 0.008894592480467329 0.02068282263084366 0.0117168100674454 -0.0945474720603953 0.03563566104851535 0.00911178271565413 -0.02723043560802621 0.1313055919725871 0.0027283538581926916 -0.033416740888161406 0.04320834533239224 0.00792871092659625 -0.054102729925258684 0.010529441818507602 0.0039193555172113495 -0.05631979803629632 0.1313055919725871 0.0027283538581926916 -0.033416740888161406 0.036645150580749616 0.004207317209135865 -0.030059200073844387 0.0054624781961123 0.0023459886907549994 -0.02446469155586668 0.1313055919725871 0.0027283538581926916 -0.033416740888161406 0.062518619912703 0.012668682678641302 0.009792601115123568 0.045504211774997916 0.012606857961842046 0.02229137608228529 0.1313055919725871 0.0027283538581926916 -0.033416740888161406 0.04957003754377686 0.006685775011057936 -0.006743547855073209 0.021255762541764124 0.004618767752738674 -0.0016450093530207405 0.1313055919725871 0.0027283538581926916 -0.033416740888161406 0.10721588516994507 0.018250688400068396 -0.059229588176244144 0.08758264462866766 0.017359401848525392 -0.08292914142217844 -0.011626470468475737 0.00521777809038324 -0.0562056812770669 -0.017442162037777653 0.0035980929234728214 -0.020520177553130726 0.029637310568259998 0.013298013856289669 0.03262328348459553 -0.00226475033506663 0.006306879577553999 0.00598880481934852 0.06536490527668117 0.0227923730099828 -0.0974532597215141 0.036082729966152076 0.005465478046144139 -0.02505884148796988 0.13175266089022383 -0.0009179508113172996 -0.031245146768105074 0.043655414250028966 0.0042824062570862576 -0.05193113580520235 0.010976510736144328 0.00027305084770135827 -0.05414820391623999 0.13175266089022383 -0.0009179508113172996 -0.031245146768105074 0.03709221949838634 0.000561012539625874 -0.02788760595378806 0.005909547113749025 -0.0013003159787549918 -0.02229309743581035 0.13175266089022383 -0.0009179508113172996 -0.031245146768105074 0.06296568883033972 0.009022378009131311 0.011964195235179897 0.04595128069263464 0.008960553292332056 0.02446297020234162 0.13175266089022383 -0.0009179508113172996 -0.031245146768105074 0.05001710646141359 0.003039470341547945 -0.004571953735016881 0.02170283145940085 0.0009724630832286824 0.0005265847670355879 0.13175266089022383 -0.0009179508113172996 -0.031245146768105074 0.10766295408758181 0.014604383730558407 -0.05705799405618782 0.08802971354630437 0.013713097179015404 -0.08075754730212212 -0.011179401550839012 0.001571473420873249 -0.054034087157010566 -0.016995093120140928 -4.82117460371698e-05 -0.018348583433074397 0.030084379485896724 0.009651709186779676 0.03479487760465186 -0.0018176814174299047 0.0026605749080440074 0.008160398939404848 0.06581197419431789 0.01914606834047281 -0.09528166560145777 0.01760970643761441 -0.003483012430087364 -0.030547894673673505 0.11327963736168616 -0.009866441287548803 -0.0367341999538087 0.025182390721491296 -0.004666084219145245 -0.05742018899090598 -0.007496512792393339 -0.008675439628530145 -0.05963725710194361 0.11327963736168616 -0.009866441287548803 -0.0367341999538087 0.01861919596984868 -0.008387477936605629 -0.03337665913949168 -0.012563476414788641 -0.010248806454986496 -0.027782150621513974 0.11327963736168616 -0.009866441287548803 -0.0367341999538087 0.044492665301802056 7.388753289980796e-05 0.0064751420494762735 0.027478257164096978 1.2062816100552771e-05 0.018973917016637996 0.11327963736168616 -0.009866441287548803 -0.0367341999538087 0.03154408293287592 -0.005909020134683558 -0.010061006920720504 0.003229807930863183 -0.007976027393002821 -0.004962468418668035 0.11327963736168616 -0.009866441287548803 -0.0367341999538087 0.08918993055904413 0.005655893254326904 -0.06254704724189145 0.06955669001776671 0.0047646067027839 -0.08624660048782574 -0.02965242507937668 -0.007377017055358254 -0.05952314034271419 -0.03546811664867859 -0.008996702222268673 -0.02383763661877802 0.011611355957359057 0.0007032187105481744 0.02930582441894824 -0.02029070494596757 -0.006287915568187495 0.002671345753701225 0.04733895066578023 0.010197577864241306 -0.1007707187871614 0.033630179518611386 -0.0030528861279113723 -0.03658850850206698 0.12930011044268314 -0.00943631498537281 -0.04277481378220217 0.041202863802488277 -0.004235957916969253 -0.06346080281929944 0.008523960288603638 -0.008245313326354153 -0.06567787093033708 0.12930011044268314 -0.00943631498537281 -0.04277481378220217 0.03463966905084565 -0.007957351634429637 -0.03941727296788515 0.0034569966662083354 -0.009818680152810504 -0.03382276444990745 0.12930011044268314 -0.00943631498537281 -0.04277481378220217 0.06051313838279904 0.0005040138350757995 0.00043452822108280137 0.04349873024509395 0.0004421891182765443 0.012933303188244524 0.12930011044268314 -0.00943631498537281 -0.04277481378220217 0.0475645560138729 -0.005478893832507567 -0.016101620749113976 0.01925028101186016 -0.007545901090826829 -0.011003082247061508 0.12930011044268314 -0.00943631498537281 -0.04277481378220217 0.10521040364004111 0.006086019556502896 -0.06858766107028491 0.08557716309876369 0.005194733004959892 -0.09228721431621922 -0.013631951998379702 -0.006946890753182262 -0.06556375417110766 -0.019447643567681618 -0.00856657592009268 -0.029878250447171493 0.027631829038356034 0.001133345012724166 0.023265210590554766 -0.0042702318649705945 -0.005857789266011504 -0.003369268074692247 0.0633594237467772 0.010627704166417298 -0.10681133261555487 0.03233385665508942 0.008911240888479522 -0.0374971446962265 0.12800378757916117 0.002527812031018083 -0.0436834499763617 0.03990654093896631 0.00772816909942164 -0.06436943901345898 0.007227637425081673 0.003718813690036741 -0.06658650712449661 0.12800378757916117 0.002527812031018083 -0.0436834499763617 0.03334334618732369 0.004006775381961257 -0.040325909162044676 0.0021606738026863706 0.002145446863580391 -0.034731400644066976 0.12800378757916117 0.002527812031018083 -0.0436834499763617 0.05921681551927707 0.012468140851466693 -0.00047410797307672475 0.04220240738157199 0.012406316134667437 0.012024666994084998 0.12800378757916117 0.002527812031018083 -0.0436834499763617 0.04626823315035093 0.006485233183883328 -0.017010256943273502 0.017953958148338195 0.004418225925564065 -0.011911718441221034 0.12800378757916117 0.002527812031018083 -0.0436834499763617 0.10391408077651915 0.01805014657289379 -0.06949629726444444 0.08428084023524172 0.017158860021350787 -0.09319585051037874 -0.014928274861901666 0.0050172362632086315 -0.0664723903652672 -0.020743966431203582 0.003397551096298213 -0.03078688664133102 0.02633550617483407 0.01309747202911506 0.02235657439639524 -0.005566554728492559 0.0061063377503793904 -0.004277904268851773 0.062063100883255236 0.022591831182808192 -0.10771996880971439 0.03325885888077285 0.011436496496534998 -0.03211608231763067 0.1289287898048446 0.005053067639073559 -0.038302387597765865 0.04083154316464974 0.010253424707477117 -0.05898837663486314 0.008152639650765105 0.006244069298092217 -0.061205444745900776 0.1289287898048446 0.005053067639073559 -0.038302387597765865 0.03426834841300712 0.006532030990016733 -0.03494484678344884 0.003085676028369802 0.004670702471635867 -0.029350338265471138 0.1289287898048446 0.005053067639073559 -0.038302387597765865 0.060141817744960496 0.01499339645952217 0.0049069544055191094 0.04312740960725542 0.014931571742722916 0.017405729372680832 0.1289287898048446 0.005053067639073559 -0.038302387597765865 0.04719323537603436 0.009010488791938803 -0.011629194564677668 0.018878960374021626 0.006943481533619541 -0.006530656062625199 0.1289287898048446 0.005053067639073559 -0.038302387597765865 0.10483908300220257 0.020575402180949266 -0.06411523488584861 0.08520584246092516 0.019684115629406262 -0.08781478813178291 -0.014003272636218235 0.007542491871264108 -0.06109132798667136 -0.01981896420552015 0.005922806704353689 -0.025405824262735185 0.0272605084005175 0.015622727637170536 0.027737636774991074 -0.004641552502809128 0.008631593358434867 0.001103158109744061 0.06298810310893867 0.02511708679086367 -0.10233890643111856 0.03683893336166319 0.007902890228143071 -0.039018618519391736 0.13250886428573494 0.0015194613706816327 -0.04520492379952693 0.04441161764554008 0.00671981843908519 -0.06589091283662421 0.011732714131655442 0.0027104630297002906 -0.06810798094766185 0.13250886428573494 0.0015194613706816327 -0.04520492379952693 0.037848422893897456 0.0029984247216248063 -0.04184738298520991 0.006665750509260139 0.0011370962032439405 -0.03625287446723221 0.13250886428573494 0.0015194613706816327 -0.04520492379952693 0.06372189222585084 0.011459790191130243 -0.0019955817962419575 0.046707484088145755 0.011397965474330987 0.010503193170919765 0.13250886428573494 0.0015194613706816327 -0.04520492379952693 0.0507733098569247 0.0054768825235468775 -0.018531730766438735 0.022459034854911963 0.0034098752652276148 -0.013433192264386266 0.13250886428573494 0.0015194613706816327 -0.04520492379952693 0.10841915748309292 0.01704179591255734 -0.07101777108760968 0.0887859169418155 0.016150509361014337 -0.09471732433354398 -0.010423198155327898 0.004008885602872181 -0.06799386418843242 -0.016238889724629814 0.0023892004359617625 -0.032308360464496255 0.030840582881407837 0.01208912136877861 0.020835100573230007 -0.0010614780219187908 0.00509798709004294 -0.005799378092017006 0.066568177589829 0.02158348052247174 -0.10924144263287963 0.03768720026834556 0.01022861258618061 -0.03356501320543534 0.13335713119241732 0.003845183728719172 -0.039751318485570536 0.04525988455222245 0.00904554079712273 -0.060437307522667814 0.01258098103833781 0.00503618538773783 -0.06265437563370545 0.13335713119241732 0.003845183728719172 -0.039751318485570536 0.038696689800579824 0.005324147079662346 -0.03639377767125351 0.0075140174159425074 0.00346281856128148 -0.03079926915327581 0.13335713119241732 0.003845183728719172 -0.039751318485570536 0.06457015913253321 0.013785512549167782 0.0034580235177144383 0.04755575099482812 0.013723687832368527 0.01595679848487616 0.13335713119241732 0.003845183728719172 -0.039751318485570536 0.05162157676360707 0.007802604881584417 -0.01307812545248234 0.023307301761594332 0.005735597623265154 -0.00797958695042987 0.13335713119241732 0.003845183728719172 -0.039751318485570536 0.10926742438977528 0.01936751827059488 -0.06556416577365327 0.08963418384849786 0.018476231719051876 -0.08926371901958757 -0.00957493124864553 0.006334607960909721 -0.06254025887447603 -0.015390622817947446 0.004714922793999302 -0.026854755150539856 0.03168884978809021 0.014414843726816149 0.026288705887186403 -0.00021321111523642244 0.0074237094480804795 -0.00034577277806061013 0.06741644449651138 0.02390920288050928 -0.10378783731892323 0.04028163781865162 0.008608275507214332 -0.028702255365964654 0.13595156874272338 0.002224846649752893 -0.034888560646099846 0.04785432210252851 0.00742520371815645 -0.055574549683197125 0.015175418588643873 0.003415848308771551 -0.057791617794234765 0.13595156874272338 0.002224846649752893 -0.034888560646099846 0.04129112735088589 0.0037038100006960666 -0.03153101983178283 0.01010845496624857 0.0018424814823152008 -0.025936511313805123 0.13595156874272338 0.002224846649752893 -0.034888560646099846 0.06716459668283926 0.012165175470201503 0.008320781357185125 0.050150188545134186 0.01210335075340225 0.020819556324346847 0.13595156874272338 0.002224846649752893 -0.034888560646099846 0.05421601431391313 0.006182267802618138 -0.008215367613011653 0.025901739311900394 0.004115260544298875 -0.0031168291109591843 0.13595156874272338 0.002224846649752893 -0.034888560646099846 0.11186186194008135 0.0177471811916286 -0.06070140793418259 0.09222862139880392 0.016855894640085595 -0.08440096118011689 -0.006980493698339467 0.0047142708819434415 -0.05767750103500534 -0.012796185267641383 0.0030945857150330228 -0.02199199731106917 0.03428328733839627 0.01279450664784987 0.03115146372665709 0.00238122643506964 0.0058033723691142 0.004516985061410076 0.07001088204681744 0.022288865801543004 -0.09892507947945255 0.04078283154388991 0.004959769981562782 -0.026659937977718887 0.13645276246796167 -0.001423658875898657 -0.03284624325785408 0.0483555158277668 0.0037766981925049002 -0.05353223229495136 0.015676612313882163 -0.00023265721687999903 -0.055749300405988994 0.13645276246796167 -0.001423658875898657 -0.03284624325785408 0.04179232107612418 5.530447504451669e-05 -0.029488702443537063 0.01060964869148686 -0.001806024043336349 -0.023894193925559356 0.13645276246796167 -0.001423658875898657 -0.03284624325785408 0.06766579040807756 0.008516669944549953 0.010363098745430892 0.050651382270372476 0.0084548452277507 0.022861873712592615 0.13645276246796167 -0.001423658875898657 -0.03284624325785408 0.05471720803915142 0.002533762276966588 -0.006173050224765886 0.026402933037138684 0.0004667550186473251 -0.001074511722713417 0.13645276246796167 -0.001423658875898657 -0.03284624325785408 0.11236305566531964 0.01409867566597705 -0.05865909054593682 0.09272981512404221 0.013207389114434046 -0.08235864379187113 -0.006479299973101177 0.0010657653562918916 -0.055635183646759574 -0.012294991542403093 -0.0005539198106185271 -0.019949679922823402 0.03478448106363456 0.00914600112219832 0.03319378111490286 0.0028824201603079302 0.00215486684346265 0.006559302449655843 0.07051207577205573 0.01864036027589145 -0.09688276209120678 0.0407324513855146 0.0015297718174162825 -0.02657497673542389 0.13640238230958635 -0.004853657040045156 -0.032761282015559084 0.04830513566939149 0.00034670002835840126 -0.05344727105265636 0.015626232155506854 -0.0036626553810264985 -0.055664339163693996 0.13640238230958635 -0.004853657040045156 -0.032761282015559084 0.04174194091774887 -0.0033746936891019827 -0.029403741201242065 0.010559268533111552 -0.0052360222074828485 -0.023809232683264358 0.13640238230958635 -0.004853657040045156 -0.032761282015559084 0.06761541024970225 0.005086671780403455 0.01044805998772589 0.05060100211199717 0.005024847063604199 0.022946834954887613 0.13640238230958635 -0.004853657040045156 -0.032761282015559084 0.05466682788077611 -0.0008962358871799113 -0.006088088982470888 0.026352552878763376 -0.0029632431454991743 -0.000989550480418419 0.13640238230958635 -0.004853657040045156 -0.032761282015559084 0.11231267550694432 0.01066867750183055 -0.05857412930364182 0.09267943496566691 0.009777390950287547 -0.08227368254957612 -0.0065296801314764855 -0.002364232807854608 -0.055550222404464576 -0.012345371700778401 -0.0039839179747650265 -0.019864718680528404 0.03473410090525925 0.005716002958051821 0.033278742357197855 0.0028320400019326217 -0.0012751313206838491 0.006644263691950841 0.07046169561368042 0.015210362111744953 -0.09679780084891178 0.037455848175174465 0.004073586987914085 -0.04136057990524705 0.13312577909924622 -0.0023098418695473534 -0.04754688518538225 0.045028532459051356 0.002890515198856204 -0.06823287422247953 0.012349628945166717 -0.0011188402105286955 -0.07044994233351716 0.13312577909924622 -0.0023098418695473534 -0.04754688518538225 0.03846533770740873 -0.0008308785186041797 -0.044189344371065226 0.007282665322771414 -0.0026922070369850455 -0.038594835853087525 0.13312577909924622 -0.0023098418695473534 -0.04754688518538225 0.06433880703936211 0.007630486950901258 -0.004337543182097274 0.04732439890165703 0.007568662234102002 0.008161231785064449 0.13312577909924622 -0.0023098418695473534 -0.04754688518538225 0.051390224670435976 0.0016475792833178914 -0.02087369215229405 0.02307594966842324 -0.0004194279750013713 -0.015775153650241583 0.13312577909924622 -0.0023098418695473534 -0.04754688518538225 0.1090360722966042 0.013212492672328352 -0.07335973247346499 0.08940283175532676 0.012321206120785348 -0.09705928571939929 -0.009806283341816623 0.00017958236264319517 -0.07033582557428775 -0.015621974911118539 -0.0014401028042672235 -0.034650321850351565 0.031457497694919116 0.008259818128549624 0.01849313918737469 -0.00044456320840751545 0.0012686838498139536 -0.008141339477872322 0.06718509240334028 0.017754177282242756 -0.11158340401873494 0.038054431379435455 0.0002940257720646671 -0.040937013310653775 0.1337243623035072 -0.006089403085396771 -0.04712331859078897 0.045627115663312345 -0.0008890460169932142 -0.06780930762788626 0.012948212149427707 -0.0048984014263781135 -0.07002637573892388 0.1337243623035072 -0.006089403085396771 -0.04712331859078897 0.03906392091166972 -0.004610439734453598 -0.04376577777647195 0.007881248527032404 -0.006471768252834464 -0.03817126925849425 0.1337243623035072 -0.006089403085396771 -0.04712331859078897 0.0649373902436231 0.003850925735051839 -0.003913976587503996 0.04792298210591802 0.003789101018252584 0.008584798379657727 0.1337243623035072 -0.006089403085396771 -0.04712331859078897 0.051988807874696966 -0.0021319819325315266 -0.020450125557700774 0.02367453287268423 -0.004198989190850789 -0.015351587055648305 0.1337243623035072 -0.006089403085396771 -0.04712331859078897 0.10963465550086518 0.009432931456478935 -0.07293616587887171 0.09000141495958776 0.008541644904935931 -0.09663571912480601 -0.009207700137555633 -0.003599978853206223 -0.06991225897969447 -0.015023391706857549 -0.005219664020116642 -0.03422675525575829 0.032056080899180106 0.0044802569127002055 0.01891670578196797 0.00015401999585347437 -0.0025108773660354644 -0.007717772883279045 0.06778367560760126 0.013974616066393337 -0.11115983742414166 0.036363220129402955 -0.0029755723096431407 -0.03705832590443911 0.1320331510534747 -0.009359001167104579 -0.043244631184574306 0.043935904413279846 -0.004158644098701022 -0.06393062022167159 0.011257000899395207 -0.008167999508085921 -0.06614768833270922 0.1320331510534747 -0.009359001167104579 -0.043244631184574306 0.03737270966163722 -0.007880037816161405 -0.03988709037025728 0.006190037276999905 -0.009741366334542272 -0.03429258185227958 0.1320331510534747 -0.009359001167104579 -0.043244631184574306 0.0632461789935906 0.0005813276533440312 -3.528918128933162e-05 0.04623177085588552 0.000519502936544776 0.012463485785872391 0.1320331510534747 -0.009359001167104579 -0.043244631184574306 0.050297596624664466 -0.005401580014239335 -0.01657143815148611 0.02198332162265173 -0.007468587272558598 -0.01147289964943364 0.1320331510534747 -0.009359001167104579 -0.043244631184574306 0.10794344425083269 0.006163333374771127 -0.06905747847265704 0.08831020370955525 0.0052720468232281235 -0.09275703171859134 -0.010898911387588132 -0.00686957693491403 -0.0660335715734798 -0.01671460295689005 -0.008489262101824449 -0.030348067849543626 0.030364869649147603 0.0012106588309923976 0.022795393188182633 -0.0015371912541790253 -0.005780475447743272 -0.00383908547706438 0.06609246435756877 0.01070501798468553 -0.107281150017927 0.041790491980899375 0.0033145862908305623 -0.042648363793142574 0.13746042290497112 -0.0030688425666308763 -0.04883466907327777 0.049363176264776265 0.002131514501772681 -0.06952065811037506 0.016684272750891627 -0.0018778409076122184 -0.07173772622141268 0.13746042290497112 -0.0030688425666308763 -0.04883466907327777 0.04279998151313364 -0.0015898792156877027 -0.04547712825896075 0.011617309128496324 -0.0034512077340685685 -0.03988261974098305 0.13746042290497112 -0.0030688425666308763 -0.04883466907327777 0.06867345084508703 0.006871486253817734 -0.005625327069992796 0.05165904270738194 0.006809661537018479 0.006873447897168927 0.13746042290497112 -0.0030688425666308763 -0.04883466907327777 0.055724868476160885 0.0008885785862343685 -0.022161476040189573 0.02741059347414815 -0.0011784286720848943 -0.017062937538137105 0.13746042290497112 -0.0030688425666308763 -0.04883466907327777 0.1133707161023291 0.01245349197524483 -0.07464751636136051 0.09373747556105168 0.011562205423701826 -0.09834706960729481 -0.005471639536091713 -0.0005794183344403278 -0.07162360946218327 -0.011287331105393629 -0.0021991035013507465 -0.035938105738247086 0.035792141500644026 0.007500817431466101 0.01720535529947917 0.003890080597317394 0.0005096831527304307 -0.009429123365767844 0.07151973620906518 0.016995176585159234 -0.11287118790663046 0.04374320587764331 0.007881301942318118 -0.04079892923620489 0.13941313680171508 0.0014978730848566792 -0.04698523451634008 0.0513158901615202 0.006698230153260236 -0.06767122355343735 0.018636986647635564 0.002688874743875337 -0.069888291664475 0.13941313680171508 0.0014978730848566792 -0.04698523451634008 0.04475269540987758 0.002976836435799853 -0.04362769370202306 0.013570023025240262 0.001115507917418987 -0.03803318518404536 0.13941313680171508 0.0014978730848566792 -0.04698523451634008 0.07062616474183096 0.01143820190530529 -0.0037758925130551083 0.05361175660412588 0.011376377188506034 0.008722882454106615 0.13941313680171508 0.0014978730848566792 -0.04698523451634008 0.05767758237290482 0.005455294237721924 -0.020312041483251886 0.029363307370892086 0.0033882869794026613 -0.015213502981199417 0.13941313680171508 0.0014978730848566792 -0.04698523451634008 0.11532342999907304 0.017020207626732384 -0.07279808180442282 0.09569018945779562 0.01612892107518938 -0.09649763505035713 -0.0035189256393477752 0.003987297317047228 -0.06977417490524557 -0.009334617208649691 0.002367612150136809 -0.0340886711813094 0.037744855397387964 0.012067533082953656 0.019054789856416857 0.005842794494061332 0.005076398804217987 -0.007579688808830157 0.07347245010580913 0.021561892236646788 -0.11102175334969278 0.05878709152028584 0.006147303628492983 -0.03387968354709226 0.1544570224443576 -0.00023612522896845553 -0.04006598882722746 0.06635977580416273 0.004964231839435102 -0.060751977864324735 0.033680872290278094 0.0009548764300502024 -0.06296904597536238 0.1544570224443576 -0.00023612522896845553 -0.04006598882722746 0.05979658105252011 0.001242838121974718 -0.036708448012910434 0.02861390866788279 -0.0006184903964061477 -0.03111393949493273 0.1544570224443576 -0.00023612522896845553 -0.04006598882722746 0.08567005038447349 0.009704203591480155 0.0031433531760575173 0.06865564224676841 0.0096423788746809 0.01564212814321924 0.1544570224443576 -0.00023612522896845553 -0.04006598882722746 0.07272146801554735 0.0037212959238967893 -0.01339279579413926 0.044407193013534615 0.0016542886655775265 -0.008294257292086792 0.1544570224443576 -0.00023612522896845553 -0.04006598882722746 0.13036731564171555 0.01528620931290725 -0.0658788361153102 0.11073407510043815 0.014394922761364247 -0.0895783893612445 0.011524960003294754 0.002253299003222093 -0.06285492921613295 0.005709268433992838 0.0006336138363116743 -0.027169425492196777 0.05278874104003049 0.010333534769128521 0.025974035545529482 0.02088668013670386 0.0033424004903928515 -0.0006604431197175312 0.08851633574845166 0.01982789392282165 -0.10410250766058016 0.053345739027240026 0.006492615959702415 -0.032134326736622656 0.14901566995131177 0.00010918710224097627 -0.03832063201675785 0.060918423311116916 0.0053095441706445335 -0.05900662105385513 0.028239519797232278 0.0013001887612596342 -0.061223689164892764 0.14901566995131177 0.00010918710224097627 -0.03832063201675785 0.05435522855947429 0.00158815045318415 -0.03496309120244083 0.023172556174836975 -0.00027317806519671587 -0.029368582684463126 0.14901566995131177 0.00010918710224097627 -0.03832063201675785 0.08022869789142767 0.010049515922689586 0.004888709986527122 0.06321428975372259 0.009987691205890332 0.017387484953688845 0.14901566995131177 0.00010918710224097627 -0.03832063201675785 0.06728011552250154 0.004066608255106221 -0.011647438983669656 0.0389658405204888 0.0019996009967869583 -0.006548900481617187 0.14901566995131177 0.00010918710224097627 -0.03832063201675785 0.12492596314866974 0.015631521644116683 -0.06413347930484059 0.10529272260739234 0.014740235092573679 -0.0878330325507749 0.006083607510248938 0.002598611334431525 -0.061109572405663344 0.0002679159409470222 0.0009789261675211061 -0.025424068681727172 0.04734738854698468 0.010678847100337953 0.027719392355999087 0.015445327643658045 0.0036877128216022833 0.0010849136907520734 0.08307498325540584 0.020173206254031087 -0.10235715085011055 0.05320192296824912 0.007110076510065906 -0.033214347219578985 0.14887185389232088 0.0007266476526044674 -0.03940065249971418 0.06077460725212601 0.005927004721008025 -0.06008664153681146 0.02809570373824137 0.0019176493116231253 -0.06230370964784909 0.14887185389232088 0.0007266476526044674 -0.03940065249971418 0.054211412500483384 0.002205611003547641 -0.03604311168539716 0.023028740115846068 0.00034428248516677525 -0.030448603167419454 0.14887185389232088 0.0007266476526044674 -0.03940065249971418 0.08008488183243677 0.010666976473053078 0.0038086895035707932 0.06307047369473169 0.010605151756253824 0.016307464470732516 0.14887185389232088 0.0007266476526044674 -0.03940065249971418 0.06713629946351063 0.004684068805469712 -0.012727459466625984 0.03882202446149789 0.0026170615471504495 -0.007628920964573516 0.14887185389232088 0.0007266476526044674 -0.03940065249971418 0.12478214708967884 0.016248982194480174 -0.06521349978779692 0.10514890654840142 0.01535769564293717 -0.08891305303373123 0.005939791451258031 0.003216071884795016 -0.06218959288861967 0.00012409988195611482 0.0015963867178845972 -0.0265040891646835 0.04720357248799377 0.011296307650701444 0.026639371873042758 0.015301511584667138 0.004305173371965775 4.893207795744758e-06 0.08293116719641494 0.020790666804394578 -0.10343717133306687 0.058624197306345556 0.007334506155695533 -0.03515573541103554 0.1542941282304173 0.0009510772982340944 -0.041342040691170735 0.06619688159022244 0.0061514343666376516 -0.062028029728268014 0.03351797807633781 0.0021420789572527523 -0.06424509783930565 0.1542941282304173 0.0009510772982340944 -0.041342040691170735 0.05963368683857982 0.002430040649177268 -0.03798449987685371 0.028451014453942505 0.0005687121307964022 -0.03238999135887601 0.1542941282304173 0.0009510772982340944 -0.041342040691170735 0.0855071561705332 0.010891406118682705 0.001867301312114239 0.06849274803282812 0.01082958140188345 0.014366076279275962 0.1542941282304173 0.0009510772982340944 -0.041342040691170735 0.07255857380160707 0.004908498451099339 -0.014668847658082539 0.04424429879959433 0.0028414911927800764 -0.00957030915603007 0.1542941282304173 0.0009510772982340944 -0.041342040691170735 0.13020442142777527 0.0164734118401098 -0.06715488797925348 0.11057118088649787 0.015582125288566798 -0.09085444122518778 0.011362065789354468 0.003440501530424643 -0.06413098108007623 0.005546374220052552 0.0018208163635142242 -0.028445477356140055 0.05262584682609021 0.01152073729633107 0.024697983681586204 0.020723785922763575 0.004529603017595401 -0.0019364949836608095 0.08835344153451137 0.021015096450024202 -0.10537855952452344 0.0470242779617033 0.008541710972677795 -0.03137855187318911 0.14269420888577505 0.0021582821152163565 -0.037564857153324305 0.05459696224558019 0.007358639183619914 -0.05825084619042158 0.02191805873169555 0.0033492837742350144 -0.060467914301459216 0.14269420888577505 0.0021582821152163565 -0.037564857153324305 0.04803376749393756 0.00363724546615953 -0.03420731633900728 0.016851095109300246 0.0017759169477786644 -0.028612807821029578 0.14269420888577505 0.0021582821152163565 -0.037564857153324305 0.07390723682589094 0.012098610935664967 0.0056444848499606695 0.05689282868818586 0.012036786218865711 0.018143259817122392 0.14269420888577505 0.0021582821152163565 -0.037564857153324305 0.06095865445696481 0.006115703268081601 -0.010891664120236108 0.03264437945495207 0.004048696009762339 -0.005793125618183639 0.14269420888577505 0.0021582821152163565 -0.037564857153324305 0.11860450208313303 0.017680616657092064 -0.06337770444140704 0.09897126154185559 0.01678933010554906 -0.08707725768734134 -0.00023785355528779112 0.004647706347406905 -0.060353797542229796 -0.006053545124589707 0.0030280211804964863 -0.024668293818293625 0.04102592748144795 0.012727942113313333 0.028475167219432634 0.009123866578121316 0.005736807834577664 0.001840688554185621 0.07675352218986911 0.022222301267006465 -0.101601375986677 0.048479841075245826 0.008680814709050907 -0.03282298524828585 0.14414977199931758 0.002297385851589468 -0.039009290528421045 0.05605252535912272 0.007497742919993025 -0.059695279565518324 0.023373621845238078 0.003488387510608126 -0.06191234767655596 0.14414977199931758 0.002297385851589468 -0.039009290528421045 0.04948933060748009 0.0037763492025326417 -0.03565174971410402 0.018306658222842775 0.001915020684151776 -0.03005724119612632 0.14414977199931758 0.002297385851589468 -0.039009290528421045 0.07536279993943347 0.012237714672038078 0.004200051474863929 0.05834839180172839 0.012175889955238824 0.016698826442025652 0.14414977199931758 0.002297385851589468 -0.039009290528421045 0.06241421757050734 0.006254807004454713 -0.012336097495332848 0.0340999425684946 0.00418779974613545 -0.00723755899328038 0.14414977199931758 0.002297385851589468 -0.039009290528421045 0.12006006519667556 0.017819720393465174 -0.06482213781650378 0.10042682465539812 0.01692843384192217 -0.0885216910624381 0.0012177095582547384 0.004786810083780017 -0.06179823091732654 -0.0045979820110471775 0.003167124916869598 -0.026112727193390365 0.04248149059499048 0.012867045849686445 0.027030733844335894 0.010579429691663846 0.0058759115709507755 0.00039625517908888075 0.07820908530341164 0.022361405003379575 -0.10304580936177374 0.04654088681524777 0.00940234069464234 -0.03605702586638045 0.1422108177393195 0.003018911837180902 -0.04224333114651565 0.05411357109912466 0.00821926890558446 -0.06292932018361293 0.02143466758524002 0.00420991349619956 -0.06514638829465055 0.1422108177393195 0.003018911837180902 -0.04224333114651565 0.047550376347482035 0.0044978751881240755 -0.038885790332198626 0.016367703962844718 0.0026365466697432097 -0.033291281814220926 0.1422108177393195 0.003018911837180902 -0.04224333114651565 0.07342384567943541 0.012959240657629512 0.0009660108567693254 0.056409437541730334 0.012897415940830256 0.013464785823931048 0.1422108177393195 0.003018911837180902 -0.04224333114651565 0.06047526331050928 0.006976332990046147 -0.015570138113427452 0.03216098830849654 0.004909325731726884 -0.010471599611374983 0.1422108177393195 0.003018911837180902 -0.04224333114651565 0.11812111093667749 0.01854124637905661 -0.06805617843459838 0.09848787039540008 0.017649959827513606 -0.09175573168053269 -0.0007212447017433191 0.00550833606937145 -0.06503227153542114 -0.006536936271045235 0.0038886509024610317 -0.02934676781148497 0.04054253633499242 0.013588571835277879 0.02379669322624129 0.008640475431665788 0.006597437556542209 -0.002837785439005723 0.07627013104341358 0.02308293098897101 -0.10627984997986833 0.052545634364920386 0.00889417941226221 -0.03814735651994293 0.14821556528899213 0.002510750554800772 -0.044333661800078125 0.06011831864879728 0.007711107623204329 -0.0650196508371754 0.02743941513491264 0.00370175221381943 -0.06723671894821304 0.14821556528899213 0.002510750554800772 -0.044333661800078125 0.05355512389715465 0.003989713905743946 -0.0409761209857611 0.022372451512517336 0.00212838538736308 -0.0353816124677834 0.14821556528899213 0.002510750554800772 -0.044333661800078125 0.07942859322910803 0.012451079375249382 -0.001124319796793151 0.06241418509140295 0.012389254658450127 0.011374455170368572 0.14821556528899213 0.002510750554800772 -0.044333661800078125 0.0664800108601819 0.006468171707666017 -0.01766046876698993 0.03816573585816916 0.004401164449346754 -0.01256193026493746 0.14821556528899213 0.002510750554800772 -0.044333661800078125 0.1241258584863501 0.018033085096676477 -0.07014650908816086 0.1044926179450727 0.017141798545133473 -0.09384606233409518 0.005283502847929299 0.005000174786991321 -0.06712260218898361 -0.0005321887213726173 0.003380489620080902 -0.03143709846504744 0.04654728388466504 0.013080410552897749 0.021706362572678814 0.014645222981338406 0.0060892762741620796 -0.004928116092568199 0.0822748785930862 0.02257476970659088 -0.10837018063343082 0.05012870181236114 0.005960740161184303 -0.04274681672664733 0.1457986327364329 -0.00042268869627713583 -0.04893312200678253 0.05770138609623803 0.004777668372126421 -0.0696191110438798 0.025022482582353393 0.0007683129627415221 -0.07183617915491744 0.1457986327364329 -0.00042268869627713583 -0.04893312200678253 0.05113819134459541 0.0010562746546660378 -0.045575581192465506 0.01995551895995809 -0.000805053863714828 -0.039981072674487805 0.1457986327364329 -0.00042268869627713583 -0.04893312200678253 0.07701166067654878 0.009517640124171474 -0.005723780003497554 0.05999725253884371 0.009455815407372219 0.006774994963664169 0.1457986327364329 -0.00042268869627713583 -0.04893312200678253 0.06406307830762266 0.003534732456588109 -0.022259928973694332 0.035748803305609915 0.0014677251982688462 -0.017161390471641863 0.1457986327364329 -0.00042268869627713583 -0.04893312200678253 0.12170892593379087 0.01509964584559857 -0.07474596929486527 0.10207568539251344 0.014208359294055567 -0.09844552254079958 0.0028665702953700536 0.0020667355359134127 -0.07172206239568801 -0.0029491212739318623 0.000447050369002994 -0.036036558671751845 0.04413035133210579 0.010146971301819841 0.01710690236597441 0.01222829042877916 0.003155837023084171 -0.009527576299272603 0.07985794604052696 0.019641330455512973 -0.11296964084013522 0.055152294743482745 0.005987481256931387 -0.043673010613926616 0.1508222256675545 -0.0003959476005300517 -0.04985931589406181 0.06272497902735963 0.0048044094678735055 -0.0705453049311591 0.030046075513474997 0.0007950540584886062 -0.07276237304219672 0.1508222256675545 -0.0003959476005300517 -0.04985931589406181 0.05616178427571701 0.001083015750413122 -0.04650177507974479 0.024979111891079694 -0.0007783127679677438 -0.04090726656176709 0.1508222256675545 -0.0003959476005300517 -0.04985931589406181 0.08203525360767039 0.009544381219918558 -0.006649973890776838 0.06502084546996531 0.009482556503119303 0.005848801076384885 0.1508222256675545 -0.0003959476005300517 -0.04985931589406181 0.06908667123874426 0.003561473552335193 -0.023186122860973615 0.04077239623673152 0.0014944662940159304 -0.018087584358921147 0.1508222256675545 -0.0003959476005300517 -0.04985931589406181 0.12673251886491246 0.015126386941345655 -0.07567216318214455 0.10709927832363506 0.01423510038980265 -0.09937171642807885 0.007890163226491657 0.002093476631660497 -0.07264825628296731 0.0020744716571897415 0.00047379146475007815 -0.03696275255903113 0.049153944263227396 0.010173712397566925 0.016180708478695127 0.017251883359900765 0.0031825781188312553 -0.010453770186551886 0.08488153897164856 0.019668071551260057 -0.1138958347274145 0.05773399829250441 0.008893702452481755 -0.03966198699297086 0.15340392921657617 0.0025102735950203164 -0.04584829227310606 0.0653066825763813 0.0077106306634238736 -0.06653428131020334 0.03262777906249666 0.0037012752540389743 -0.06875134942124098 0.15340392921657617 0.0025102735950203164 -0.04584829227310606 0.05874348782473868 0.00398923694596349 -0.042490751458789035 0.02756081544010136 0.0021279084275826242 -0.036896242940811334 0.15340392921657617 0.0025102735950203164 -0.04584829227310606 0.08461695715669205 0.012450602415468926 -0.002638950269821083 0.06760254901898698 0.01238877769866967 0.00985982469734064 0.15340392921657617 0.0025102735950203164 -0.04584829227310606 0.07166837478776593 0.006467694747885561 -0.01917509924001786 0.043354099785753185 0.0044006874895662984 -0.014076560737965392 0.15340392921657617 0.0025102735950203164 -0.04584829227310606 0.12931422241393414 0.01803260813689602 -0.0716611395611888 0.10968098187265671 0.017141321585353017 -0.0953606928071231 0.010471866775513324 0.004999697827210865 -0.06863723266201155 0.004656175206211408 0.003380012660300446 -0.03295172893807538 0.05173564781224906 0.013079933593117293 0.02019173209965088 0.01983358690892243 0.006088799314381624 -0.006442746565596132 0.08746324252067023 0.022574292746810425 -0.10988481110645876 0.045858305255209966 0.008019283684627157 -0.04016344083064992 0.14152823617928173 0.0016358548271657187 -0.046349746110785114 0.05343098953908686 0.006836211895569276 -0.06703573514788239 0.020752086025202218 0.0028268564861843766 -0.06925280325892003 0.14152823617928173 0.0016358548271657187 -0.046349746110785114 0.04686779478744423 0.0031148181781088923 -0.04299220529646809 0.015685122402806916 0.0012534896597280265 -0.03739769677849039 0.14152823617928173 0.0016358548271657187 -0.046349746110785114 0.07274126411939762 0.011576183647614329 -0.00314040410750014 0.05572685598169253 0.011514358930815073 0.009358370859661583 0.14152823617928173 0.0016358548271657187 -0.046349746110785114 0.05979268175047148 0.0055932759800309635 -0.019676553077696918 0.03147840674845874 0.0035262687217117008 -0.014578014575644449 0.14152823617928173 0.0016358548271657187 -0.046349746110785114 0.11743852937663969 0.017158189369041427 -0.07216259339886785 0.09780528883536227 0.016266902817498423 -0.09586214664480217 -0.0014038262617811215 0.004125279059356267 -0.0691386864996906 -0.007219517831083037 0.0025055938924458485 -0.03345318277575443 0.03985995477495462 0.012205514825262696 0.019690278261971825 0.007957893871627986 0.005214380546527026 -0.006944200403275189 0.07558754948337579 0.021699873978955828 -0.11038626494413781 0.06116032098579329 0.007195282724176349 -0.03710985478029202 0.15683025190986505 0.0008118538667149103 -0.04329616006042722 0.06873300526967017 0.0060122109351184675 -0.0639821490975245 0.03605410175578554 0.0020028555257335682 -0.06619921720856213 0.15683025190986505 0.0008118538667149103 -0.04329616006042722 0.06216981051802756 0.002290817217658084 -0.039938619246110196 0.03098713813339024 0.00042948869927721817 -0.034344110728132496 0.15683025190986505 0.0008118538667149103 -0.04329616006042722 0.08804327984998093 0.010752182687163521 -8.681805714224472e-05 0.07102887171227586 0.010690357970364266 0.012411956910019478 0.15683025190986505 0.0008118538667149103 -0.04329616006042722 0.07509469748105481 0.004769275019580155 -0.016622967027339022 0.046780422479042065 0.0027022677612608924 -0.011524428525286554 0.15683025190986505 0.0008118538667149103 -0.04329616006042722 0.13274054510722302 0.016334188408590616 -0.06910900734850996 0.11310730456594559 0.015442901857047612 -0.09280856059444426 0.013898189468802204 0.003301278098905459 -0.06608510044933272 0.008082497899500288 0.0016815929319950402 -0.03039959672539654 0.05516197050553794 0.011381513864811888 0.02274386431232972 0.02325990960221131 0.004390379586076217 -0.003890614352917293 0.0908895652139591 0.02087587301850502 -0.10733267889377991 0.062483854931104046 0.0067593536762448085 -0.0357858369298126 0.1581537858551758 0.0003759248187833698 -0.0419721422099478 0.07005653921498094 0.005576281887186927 -0.06265813124704508 0.0373776357010963 0.0015669264778020277 -0.06487519935808271 0.1581537858551758 0.0003759248187833698 -0.0419721422099478 0.06349334446333832 0.0018548881697265434 -0.03861460139563078 0.032310672078700996 -6.440348654322345e-06 -0.033020092877653076 0.1581537858551758 0.0003759248187833698 -0.0419721422099478 0.0893668137952917 0.01031625363923198 0.001237199793337175 0.07235240565758662 0.010254428922432725 0.013735974760498898 0.1581537858551758 0.0003759248187833698 -0.0419721422099478 0.07641823142636556 0.004333345971648615 -0.015298949176859603 0.04810395642435282 0.002266338713329352 -0.010200410674807134 0.1581537858551758 0.0003759248187833698 -0.0419721422099478 0.13406407905253376 0.015898259360659077 -0.06778498949803054 0.11443083851125635 0.015006972809116073 -0.09148454274396484 0.015221723414112959 0.0028653490509739183 -0.0647610825988533 0.009406031844811043 0.0012456638840634996 -0.02907557887491712 0.0564855044508487 0.010945584816880346 0.02406788216280914 0.024583443547522066 0.003954450538144676 -0.0025665965024378734 0.09221309915926987 0.020439943970573478 -0.10600866104330049 0.04421346814401274 0.009759951845533812 -0.03554730937444271 0.1398833990680845 0.0033765229880723738 -0.04173361465457791 0.05178615242788963 0.008576880056475932 -0.062419603691675186 0.01910724891400499 0.004567524647091032 -0.06463667180271282 0.1398833990680845 0.0033765229880723738 -0.04173361465457791 0.045222957676247004 0.004855486339015547 -0.038376073840260885 0.014040285291609687 0.0029941578206346816 -0.032781565322283185 0.1398833990680845 0.0033765229880723738 -0.04173361465457791 0.07109642700820039 0.013316851808520984 0.0014757273487070663 0.0540820188704953 0.01325502709172173 0.01397450231586879 0.1398833990680845 0.0033765229880723738 -0.04173361465457791 0.05814784463927425 0.007333944140937619 -0.015060421621489711 0.02983356963726151 0.005266936882618356 -0.009961883119437243 0.1398833990680845 0.0033765229880723738 -0.04173361465457791 0.11579369226544246 0.01889885752994808 -0.06754646194266065 0.09616045172416504 0.018007570978405076 -0.09124601518859496 -0.0030486633729783497 0.005865947220262922 -0.06452255504348339 -0.008864354942280266 0.004246262053352504 -0.028837051319547228 0.03821511766375739 0.01394618298616935 0.02430640971817903 0.0063130567604307575 0.006955048707433681 -0.002328068947067982 0.07394271237217856 0.023440542139862484 -0.1057701334879306 0.04623109920103593 0.005163181044823049 -0.028076126721834602 0.14190103012510769 -0.0012202478126383896 -0.034262432001969795 0.05380378348491282 0.003980109255765168 -0.05494842103906708 0.02112487997102818 -2.9246153619731652e-05 -0.057165489150104706 0.14190103012510769 -0.0012202478126383896 -0.034262432001969795 0.047240588733270195 0.00025871553830478407 -0.03090489118765278 0.016057916348632878 -0.0016026129800760817 -0.02531038266967507 0.14190103012510769 -0.0012202478126383896 -0.034262432001969795 0.07311405806522357 0.00872008100781022 0.008946910001315176 0.056099649927518494 0.008658256291010965 0.0214456849684769 0.14190103012510769 -0.0012202478126383896 -0.034262432001969795 0.06016547569629744 0.0027371733402268552 -0.007589238968881602 0.0318512006942847 0.0006701660819075925 -0.002490700466829133 0.14190103012510769 -0.0012202478126383896 -0.034262432001969795 0.11781132332246566 0.014302086729237317 -0.06007527929005253 0.09817808278118823 0.013410800177694313 -0.08377483253598685 -0.001031032315955159 0.001269176419552159 -0.05705137239087529 -0.006846723885257075 -0.0003505087473582597 -0.021365868666939118 0.04023274872078058 0.009349412185458587 0.031777592370787144 0.008330687817453948 0.0023582779067229174 0.0051431137055401276 0.07596034342920174 0.01884377133915172 -0.09829895083532249 0.053520555741084254 0.004138213873544889 -0.030437362927653932 0.149190486665156 -0.0022452149839165495 -0.036623668207789124 0.061093240024961144 0.0029551420844870077 -0.0573096572448864 0.028414336511076506 -0.0010542133248978916 -0.05952672535592404 0.149190486665156 -0.0022452149839165495 -0.036623668207789124 0.05453004527331852 -0.0007662516329733759 -0.03326612739347211 0.023347372888681203 -0.0026275801513542417 -0.0276716188754944 0.149190486665156 -0.0022452149839165495 -0.036623668207789124 0.0804035146052719 0.007695113836532061 0.0065856737954958465 0.06338910646756682 0.007633289119732806 0.01908444876265757 0.149190486665156 -0.0022452149839165495 -0.036623668207789124 0.06745493223634577 0.0017122061689486953 -0.009950475174700931 0.03914065723433303 -0.00035480108937056744 -0.004851936672648462 0.149190486665156 -0.0022452149839165495 -0.036623668207789124 0.12510077986251397 0.013277119557959157 -0.06243651549587187 0.10546753932123656 0.012385833006416153 -0.08613606874180617 0.006258424224093166 0.000244209248273999 -0.059412608596694616 0.00044273265479125024 -0.0013754759186364197 -0.023727104872758448 0.047522205260828905 0.008324445014180427 0.02941635616496781 0.015620144357502273 0.0013333107354447575 0.002781877499720798 0.08324979996925007 0.01781880416787356 -0.10066018704114182 0.0592100220443755 0.003508930413440308 -0.03205092352864386 0.15487995296844725 -0.0028744984440211307 -0.038237228808779056 0.06678270632825238 0.002325858624382427 -0.058923217845876334 0.03410380281436775 -0.0016834967850024728 -0.06114028595691397 0.15487995296844725 -0.0028744984440211307 -0.038237228808779056 0.06021951157660976 -0.001395535093077957 -0.03487968799446203 0.029036839191972447 -0.003256863611458823 -0.02928517947648433 0.15487995296844725 -0.0028744984440211307 -0.038237228808779056 0.08609298090856314 0.00706583037642748 0.0049721131945059185 0.06907857277085806 0.007004005659628224 0.01747088816166764 0.15487995296844725 -0.0028744984440211307 -0.038237228808779056 0.07314439853963701 0.001082922708844114 -0.011564035775690859 0.04483012353762427 -0.0009840845494751486 -0.00646549727363839 0.15487995296844725 -0.0028744984440211307 -0.038237228808779056 0.13079024616580523 0.012647836097854576 -0.0640500760968618 0.1111570056245278 0.011756549546311572 -0.08774962934279609 0.01194789052738441 -0.00038507421183058216 -0.06102616919768455 0.006132198958082494 -0.002004759378741001 -0.025340665473748376 0.05321167156412015 0.007695161554075847 0.027802795563977883 0.021309610660793517 0.0007040272753401763 0.00116831689873087 0.08893926627254131 0.01718952070776898 -0.10227374764213175 0.06226413431367423 0.003113486997972628 -0.0351680165636998 0.15793406523774597 -0.0032699418594888106 -0.041354321843834994 0.06983681859755111 0.0019304152089147468 -0.06204031088093227 0.03715791508366648 -0.0020789402004701527 -0.0642573789919699 0.15793406523774597 -0.0032699418594888106 -0.041354321843834994 0.0632736238459085 -0.001790978508545637 -0.03799678102951797 0.03209095146127118 -0.0036523070269265027 -0.03240227251154027 0.15793406523774597 -0.0032699418594888106 -0.041354321843834994 0.08914709317786187 0.0066703869609598 0.0018550201594499799 0.0721326850401568 0.006608562244160544 0.014353795126611703 0.15793406523774597 -0.0032699418594888106 -0.041354321843834994 0.07619851080893575 0.0006874792933764342 -0.014681128810746798 0.047884235806923005 -0.0013795279649428285 -0.009582590308694329 0.15793406523774597 -0.0032699418594888106 -0.041354321843834994 0.13384435843510395 0.012252392682386896 -0.06716716913191773 0.11421111789382654 0.011361106130843892 -0.09086672237785204 0.015002002796683143 -0.000780517627298262 -0.06414326223274049 0.009186311227381228 -0.0024002027942086807 -0.028457758508804314 0.05626578383341888 0.007299718138608167 0.024685702528921945 0.02436372293009225 0.0003085838598724964 -0.0019487761363250686 0.09199337854184005 0.0167940772923013 -0.10539084067718768 0.05296019219283662 0.0003725260129899346 -0.030762388014205097 0.14863012311690837 -0.006010902844471504 -0.03694869329434029 0.06053287647671351 -0.0008105457760679466 -0.05763468233143757 0.02785397296282887 -0.004819901185452846 -0.059851750442475204 0.14863012311690837 -0.006010902844471504 -0.03694869329434029 0.053969681725070884 -0.004531939493528331 -0.03359115248002327 0.022787009340433567 -0.006393268011909196 -0.027996643962045566 0.14863012311690837 -0.006010902844471504 -0.03694869329434029 0.07984315105702426 0.003929425975977107 0.006260648708944681 0.06282874291931918 0.003867601259177851 0.018759423676106404 0.14863012311690837 -0.006010902844471504 -0.03694869329434029 0.06689456868809814 -0.0020534816916062595 -0.010275500261252096 0.03858029368608539 -0.004120488949925522 -0.0051769617591996275 0.14863012311690837 -0.006010902844471504 -0.03694869329434029 0.12454041631426635 0.009511431697404203 -0.06276154058242303 0.10490717577298891 0.008620145145861199 -0.08646109382835734 0.00569806067584553 -0.0035214786122809557 -0.059737633683245785 -0.00011763089345638578 -0.005141163779191374 -0.024052129959309613 0.04696184171258127 0.004558757153625473 0.029091331078416646 0.015059780809254637 -0.002432377125110197 0.002456852413169633 0.08268943642100243 0.014053116307318606 -0.10098521212769299 0.05819226359336708 0.0005181585893258406 -0.03269305379339486 0.15386219451743882 -0.005865270268135598 -0.03887935907353006 0.06576494787724396 -0.0006649131997320406 -0.05956534811062734 0.03308604436335933 -0.00467426860911694 -0.06178241622166497 0.15386219451743882 -0.005865270268135598 -0.03887935907353006 0.059201753125601345 -0.004386306917192424 -0.03552181825921304 0.028019080740964028 -0.006247635435573291 -0.029927309741235333 0.15386219451743882 -0.005865270268135598 -0.03887935907353006 0.08507522245755472 0.0040750585523130125 0.004329982929754915 0.06806081431984964 0.004013233835513757 0.016828757896916638 0.15386219451743882 -0.005865270268135598 -0.03887935907353006 0.0721266400886286 -0.0019078491152703532 -0.012206166040441863 0.04381236508661585 -0.003974856373589616 -0.007107627538389394 0.15386219451743882 -0.005865270268135598 -0.03887935907353006 0.1297724877147968 0.009657064273740109 -0.0646922063616128 0.11013924717351939 0.008765777722197105 -0.08839175960754711 0.010930132076375991 -0.0033758460359450495 -0.06166829946243555 0.005114440507074075 -0.004995531202855468 -0.02598279573849938 0.05219391311311173 0.004704389729961379 0.02716066529922688 0.020291852209785098 -0.002286744548774291 0.0005261866339798665 0.0879215078215329 0.014198748883654511 -0.10291587790688275 0.06100882490572187 0.0002566368999154121 -0.035446441245243106 0.15667875582979363 -0.006126791957546026 -0.0416327465253783 0.06858150918959875 -0.0009264348891424691 -0.06231873556247558 0.03590260567571412 -0.004935790298527368 -0.06453580367351322 0.15667875582979363 -0.006126791957546026 -0.0416327465253783 0.062018314437956135 -0.004647828606602853 -0.03827520571106128 0.030835642053318818 -0.0065091571249837185 -0.03268069719308358 0.15667875582979363 -0.006126791957546026 -0.0416327465253783 0.08789178376990951 0.0038135368629025838 0.0015765954779066726 0.07087737563220443 0.0037517121461033286 0.014075370445068396 0.15667875582979363 -0.006126791957546026 -0.0416327465253783 0.07494320140098339 -0.002169370804680782 -0.014959553492290105 0.04662892639897064 -0.004236378063000044 -0.009861014990237636 0.15667875582979363 -0.006126791957546026 -0.0416327465253783 0.1325890490271516 0.00939554258432968 -0.06744559381346105 0.11295580848587417 0.008504256032786676 -0.09114514705939535 0.013746693388730781 -0.0036373677253554782 -0.0644216869142838 0.007931001819428865 -0.0052570528922658965 -0.02873618319034762 0.05501047442546652 0.004442868040550951 0.024407277847378638 0.023108413522139888 -0.0025482662381847198 -0.002227200817868376 0.09073806913388768 0.013937227194244083 -0.105669265358731 0.05203308118983571 -0.002322716046880689 -0.03236079687287284 0.14770301211390746 -0.008706144904342128 -0.03854710215300804 0.0596057654737126 -0.00350578783593857 -0.059233091190105315 0.026926861959827963 -0.00751514324532347 -0.06145015930114295 0.14770301211390746 -0.008706144904342128 -0.03854710215300804 0.05304257072206998 -0.007227181553398954 -0.035189561338691014 0.02185989833743266 -0.00908851007177982 -0.02959505282071331 0.14770301211390746 -0.008706144904342128 -0.03854710215300804 0.07891604005402336 0.001234183916106483 0.004662239850276938 0.06190163191631828 0.0011723591993072278 0.01716101481743866 0.14770301211390746 -0.008706144904342128 -0.03854710215300804 0.06596745768509722 -0.004748723751476882 -0.01187390911991984 0.037653182683084485 -0.006815731009796145 -0.006775370617867371 0.14770301211390746 -0.008706144904342128 -0.03854710215300804 0.12361330531126544 0.006816189637533578 -0.06435994944109077 0.10398006476998801 0.0059249030859905745 -0.08805950268702509 0.004770949672844624 -0.006216720672151579 -0.06133604254191353 -0.0010447418964572922 -0.007836405839061998 -0.025650538817977356 0.04603473070958036 0.0018635150937548494 0.027492922219748903 0.014132669806253731 -0.0051276191849808205 0.0008584435545018892 0.08176232541800152 0.011357874247447981 -0.10258362098636073 0.05680201619247383 -0.0019432714161044381 -0.034342274724367426 0.15247194711654558 -0.008326700273565878 -0.04052858000450262 0.06437470047635072 -0.0031263432051623196 -0.0612145690415999 0.031695796962466084 -0.007135698614547219 -0.06343163715263753 0.15247194711654558 -0.008326700273565878 -0.04052858000450262 0.0578115057247081 -0.006847736922622703 -0.0371710391901856 0.02662883334007078 -0.008709065441003569 -0.0315765306722079 0.15247194711654558 -0.008326700273565878 -0.04052858000450262 0.08368497505666148 0.0016136285468827337 0.0026807619987823522 0.0666705669189564 0.0015518038300834786 0.015179536965944075 0.15247194711654558 -0.008326700273565878 -0.04052858000450262 0.07073639268773535 -0.004369279120700632 -0.013855386971414425 0.042422117685722606 -0.006436286379019895 -0.008756848469361957 0.15247194711654558 -0.008326700273565878 -0.04052858000450262 0.12838224031390355 0.0071956342683098294 -0.06634142729258535 0.10874899977262614 0.006304347716766826 -0.09004098053851967 0.009539884675482745 -0.005837276041375328 -0.06331752039340811 0.0037241931061808287 -0.007456961208285747 -0.027632016669471942 0.05080366571221848 0.0022429597245311 0.025511444368254317 0.018901604808891852 -0.00474817455420457 -0.0011230342969926962 0.08653126042063965 0.011737318878224233 -0.10456509883785531 0.042206181034199874 -0.001895142475455116 -0.029109989003503724 0.13787611195827162 -0.008278571332916554 -0.03529629428363892 0.049778865318076765 -0.0030782142645129976 -0.055982283320736195 0.017099961804192126 -0.007087569673897897 -0.058199351431773835 0.13787611195827162 -0.008278571332916554 -0.03529629428363892 0.04321567056643414 -0.006799607981973381 -0.0319387534693219 0.012032998181796824 -0.008660936500354247 -0.026344244951344194 0.13787611195827162 -0.008278571332916554 -0.03529629428363892 0.06908913989838752 0.0016617574875320558 0.007913047719646054 0.05207473176068244 0.0015999327707328006 0.020411822686807777 0.13787611195827162 -0.008278571332916554 -0.03529629428363892 0.056140557529461385 -0.00432115018005131 -0.008623101250550724 0.027826282527448648 -0.006388157438370573 -0.003524562748498255 0.13787611195827162 -0.008278571332916554 -0.03529629428363892 0.1137864051556296 0.0072437632089591515 -0.06110914157172166 0.09415316461435218 0.006352476657416148 -0.08480869481765596 -0.005055950482791213 -0.005789147100726006 -0.05808523467254441 -0.01087164205209313 -0.007408832267636425 -0.02239973094860824 0.036207830553944526 0.002291088665180422 0.03074373008911802 0.004305769650617894 -0.004700045613555248 0.0041092514238710055 0.07193542526236568 0.011785447818873553 -0.09933281311699162 0.04443485193524614 0.0014190767152596755 -0.02762134529797445 0.14010478285931788 -0.004964352142201763 -0.033807650578109645 0.05200753621912303 0.00023600492620179424 -0.054493639615206924 0.019328632705238394 -0.0037733504831831055 -0.05671070772624456 0.14010478285931788 -0.004964352142201763 -0.033807650578109645 0.04544434146748041 -0.0034853887912585898 -0.030450109763792626 0.014261669082843091 -0.0053467173096394555 -0.02485560124581492 0.14010478285931788 -0.004964352142201763 -0.033807650578109645 0.07131781079943379 0.004975976678246848 0.00940169142517533 0.05430340266172871 0.004914151961447592 0.021900466392337052 0.14010478285931788 -0.004964352142201763 -0.033807650578109645 0.05836922843050765 -0.0010069309893365184 -0.007134457545021448 0.030054953428494915 -0.0030739382476557813 -0.0020359190429689797 0.14010478285931788 -0.004964352142201763 -0.033807650578109645 0.11601507605667587 0.010557982399673944 -0.05962049786619238 0.09638183551539845 0.00966669584813094 -0.08332005111212669 -0.002827279581744946 -0.002474927910011215 -0.05659659096701514 -0.008642971151046862 -0.0040946130769216335 -0.020911087243078965 0.03843650145499079 0.0056053078558952136 0.032232373794647294 0.006534440551664161 -0.0013858264228404562 0.005597895129400281 0.07416409616341196 0.015099667009588346 -0.09784416941146235 0.05945746280273841 -0.00130330563970987 -0.03612008768307451 0.15512739372681017 -0.007686734497171308 -0.042306392963209705 0.0670301470866153 -0.002486377428767751 -0.06299238200030699 0.034351243572730665 -0.00649573283815265 -0.06520945011134462 0.15512739372681017 -0.007686734497171308 -0.042306392963209705 0.06046695233497268 -0.006207771146228135 -0.03894885214889268 0.029284279950335362 -0.008069099664609001 -0.03335434363091498 0.15512739372681017 -0.007686734497171308 -0.042306392963209705 0.08634042166692606 0.002253594323277302 0.0009029490400752696 0.06932601352922098 0.0021917696064780467 0.013401724007236993 0.15512739372681017 -0.007686734497171308 -0.042306392963209705 0.07339183929799993 -0.003729313344306064 -0.015633199930121508 0.04507756429598719 -0.005796320602625327 -0.01053466142806904 0.15512739372681017 -0.007686734497171308 -0.042306392963209705 0.13103768692416815 0.007835600044704398 -0.06811924025129244 0.11140444638289071 0.006944313493161394 -0.09181879349722674 0.012195331285747325 -0.00519731026498076 -0.0650953333521152 0.006379639716445409 -0.006816995431891178 -0.029409829628179025 0.053459112322483064 0.0028829255009256683 0.023733631409547234 0.021557051419156432 -0.004108208777810002 -0.002900847255699779 0.08918670703090423 0.0123772846546188 -0.1063429117965624 0.06233610132292768 0.006663827773428079 -0.04055972346513345 0.15800603224699944 0.0002803989159666405 -0.04674602874526865 0.06990878560680457 0.005480755984370198 -0.06743201778236593 0.037229882092919934 0.0014714005749852984 -0.06964908589340356 0.15800603224699944 0.0002803989159666405 -0.04674602874526865 0.06334559085516195 0.0017593622669098141 -0.043388487930951625 0.03216291847052463 -0.00010196625147105166 -0.037793979412973924 0.15800603224699944 0.0002803989159666405 -0.04674602874526865 0.08921906018711533 0.01022072773641525 -0.003536686741983673 0.07220465204941025 0.010158903019615997 0.00896208822517805 0.15800603224699944 0.0002803989159666405 -0.04674602874526865 0.0762704778181892 0.004237820068831885 -0.02007283571218045 0.047956202816176456 0.0021708128105126226 -0.014974297210127982 0.15800603224699944 0.0002803989159666405 -0.04674602874526865 0.13391632544435741 0.015802733457842347 -0.07255887603335139 0.11428308490307998 0.014911446906299343 -0.09625842927928568 0.015073969805936595 0.002769823148157189 -0.06953496913417415 0.009258278236634679 0.0011501379812467703 -0.033849465410237964 0.056337750842672334 0.010850058914063617 0.019293995627488292 0.024435689939345702 0.0038589246353279475 -0.007340483037758722 0.0920653455510935 0.020344418067756748 -0.11078254757862134 0.062491898017990564 0.002426856258013015 -0.04066927095293306 0.15816182894206232 -0.003956572599448423 -0.046855576233068255 0.07006458230186745 0.0012437844689551336 -0.06754156527016553 0.037385678787982816 -0.002765570940429766 -0.06975863338120317 0.15816182894206232 -0.003956572599448423 -0.046855576233068255 0.06350138755022483 -0.00247760924850525 -0.04349803541875123 0.032318715165587514 -0.004338937766886116 -0.03790352690077353 0.15816182894206232 -0.003956572599448423 -0.046855576233068255 0.08937485688217821 0.005983756221000187 -0.003646234229783281 0.07236044874447313 0.005921931504200931 0.008852540737378442 0.15816182894206232 -0.003956572599448423 -0.046855576233068255 0.07642627451325208 8.485534168209581e-07 -0.02018238319998006 0.04811199951123934 -0.0020661587049024418 -0.01508384469792759 0.15816182894206232 -0.003956572599448423 -0.046855576233068255 0.1340721221394203 0.011565761942427283 -0.072668423521151 0.11443888159814286 0.010674475390884279 -0.0963679767670853 0.015229766500999477 -0.0014671483672578753 -0.06964451662197374 0.00941407493169756 -0.003086833534168294 -0.03395901289803757 0.056493547537735216 0.0066130873986485535 0.019184448139688684 0.024591486634408584 -0.00037804688008711684 -0.007450030525558329 0.09222114224615638 0.016107446552341684 -0.11089209506642095 0.060804225337885834 0.007343060856153425 -0.04020220722760567 0.1564741562619576 0.0009596319986919866 -0.04638851250774086 0.06837690962176272 0.006159989067095544 -0.06707450154483814 0.035698006107878086 0.0021506336577106445 -0.06929156965587577 0.1564741562619576 0.0009596319986919866 -0.04638851250774086 0.0618137148701201 0.0024385953496351602 -0.04303097169342384 0.030631042485482783 0.0005772668312542945 -0.03743646317544614 0.1564741562619576 0.0009596319986919866 -0.04638851250774086 0.08768718420207348 0.010899960819140598 -0.0031791705044558888 0.0706727760643684 0.010838136102341342 0.009319604462705834 0.1564741562619576 0.0009596319986919866 -0.04638851250774086 0.07473860183314734 0.004917053151557231 -0.019715319474652666 0.04642432683113461 0.0028500458932379687 -0.014616780972600198 0.1564741562619576 0.0009596319986919866 -0.04638851250774086 0.13238444945931555 0.016481966540567692 -0.0722013597958236 0.11275120891803814 0.015590679989024688 -0.09590091304175791 0.013542093820894746 0.003449056230882535 -0.06917745289664635 0.00772640225159283 0.0018293710639721164 -0.033491949172710186 0.054805874857630485 0.011529291996788964 0.019651511865016076 0.022903813954303853 0.004538157718053293 -0.006982966800230937 0.09053346956605166 0.021023651150482096 -0.11042503134109355 0.04895575555326427 0.004883742105105971 -0.043726986738763025 0.14462568647733604 -0.001499686752355468 -0.04991329201889822 0.05652843983714116 0.0037006703160480893 -0.0705992810559955 0.023849536323256523 -0.00030868509333681 -0.07281634916703314 0.14462568647733604 -0.001499686752355468 -0.04991329201889822 0.04996524508549854 -2.07234014122943e-05 -0.0465557512045812 0.01878257270086122 -0.00188205191979316 -0.0409612426866035 0.14462568647733604 -0.001499686752355468 -0.04991329201889822 0.07583871441745192 0.008440642068093142 -0.006703950015613247 0.05882430627974684 0.008378817351293887 0.005794824951548476 0.14462568647733604 -0.001499686752355468 -0.04991329201889822 0.06289013204852578 0.002457734400509777 -0.023240098985810025 0.034575857046513045 0.00039072714219051414 -0.018141560483757556 0.14462568647733604 -0.001499686752355468 -0.04991329201889822 0.120535979674694 0.014022647789520238 -0.07572613930698097 0.10090273913341657 0.013131361237977235 -0.09942569255291527 0.0016936240362731836 0.0009897374798350806 -0.07270223240780371 -0.004122067533028732 -0.0006299476870753381 -0.037016728683867545 0.04295740507300892 0.009069973245741509 0.016126732353858718 0.01105534416968229 0.002078838967005839 -0.010507746311388295 0.07868499978143009 0.01856433239943464 -0.11394981085225092 0.055327860536373466 0.004243195391314867 -0.04533298243083604 0.15099779146044523 -0.002140233466146572 -0.05151928771097124 0.06290054482025036 0.0030601236022569853 -0.07220527674806851 0.030221641306365718 -0.000949231807127914 -0.07442234485910615 0.15099779146044523 -0.002140233466146572 -0.05151928771097124 0.05633735006860773 -0.0006612701152033983 -0.048161746896654214 0.025154677683970415 -0.002522598633584264 -0.042567238378676514 0.15099779146044523 -0.002140233466146572 -0.05151928771097124 0.08221081940056112 0.007800095354302039 -0.008309945707686263 0.06519641126285604 0.007738270637502783 0.00418882925947546 0.15099779146044523 -0.002140233466146572 -0.05151928771097124 0.06926223703163498 0.0018171876867186729 -0.02484609467788304 0.04094796202962224 -0.00024981957160058986 -0.019747556175830572 0.15099779146044523 -0.002140233466146572 -0.05151928771097124 0.12690808465780318 0.013382101075729135 -0.07733213499905398 0.10727484411652577 0.012490814524186131 -0.10103168824498829 0.008065729019382378 0.0003491907660439766 -0.07430822809987672 0.0022500374500804624 -0.001270494400866442 -0.038622724375940554 0.04932951005611812 0.008429426531950404 0.014520736661785702 0.017427449152791485 0.001438292253214735 -0.012113742003461311 0.08505710476453929 0.017923785685643536 -0.11555580654432393 0.048208499547907145 0.0022005875025919277 -0.044150924508571644 0.1438784304719789 -0.004182841354869511 -0.05033722978870684 0.055781183831784036 0.0010175157135340464 -0.07102321882580412 0.023102280317899397 -0.002991839695850853 -0.07324028693684176 0.1438784304719789 -0.004182841354869511 -0.05033722978870684 0.04921798908014141 -0.0027038780039263374 -0.04697968897438982 0.018035316695504094 -0.004565206522307203 -0.04138518045641212 0.1438784304719789 -0.004182841354869511 -0.05033722978870684 0.07509145841209479 0.0057574874655791 -0.007127887785421866 0.05807705027438971 0.005695662748779844 0.005370887181739857 0.1438784304719789 -0.004182841354869511 -0.05033722978870684 0.062142876043168656 -0.00022542020200426623 -0.023664036755618643 0.03382860104115592 -0.002292427460323529 -0.018565498253566175 0.1438784304719789 -0.004182841354869511 -0.05033722978870684 0.11978872366933688 0.011339493187006194 -0.07615007707678959 0.10015548312805944 0.01044820663546319 -0.09984963032272388 0.0009463680309160574 -0.0016934171226789625 -0.07312617017761233 -0.0048693235383858585 -0.003313102289589381 -0.037440666453676164 0.042210149067651796 0.006386818643227466 0.0157027945840501 0.010308088164325165 -0.000604315635508204 -0.010931684081196914 0.07793774377607296 0.0158811777969206 -0.11437374862205954 0.054731713550128326 0.0015284440591880996 -0.04562445832393215 0.15040164447420007 -0.0048549847982733395 -0.05181076360406735 0.062304397834005217 0.00034537227013021836 -0.07249675264116462 0.029625494320120578 -0.003663983139254681 -0.07471382075220226 0.15040164447420007 -0.0048549847982733395 -0.05181076360406735 0.05574120308236259 -0.0033760214473301654 -0.048453222789750325 0.024558530697725275 -0.005237349965711031 -0.042858714271772624 0.15040164447420007 -0.0048549847982733395 -0.05181076360406735 0.08161467241431597 0.0050853440221752715 -0.008601421600782373 0.06460026427661089 0.005023519305376017 0.0038973533663793497 0.15040164447420007 -0.0048549847982733395 -0.05181076360406735 0.06866609004538984 -0.0008975636454080942 -0.02513757057097915 0.0403518150433771 -0.002964570903727357 -0.020039032068926682 0.15040164447420007 -0.0048549847982733395 -0.05181076360406735 0.12631193767155804 0.010667349743602367 -0.07762361089215009 0.10667869713028064 0.009776063192059363 -0.1013231641380844 0.007469582033137238 -0.0023655605660827905 -0.07459970399297283 0.0016538904638353225 -0.00398524573299321 -0.038914200269036664 0.04873336306987298 0.0057146751998236375 0.014229260768689592 0.016831302166546346 -0.001276459078912032 -0.012405217896557422 0.08446095777829414 0.01520903435351677 -0.11584728243742004 0.05936739351636164 0.005118958131413638 -0.04451713895283241 0.1550373244404334 -0.001264470726047801 -0.050703444232967604 0.06694007780023853 0.003935886342355756 -0.07138943327006489 0.03426117428635389 -7.346906702914314e-05 -0.07360650138110252 0.1550373244404334 -0.001264470726047801 -0.050703444232967604 0.060376883048595904 0.00021449262489537258 -0.04734590341865058 0.029194210663958588 -0.0016468358934854932 -0.04175139490067288 0.1550373244404334 -0.001264470726047801 -0.050703444232967604 0.08625035238054929 0.00867585809440081 -0.00749410222968263 0.06923594424284421 0.008614033377601554 0.005004672737479093 0.1550373244404334 -0.001264470726047801 -0.050703444232967604 0.07330177001162315 0.0026929504268174437 -0.024030251199879407 0.04498749500961041 0.000625943168498181 -0.01893171269782694 0.1550373244404334 -0.001264470726047801 -0.050703444232967604 0.13094761763779136 0.014257863815827904 -0.07651629152105034 0.11131437709651394 0.0133665772642849 -0.10021584476698464 0.01210526199937055 0.0012249535061427475 -0.0734923846218731 0.006289570430068635 -0.0003947316607676712 -0.03780688089793692 0.05336904303610629 0.009305189272049177 0.015336580139789335 0.021466982132779658 0.002314054993313506 -0.011297898525457678 0.08909663774452745 0.01879954842574231 -0.1147399630663203 0.05896179575426991 0.005982846492857751 -0.04372058186861263 0.15463172667834166 -0.00040058236460368754 -0.049906887148747824 0.0665344800381468 0.00479977470379987 -0.0705928761858451 0.03385557652426216 0.0007904192944149704 -0.07280994429688273 0.15463172667834166 -0.00040058236460368754 -0.049906887148747824 0.059971285286504174 0.001078380986339486 -0.0465493463344308 0.028788612901866857 -0.0007829475320413797 -0.0409548378164531 0.15463172667834166 -0.00040058236460368754 -0.049906887148747824 0.08584475461845756 0.009539746455844923 -0.006697545145462849 0.06883034648075248 0.009477921739045669 0.005801229821698874 0.15463172667834166 -0.00040058236460368754 -0.049906887148747824 0.07289617224953142 0.0035568387882615573 -0.023233694115659627 0.04458189724751868 0.0014898315299422945 -0.018135155613607158 0.15463172667834166 -0.00040058236460368754 -0.049906887148747824 0.13054201987569963 0.015121752177272019 -0.07571973443683055 0.11090877933442221 0.014230465625729015 -0.09941928768276487 0.01169966423727882 0.002088841867586861 -0.07269582753765332 0.005883972667976904 0.0004691567006764423 -0.03701032381371715 0.05296344527401456 0.01016907763349329 0.016133137224009116 0.021061384370687927 0.0031779433547576195 -0.010501341441237898 0.08869103998243572 0.01966343678718642 -0.11394340598210051 0.039168234066487694 -0.0018114052961732854 -0.028301043754118682 0.13483816499055945 -0.008194834153634725 -0.03448734903425388 0.046740918350364584 -0.0029944770852311665 -0.055173338071351156 0.014062014836479945 -0.007003832494616067 -0.05739040618238879 0.13483816499055945 -0.008194834153634725 -0.03448734903425388 0.04017772359872196 -0.006715870802691551 -0.03112980821993686 0.008995051214084643 -0.008577199321072416 -0.02553529970195915 0.13483816499055945 -0.008194834153634725 -0.03448734903425388 0.06605119293067534 0.0017454946668138864 0.008721992969031096 0.04903678479297026 0.0016836699500146312 0.02122076793619282 0.13483816499055945 -0.008194834153634725 -0.03448734903425388 0.053102610561749204 -0.004237413000769479 -0.007814156001165681 0.024788335559736467 -0.006304420259088742 -0.0027156174991132126 0.13483816499055945 -0.008194834153634725 -0.03448734903425388 0.11074845818791743 0.007327500388240982 -0.060300196322336616 0.09111521764663999 0.006436213836697978 -0.08399974956827091 -0.008093897450503394 -0.005705409921444176 -0.05727628942315937 -0.01390958901980531 -0.007325095088354595 -0.021590785699223198 0.033169883586232345 0.002374825844462253 0.03155267533850306 0.001267822682905713 -0.004616308434273417 0.004918196673256048 0.06889747829465351 0.011869184998155384 -0.09852386786760657 0.03736775030785431 -0.003774006043355553 -0.03246891792867539 0.13303768123192605 -0.010157434900816992 -0.03865522320881059 0.0449404345917312 -0.004957077832413434 -0.05934121224590787 0.012261531077846562 -0.008966433241798334 -0.0615582803569455 0.13303768123192605 -0.010157434900816992 -0.03865522320881059 0.038377239840088576 -0.008678471549873818 -0.03529768239449357 0.007194567455451259 -0.010539800068254683 -0.029703173876515863 0.13303768123192605 -0.010157434900816992 -0.03865522320881059 0.06425070917204195 -0.00021710608036838112 0.004554118794474385 0.047236301034336875 -0.0002789307971676363 0.017052893761636108 0.13303768123192605 -0.010157434900816992 -0.03865522320881059 0.05130212680311582 -0.006200013747951746 -0.011982030175722393 0.022987851801103083 -0.00826702100627101 -0.006883491673669924 0.13303768123192605 -0.010157434900816992 -0.03865522320881059 0.10894797442928403 0.005364899641058714 -0.06446807049689332 0.08931473388800662 0.00447361308951571 -0.08816762374282763 -0.009894381209136778 -0.0076680106686264436 -0.06144416359771608 -0.015710072778438694 -0.009287695835536862 -0.02575865987377991 0.03136939982759896 0.0004122250972799853 0.02738480116394635 -0.0005326610757276709 -0.006578909181455685 0.0007503224986993365 0.06709699453602012 0.009906584250973117 -0.10269174204216328 0.04047597829284672 -0.003915415747611678 -0.033041119998374745 0.13614590921691846 -0.010298844605073116 -0.03922742527850994 0.04804866257672361 -0.005098487536669559 -0.05991341431560722 0.015369759062838974 -0.009107842946054458 -0.06213048242664485 0.13614590921691846 -0.010298844605073116 -0.03922742527850994 0.04148546782508099 -0.008819881254129943 -0.03586988446419292 0.010302795440443671 -0.01068120977251081 -0.030275375946215214 0.13614590921691846 -0.010298844605073116 -0.03922742527850994 0.06735893715703437 -0.0003585157846245058 0.003981916724775034 0.05034452901932929 -0.00042034050142376097 0.016480691691936757 0.13614590921691846 -0.010298844605073116 -0.03922742527850994 0.05441035478810823 -0.0063414234522078715 -0.012554232245421744 0.026096079786095495 -0.008408430710527135 -0.007455693743369275 0.13614590921691846 -0.010298844605073116 -0.03922742527850994 0.11205620241427644 0.00522348993680259 -0.06504027256659267 0.09242296187299903 0.004332203385259586 -0.08873982581252698 -0.006786153224144366 -0.007809420372882568 -0.06201636566741543 -0.012601844793446282 -0.009429105539792986 -0.02633086194347926 0.03447762781259137 0.0002708153930238606 0.026812599094247 0.0025755669092647412 -0.006720318885711809 0.0001781204289999852 0.07020522252101254 0.009765174546716993 -0.10326394411186263 0.05102859855192781 -0.00421017204411653 -0.03629785667329257 0.14669852947599957 -0.010593600901577968 -0.04248416195342777 0.0586012828358047 -0.005393243833174411 -0.06317015099052505 0.025922379321920062 -0.00940259924255931 -0.06538721910156267 0.14669852947599957 -0.010593600901577968 -0.04248416195342777 0.052038088084162076 -0.009114637550634795 -0.039126621139110744 0.02085541569952476 -0.010975966069015661 -0.033532112621133044 0.14669852947599957 -0.010593600901577968 -0.04248416195342777 0.07791155741611545 -0.0006532720811293579 0.0007251800498572075 0.060897149278410376 -0.0007150967979286131 0.01322395501701893 0.14669852947599957 -0.010593600901577968 -0.04248416195342777 0.06496297504718933 -0.006636179748712724 -0.01581096892033957 0.036648700045176584 -0.008703187007031987 -0.010712430418287101 0.14669852947599957 -0.010593600901577968 -0.04248416195342777 0.12260882267335754 0.004928733640297738 -0.0682970092415105 0.1029755821320801 0.004037447088754734 -0.09199656248744481 0.0037664670349367227 -0.00810417666938742 -0.06527310234233326 -0.0020492245343651933 -0.009723861836297839 -0.029587598618397087 0.04503024807167246 -2.3940903480991482e-05 0.023555862419329172 0.01312818716834583 -0.007015075182216661 -0.003078616245917841 0.08075784278009362 0.00947041825021214 -0.10652068078678045 0.0394116849311201 -0.003325718047758961 -0.03758747834127023 0.13508161585519185 -0.0097091469052204 -0.043773783621405424 0.04698436921499699 -0.004508789836816842 -0.0644597726585027 0.014305465701112352 -0.00851814524620174 -0.06667684076954034 0.13508161585519185 -0.0097091469052204 -0.043773783621405424 0.040421174463354366 -0.008230183554277227 -0.0404162428070884 0.00923850207871705 -0.010091512072658092 -0.0348217342891107 0.13508161585519185 -0.0097091469052204 -0.043773783621405424 0.06629464379530775 0.00023118191522821093 -0.0005644416181204495 0.049280235657602665 0.00016935719842895575 0.011934333349041273 0.13508161585519185 -0.0097091469052204 -0.043773783621405424 0.05334606142638161 -0.005751725752355155 -0.017100590588317227 0.025031786424368874 -0.007818733010674418 -0.012002052086264758 0.13508161585519185 -0.0097091469052204 -0.043773783621405424 0.11099190905254983 0.005813187636655307 -0.06958663090948816 0.0913586685112724 0.004921901085112303 -0.09328618415542247 -0.007850446585870988 -0.007219722673029851 -0.06656272401031091 -0.013666138155172904 -0.00883940783994027 -0.030877220286374744 0.03341333445086475 0.0008605130928765773 0.022266240751351515 0.0015112735475381195 -0.006130621185859093 -0.004368237913895498 0.06914092915928591 0.01035487224656971 -0.10781030245475812 0.042340106643028924 -0.0001535302722468904 -0.04200771888702553 0.13801003756710067 -0.006536959129708329 -0.048194024167160725 0.049912790926905815 -0.0013366020613047717 -0.068880013204258 0.017233887413021176 -0.005345957470689671 -0.07109708131529563 0.13801003756710067 -0.006536959129708329 -0.048194024167160725 0.04334959617526319 -0.005057995778765156 -0.0448364833528437 0.012166923790625873 -0.0069193242971460215 -0.039241974834866 0.13801003756710067 -0.006536959129708329 -0.048194024167160725 0.06922306550721657 0.0034033696907402817 -0.0049846821638757505 0.05220865736951149 0.0033415449739410265 0.0075140928032859725 0.13801003756710067 -0.006536959129708329 -0.048194024167160725 0.056274483138290435 -0.002579537976843084 -0.021520831134072528 0.027960208136277698 -0.004646545235162347 -0.01642229263202006 0.13801003756710067 -0.006536959129708329 -0.048194024167160725 0.11392033076445865 0.008985375412167377 -0.07400687145524346 0.09428709022318123 0.008094088860624373 -0.09770642470117777 -0.004922024873962164 -0.004047534897517781 -0.07098296455606622 -0.01073771644326408 -0.0056672200644281995 -0.03529746083213005 0.036341756162773575 0.004032700868388648 0.017846000205596214 0.0044396952594469435 -0.002958433410347022 -0.008788478459650799 0.07206935087119473 0.01352706002208178 -0.11223054300051341 0.048544884341335214 -0.0007426883503576021 -0.04294994811983014 0.14421481526540697 -0.007126117207819041 -0.049136253399965336 0.056117568625212104 -0.0019257601394154834 -0.06982224243706261 0.023438665111327465 -0.005935115548800383 -0.07203931054810025 0.14421481526540697 -0.007126117207819041 -0.049136253399965336 0.04955437387356948 -0.005647153856875867 -0.045778712585648314 0.018371701488932163 -0.007508482375256733 -0.04018420406767061 0.14421481526540697 -0.007126117207819041 -0.049136253399965336 0.07542784320552286 0.00281421161262957 -0.005926911396680362 0.05841343506781778 0.0027523868958303143 0.006571863570481361 0.14421481526540697 -0.007126117207819041 -0.049136253399965336 0.062479260836596724 -0.003168696054953796 -0.02246306036687714 0.03416498583458399 -0.005235703313273059 -0.01736452186482467 0.14421481526540697 -0.007126117207819041 -0.049136253399965336 0.12012510846276495 0.008396217334056665 -0.07494910068804808 0.10049186792148751 0.0075049307825136614 -0.09864865393398238 0.0012827528243441258 -0.0046366929756284925 -0.07192519378887083 -0.00453293874495779 -0.006256378142538911 -0.03623969006493466 0.042546533861079865 0.003443542790277936 0.016903770972791603 0.010644472957753233 -0.0035475914884577336 -0.00973070769245541 0.07827412856950103 0.012937901943971068 -0.11317277223331804 0.04974634852707014 -0.0032263348493725354 -0.040512430030420196 0.14541627945114188 -0.009609763706833974 -0.04669873531055539 0.05731903281094703 -0.0044094066384304164 -0.06738472434765266 0.024640129297062392 -0.008418762047815316 -0.0696017924586903 0.14541627945114188 -0.009609763706833974 -0.04669873531055539 0.050755838059304406 -0.0081308003558908 -0.04334119449623837 0.01957316567466709 -0.009992128874271667 -0.03774668597826067 0.14541627945114188 -0.009609763706833974 -0.04669873531055539 0.07662930739125778 0.0003305651136146365 -0.003489393307270418 0.059614899253552706 0.0002687403968153813 0.009009381659891305 0.14541627945114188 -0.009609763706833974 -0.04669873531055539 0.06368072502233166 -0.00565234255396873 -0.020025542277467195 0.035366450020318914 -0.007719349812287992 -0.014927003775414727 0.14541627945114188 -0.009609763706833974 -0.04669873531055539 0.12132657264849986 0.005912570835041733 -0.07251158259863813 0.10169333210722245 0.005021284283498729 -0.09621113584457244 0.0024842170100790525 -0.007120339474643425 -0.06948767569946088 -0.0033314745592228634 -0.008740024641553844 -0.03380217197552471 0.04374799804681479 0.0009598962912630029 0.019341289062201547 0.01184593714348816 -0.006031237987472667 -0.007293189603045466 0.07947559275523595 0.010454255444956135 -0.11073525414390809 0.05445047293585883 -0.0009226526101199597 -0.04433209661541359 0.15012040385993058 -0.007306081467581398 -0.050518401895548785 0.06202315721973572 -0.0021057243991778407 -0.07120439093264606 0.02934425370585108 -0.00611507980856274 -0.07342145904368369 0.15012040385993058 -0.007306081467581398 -0.050518401895548785 0.055459962468093094 -0.005827118116638224 -0.04716086108123176 0.024277290083455777 -0.007688446635019091 -0.04156635256325406 0.15012040385993058 -0.007306081467581398 -0.050518401895548785 0.08133343180004647 0.002634247352867212 -0.007309059892263811 0.06431902366234139 0.002572422636067957 0.005189715074897912 0.15012040385993058 -0.007306081467581398 -0.050518401895548785 0.06838484943112035 -0.0033486603147161536 -0.02384520886246059 0.0400705744291076 -0.005415667573035417 -0.01874667036040812 0.15012040385993058 -0.007306081467581398 -0.050518401895548785 0.12603069705728856 0.008216253074294308 -0.07633124918363152 0.10639745651601112 0.0073249665227513045 -0.10003080242956583 0.00718834141886774 -0.004816657235390849 -0.07330734228445428 0.001372649849565824 -0.006436342402301268 -0.03762183856051811 0.04845212245560348 0.0032635785305155786 0.015521622477208154 0.016550061552276847 -0.0037275557482200914 -0.01111285618803886 0.08417971716402464 0.012757937684208711 -0.11455492072890147 0.05396858768609375 -0.002396103626745257 -0.04193635876634932 0.1496385186101655 -0.008779532484206695 -0.04812266404648451 0.06154127196997064 -0.003579175415803138 -0.06880865308358179 0.028862368456086 -0.007588530825188037 -0.07102572119461942 0.1496385186101655 -0.008779532484206695 -0.04812266404648451 0.054978077218328016 -0.0073005691332635216 -0.04476512323216749 0.0237954048336907 -0.009161897651644388 -0.03917061471418979 0.1496385186101655 -0.008779532484206695 -0.04812266404648451 0.0808515465502814 0.001160796336241915 -0.004913322043199539 0.06383713841257632 0.0010989716194426597 0.007585452923962184 0.1496385186101655 -0.008779532484206695 -0.04812266404648451 0.06790296418135526 -0.004822111331341451 -0.021449471013396317 0.03958868917934252 -0.006889118589660714 -0.016350932511343848 0.1496385186101655 -0.008779532484206695 -0.04812266404648451 0.12554881180752347 0.006742802057669011 -0.07393551133456724 0.10591557126624605 0.005851515506126007 -0.09763506458050156 0.006706456169102662 -0.006290108252016147 -0.07091160443539 0.000890764599800746 -0.007909793418926565 -0.03522610071145384 0.0479702372058384 0.0017901275138902813 0.017917360326272426 0.01606817630251177 -0.005201006764845389 -0.008717118338974587 0.08369783191425956 0.011284486667583414 -0.1121591828798372 0.055785147107825596 -0.0037714003840021854 -0.037726815855924745 0.15145507803189734 -0.010154829241463624 -0.04391312113605994 0.06335783139170248 -0.004954472173060067 -0.06459911017315723 0.030678927877817848 -0.008963827582444966 -0.06681617828419485 0.15145507803189734 -0.010154829241463624 -0.04391312113605994 0.05679463664005986 -0.00867586589052045 -0.04055558032174292 0.025611964255422545 -0.010537194408901315 -0.03496107180376522 0.15145507803189734 -0.010154829241463624 -0.04391312113605994 0.08266810597201324 -0.0002145004210150135 -0.0007037791327749662 0.06565369783430816 -0.0002763251378142687 0.011794995834386757 0.15145507803189734 -0.010154829241463624 -0.04391312113605994 0.06971952360308711 -0.006197408088598379 -0.017239928102971744 0.04140524860107437 -0.008264415346917641 -0.012141389600919275 0.15145507803189734 -0.010154829241463624 -0.04391312113605994 0.12736537122925531 0.005367505300412082 -0.06972596842414268 0.1077321306879779 0.004476218748869078 -0.09342552167007698 0.008523015590834508 -0.0076654050092730755 -0.06670206152496544 0.0027073240215325922 -0.009285090176183494 -0.03101655780102926 0.04978679662757025 0.0004148307566333529 0.022126903236697 0.017884735724243615 -0.006576303522102317 -0.004507575428550015 0.08551439133599141 0.009909189910326485 -0.10794963996941263 0.05833488721636426 -0.00020830150452256507 -0.04329135378306694 0.154004818140436 -0.006591730361984004 -0.04947765906320214 0.06590757150024115 -0.0013913732935804464 -0.07016364810029942 0.033228667986356514 -0.005400728702965346 -0.07238071621133704 0.154004818140436 -0.006591730361984004 -0.04947765906320214 0.05934437674859853 -0.00511276701104083 -0.046120118248885116 0.02816170436396121 -0.006974095529421696 -0.040525609730907415 0.154004818140436 -0.006591730361984004 -0.04947765906320214 0.08521784608055191 0.003348598458464607 -0.006268317059917164 0.06820343794284683 0.0032867737416653517 0.006230457907244559 0.154004818140436 -0.006591730361984004 -0.04947765906320214 0.07226926371162577 -0.002634309209118759 -0.02280446603011394 0.043954988709613035 -0.004701316467438022 -0.017705927528061473 0.154004818140436 -0.006591730361984004 -0.04947765906320214 0.129915111337794 0.008930604179891702 -0.07529050635128487 0.11028187079651657 0.008039317628348698 -0.09899005959721918 0.011072755699373174 -0.0041023061297934555 -0.07226659945210763 0.005257064130071258 -0.005721991296703874 -0.03658109572817146 0.05233653673610891 0.003977929636112973 0.0165623653095548 0.02043447583278228 -0.0030132046426226966 -0.010072113355692212 0.08806413144453007 0.013472288789806105 -0.11351417789655482 0.059164534437985555 0.0023032069793488263 -0.044689715869051794 0.1548344653620573 -0.004080221878112612 -0.05087602114918699 0.06673721872186245 0.001120135190290945 -0.07156201018628428 0.03405831520797781 -0.0028892202190939544 -0.0737790782973219 0.1548344653620573 -0.004080221878112612 -0.05087602114918699 0.06017402397021982 -0.0026012585271694387 -0.04751848033486997 0.028991351585582505 -0.0044625870455503045 -0.041923971816892266 0.1548344653620573 -0.004080221878112612 -0.05087602114918699 0.0860474933021732 0.005860106942335998 -0.007666679145902015 0.06903308516446813 0.005798282225536743 0.004832095821259708 0.1548344653620573 -0.004080221878112612 -0.05087602114918699 0.07309891093324707 -0.00012280072524736754 -0.024202828116098793 0.04478463593123433 -0.0021898079835666303 -0.019104289614046324 0.1548344653620573 -0.004080221878112612 -0.05087602114918699 0.13074475855941528 0.011442112663763094 -0.07668886843726973 0.11111151801813786 0.01055082611222009 -0.10038842168320403 0.011902402920994468 -0.0015907976459220638 -0.07366496153809249 0.006086711351692552 -0.0032104828128324825 -0.037979457814156306 0.053166183957730206 0.006489438119984365 0.01516400322356995 0.021264123054403575 -0.0005016961587513053 -0.011470475441677064 0.08889377866615136 0.0159837972736775 -0.11491253998253968 0.06115175489881284 -0.000358946280867226 -0.039808677360154414 0.15682168582288458 -0.006742375138328665 -0.04599498264028961 0.06872443918268972 -0.0015420180699251072 -0.06668097167738689 0.03604553566880509 -0.005551373479310007 -0.06889803978842451 0.15682168582288458 -0.006742375138328665 -0.04599498264028961 0.062161244431047105 -0.005263411787385491 -0.04263744182597259 0.03097857204640979 -0.007124740305766357 -0.03704293330799489 0.15682168582288458 -0.006742375138328665 -0.04599498264028961 0.08803471376300048 0.003197953682119946 -0.0027856406370046355 0.0710203056252954 0.0031361289653206907 0.009713134330157087 0.15682168582288458 -0.006742375138328665 -0.04599498264028961 0.07508613139407436 -0.00278495398546342 -0.019321789607201413 0.04677185639206161 -0.0048519612437826825 -0.014223251105148944 0.15682168582288458 -0.006742375138328665 -0.04599498264028961 0.13273197902024256 0.008779959403547042 -0.07180782992837234 0.11309873847896515 0.007888672852004038 -0.09550738317430665 0.013889623381821752 -0.004252950906138116 -0.0687839230291951 0.008073931812519836 -0.005872636073048535 -0.03309841930525893 0.05515340441855749 0.0038272848597683123 0.02004504173246733 0.02325134351523086 -0.0031638494189673576 -0.006589436932779684 0.09088099912697865 0.013321644013461444 -0.1100315014736423 0.057359093753356495 -0.001960667143441388 -0.04171386719466409 0.15302902467742824 -0.008344096000902827 -0.04790017247479929 0.06493177803723338 -0.003143738932499269 -0.06858616151189656 0.03225287452334875 -0.007153094341884169 -0.0708032296229342 0.15302902467742824 -0.008344096000902827 -0.04790017247479929 0.05836858328559076 -0.006865132649959653 -0.044542631660482265 0.027185910900953444 -0.008726461168340518 -0.038948123142504565 0.15302902467742824 -0.008344096000902827 -0.04790017247479929 0.08424205261754414 0.001596232819545784 -0.004690830471514314 0.06722764447983906 0.0015344081027465289 0.007807944495647409 0.15302902467742824 -0.008344096000902827 -0.04790017247479929 0.07129347024861801 -0.004386674848037581 -0.02122697944171109 0.04297919524660527 -0.006453682106356844 -0.016128440939658623 0.15302902467742824 -0.008344096000902827 -0.04790017247479929 0.1289393178747862 0.007178238540972879 -0.07371301976288203 0.1093060773335088 0.0062869519894298755 -0.09741257300881634 0.010096962236365407 -0.005854671768712278 -0.07068911286370477 0.0042812706670634915 -0.007474356935622697 -0.035003609139768604 0.051360743273101146 0.0022255639971941505 0.01813985189795765 0.019458682369774515 -0.0047655702815415195 -0.008494626767289362 0.08708833798152231 0.011719923150887282 -0.11193669130815198 0.05935390533734473 -0.002055354177448482 -0.03899246648152948 0.15502383626141647 -0.00843878303490992 -0.045178771761664675 0.06692658962122161 -0.0032384259665063633 -0.06586476079876195 0.03424768610733698 -0.007247781375891263 -0.06808182890979958 0.15502383626141647 -0.00843878303490992 -0.045178771761664675 0.06036339486957899 -0.006959819683966747 -0.04182123094734765 0.029180722484941676 -0.008821148202347612 -0.03622672242936995 0.15502383626141647 -0.00843878303490992 -0.045178771761664675 0.08623686420153237 0.00150154578553869 -0.001969429758379701 0.06922245606382729 0.0014397210687394349 0.010529345208782022 0.15502383626141647 -0.00843878303490992 -0.045178771761664675 0.07328828183260624 -0.004481361882044676 -0.01850557872857648 0.0449740068305935 -0.006548369140363938 -0.01340704022652401 0.15502383626141647 -0.00843878303490992 -0.045178771761664675 0.13093412945877445 0.007083551506965786 -0.0709916190497474 0.11130088891749704 0.006192264955422782 -0.09469117229568172 0.01209177382035364 -0.005949358802719372 -0.06796771215057017 0.006276082251051723 -0.007569043969629791 -0.032282208426634 0.05335555485708938 0.0021308769631870565 0.020861252611092264 0.021453493953762746 -0.004860257315548613 -0.0057732260541547495 0.08908314956551054 0.011625236116880188 -0.10921529059501736 -0.009199824260367145 -0.0035967113822400693 -0.021205887982444476 0.08647010666370461 -0.009980140239701507 -0.02739219326257967 -0.0016271399764902564 -0.004779783171297951 -0.04807818229967695 -0.034306043490374895 -0.008789138580682851 -0.05029525041071459 0.08647010666370461 -0.009980140239701507 -0.02739219326257967 -0.008190334728132876 -0.008501176888758333 -0.024034652448262653 -0.0393730071127702 -0.0103625054071392 -0.018440143930284945 0.08647010666370461 -0.009980140239701507 -0.02739219326257967 0.017683134603820504 -3.981141925289743e-05 0.015817148740705302 0.000668726466115422 -0.00010163613605215262 0.028315923707867025 0.08647010666370461 -0.009980140239701507 -0.02739219326257967 0.004734552234894367 -0.006022719086836263 -0.0007190002294914753 -0.023579722767118373 -0.008089726345155526 0.004379538272560993 0.08647010666370461 -0.009980140239701507 -0.02739219326257967 0.06238039986106258 0.005542194302174198 -0.053205040550662414 0.04274715931978516 0.0046509077506311945 -0.07690459379659671 -0.056461955777358235 -0.007490716007510959 -0.05018113365148516 -0.06227764734666015 -0.009110401174421377 -0.014495629927548992 -0.015198174740622496 0.000589519758395469 0.038647831110177264 -0.04710023564394913 -0.006401614520340201 0.012013352444930254 0.020529419967798668 0.0100838789120886 -0.09142871209593237 -0.0011908755956144554 -0.00503523101803821 -0.04808348158746162 0.0944790553284573 -0.01141865987549965 -0.054269786867596814 0.006381808688262433 -0.0062183028070960916 -0.0749557759046941 -0.026297094825622203 -0.01022765821648099 -0.07717284401573173 0.0944790553284573 -0.01141865987549965 -0.054269786867596814 -0.00018138606338018648 -0.009939696524556476 -0.05091224605327979 -0.031364058448017505 -0.011801025042937341 -0.04531773753530209 0.0944790553284573 -0.01141865987549965 -0.054269786867596814 0.025692083268573192 -0.0014783310550510382 -0.01106044486431184 0.00867767513086811 -0.0015401557718502934 0.001438330102849883 0.0944790553284573 -0.01141865987549965 -0.054269786867596814 0.012743500899647056 -0.007461238722634404 -0.027596593834508618 -0.015570774102365681 -0.009528245980953667 -0.02249805533245615 0.0944790553284573 -0.01141865987549965 -0.054269786867596814 0.07038934852581527 0.0041036746663760575 -0.08008263415567955 0.05075610798453785 0.0032123881148330537 -0.10378218740161385 -0.04845300711260554 -0.008929235643309101 -0.07705872725650231 -0.05426869868190746 -0.01054892081021952 -0.04137322353256613 -0.007189226075869807 -0.0008489998774026718 0.011770237505160125 -0.039091286979196435 -0.007840134156138342 -0.014864241160086888 0.02853836863255136 0.008645359276290461 -0.11830630570094951 -0.0026030987094427223 -0.00806409531955497 -0.05038729551735031 0.09306683221462902 -0.014447524177016408 -0.0565736007974855 0.004969585574434166 -0.00924716710861285 -0.07725958983458278 -0.02770931793945047 -0.01325652251799775 -0.07947665794562042 0.09306683221462902 -0.014447524177016408 -0.0565736007974855 -0.0015936091772084534 -0.012968560826073235 -0.05321605998316848 -0.032776281561845776 -0.0148298893444541 -0.04762155146519078 0.09306683221462902 -0.014447524177016408 -0.0565736007974855 0.024279860154744926 -0.004507195356567798 -0.013364258794200529 0.007265452017039845 -0.004569020073367053 -0.0008654838270388057 0.09306683221462902 -0.014447524177016408 -0.0565736007974855 0.01133127778581879 -0.010490103024151164 -0.029900407764397306 -0.016982997216193948 -0.012557110282470425 -0.024801869262344838 0.09306683221462902 -0.014447524177016408 -0.0565736007974855 0.068977125411987 0.001074810364859298 -0.08238644808556825 0.04934388487070958 0.0001835238133162942 -0.10608600133150255 -0.04986523022643381 -0.01195809994482586 -0.079362541186391 -0.05568092179573573 -0.013577785111736278 -0.043677037462454826 -0.008601449189698074 -0.0038778641789194313 0.009466423575271436 -0.040503510093024706 -0.0108689984576551 -0.017168055089975577 0.027126145518723093 0.005616494974773701 -0.1206101196308382 -0.006311540953734941 -0.00838777632575943 -0.04887218321974013 0.08935838997033681 -0.014771205183220868 -0.055058488499875324 0.0012611433301419478 -0.00957084811481731 -0.07574447753697261 -0.03141776018374269 -0.01358020352420221 -0.07796154564801024 0.08935838997033681 -0.014771205183220868 -0.055058488499875324 -0.0053020514215006715 -0.013292241832277694 -0.0517009476855583 -0.03648472380613799 -0.01515357035065856 -0.0461064391675806 0.08935838997033681 -0.014771205183220868 -0.055058488499875324 0.020571417910452708 -0.004830876362772258 -0.01184914649659035 0.003557009772747626 -0.004892701079571513 0.0006496284705713729 0.08935838997033681 -0.014771205183220868 -0.055058488499875324 0.0076228355415265715 -0.010813784030355624 -0.028385295466787128 -0.02069143946048617 -0.012880791288674885 -0.02328675696473466 0.08935838997033681 -0.014771205183220868 -0.055058488499875324 0.06526868316769478 0.0007511293586548382 -0.08087133578795806 0.04563544262641736 -0.00014015719288816564 -0.10457088903389236 -0.05357367247072603 -0.01228178095103032 -0.07784742888878082 -0.059389364040027946 -0.013901466117940738 -0.04216192516484464 -0.012309891433990292 -0.004201545185123891 0.010981535872881615 -0.04421195233731692 -0.01119267946385956 -0.0156529427923654 0.023417703274430872 0.005292813968569241 -0.11909500733322802 -0.005123713251334929 -0.005967824860432245 -0.04581499155900453 0.09054621767273682 -0.012351253717893683 -0.052001296839139725 0.00244897103254196 -0.007150896649490126 -0.072687285876237 -0.030229932481342675 -0.011160252058875025 -0.07490435398727463 0.09054621767273682 -0.012351253717893683 -0.052001296839139725 -0.004114223719100659 -0.01087229036695051 -0.0486437560248227 -0.03529689610373798 -0.012733618885331376 -0.043049247506845 0.09054621767273682 -0.012351253717893683 -0.052001296839139725 0.021759245612852716 -0.0024109248974450727 -0.008791954835854751 0.004744837475147638 -0.002472749614244328 0.003706820131306972 0.09054621767273682 -0.012351253717893683 -0.052001296839139725 0.008810663243926584 -0.008393832565028438 -0.02532810380605153 -0.019503611758086153 -0.010460839823347702 -0.02022956530399906 0.09054621767273682 -0.012351253717893683 -0.052001296839139725 0.0664565108700948 0.003171080823982023 -0.07781414412722246 0.046823270328817376 0.002279794272439019 -0.10151369737315677 -0.052385844768326015 -0.009861829485703135 -0.07479023722804522 -0.05820153633762793 -0.011481514652613553 -0.03910473350410905 -0.01112206373159028 -0.0017815937197967063 0.014038727533617214 -0.04302412463491691 -0.008772727998532376 -0.0125957511316298 0.024605530976830887 0.007712765433896426 -0.11603781567249241 -0.004971237548160679 0.005094520102856623 -0.05122084805191201 0.09069869337591108 -0.0012889087546048153 -0.057407153332047205 0.0026014467357162096 0.003911448313798742 -0.07809314236914448 -0.030077456778168428 -9.790709558615742e-05 -0.08031021048018211 0.09069869337591108 -0.0012889087546048153 -0.057407153332047205 -0.0039617480159264105 0.0001900545963383583 -0.05404961251773018 -0.03514442040056373 -0.0016712739220425075 -0.04845510399975248 0.09069869337591108 -0.0012889087546048153 -0.057407153332047205 0.021911721316026967 0.008651420065843796 -0.01419781132876223 0.004897313178321888 0.00858959534904454 -0.0016990363616005075 0.09069869337591108 -0.0012889087546048153 -0.057407153332047205 0.008963138947100834 0.0026685123982604295 -0.030733960298959008 -0.019351136054911906 0.0006015051399411667 -0.02563542179690654 0.09069869337591108 -0.0012889087546048153 -0.057407153332047205 0.06660898657326905 0.014233425787270892 -0.08322000062012994 0.04697574603199162 0.013342139235727888 -0.10691955386606425 -0.05223336906515177 0.0012005154775857332 -0.0801960937209527 -0.058049060634453684 -0.0004191696893246855 -0.04451058999701653 -0.01096958802841603 0.00928075124349216 0.008632871040709734 -0.04287164893174266 0.0022896169647564917 -0.01800160762453728 0.024758006680005135 0.018775110397185293 -0.12144367216539989 -0.002141063012737939 0.0023798133275406454 -0.04867229557844307 0.09352886791133382 -0.004003615529920793 -0.054858600858578264 0.005431621271138949 0.001196741538482764 -0.07554458989567554 -0.027247282242745686 -0.0028126138709021354 -0.07776165800671317 0.09352886791133382 -0.004003615529920793 -0.054858600858578264 -0.0011315734805036701 -0.0025246521789776197 -0.05150106004426124 -0.03231424586514099 -0.0043859806973584855 -0.04590655152628354 0.09352886791133382 -0.004003615529920793 -0.054858600858578264 0.02474189585144971 0.005936713290527817 -0.01164925885529329 0.0077274877137446275 0.005874888573728562 0.0008495161118684327 0.09352886791133382 -0.004003615529920793 -0.054858600858578264 0.011793313482523573 -4.619437705554851e-05 -0.028185407825490068 -0.016520961519489164 -0.0021132016353748112 -0.0230868693234376 0.09352886791133382 -0.004003615529920793 -0.054858600858578264 0.06943916110869179 0.011518719011954913 -0.080671448146661 0.04980592056741436 0.01062743246041191 -0.10437100139259531 -0.04940319452972903 -0.0015141912977302448 -0.07764754124748376 -0.055218886099030945 -0.0031338764646406635 -0.04196203752354759 -0.00813941349299329 0.006566044468176184 0.011181423514178675 -0.04004147439631992 -0.0004250898105594863 -0.015453055151068339 0.027588181215427877 0.016060403621869314 -0.11889511969193095 -0.005865337423022735 0.0025489436746703293 -0.046043882482651316 0.08980459350104901 -0.0038344851827911094 -0.05223018776278651 0.0017073468608541538 0.001365871885612448 -0.0729161767998838 -0.03097155665303048 -0.0026434835237724515 -0.07513324491092142 0.08980459350104901 -0.0038344851827911094 -0.05223018776278651 -0.0048558478907884655 -0.0023555218318479358 -0.04887264694846949 -0.036038520275425784 -0.004216850350228802 -0.04327813843049179 0.08980459350104901 -0.0038344851827911094 -0.05223018776278651 0.02101762144116491 0.006105843637657501 -0.009020845759501538 0.004003213303459832 0.0060440189208582455 0.0034779292076601853 0.08980459350104901 -0.0038344851827911094 -0.05223018776278651 0.008069039072238778 0.0001229359700741354 -0.025556994729698315 -0.02024523592977396 -0.0019440712882451273 -0.020458456227645846 0.08980459350104901 -0.0038344851827911094 -0.05223018776278651 0.06571488669840699 0.011687849359084597 -0.07804303505086925 0.04608164615712957 0.010796562807541593 -0.10174258829680355 -0.05312746894001382 -0.0013450609506005609 -0.07501912815169201 -0.05894316050931574 -0.0029647461175109796 -0.03933362442775583 -0.011863687903278086 0.006735174815305868 0.013809836609970427 -0.043765748806604714 -0.0002559594634298024 -0.012824642055276586 0.02386390680514308 0.016229533968999 -0.1162667065961392 -0.008662136337072513 0.00529880815372852 -0.048611432644473 0.08700779458699924 -0.0010846207037329188 -0.054797737924608195 -0.0010894520531956244 0.004115736364670638 -0.07548372696170547 -0.03376835556708026 0.00010638095528573907 -0.0777007950727431 0.08700779458699924 -0.0010846207037329188 -0.054797737924608195 -0.007652646804838244 0.0003943426472102548 -0.05144019711029117 -0.03883531918947557 -0.001466985871170611 -0.04584568859231347 0.08700779458699924 -0.0010846207037329188 -0.054797737924608195 0.018220822527115134 0.008855708116715691 -0.01158839592132322 0.001206414389410054 0.008793883399916436 0.0009103790458385025 0.08700779458699924 -0.0010846207037329188 -0.054797737924608195 0.005272240158188999 0.002872800449132326 -0.028124544891519998 -0.02304203484382374 0.0008057931908130632 -0.02302600638946753 0.08700779458699924 -0.0010846207037329188 -0.054797737924608195 0.06291808778435722 0.014437713838142787 -0.08061058521269093 0.043284847243079794 0.013546427286599784 -0.10431013845862525 -0.0559242678540636 0.0014048035284576297 -0.07758667831351368 -0.06173995942336552 -0.000214881638452789 -0.04190117458957751 -0.014660486817327865 0.009485039294364058 0.011242286448148744 -0.04656254772065449 0.002493905015628388 -0.015392192217098269 0.0210671078910933 0.01897939844805719 -0.11883425675796089 -0.007892550378172006 0.004633825306137202 -0.05534118879741798 0.08777738054589974 -0.0017496035513242369 -0.061527494077553174 -0.0003198660942951171 0.0034507535170793203 -0.08221348311465046 -0.032998769608179754 -0.000558601892305579 -0.08443055122568809 0.08777738054589974 -0.0017496035513242369 -0.061527494077553174 -0.006883060845937736 -0.00027064020038106325 -0.05816995326323615 -0.038065733230575056 -0.002131968718761929 -0.05257544474525845 0.08777738054589974 -0.0017496035513242369 -0.061527494077553174 0.01899040848601564 0.008190725269124373 -0.0183181520742682 0.0019760003483105613 0.008128900552325118 -0.005819377107106477 0.08777738054589974 -0.0017496035513242369 -0.061527494077553174 0.006041826117089507 0.002207817601541008 -0.03485430104446498 -0.022272448884923232 0.0001408103432217452 -0.02975576254241251 0.08777738054589974 -0.0017496035513242369 -0.061527494077553174 0.06368767374325772 0.01377273099055147 -0.08734034136563591 0.0440544332019803 0.012881444439008466 -0.11103989461157021 -0.055154681895163093 0.0007398206808663117 -0.08431643446645867 -0.06097037346446501 -0.000879864486044107 -0.04863093074252249 -0.013890900858427358 0.00882005644677274 0.004512530295203765 -0.045792961761753986 0.0018289221680370701 -0.02212194837004325 0.02183669384999381 0.018314415600465872 -0.12556401291090585 -0.011620770870499824 0.004481813757823149 -0.05305119144548941 0.08404916005357192 -0.0019016150996382895 -0.0592374967256246 -0.004048086586622935 0.0032987419687652677 -0.07992348576272187 -0.036726990100507576 -0.0007106134406196316 -0.08214055387375951 0.08404916005357192 -0.0019016150996382895 -0.0592374967256246 -0.010611281338265555 -0.0004226517486951159 -0.05587995591130758 -0.04179395372290287 -0.0022839802670759817 -0.05028544739332988 0.08404916005357192 -0.0019016150996382895 -0.0592374967256246 0.015262187993687823 0.00803871372081032 -0.01602815472233963 -0.001752220144017257 0.007976889004011067 -0.0035293797551779055 0.08404916005357192 -0.0019016150996382895 -0.0592374967256246 0.0023136056247616884 0.0020558060532269553 -0.032564303692536406 -0.02600066937725105 -1.1201205092307466e-05 -0.027465765190483937 0.08404916005357192 -0.0019016150996382895 -0.0592374967256246 0.0599594532509299 0.013620719442237417 -0.08505034401370734 0.040326212709652476 0.012729432890694413 -0.10874989725964165 -0.058882902387490915 0.000587809132552259 -0.08202643711453009 -0.06469859395679282 -0.0010318760343581597 -0.04634093339059392 -0.017619121350755176 0.008668044898458687 0.0068025276471323365 -0.04952118225408181 0.0016769106197230175 -0.019831951018114677 0.01810847335766599 0.018162404052151818 -0.1232740155589773 -0.011271822253613834 0.005801416814338335 -0.04681140981125587 0.08439810867045791 -0.0005820120431231039 -0.05299771509139107 -0.003699137969736945 0.004618345025280453 -0.07368370412848835 -0.03637804148362158 0.0006089896158955541 -0.07590077223952599 0.08439810867045791 -0.0005820120431231039 -0.05299771509139107 -0.010262332721379564 0.0008969513078200698 -0.049640174277074046 -0.04144500510601688 -0.000964377210560796 -0.044045665759096346 0.08439810867045791 -0.0005820120431231039 -0.05299771509139107 0.015611136610573813 0.009358316777325506 -0.009788373088106095 -0.0014032715271312668 0.00929649206052625 0.002710401879055628 0.08439810867045791 -0.0005820120431231039 -0.05299771509139107 0.0026625542416476786 0.003375409109742141 -0.026324522058302872 -0.02565172076036506 0.0013084018514228782 -0.021225983556250404 0.08439810867045791 -0.0005820120431231039 -0.05299771509139107 0.06030840186781589 0.014940322498752602 -0.07881056237947381 0.04067516132653847 0.014049035947209599 -0.10251011562540811 -0.05853395377060492 0.0019074121890674447 -0.07578665548029656 -0.06434964533990684 0.000287727022157026 -0.04010115175636039 -0.017270172733869184 0.009987647954973873 0.01304230928136587 -0.04917223363719581 0.002996513676238203 -0.013592169383881143 0.018457421974551982 0.019482007108667005 -0.11703423392474377 -0.008903020726799164 0.0026495804006023385 -0.043829066450894905 0.08676691019727259 -0.0037338484568591 -0.0500153717310301 -0.001330336442922275 0.0014665086115444573 -0.07070136076812739 -0.03400923995680691 -0.0025428467978404422 -0.07291842887916501 0.08676691019727259 -0.0037338484568591 -0.0500153717310301 -0.007893531194564894 -0.0022548851059159265 -0.04665783091671308 -0.03907620357920222 -0.004116213624296792 -0.04106332239873538 0.08676691019727259 -0.0037338484568591 -0.0500153717310301 0.017979938137388483 0.00620648036358951 -0.006806029727745126 0.0009655299996834035 0.006144655646790256 0.005692745239416597 0.08676691019727259 -0.0037338484568591 -0.0500153717310301 0.005031355768462349 0.00022357269600614465 -0.023342178697941904 -0.02328291923355039 -0.001843434562313118 -0.018243640195889435 0.08676691019727259 -0.0037338484568591 -0.0500153717310301 0.06267720339463057 0.011788486085016606 -0.07582821901911284 0.04304396285335314 0.010897199533473602 -0.09952777226504714 -0.05616515224379025 -0.0012444242246685516 -0.0728043121199356 -0.06198084381309217 -0.0028641093915789703 -0.03711880839599942 -0.014901371207054516 0.006835811541237876 0.01602465264172684 -0.04680343211038114 -0.00015532273749779314 -0.010609826023520175 0.02082622350136665 0.01633017069493101 -0.1140518905643828 -0.02056753316408124 0.0027865239191418633 -0.03378871612775799 0.0751023977599905 -0.0035969049383195754 -0.039975021407893184 -0.012994848880204352 0.001603452130083982 -0.06066101044499046 -0.04567375239408899 -0.0024059032793009175 -0.06287807855602809 0.0751023977599905 -0.0035969049383195754 -0.039975021407893184 -0.01955804363184697 -0.0021179415873764018 -0.03661748059357616 -0.05074071601648429 -0.0039792701057572676 -0.031022972075598457 0.0751023977599905 -0.0035969049383195754 -0.039975021407893184 0.006315425700106406 0.0063434238821290356 0.0032343205953917903 -0.010698982437598674 0.00628159916532978 0.015733095562553513 0.0751023977599905 -0.0035969049383195754 -0.039975021407893184 -0.006633156668819728 0.0003605162145456694 -0.013301828374804987 -0.03494743167083247 -0.0017064910437735933 -0.008203289872752519 0.0751023977599905 -0.0035969049383195754 -0.039975021407893184 0.051012690957348485 0.01192542960355613 -0.06578786869597592 0.03137945041607106 0.011034143052013126 -0.08948742194191023 -0.06782966468107232 -0.0011074807061290269 -0.06276396179679868 -0.07364535625037424 -0.0027271658730394456 -0.027078458072862504 -0.026565883644336593 0.0069727550597774015 0.026065002964863755 -0.05846794454766322 -1.837921895826841e-05 -0.0005694757003832582 0.009161711064084574 0.016467114213470534 -0.10401154024124587 -0.024279146209440817 0.006160841512052756 -0.036331554459401616 0.07139078471463094 -0.00022258734540868234 -0.04251785973953681 -0.01670646192556393 0.004977769722994875 -0.0632038487766341 -0.04938536543944856 0.0009684143136099756 -0.06542091688767172 0.07139078471463094 -0.00022258734540868234 -0.04251785973953681 -0.023269656677206547 0.0012563760055344913 -0.03916031892521979 -0.05445232906184387 -0.0006049525128463745 -0.03356581040724209 0.07139078471463094 -0.00022258734540868234 -0.04251785973953681 0.00260381265474683 0.009717741475039928 0.0006914822637481624 -0.01441059548295825 0.009655916758240672 0.013190257230909885 0.07139078471463094 -0.00022258734540868234 -0.04251785973953681 -0.010344769714179304 0.0037348338074565625 -0.015844666706448615 -0.03865904471619204 0.0016678265491372997 -0.010746128204396146 0.07139078471463094 -0.00022258734540868234 -0.04251785973953681 0.04730107791198891 0.015299747196467024 -0.06833070702761955 0.027667837370711486 0.01440846064492402 -0.09203026027355385 -0.0715412777264319 0.002266836886781866 -0.06530680012844231 -0.07735696929573382 0.0006471517198714475 -0.029621296404506132 -0.03027749668969617 0.010347072652688295 0.023522164633220127 -0.062179557593022794 0.0033559383739526247 -0.003112314032026886 0.005450098018724998 0.019841431806381427 -0.1065543785728895 -0.03415277292071379 -0.008391745875699977 -0.04162646771037288 0.06151715800335796 -0.014775174733161416 -0.047812772990508075 -0.026580088636836897 -0.009574817664757857 -0.06849876202760535 -0.059258992150721536 -0.013584173074142758 -0.070715830138643 0.06151715800335796 -0.014775174733161416 -0.047812772990508075 -0.03314328338847952 -0.013296211382218242 -0.04445523217619105 -0.06432595577311684 -0.015157539900599107 -0.03886072365821335 0.06151715800335796 -0.014775174733161416 -0.047812772990508075 -0.007269814056526141 -0.0048348459127128054 -0.0046034309872231005 -0.024284222194231223 -0.00489667062951206 0.007895343979938622 0.06151715800335796 -0.014775174733161416 -0.047812772990508075 -0.020218396425452277 -0.010817753580296172 -0.021139579957419878 -0.048532671427465014 -0.012884760838615433 -0.01604104145536741 0.06151715800335796 -0.014775174733161416 -0.047812772990508075 0.03742745120071594 0.0007471598087142907 -0.07362562027859082 0.017794210659438515 -0.0001441267428287131 -0.09732517352452512 -0.08141490443770488 -0.012285750500970867 -0.07060171337941357 -0.08723059600700679 -0.013905435667881286 -0.0349162096554774 -0.04015112340096914 -0.004205514735064439 0.018227251382248864 -0.07205318430429578 -0.011196649013800108 -0.008407227282998149 -0.004423528692547973 0.005288844418628693 -0.11184929182386077 -0.03181417541143713 -0.01181751260379776 -0.03730590569964524 0.06385575551263462 -0.0182009414612592 -0.043492210979780434 -0.024241491127560237 -0.013000584392855641 -0.06417820001687771 -0.056920394641444876 -0.01700993980224054 -0.06639526812791535 0.06385575551263462 -0.0182009414612592 -0.043492210979780434 -0.030804685879202858 -0.016721978110316026 -0.04013467016546341 -0.06198735826384018 -0.01858330662869689 -0.03454016164748571 0.06385575551263462 -0.0182009414612592 -0.043492210979780434 -0.0049312165472494805 -0.008260612640810589 -0.0002828689764954595 -0.021945624684954562 -0.008322437357609843 0.012215905990666263 0.06385575551263462 -0.0182009414612592 -0.043492210979780434 -0.017879798916175617 -0.014243520308393955 -0.016819017946692237 -0.046194073918188354 -0.016310527566713216 -0.011720479444639768 0.06385575551263462 -0.0182009414612592 -0.043492210979780434 0.0397660487099926 -0.002678606919383493 -0.06930505826786318 0.020132808168715176 -0.0035698934709264968 -0.09300461151379748 -0.07907630692842821 -0.01571151722906865 -0.06628115136868593 -0.08489199849773013 -0.01733120239597907 -0.030595647644749754 -0.037812525891692476 -0.007631281463162222 0.022547813392976505 -0.0697145867950191 -0.014622415741897892 -0.004086665272270508 -0.002084931183271313 0.0018630776905309097 -0.10752872981313313 -0.025375859575183485 -0.010101673795168018 -0.04135781896114176 0.07029407134888827 -0.01648510265262946 -0.04754412424127696 -0.017803175291306594 -0.011284745584225899 -0.06823011327837424 -0.05048207880519123 -0.0152941009936108 -0.07044718138941186 0.07029407134888827 -0.01648510265262946 -0.04754412424127696 -0.024366370042949215 -0.015006139301686284 -0.044186583426959934 -0.055549042427586535 -0.01686746782006715 -0.038592074908982234 0.07029407134888827 -0.01648510265262946 -0.04754412424127696 0.0015070992890041622 -0.006544773832180847 -0.004334782237991983 -0.015507308848700918 -0.006606598548980102 0.00816399272916974 0.07029407134888827 -0.01648510265262946 -0.04754412424127696 -0.011441483079921972 -0.012527681499764211 -0.02087093120818876 -0.03975575808193471 -0.014594688758083476 -0.01577239270613629 0.07029407134888827 -0.01648510265262946 -0.04754412424127696 0.04620436454624624 -0.0009627681107537509 -0.07335697152935969 0.02657112400496882 -0.0018540546622967547 -0.097056524775294 -0.07263799109217457 -0.013995678420438909 -0.07033306463018245 -0.07845368266147648 -0.015615363587349327 -0.03464756090624628 -0.031374210055438834 -0.00591544265453248 0.018495900131479982 -0.06327627095876547 -0.01290657693326815 -0.008138578533767031 0.00435338465298233 0.0035789164991606517 -0.11158064307462964 -0.02819567690576601 -0.008208504032517125 -0.04446535778216925 0.06747425401830574 -0.014591932889978563 -0.050651663062304446 -0.020622992621889123 -0.009391575821575005 -0.07133765209940172 -0.053301896135773755 -0.013400931230959905 -0.07355472021043935 0.06747425401830574 -0.014591932889978563 -0.050651663062304446 -0.02718618737353174 -0.01311296953903539 -0.04729412224798742 -0.058368859758169064 -0.014974298057416256 -0.04169961373000972 0.06747425401830574 -0.014591932889978563 -0.050651663062304446 -0.0013127180415783632 -0.004651604069529953 -0.007442321059019472 -0.01832712617928344 -0.004713428786329208 0.005056453908142251 0.06747425401830574 -0.014591932889978563 -0.050651663062304446 -0.014261300410504498 -0.010634511737113318 -0.02397847002921625 -0.04257557541251723 -0.012701518995432582 -0.01887993152716378 0.06747425401830574 -0.014591932889978563 -0.050651663062304446 0.04338454721566372 0.000930401651897143 -0.07646451035038718 0.023751306674386293 3.911510035413922e-05 -0.10016406359632149 -0.0754578084227571 -0.012102508657788015 -0.07344060345120994 -0.08127349999205902 -0.013722193824698433 -0.03775509972727377 -0.03419402738602136 -0.004022272891881586 0.015388361310452493 -0.06609608828934799 -0.011013407170617256 -0.01124611735479452 0.0015335673223998043 0.005472086261811546 -0.11468818189565713 -0.0010627843332872517 -0.0012758564252499359 -0.04766636095350609 0.0946071465907845 -0.007659285282711374 -0.05385266623364129 0.006509899950589637 -0.002458928214307817 -0.07453865527073857 -0.026169003563295 -0.006468283623692716 -0.07675572338177619 0.0946071465907845 -0.007659285282711374 -0.05385266623364129 -5.32948010529828e-05 -0.006180321931768201 -0.050495125419324265 -0.031235967185690303 -0.008041650450149066 -0.044900616901346564 0.0946071465907845 -0.007659285282711374 -0.05385266623364129 0.025820174530900394 0.0022810435377372358 -0.010643324230356313 0.008805766393195316 0.002219218820937981 0.00185545073680541 0.0946071465907845 -0.007659285282711374 -0.05385266623364129 0.012871592161974262 -0.0037018641298461295 -0.02717947320055309 -0.015442682840038479 -0.005768871388165392 -0.022080934698500622 0.0946071465907845 -0.007659285282711374 -0.05385266623364129 0.07051743978814247 0.007863049259164331 -0.07966551352172402 0.050884199246865054 0.006971762707621328 -0.10336506676765833 -0.04832491585027834 -0.005169861050520826 -0.07664160662254678 -0.05414060741958025 -0.0067895462174312445 -0.04095610289861061 -0.007061134813542603 0.0029103747153856026 0.012187358139115652 -0.03896319571686923 -0.004080759563350068 -0.014447120526131361 0.028666459894878562 0.012404733869078734 -0.11788918506699397 -0.004415740799477731 -0.0019910818975124576 -0.04487956517298839 0.09125419012459401 -0.008374510754973896 -0.05106587045312359 0.0031569434843991577 -0.0031741536865703386 -0.07175185949022087 -0.02952196002948548 -0.007183509095955238 -0.0739689276012585 0.09125419012459401 -0.008374510754973896 -0.05106587045312359 -0.003406251267243462 -0.006895547404030722 -0.047708329638806564 -0.03458892365188078 -0.008756875922411589 -0.042113821120828863 0.09125419012459401 -0.008374510754973896 -0.05106587045312359 0.022467218064709915 0.0015658180654747143 -0.007856528449838612 0.005452809927004836 0.001503993348675459 0.004642246517323111 0.09125419012459401 -0.008374510754973896 -0.05106587045312359 0.009518635695783782 -0.004417089602108652 -0.02439267742003539 -0.018795639306228958 -0.006484096860427915 -0.01929413891798292 0.09125419012459401 -0.008374510754973896 -0.05106587045312359 0.06716448332195199 0.00714782378690181 -0.07687871774120633 0.047531242780674575 0.006256537235358807 -0.10057827098714063 -0.051677872316468816 -0.005885086522783347 -0.07385481084202908 -0.05749356388577073 -0.007504771689693766 -0.03816930711809291 -0.010414091279733083 0.0021951492431230807 0.014974153919633353 -0.04231615218305971 -0.004795985035612589 -0.01166032474561366 0.025313503428688083 0.011689508396816213 -0.11510238928647629 -0.01582523477947861 -0.008676700213686408 -0.0534330177054672 0.07984469614459314 -0.015060129071147847 -0.059619322985602394 -0.008252550495601722 -0.009859772002744288 -0.08030531202269967 -0.04093145400948636 -0.013869127412129189 -0.0825223801337373 0.07984469614459314 -0.015060129071147847 -0.059619322985602394 -0.014815745247244341 -0.013581165720204673 -0.05626178217128537 -0.04599841763188166 -0.015442494238585538 -0.05066727365330767 0.07984469614459314 -0.015060129071147847 -0.059619322985602394 0.011057724084709036 -0.005119800250699236 -0.01640998098231742 -0.005956684052996044 -0.005181624967498491 -0.0039112060151556965 0.07984469614459314 -0.015060129071147847 -0.059619322985602394 -0.0018908582842170982 -0.011102707918282603 -0.0329461299525142 -0.030205133286229837 -0.013169715176601864 -0.02784759145046173 0.07984469614459314 -0.015060129071147847 -0.059619322985602394 0.05575498934195111 0.0004622054707278597 -0.08543217027368513 0.03612174880067369 -0.00042908108081514407 -0.10913172351961944 -0.0630873662964697 -0.012570704838957298 -0.08240826337450788 -0.06890305786577161 -0.014190390005867717 -0.04672275965057171 -0.021823585259733963 -0.00449046907305087 0.006420701387154545 -0.053725646163060595 -0.011481603351786539 -0.020213777278092468 0.013904009448687204 0.005003890080642262 -0.12365584181895509 -0.012796457630678219 -0.010331311581350077 -0.05021146453824831 0.08287347329339353 -0.016714740438811514 -0.05639776981838351 -0.00522377334680133 -0.011514383370407957 -0.07708375885548079 -0.03790267686068596 -0.015523738779792857 -0.07930082696651841 0.08287347329339353 -0.016714740438811514 -0.05639776981838351 -0.01178696809844395 -0.015235777087868342 -0.053040229004066484 -0.04296964048308127 -0.01709710560624921 -0.047445720486088784 0.08287347329339353 -0.016714740438811514 -0.05639776981838351 0.014086501233509428 -0.006774411618362905 -0.013188427815098533 -0.0029279069041956516 -0.00683623633516216 -0.00068965284793681 0.08287347329339353 -0.016714740438811514 -0.05639776981838351 0.0011379188645832938 -0.01275731928594627 -0.02972457678529531 -0.027176356137429445 -0.014824326544265534 -0.024626038283242842 0.08287347329339353 -0.016714740438811514 -0.05639776981838351 0.05878376649075151 -0.0011924058969358092 -0.08221061710646624 0.03915052594947409 -0.002083692448478813 -0.10591017035240055 -0.0600585891476693 -0.014225316206620967 -0.079186710207289 -0.06587428071697123 -0.015845001373531384 -0.04350120648335283 -0.01879480811093357 -0.0061450804407145385 0.009642254554373432 -0.050696869014260196 -0.013136214719450208 -0.01699222411087358 0.016932786597487596 0.0033492787129785935 -0.1204342886517362 -0.008532840910102962 -0.009989650355046701 -0.05191830653917748 0.08713709001396878 -0.016373079212508142 -0.058104611819312674 -0.0009601566262260729 -0.011172722144104582 -0.07879060085640996 -0.03363906014011071 -0.015182077553489482 -0.08100766896744759 0.08713709001396878 -0.016373079212508142 -0.058104611819312674 -0.007523351377868692 -0.014894115861564966 -0.05474707100499565 -0.03870602376250601 -0.016755444379945833 -0.04915256248701795 0.08713709001396878 -0.016373079212508142 -0.058104611819312674 0.018350117954084685 -0.00643275039205953 -0.0148952698160277 0.0013357098163796054 -0.006494575108858785 -0.0023964948488659765 0.08713709001396878 -0.016373079212508142 -0.058104611819312674 0.005401535585158551 -0.012415658059642894 -0.03143141878622448 -0.022912739416854188 -0.014482665317962159 -0.02633288028417201 0.08713709001396878 -0.016373079212508142 -0.058104611819312674 0.06304738321132676 -0.0008507446706324338 -0.08391745910739541 0.04341414267004934 -0.0017420312221754376 -0.10761701235332971 -0.05579497242709405 -0.013883654980317591 -0.08089355220821817 -0.06161066399639596 -0.01550334014722801 -0.04520804848428199 -0.014531191390358314 -0.005803419214411163 0.007935412553444265 -0.046433252293684946 -0.012794553493146833 -0.018699066111802748 0.021196403318062853 0.003690939939281969 -0.12214113065266537 -0.011030277152901157 -0.009072733701989515 -0.055758815420427786 0.0846396537711706 -0.015456162559450953 -0.06194512070056298 -0.003457592869024268 -0.010255805491047395 -0.08263110973766026 -0.0361364963829089 -0.014265160900432295 -0.08484817784869789 0.0846396537711706 -0.015456162559450953 -0.06194512070056298 -0.010020787620666887 -0.01397719920850778 -0.05858757988624596 -0.041203460005304206 -0.015838527726888645 -0.05299307136826826 0.0846396537711706 -0.015456162559450953 -0.06194512070056298 0.01585268171128649 -0.005515833739002343 -0.018735778697278008 -0.0011617264264185898 -0.005577658455801598 -0.006237003730116285 0.0846396537711706 -0.015456162559450953 -0.06194512070056298 0.0029040993423603556 -0.01149874140658571 -0.035271927667474785 -0.02541017565965238 -0.01356574866490497 -0.030173389165422317 0.0846396537711706 -0.015456162559450953 -0.06194512070056298 0.06054994696852857 6.617198242475295e-05 -0.08775796798864571 0.04091670642725115 -0.0008251145691182508 -0.11145752123458003 -0.05829240866989224 -0.012966738327260405 -0.08473406108946847 -0.06410810023919417 -0.014586423494170823 -0.049048557365532305 -0.017028627633156507 -0.004886502561353976 0.004094903672193957 -0.048930688536483136 -0.011877636840089646 -0.022539574993053056 0.01869896707526466 0.004607856592339156 -0.12598163953391567 -0.027436388138755898 -0.01129150583416432 -0.033760104535412665 0.06823354278531585 -0.01767493469162576 -0.03994640981554786 -0.01986370385487901 -0.0124745776232222 -0.06063239885264514 -0.05254260736876365 -0.0164839330326071 -0.06284946696368277 0.06823354278531585 -0.01767493469162576 -0.03994640981554786 -0.02642689860652163 -0.016195971340682583 -0.03658886900123084 -0.057609570991158945 -0.01805729985906345 -0.030994360483253134 0.06823354278531585 -0.01767493469162576 -0.03994640981554786 -0.0005534292745682512 -0.007734605871177148 0.0032629321877371137 -0.01756783741227333 -0.007796430587976403 0.015761707154898837 0.06823354278531585 -0.01767493469162576 -0.03994640981554786 -0.013502011643494386 -0.013717513538760513 -0.013273216782459664 -0.04181628664550713 -0.015784520797079777 -0.008174678280407195 0.06823354278531585 -0.01767493469162576 -0.03994640981554786 0.044143835982673824 -0.002152600149750052 -0.06575925710363059 0.024510595441396405 -0.0030438867012930557 -0.0894588103495649 -0.07469851965574699 -0.01518551045943521 -0.06273535020445335 -0.0805142112250489 -0.01680519562634563 -0.02704984648051718 -0.03343473861901125 -0.007105274693528781 0.02609361455720908 -0.06533679952233788 -0.01409640897226445 -0.0005408641080379348 0.0022928560894099163 0.0023890844601643507 -0.10398292864890055 -0.024537947763117456 -0.009818647577136996 -0.03052287698678218 0.07113198316095429 -0.016202076434598436 -0.03670918226691738 -0.016965263479240565 -0.011001719366194877 -0.057395171304014656 -0.049644166993125204 -0.015011074775579777 -0.05961223941505229 0.07113198316095429 -0.016202076434598436 -0.03670918226691738 -0.023528458230883186 -0.014723113083655261 -0.033351641452600354 -0.054711130615520506 -0.016584441602036128 -0.02775713293462265 0.07113198316095429 -0.016202076434598436 -0.03670918226691738 0.0023450111010701914 -0.0062617476141498245 0.006500159736367597 -0.014669397036634889 -0.006323572330949079 0.01899893470352932 0.07113198316095429 -0.016202076434598436 -0.03670918226691738 -0.010603571267855943 -0.012244655281733189 -0.01003598923382918 -0.03891784626986868 -0.014311662540052453 -0.004937450731776712 0.07113198316095429 -0.016202076434598436 -0.03670918226691738 0.04704227635831227 -0.0006797418927227284 -0.06252202955500011 0.027409035817034848 -0.0015710284442657322 -0.08622158280093442 -0.07180007928010854 -0.013712652202407886 -0.05949812265582287 -0.07761577084941046 -0.015332337369318305 -0.023812618931886697 -0.030536298243372808 -0.005632416436501458 0.029330842105839562 -0.062438359146699436 -0.012623550715237127 0.002696363440592549 0.005191296465048359 0.0038619427171916743 -0.10074570110027006 -0.020911295660263417 -0.008231639466539912 -0.03329068860054209 0.07475863526380833 -0.01461506832400135 -0.03947699388067728 -0.013338611376386528 -0.009414711255597792 -0.06016298291777456 -0.046017514890271165 -0.013424066664982692 -0.062380051028812195 0.07475863526380833 -0.01461506832400135 -0.03947699388067728 -0.019901806128029147 -0.013136104973058177 -0.03611945306636026 -0.05108447851266647 -0.014997433491439043 -0.030524944548382556 0.07475863526380833 -0.01461506832400135 -0.03947699388067728 0.00597166320392423 -0.00467473950355274 0.0037323481226076913 -0.01104274493378085 -0.004736564220351995 0.016231123089769414 0.07475863526380833 -0.01461506832400135 -0.03947699388067728 -0.006976919165001904 -0.010657647171136105 -0.012803800847589086 -0.03529119416701464 -0.012724654429455369 -0.007705262345536618 0.07475863526380833 -0.01461506832400135 -0.03947699388067728 0.05066892846116631 0.000907266217874356 -0.06528984116876002 0.031035687919888887 1.597966633135224e-05 -0.08898939441469433 -0.0681734271772545 -0.012125644091810802 -0.062265934269582775 -0.07398911874655642 -0.01374532925872122 -0.026580430545646603 -0.02690964614051877 -0.004045408325904373 0.026563030492079656 -0.0588117070438454 -0.011036542604640043 -7.144817316735719e-05 0.008817948567902398 0.005448950827788759 -0.10351351271402998 -0.022113873213590204 -0.009807394221629247 -0.03787611344000918 0.07355605771048154 -0.016190823079090685 -0.044062418720144374 -0.014541188929713315 -0.010990466010687127 -0.06474840775724165 -0.047220092443597955 -0.014999821420072027 -0.06696547586827928 0.07355605771048154 -0.016190823079090685 -0.044062418720144374 -0.021104383681355934 -0.014711859728147512 -0.04070487790582735 -0.05228705606599325 -0.016573188246528377 -0.03511036938784965 0.07355605771048154 -0.016190823079090685 -0.044062418720144374 0.004769085650597443 -0.006250494258642075 -0.0008530767168593995 -0.012245322487107637 -0.00631231897544133 0.011645698250302323 0.07355605771048154 -0.016190823079090685 -0.044062418720144374 -0.008179496718328691 -0.012233401926225441 -0.017389225687056177 -0.036493771720341434 -0.014300409184544702 -0.012290687185003708 0.07355605771048154 -0.016190823079090685 -0.044062418720144374 0.04946635090783952 -0.0006684885372149792 -0.0698752660082271 0.0298331103665621 -0.001559775088757983 -0.09357481925416142 -0.0693760047305813 -0.013701398846900137 -0.06685135910904987 -0.0751916962998832 -0.015321084013810556 -0.031165855385113694 -0.028112223693845556 -0.0056211630809937085 0.021977605652612565 -0.06001428459717219 -0.012612297359729378 -0.004656873012634448 0.007615371014575611 0.0038731960726994235 -0.10809893755349706 -0.01814501304182754 -0.003914434395834363 -0.03169796429646496 0.07752491788224421 -0.010297863253295802 -0.037884269576600155 -0.01057232875795065 -0.005097506184892245 -0.05857025861369743 -0.04325123227183529 -0.009106861594277144 -0.060787326724735066 0.07752491788224421 -0.010297863253295802 -0.037884269576600155 -0.01713552350959327 -0.008818899902352628 -0.03452672876228313 -0.04831819589423059 -0.010680228420733493 -0.028932220244305428 0.07752491788224421 -0.010297863253295802 -0.037884269576600155 0.008737945822360108 -0.0003575344328471913 0.0053250724266848196 -0.008276462315344972 -0.0004193591496464465 0.017823847393846542 0.07752491788224421 -0.010297863253295802 -0.037884269576600155 -0.004210636546566027 -0.006340442100430557 -0.011211076543511958 -0.03252491154857877 -0.008407449358749819 -0.006112538041459489 0.07752491788224421 -0.010297863253295802 -0.037884269576600155 0.05343521107960218 0.005224471288579904 -0.06369711686468289 0.03380197053832476 0.004333184737036901 -0.08739667011061719 -0.06540714455881863 -0.007808439021105253 -0.060673209965505646 -0.07122283612812054 -0.009428124188015672 -0.024987706241569475 -0.024143363522082892 0.0002717967448011751 0.028155754796156784 -0.056045424425409524 -0.006719337533934494 0.001521276130909771 0.011584231186338275 0.009766155898494307 -0.10192078840995285 -0.017173392074625454 -0.005195766733121912 -0.055329403684741985 0.0784965388494463 -0.01157919559058335 -0.06151570896487718 -0.009600707790748566 -0.006378838522179794 -0.08220169800197447 -0.0422796113046332 -0.010388193931564694 -0.08441876611301209 0.0784965388494463 -0.01157919559058335 -0.06151570896487718 -0.016163902542391185 -0.010100232239640176 -0.05815816815056016 -0.047346574927028505 -0.011961560758021043 -0.05256365963258246 0.0784965388494463 -0.01157919559058335 -0.06151570896487718 0.009709566789562193 -0.0016388667701347404 -0.018306366961592206 -0.007304841348142887 -0.0017006914869339956 -0.005807591994430483 0.0784965388494463 -0.01157919559058335 -0.06151570896487718 -0.003239015579363942 -0.007621774437718106 -0.034842515931788984 -0.03155329058137668 -0.009688781696037369 -0.029743977429736515 0.0784965388494463 -0.01157919559058335 -0.06151570896487718 0.05440683204680427 0.003943138951292355 -0.08732855625295992 0.03477359150552685 0.0030518523997493515 -0.11102810949889422 -0.06443552359161654 -0.009089771358392802 -0.08430464935378268 -0.07025121516091845 -0.01070945652530322 -0.0486191456298465 -0.023171742554880807 -0.001009535592486374 0.004524315407879759 -0.055073803458207435 -0.008000669871222044 -0.022110163257367255 0.01255585215354036 0.008484823561206757 -0.1255522277982299 -0.017333535662967928 0.0006621362727038206 -0.05516613658489384 0.07833639526110382 -0.005721292584757618 -0.061352441865029035 -0.009760851379091039 -0.0005209355163540607 -0.08203843090212631 -0.042439754892975676 -0.0045302909257389605 -0.08425549901316395 0.07833639526110382 -0.005721292584757618 -0.061352441865029035 -0.01632404613073366 -0.004242329233814445 -0.05799490105071201 -0.04750671851537098 -0.0061036577521953106 -0.05240039253273431 0.07833639526110382 -0.005721292584757618 -0.061352441865029035 0.00954942320121972 0.0042190362356909926 -0.01814309986174406 -0.007464984936485361 0.004157211518891737 -0.005644324894582338 0.07833639526110382 -0.005721292584757618 -0.061352441865029035 -0.0033991591677064153 -0.0017638714318923732 -0.03467924883194084 -0.031713434169719154 -0.003830878690211636 -0.02958071032988837 0.07833639526110382 -0.005721292584757618 -0.061352441865029035 0.0542466884584618 0.009801041957118088 -0.08716528915311178 0.034613447917184376 0.008909755405575084 -0.11086484239904608 -0.06459566717995902 -0.0032318683525670694 -0.08414138225393453 -0.07041135874926094 -0.004851553519477489 -0.04845587852999836 -0.02333188614322328 0.0048483674133393585 0.004687582507727904 -0.05523394704654991 -0.002142766865396311 -0.02194689615751911 0.012395708565197887 0.01434272656703249 -0.12538896069838174 -0.03163757454114262 0.0004493178042038005 -0.04614154359092163 0.06403235638292913 -0.0059341110532576385 -0.05232784887105683 -0.024064890257265728 -0.0007337539848540807 -0.0730138379081541 -0.056743793771150366 -0.0047431093942389806 -0.07523090601919175 0.06403235638292913 -0.0059341110532576385 -0.05232784887105683 -0.03062808500890835 -0.004455147702314465 -0.048970308056739804 -0.06181075739354567 -0.006316476220695331 -0.043375799538762104 0.06403235638292913 -0.0059341110532576385 -0.05232784887105683 -0.0047546156769549715 0.0040062177671909725 -0.009118506867771853 -0.021769023814660053 0.003944393050391717 0.00338026809938987 0.06403235638292913 -0.0059341110532576385 -0.05232784887105683 -0.017703198045881108 -0.0019766899003923932 -0.02565465583796863 -0.046017473047893845 -0.004043697158711656 -0.02055611733591616 0.06403235638292913 -0.0059341110532576385 -0.05232784887105683 0.03994264958028711 0.009588223488618068 -0.07814069615913957 0.020309409039009685 0.008696936937075064 -0.10184024940507387 -0.0788997060581337 -0.0034446868210670895 -0.07511678925996232 -0.08471539762743563 -0.005064371987977509 -0.03943128553602615 -0.03763592502139797 0.0046355489448393385 0.013712175501700112 -0.0695379859247246 -0.002355585333896331 -0.012922303163546901 -0.001908330312976804 0.01412990809853247 -0.11636436770440953 -0.031134223368476256 -0.00434623235675226 -0.04555600398861942 0.0645357075555955 -0.010729661214213699 -0.051742309268754616 -0.02356153908459937 -0.005529304145810141 -0.0724282983058519 -0.056240442598484 -0.00953865955519504 -0.07464536641688953 0.0645357075555955 -0.010729661214213699 -0.051742309268754616 -0.030124733836241986 -0.009250697863270525 -0.04838476845443759 -0.06130740622087931 -0.011112026381651392 -0.04279025993645989 0.0645357075555955 -0.010729661214213699 -0.051742309268754616 -0.0042512645042886085 -0.000789332393765088 -0.008532967265469642 -0.021265672641993687 -0.0008511571105643432 0.003965807701692081 0.0645357075555955 -0.010729661214213699 -0.051742309268754616 -0.01719984687321474 -0.006772240061348454 -0.02506911623566642 -0.04551412187522748 -0.008839247319667717 -0.01997057773361395 0.0645357075555955 -0.010729661214213699 -0.051742309268754616 0.04044600075295347 0.004792673327662008 -0.07755515655683735 0.020812760211676048 0.003901386776119004 -0.10125470980277165 -0.07839635488546734 -0.00824023698202315 -0.07453124965766011 -0.08421204645476926 -0.009859922148933569 -0.03884574593372393 -0.03713257384873161 -0.00016000121611672163 0.014297715104002323 -0.06903463475205823 -0.007151135494852391 -0.01233676356124469 -0.001404979140310441 0.00933435793757641 -0.11577882810210731 -0.007260501179312255 -0.0017636703331446015 -0.04275497779569253 0.08840942974475949 -0.00814709919060604 -0.04894128307582773 0.0003121831045646336 -0.002946742122202483 -0.069627272112925 -0.03236672040932 -0.006956097531587382 -0.07184434022396263 0.08840942974475949 -0.00814709919060604 -0.04894128307582773 -0.006251011647077986 -0.0066681358396628665 -0.045583742261510705 -0.037433684031715306 -0.008529464358043732 -0.039989233743533005 0.08840942974475949 -0.00814709919060604 -0.04894128307582773 0.019622457684875392 0.0017932296298425704 -0.005731941072542754 0.002608049547170312 0.0017314049130433152 0.006766833894618969 0.08840942974475949 -0.00814709919060604 -0.04894128307582773 0.006673875315949257 -0.004189678037740795 -0.02226809004273953 -0.02164039968606348 -0.006256685296060058 -0.017169551540687063 0.08840942974475949 -0.00814709919060604 -0.04894128307582773 0.06431972294211746 0.007375235351269666 -0.07475413036391046 0.04468648240084005 0.006483948799726662 -0.09845368360984477 -0.05452263269630334 -0.005657674958415492 -0.07173022346473322 -0.06033832426560526 -0.00727736012532591 -0.03604471974079705 -0.013258851659567607 0.0024225608074909368 0.01709874129692921 -0.045160912562894236 -0.004568573471244734 -0.009535737368317802 0.02246874304885356 0.011916919961184068 -0.11297780190918041 -0.009867348581811939 -0.009269116022017038 -0.047035215789231706 0.0858025823422598 -0.015652544879478477 -0.0532215210693669 -0.00229466429793505 -0.010452187811074919 -0.07390751010646418 -0.034973567811819685 -0.014461543220459819 -0.07612457821750182 0.0858025823422598 -0.015652544879478477 -0.0532215210693669 -0.00885785904957767 -0.014173581528535303 -0.04986398025504988 -0.04004053143421499 -0.01603491004691617 -0.04426947173707218 0.0858025823422598 -0.015652544879478477 -0.0532215210693669 0.017015610282375707 -0.005712216059029867 -0.010012179066081928 1.2021446706284022e-06 -0.005774040775829122 0.0024865959010797953 0.0858025823422598 -0.015652544879478477 -0.0532215210693669 0.004067027913449574 -0.011695123726613233 -0.026548328036278705 -0.024247247088563163 -0.013762130984932494 -0.021449789534226237 0.0858025823422598 -0.015652544879478477 -0.0532215210693669 0.06171287553961779 -0.0001302103376027708 -0.07903436835744965 0.042079634998340366 -0.0010214968891457746 -0.10273392160338395 -0.057129480098803025 -0.013163120647287928 -0.0760104614582724 -0.06294517166810494 -0.014782805814198347 -0.040324957734336225 -0.01586569906206729 -0.0050828848813815 0.012818503303390037 -0.04776775996539392 -0.01207401916011717 -0.013815975361856976 0.019861895646353878 0.004411474272311632 -0.1172580399027196 -0.008060177391926663 -0.006608603396795659 -0.0440429658318427 0.08760975353214509 -0.012992032254257099 -0.0502292711119779 -0.0004874931080497743 -0.0077916751858535405 -0.07091526014907518 -0.03316639662193441 -0.011801030595238439 -0.07313232826011282 0.08760975353214509 -0.012992032254257099 -0.0502292711119779 -0.007050687859692394 -0.011513068903313925 -0.046871730297660875 -0.03823336024432972 -0.01337439742169479 -0.041277221779683175 0.08760975353214509 -0.012992032254257099 -0.0502292711119779 0.018822781472260984 -0.003051703433808487 -0.007019929108692924 0.001808373334555904 -0.0031135281506077424 0.005478845858468799 0.08760975353214509 -0.012992032254257099 -0.0502292711119779 0.0058741991033348494 -0.009034611101391853 -0.0235560780788897 -0.02244007589867789 -0.011101618359711116 -0.018457539576837233 0.08760975353214509 -0.012992032254257099 -0.0502292711119779 0.06352004672950307 0.0025303022876186085 -0.07604211840006064 0.043886806188225644 0.0016390157360756047 -0.09974167164599494 -0.05532230890891775 -0.01050260802206655 -0.07301821150088339 -0.06113800047821967 -0.012122293188976969 -0.03733270777694722 -0.014058527872182015 -0.002422372256160121 0.01581075326077904 -0.04596058877550864 -0.009413506534895791 -0.010823725404467972 0.02166906683623915 0.007071986897533011 -0.1142657899453306 -0.014684800452810249 0.00534411213049148 -0.05162629795641146 0.0809851304712615 -0.0010393167269699584 -0.057812603236546654 -0.00711211616893336 0.004161040341433599 -0.07849859227364393 -0.039791019682817994 0.00015168493204869953 -0.08071566038468156 0.0809851304712615 -0.0010393167269699584 -0.057812603236546654 -0.01367531092057598 0.00043964662397321524 -0.05445506242222963 -0.0448579833052133 -0.0014216818944076505 -0.04886055390425193 0.0809851304712615 -0.0010393167269699584 -0.057812603236546654 0.012198158411377398 0.008901012093478652 -0.01460326123326168 -0.004816249726327682 0.008839187376679398 -0.002104486266099957 0.0809851304712615 -0.0010393167269699584 -0.057812603236546654 -0.0007504239575487365 0.0029181044258952864 -0.031139410203458458 -0.029064698959561475 0.0008510971675760237 -0.02604087170140599 0.0809851304712615 -0.0010393167269699584 -0.057812603236546654 0.05689542366861948 0.014483017814905748 -0.08362545052462939 0.03726218312734206 0.013591731263362744 -0.1073250037705637 -0.06194693196980133 0.0014501075052205901 -0.08060154362545215 -0.06776262353910326 -0.00016957766168982855 -0.04491603990151598 -0.0206831509330656 0.009530343271127019 0.008227421136210285 -0.052585211836392226 0.0025392089923913486 -0.01840705752903673 0.015044443775355566 0.01902470242482015 -0.12184912206989934 -0.013422024755040866 0.00017794287085823023 -0.05712803471200563 0.08224790616903088 -0.006205485986603208 -0.06331433999214083 -0.005849340471163977 -0.001005128918199651 -0.0840003290292381 -0.038528243985048616 -0.00501448432758455 -0.08621739714027574 0.08224790616903088 -0.006205485986603208 -0.06331433999214083 -0.012412535222806597 -0.0047265226356600345 -0.0599567991778238 -0.04359520760744392 -0.0065878511540409 -0.0543622906598461 0.08224790616903088 -0.006205485986603208 -0.06331433999214083 0.013460934109146781 0.003734842833845402 -0.02010499798885585 -0.003553474028558299 0.0036730181170461468 -0.007606223021694128 0.08224790616903088 -0.006205485986603208 -0.06331433999214083 0.0005123517402206464 -0.002248064833737964 -0.03664114695905263 -0.027801923261792094 -0.004315072092057226 -0.03154260845700016 0.08224790616903088 -0.006205485986603208 -0.06331433999214083 0.05815819936638886 0.009316848555272497 -0.08912718728022356 0.038524958825111436 0.008425562003729493 -0.11282674052615788 -0.060684156272031956 -0.00371606175441266 -0.08610328038104631 -0.06649984784133386 -0.005335746921323078 -0.05041777665711014 -0.019420375235296217 0.004364174011493769 0.002725684380616114 -0.05132243613862285 -0.0026269602672419016 -0.0239087942846309 0.016307219473124947 0.0138585331651869 -0.12735085882549352 -0.0015068967015428542 -0.00529676041679942 -0.0643948779481531 0.09416303422252889 -0.011680189274260858 -0.0705811832282883 0.006065787582334035 -0.006479832205857301 -0.09126717226538558 -0.026613115931550604 -0.010489187615242201 -0.09348424037642321 0.09416303422252889 -0.011680189274260858 -0.0705811832282883 -0.0004974071693085852 -0.010201225923317684 -0.06722364241397127 -0.0316800795539459 -0.01206255444169855 -0.061629133895993574 0.09416303422252889 -0.011680189274260858 -0.0705811832282883 0.02537606216264479 -0.001739860453812248 -0.027371841225003322 0.008361654024939713 -0.0018016851706115031 -0.0148730662578416 0.09416303422252889 -0.011680189274260858 -0.0705811832282883 0.012427479793718658 -0.007722768121395614 -0.0439079901952001 -0.015886795208294082 -0.009789775379714876 -0.03880945169314763 0.09416303422252889 -0.011680189274260858 -0.0705811832282883 0.07007332741988687 0.0038421452676148478 -0.09639403051637103 0.05044008687860945 0.002950858716071844 -0.12009358376230533 -0.04876902821853394 -0.009190765042070309 -0.0933701236171938 -0.054584719787835856 -0.010810450208980728 -0.05768461989325761 -0.0075052471817982054 -0.0011105292761638815 -0.0045411588555313576 -0.03940730808512483 -0.008101663554899552 -0.03117563752077837 0.02822234752662296 0.00838382987752925 -0.13461770206164098 -0.00958114642140289 -0.005539605630216488 -0.05975650353938319 0.08608878450266885 -0.011923034487677927 -0.06594280881951839 -0.002008462137526002 -0.006722677419274369 -0.08662879785661567 -0.03468736565141064 -0.010732032828659269 -0.0888458659676533 0.08608878450266885 -0.011923034487677927 -0.06594280881951839 -0.008571656889168621 -0.010444071136734753 -0.06258526800520137 -0.03975432927380594 -0.01230539965511562 -0.056990759487223666 0.08608878450266885 -0.011923034487677927 -0.06594280881951839 0.017301812442784757 -0.001982705667229316 -0.022733466816233415 0.0002874043050796766 -0.0020445303840285712 -0.010234691849071692 0.08608878450266885 -0.011923034487677927 -0.06594280881951839 0.004353230073858622 -0.007965613334812681 -0.03926961578643019 -0.023961044928154117 -0.010032620593131945 -0.034171077284377724 0.08608878450266885 -0.011923034487677927 -0.06594280881951839 0.061999077700026835 0.0035993000541977797 -0.09175565610760113 0.04236583715874941 0.002708013502654776 -0.11545520935353543 -0.05684327793839398 -0.009433610255487378 -0.08873174920842389 -0.0626589695076959 -0.011053295422397797 -0.053046245484487706 -0.015579496901658243 -0.0013533744895809496 9.721555323854991e-05 -0.04748155780498487 -0.00834450876831662 -0.026537263112008463 0.020148097806762924 0.008140984664112182 -0.12997932765287107 -0.0072282642974116585 -0.0091153417578388 -0.05745953667364232 0.08844166662666009 -0.015498770615300238 -0.06364584195377751 0.00034441998646523014 -0.01029841354689668 -0.0843318309908748 -0.032334483527419404 -0.01430776895628158 -0.08654889910191244 0.08844166662666009 -0.015498770615300238 -0.06364584195377751 -0.00621877476517739 -0.014019807264357064 -0.060288301139460494 -0.03740144714981471 -0.01588113578273793 -0.054693792621482794 0.08844166662666009 -0.015498770615300238 -0.06364584195377751 0.019654694566775988 -0.005558441794851628 -0.020436499950492543 0.0026402864290709085 -0.005620266511650883 -0.00793772498333082 0.08844166662666009 -0.015498770615300238 -0.06364584195377751 0.006706112197849854 -0.011541349462434992 -0.03697264892068932 -0.021608162804162886 -0.013608356720754257 -0.03187411041863685 0.08844166662666009 -0.015498770615300238 -0.06364584195377751 0.06435195982401806 2.3563926575468144e-05 -0.08945868924186026 0.04471871928274065 -0.0008677226249675356 -0.11315824248779456 -0.054490395814402744 -0.01300934638310969 -0.08643478234268301 -0.06030608738370466 -0.014629031550020108 -0.05074927861874684 -0.01322661477766701 -0.004929110617203261 0.0023941824189794222 -0.045128675680993637 -0.01192024489593893 -0.02424029624626759 0.022500979930754155 0.004565248536489871 -0.12768236078713022 -0.00015459840657835406 -0.007729405511959623 -0.06301599489130547 0.09551533251749339 -0.014112834369421061 -0.06920230017144066 0.007418085877298535 -0.008912477301017505 -0.08988828920853795 -0.0252608176365861 -0.012921832710402405 -0.09210535731957557 0.09551533251749339 -0.014112834369421061 -0.06920230017144066 0.0008548911256559149 -0.012633871018477887 -0.06584475935712364 -0.030327781258981404 -0.014495199536858754 -0.06025025083914594 0.09551533251749339 -0.014112834369421061 -0.06920230017144066 0.026728360457609294 -0.004172505548972451 -0.025992958168155687 0.009713952319904212 -0.004234330265771706 -0.013494183200993964 0.09551533251749339 -0.014112834369421061 -0.06920230017144066 0.013779778088683158 -0.010155413216555817 -0.042529107138352465 -0.014534496913329581 -0.01222242047487508 -0.037430568636299996 0.09551533251749339 -0.014112834369421061 -0.06920230017144066 0.07142562571485137 0.0014095001724546445 -0.0950151474595234 0.05179238517357395 0.0005182136209116407 -0.1187147007054577 -0.04741672992356944 -0.011623410137230512 -0.09199124056034616 -0.05323242149287136 -0.013243095304140931 -0.05630573683640998 -0.0061529488868337055 -0.003543174371324085 -0.0031622757986837224 -0.038055009790160334 -0.010534308650059755 -0.029796754463930736 0.02957464582158746 0.005951184782369047 -0.13323881900479334 -0.013158395383754868 -0.005379025564184178 -0.05766145891798423 0.08251153554031689 -0.011762454421645616 -0.06384776419811942 -0.005585711099877979 -0.006562097353242059 -0.0845337532352167 -0.03826461461376261 -0.010571452762626958 -0.08675082134625434 0.08251153554031689 -0.011762454421645616 -0.06384776419811942 -0.012148905851520599 -0.010283491070702443 -0.0604902233838024 -0.04333157823615792 -0.012144819589083308 -0.0548957148658247 0.08251153554031689 -0.011762454421645616 -0.06384776419811942 0.013724563480432779 -0.0018221256011970058 -0.02063842219483445 -0.003289844657272301 -0.001883950317996261 -0.008139647227672728 0.08251153554031689 -0.011762454421645616 -0.06384776419811942 0.0007759811115066444 -0.0078050332687803715 -0.03717457116503123 -0.027538293890506094 -0.009872040527099633 -0.03207603266297876 0.08251153554031689 -0.011762454421645616 -0.06384776419811942 0.05842182873767486 0.00375988012023009 -0.08966061148620216 0.03878858819639744 0.002868593568687086 -0.11336016473213648 -0.06042052690074595 -0.009273030189455068 -0.08663670458702491 -0.06623621847004788 -0.010892715356365486 -0.05095120086308874 -0.01915674586401022 -0.0011927944235486394 0.002192260174637514 -0.051058806767336845 -0.008183928702284309 -0.0244422184906095 0.016570848844410947 0.008301564730144493 -0.12788428303147212 -0.009602453797087998 0.0002004586797452023 -0.05937430101253937 0.08606747712698375 -0.006182970177716236 -0.06556060629267456 -0.0020297695132111097 -0.000982613109312679 -0.08624659532977184 -0.034708673027095745 -0.004991968518697578 -0.08846366344080947 0.08606747712698375 -0.006182970177716236 -0.06556060629267456 -0.008592964264853729 -0.0047040068267730625 -0.06220306547835754 -0.03977563664949105 -0.006565335345153928 -0.05660855696037984 0.08606747712698375 -0.006182970177716236 -0.06556060629267456 0.017280505067099647 0.003757358642732374 -0.02235126428938959 0.00026609692939456864 0.003695533925933119 -0.009852489322227868 0.08606747712698375 -0.006182970177716236 -0.06556060629267456 0.004331922698173514 -0.0022255490248509918 -0.03888741325958637 -0.023982352303839223 -0.004292556283170254 -0.0337888747575339 0.08606747712698375 -0.006182970177716236 -0.06556060629267456 0.06197777032434173 0.00933936436415947 -0.0913734535807573 0.04234452978306431 0.008448077812616465 -0.11507300682669161 -0.056864585314079084 -0.003693545945525688 -0.08834954668158006 -0.062680276883381 -0.005313231112436106 -0.05266404295764389 -0.015600804277343349 0.004386689820380741 0.0004794180800823736 -0.04750286518066998 -0.0026044444583549296 -0.02615506058516464 0.020126790431077818 0.013881048974073872 -0.12959712512602725 0.006426357629183088 -0.004920031449484163 -0.0532212045129627 0.10209628855325484 -0.011303460306945602 -0.0594075097930979 0.013999041913059977 -0.006103103238542044 -0.08009349883019518 -0.01867986160082466 -0.010112458647926943 -0.08231056694123282 0.10209628855325484 -0.011303460306945602 -0.0594075097930979 0.0074358471614173575 -0.009824496956002429 -0.056049968978780874 -0.023746825223219963 -0.011685825474383293 -0.050455460460803174 0.10209628855325484 -0.011303460306945602 -0.0594075097930979 0.03330931649337074 -0.0013631314864969908 -0.016198167789812923 0.016294908355665653 -0.001424956203296246 -0.0036993928226512 0.10209628855325484 -0.011303460306945602 -0.0594075097930979 0.0203607341244446 -0.0073460391540803565 -0.0327343167600097 -0.007953540877568138 -0.00941304641239962 -0.02763577825795723 0.10209628855325484 -0.011303460306945602 -0.0594075097930979 0.07800658175061281 0.004218874234930105 -0.08522035708118064 0.05837334120933539 0.003327587683387101 -0.10891991032711494 -0.040835773887808 -0.008814036074755054 -0.08219645018200339 -0.046651465457109915 -0.010433721241665472 -0.04651094645806722 0.0004280071489277367 -0.0007338003088486244 0.006632514579659042 -0.03147405375439889 -0.007724934587584295 -0.02000196408558797 0.0361556018573489 0.008760558844844508 -0.1234440286264506 0.0040048012786815055 -0.008319963795040677 -0.05630404451994073 0.09967473220275326 -0.014703392652502116 -0.06249034980007592 0.011577485562558394 -0.009503035584098558 -0.08317633883717321 -0.021101417951326244 -0.013512390993483458 -0.08539340694821083 0.09967473220275326 -0.014703392652502116 -0.06249034980007592 0.005014290810915775 -0.013224429301558942 -0.0591328089857589 -0.026168381573721547 -0.015085757819939809 -0.0535383004677812 0.09967473220275326 -0.014703392652502116 -0.06249034980007592 0.030887760142869154 -0.004763063832053506 -0.01928100779679095 0.013873352005164073 -0.00482488854885276 -0.006782232829629226 0.09967473220275326 -0.014703392652502116 -0.06249034980007592 0.017939177773943018 -0.01074597149963687 -0.035817156766987726 -0.010375097228069721 -0.012812978757956135 -0.030718618264935257 0.09967473220275326 -0.014703392652502116 -0.06249034980007592 0.07558502540011124 0.0008189418893735905 -0.08830319708815866 0.05595178485883381 -7.234466216941328e-05 -0.11200275033409296 -0.043257330238309584 -0.012213968420311567 -0.08527929018898142 -0.0490730218076115 -0.013833653587221986 -0.04959378646504524 -0.001993549201573846 -0.004133732654405139 0.0035496745726810164 -0.03389561010490048 -0.011124866933140808 -0.023084804092565997 0.03373404550684732 0.005360626499287993 -0.1265268686334286 0.006521725367240811 -0.0017131808508536587 -0.05261908676889331 0.10219165629131256 -0.008096609708315097 -0.05880539204902851 0.0140944096511177 -0.0028962526399115398 -0.07949138108612579 -0.01858449386276694 -0.006905608049296439 -0.08170844919716341 0.10219165629131256 -0.008096609708315097 -0.05880539204902851 0.007531214899475079 -0.006617646357371923 -0.055447851234711486 -0.02365145748516224 -0.00847897487575279 -0.049853342716733785 0.10219165629131256 -0.008096609708315097 -0.05880539204902851 0.03340468423142846 0.0018437191121335132 -0.015596050045743534 0.01639027609372338 0.001781894395334258 -0.0030972750785818112 0.10219165629131256 -0.008096609708315097 -0.05880539204902851 0.020456101862502324 -0.004139188555449853 -0.03213219901594031 -0.007858173139510417 -0.006206195813769116 -0.027033660513887843 0.10219165629131256 -0.008096609708315097 -0.05880539204902851 0.07810194948867054 0.007425724833560609 -0.08461823933711124 0.058468708947393117 0.0065344382820176055 -0.10831779258304555 -0.040740406149750275 -0.005607185476124548 -0.081594332437934 -0.04655609771905219 -0.007226870643034967 -0.04590882871399783 0.0005233748869854591 0.0024730502897818796 0.007234632323728431 -0.03137868601634117 -0.00451808398895379 -0.019399846341518583 0.03625096959540663 0.011967409443475012 -0.1228419108823812 -0.02831541664609393 0.00642936177726916 -0.04188929735785327 0.06735451427797781 4.593291980772157e-05 -0.04807560263798846 -0.02074273236221704 0.005246289988211279 -0.06876159167508575 -0.05342163587610168 0.0012369345788263795 -0.07097865978612337 0.06735451427797781 4.593291980772157e-05 -0.04807560263798846 -0.027305927113859662 0.0015248962707508952 -0.04471806182367144 -0.05848859949849698 -0.00033643224762997057 -0.03912355330569374 0.06735451427797781 4.593291980772157e-05 -0.04807560263798846 -0.0014324577819062843 0.009986261740256332 -0.004866260634703488 -0.018446865919611366 0.009924437023457078 0.0076325143324582345 0.06735451427797781 4.593291980772157e-05 -0.04807560263798846 -0.014381040150832419 0.004003354072672966 -0.021402409604900266 -0.04269531515284516 0.0019363468143537036 -0.016303871102847797 0.06735451427797781 4.593291980772157e-05 -0.04807560263798846 0.043264807475335794 0.015568267461683428 -0.0738884499260712 0.023631566934058372 0.014676980910140424 -0.0975880031720055 -0.07557754816308501 0.00253535715199827 -0.07086454302689396 -0.08139323973238693 0.0009156719850878514 -0.03517903930295778 -0.03431376712634928 0.010615592917904699 0.017964421734768476 -0.0662158280296759 0.0036244586391690286 -0.008670056930478537 0.0014138275820718832 0.020109952071597832 -0.11211212147134116 0.0035506998473969886 0.004037984992111388 -0.05626966957602969 0.09922063077146874 -0.0023454438653500503 -0.062455974856164886 0.011123384131273877 0.002854913203053507 -0.08314196389326217 -0.021555519382610758 -0.0011544422063313924 -0.0853590320042998 0.09922063077146874 -0.0023454438653500503 -0.062455974856164886 0.004560189379631258 -0.0008664805144068767 -0.059098434041847864 -0.02662248300500606 -0.0027278090327877424 -0.05350392552387016 0.09922063077146874 -0.0023454438653500503 -0.062455974856164886 0.030433658711584634 0.007594884955098561 -0.019246632852879912 0.013419250573879556 0.007533060238299305 -0.006747857885718189 0.09922063077146874 -0.0023454438653500503 -0.062455974856164886 0.0174850763426585 0.0016119772875151945 -0.03578278182307669 -0.010829198659354238 -0.00045502997080406823 -0.03068424332102422 0.09922063077146874 -0.0023454438653500503 -0.062455974856164886 0.07513092396882672 0.013176890676525655 -0.08826882214424762 0.055497683427549294 0.012285604124982651 -0.11196837539018192 -0.0437114316695941 0.00014398036684049823 -0.08524491524507039 -0.04952712323889601 -0.0014757048000699205 -0.0495594115211342 -0.002447650632858363 0.008224216132746928 0.0035840495165920527 -0.03434971153618499 0.0012330818540112567 -0.02305042914865496 0.033279944075562805 0.01771857528644006 -0.1264924936895176 0.0061434601064728304 0.0015396003384278796 -0.053734372363769906 0.10181339103054458 -0.004843828519033559 -0.0599206776439051 0.013716144390349719 0.00035652854936999833 -0.08060666668100239 -0.018962759123534918 -0.003652826860014901 -0.08282373479204001 0.10181339103054458 -0.004843828519033559 -0.0599206776439051 0.0071529496387071 -0.0033648651680903852 -0.05656313682958808 -0.02402972274593022 -0.005226193686471251 -0.05096862831161038 0.10181339103054458 -0.004843828519033559 -0.0599206776439051 0.03302641897066048 0.005096500301415051 -0.016711335640620127 0.0160120108329554 0.0050346755846157965 -0.004212560673458404 0.10181339103054458 -0.004843828519033559 -0.0599206776439051 0.020077836601734345 -0.0008864073661683143 -0.033247484610816905 -0.008236438400278396 -0.002953414624487577 -0.028148946108764436 0.10181339103054458 -0.004843828519033559 -0.0599206776439051 0.07772368422790256 0.010678506022842147 -0.08573352493198784 0.05809044368662514 0.009787219471299144 -0.10943307817792214 -0.041118671410518254 -0.0023544042868430103 -0.0827096180328106 -0.04693436297982018 -0.003974089453753429 -0.04702411430887442 0.00014510962621747895 0.005725831479063418 0.006119346728851838 -0.03175695127710915 -0.001265302799672252 -0.020515131936395176 0.03587270433463864 0.01522019063275655 -0.1239571964772578 -0.004565348286795186 -0.009501957934906035 -0.05367086555526824 0.09110458263727657 -0.01588538679236747 -0.059857170835403435 0.0030073359970817027 -0.010685029723963915 -0.08054315987250071 -0.029671567516802933 -0.014694385133348815 -0.08276022798353835 0.09110458263727657 -0.01588538679236747 -0.059857170835403435 -0.003555858754560917 -0.0144064234414243 -0.05649963002108641 -0.03473853113919824 -0.016267751959805166 -0.05090512150310871 0.09110458263727657 -0.01588538679236747 -0.059857170835403435 0.022317610577392462 -0.005945057971918863 -0.01664782883211846 0.005303202439687381 -0.006006882688718118 -0.004149053864956738 0.09110458263727657 -0.01588538679236747 -0.059857170835403435 0.009369028208466326 -0.011927965639502228 -0.03318397780231524 -0.01894524679354641 -0.013994972897821492 -0.02808543930026277 0.09110458263727657 -0.01588538679236747 -0.059857170835403435 0.06701487583463454 -0.0003630522504917671 -0.08567001812348618 0.047381635293357115 -0.0012543388020347709 -0.10936957136942048 -0.051827479803786276 -0.013395962560176925 -0.08264611122430893 -0.05764317137308819 -0.015015647727087343 -0.04696060750037276 -0.010563698767050538 -0.005315726794270496 0.006182853537353504 -0.04246575967037717 -0.012306861073006166 -0.02045162512789351 0.02516389594137063 0.004178632359422636 -0.12389368966875614 0.0017190139058397217 -0.009008537367839188 -0.06000445990167534 0.09738894482991148 -0.015391966225300627 -0.06619076518181054 0.00929169818971661 -0.010191609156897069 -0.08687675421890781 -0.023387205324168027 -0.01420096456628197 -0.08909382232994545 0.09738894482991148 -0.015391966225300627 -0.06619076518181054 0.0027285034380739905 -0.013913002874357453 -0.06283322436749351 -0.02845416894656333 -0.01577433139273832 -0.057238715849515814 0.09738894482991148 -0.015391966225300627 -0.06619076518181054 0.028601972770027368 -0.005451637404852017 -0.022981423178525563 0.011587564632322288 -0.005513462121651272 -0.01048264821136384 0.09738894482991148 -0.015391966225300627 -0.06619076518181054 0.015653390401101235 -0.011434545072435381 -0.03951757214872234 -0.012660884600911505 -0.013501552330754646 -0.03441903364666987 0.09738894482991148 -0.015391966225300627 -0.06619076518181054 0.07329923802726945 0.00013036831657507915 -0.09200361246989328 0.053665997485992024 -0.0007609182349679246 -0.11570316571582759 -0.04554311761115137 -0.012902541993110079 -0.08897970557071602 -0.05135880918045328 -0.014522227160020497 -0.053294201846779854 -0.0042793365744156295 -0.00482230622720365 -0.00015074080905359832 -0.03618139747774226 -0.01181344050593932 -0.02678521947430061 0.031448258134005536 0.004672052926489482 -0.13022728401516323 -0.0017332806063384413 -0.0008789671956872956 -0.06410406498941154 0.09393665031773331 -0.0072623960531487345 -0.07029037026954674 0.005839403677538447 -0.002062038984745177 -0.09097635930664402 -0.02683949983634619 -0.006071394394130077 -0.09319342741768165 0.09393665031773331 -0.0072623960531487345 -0.07029037026954674 -0.0007237910741041723 -0.005783432702205561 -0.06693282945522971 -0.03190646345874149 -0.007644761220586427 -0.061338320937252014 0.09393665031773331 -0.0072623960531487345 -0.07029037026954674 0.025149678257849205 0.0026779327672998765 -0.027081028266261763 0.008135270120144126 0.002616108050500621 -0.01458225329910004 0.09393665031773331 -0.0072623960531487345 -0.07029037026954674 0.012201095888923071 -0.0033049749002834897 -0.04361717723645854 -0.016113179113089668 -0.005371982158602752 -0.03851863873440607 0.09393665031773331 -0.0072623960531487345 -0.07029037026954674 0.06984694351509128 0.008259938488726972 -0.09610321755762948 0.05021370297381386 0.007368651937183968 -0.11980277080356377 -0.04899541212332953 -0.004772971820958186 -0.09307931065845224 -0.054811103692631445 -0.006392656987868605 -0.05739380693451605 -0.007731631086593793 0.0033072639449482424 -0.004250345896789798 -0.03963369198992042 -0.003683870333787427 -0.03088482456203681 0.027995963621827373 0.012801623098641374 -0.13432688910289942 -0.0001482011111857093 0.003827974660751579 -0.06059607393377955 0.09552172981288604 -0.0025554541967098597 -0.06678237921391474 0.007424483172691179 0.0026449028716936974 -0.08746836825101202 -0.02525442034119346 -0.0013644525376912018 -0.08968543636204965 0.09552172981288604 -0.0025554541967098597 -0.06678237921391474 0.0008612884210485596 -0.0010764908457666861 -0.06342483839959773 -0.03032138396358876 -0.002937819364147552 -0.05783032988162002 0.09552172981288604 -0.0025554541967098597 -0.06678237921391474 0.026734757753001936 0.007384874623738751 -0.02357303721062977 0.009720349615296858 0.007323049906939496 -0.011074262243468046 0.09552172981288604 -0.0025554541967098597 -0.06678237921391474 0.013786175384075804 0.001401966956155385 -0.040109186180826546 -0.014528099617936935 -0.0006650403021638777 -0.03501064767877408 0.09552172981288604 -0.0025554541967098597 -0.06678237921391474 0.07143202301024401 0.012966880345165847 -0.09259522650199747 0.051798782468966596 0.012075593793622844 -0.11629477974793179 -0.047410332628176795 -6.602996451931121e-05 -0.08957131960282023 -0.05322602419747871 -0.00168571513142973 -0.053885815878884066 -0.006146551591441061 0.008014205801387116 -0.0007423548411578038 -0.03804861249476769 0.0010230715226514473 -0.027376833506404817 0.029581043116980104 0.01750856495508025 -0.13081889804726743 0.0024075219090068808 -0.0009303246382834002 -0.06615156552734854 0.09807745283307863 -0.0073137534957448385 -0.07233787080748373 0.00998020619288377 -0.0021133964273412813 -0.093023859844581 -0.02269869732100087 -0.006122751836726181 -0.09524092795561864 0.09807745283307863 -0.0073137534957448385 -0.07233787080748373 0.0034170114412411497 -0.005834790144801665 -0.06898032999316671 -0.02776566094339617 -0.007696118663182531 -0.06338582147518901 0.09807745283307863 -0.0073137534957448385 -0.07233787080748373 0.029290480773194526 0.0026265753247037716 -0.029128528804198757 0.012276072635489448 0.0025647506079045164 -0.016629753837037034 0.09807745283307863 -0.0073137534957448385 -0.07233787080748373 0.016341898404268394 -0.003356332342879594 -0.045664677774395535 -0.011972376597744345 -0.0054233396011988564 -0.040566139272343066 0.09807745283307863 -0.0073137534957448385 -0.07233787080748373 0.0739877460304366 0.008208581046130868 -0.09815071809556647 0.05435450548915918 0.007317294494587864 -0.12185027134150078 -0.04485460960798421 -0.00482432926355429 -0.09512681119638922 -0.050670301177286124 -0.006444014430464709 -0.05944130747245305 -0.0035908285712484707 0.003255906502352138 -0.006297846434726792 -0.0354928894745751 -0.003735227776383532 -0.032932325099973805 0.032136766137172694 0.01275026565604527 -0.13637438964083642 0.003898177017498351 0.0033952347887274926 -0.06214673017670244 0.0995681079415701 -0.002988194068733946 -0.06833303545683764 0.01147086130137524 0.002212162999669611 -0.08901902449393492 -0.021208042212509395 -0.0017971924097152881 -0.09123609260497255 0.0995681079415701 -0.002988194068733946 -0.06833303545683764 0.00490766654973262 -0.0015092307177907724 -0.06497549464252061 -0.026275005834904698 -0.003370559236171638 -0.059380986124542914 0.0995681079415701 -0.002988194068733946 -0.06833303545683764 0.030781135881685996 0.006952134751714665 -0.025123693453552663 0.013766727743980918 0.006890310034915409 -0.01262491848639094 0.0995681079415701 -0.002988194068733946 -0.06833303545683764 0.017832553512759863 0.0009692270841312987 -0.04165984242374944 -0.010481721489252875 -0.001097780174187964 -0.03656130392169697 0.0995681079415701 -0.002988194068733946 -0.06833303545683764 0.07547840113892808 0.012534140473141761 -0.09414588274492038 0.055845160597650656 0.011642853921598757 -0.11784543599085467 -0.043363954499492735 -0.0004987698365433975 -0.09112197584574314 -0.04917964606879465 -0.0021184550034538162 -0.055436472121806954 -0.0021001734627570006 0.007581465929363031 -0.0022930110840806983 -0.03400223436608363 0.0005903316506273609 -0.02892748974932771 0.03362742124566417 0.017075825083056162 -0.13236955429019032 0.00807102018088964 0.003074126904724947 -0.05762347663485038 0.10374095110496138 -0.003309301952736492 -0.06380978191498557 0.01564370446476653 0.0018910551156670655 -0.08449577095208285 -0.017035199049118106 -0.002118300293717834 -0.0867128390631205 0.10374095110496138 -0.003309301952736492 -0.06380978191498557 0.00908050971312391 -0.0018303386017933182 -0.060452241100668554 -0.02210216267151341 -0.003691667120174184 -0.05485773258269085 0.10374095110496138 -0.003309301952736492 -0.06380978191498557 0.034953979045077285 0.006631026867712119 -0.020600439911700602 0.017939570907372207 0.0065692021509128635 -0.00810166494453888 0.10374095110496138 -0.003309301952736492 -0.06380978191498557 0.022005396676151152 0.0006481192001287529 -0.03713658888189738 -0.006308878325861586 -0.0014188880581905098 -0.03203805037984491 0.10374095110496138 -0.003309301952736492 -0.06380978191498557 0.07965124430231936 0.012213032589139215 -0.08962262920306832 0.060018003761041945 0.011321746037596211 -0.11332218244900262 -0.039191111336101446 -0.0008198777205459433 -0.08659872230389107 -0.04500680290540336 -0.002439562887456362 -0.0509132185799549 0.0020726697006342885 0.007260358045360485 0.002230242457771363 -0.02982939120269234 0.00026922376662481514 -0.02440423620747565 0.037800264409055456 0.016754717199053616 -0.12784630074833828 0.009072458546367993 0.0005178496506319095 -0.055079019207524366 0.10474238947043975 -0.005865579206829529 -0.06126532448765956 0.01664514283024488 -0.0006652221384259718 -0.08195131352475685 -0.016033760683639757 -0.004674577547810871 -0.08416838163579447 0.10474238947043975 -0.005865579206829529 -0.06126532448765956 0.010081948078602262 -0.004386615855886356 -0.05790778367334254 -0.02110072430603506 -0.0062479443742672214 -0.05231327515536484 0.10474238947043975 -0.005865579206829529 -0.06126532448765956 0.03595541741055564 0.004074749613619082 -0.018055982484374587 0.01894100927285056 0.004012924896819826 -0.005557207517212864 0.10474238947043975 -0.005865579206829529 -0.06126532448765956 0.023006835041629505 -0.0019081580539642845 -0.034592131454571365 -0.005307439960383234 -0.003975165312283547 -0.029493592952518896 0.10474238947043975 -0.005865579206829529 -0.06126532448765956 0.08065268266779772 0.009656755335046178 -0.0870781717757423 0.061019442126520294 0.008765468783503174 -0.1107777250216766 -0.0381896729706231 -0.0033761549746389808 -0.08405426487656506 -0.04400536453992501 -0.0049958401415493995 -0.04836876115262888 0.0030741080661126413 0.004704080791267448 0.004774699885097378 -0.02882795283721399 -0.0022870534874682223 -0.021859778780149636 0.038801702774533806 0.01419843994496058 -0.12530184332101224 0.00930229953760445 -0.002533519961157298 -0.05410955591130423 0.1049722304616762 -0.008916948818618736 -0.060295861191439426 0.016874983821481337 -0.003716591750215179 -0.08098185022853671 -0.015803919692403297 -0.007725947159600078 -0.08319891833957434 0.1049722304616762 -0.008916948818618736 -0.060295861191439426 0.01031178906983872 -0.007437985467675563 -0.0569383203771224 -0.0208708833147986 -0.00929931398605643 -0.0513438118591447 0.1049722304616762 -0.008916948818618736 -0.060295861191439426 0.0361852584017921 0.0010233800018298739 -0.017086519188154452 0.01917085026408702 0.0009615552850306187 -0.004587744220992729 0.1049722304616762 -0.008916948818618736 -0.060295861191439426 0.023236676032865965 -0.004959527665753492 -0.03362266815835123 -0.005077598969146776 -0.007026534924072755 -0.02852412965629876 0.1049722304616762 -0.008916948818618736 -0.060295861191439426 0.08088252365903417 0.00660538572325697 -0.08610870847952216 0.06124928311775675 0.005714099171713966 -0.10980826172545646 -0.03795983197938664 -0.006427524586428188 -0.08308480158034492 -0.04377552354868855 -0.008047209753338606 -0.04739929785640874 0.003303949057349099 0.0016527111794782403 0.005744163181317513 -0.02859811184597753 -0.00533842309925743 -0.0208903154839295 0.03903154376577027 0.011147070333171373 -0.12433238002479212 0.0023072966054056335 -0.005392382852855967 -0.06640518501584254 0.09797722752947738 -0.011775811710317406 -0.07259149029597774 0.009879980889282523 -0.006575454641913848 -0.09327747933307501 -0.022798922624602116 -0.010584810051298747 -0.09549454744411265 0.09797722752947738 -0.011775811710317406 -0.07259149029597774 0.0033167861376399025 -0.010296848359374233 -0.06923394948166071 -0.02786588624699742 -0.012158176877755097 -0.06363944096368301 0.09797722752947738 -0.011775811710317406 -0.07259149029597774 0.02919025546959328 -0.0018354828898687948 -0.029382148292692763 0.012175847331888201 -0.00189730760666805 -0.01688337332553104 0.09797722752947738 -0.011775811710317406 -0.07259149029597774 0.016241673100667146 -0.00781839055745216 -0.04591829726288954 -0.012072601901345592 -0.009885397815771423 -0.04081975876083707 0.09797722752947738 -0.011775811710317406 -0.07259149029597774 0.07388752072683535 0.003746522831558301 -0.09840433758406048 0.05425428018555794 0.002855236280015297 -0.12210389082999479 -0.04495483491158545 -0.009286387478126858 -0.09538043068488322 -0.05077052648088737 -0.010906072645037276 -0.05969492696094705 -0.003691053874849718 -0.0012061517122204284 -0.006551465923220798 -0.035593114778176345 -0.008197285990956099 -0.03318594458846781 0.03203654083357145 0.008288207441472704 -0.13662800912933043 0.0031102220619946565 -0.00790815849287998 -0.06472479623508662 0.0987801529860664 -0.014291587350341419 -0.07091110151522181 0.010682906345871546 -0.00909123028193786 -0.0915970905523191 -0.021995997168013093 -0.01310058569132276 -0.09381415866335673 0.0987801529860664 -0.014291587350341419 -0.07091110151522181 0.0041197115942289255 -0.012812623999398245 -0.06755356070090479 -0.027062960790408395 -0.014673952517779112 -0.06195905218292709 0.0987801529860664 -0.014291587350341419 -0.07091110151522181 0.029993180926182302 -0.004351258529892809 -0.02770175951193684 0.012978772788477224 -0.004413083246692063 -0.015202984544775117 0.0987801529860664 -0.014291587350341419 -0.07091110151522181 0.01704459855725617 -0.010334166197476173 -0.04423790848213362 -0.01126967644475657 -0.012401173455795438 -0.03913936998008115 0.0987801529860664 -0.014291587350341419 -0.07091110151522181 0.07469044618342438 0.0012307471915342875 -0.09672394880330455 0.05505720564214696 0.0003394606399912837 -0.12042350204923885 -0.04415190945499643 -0.01180216311815087 -0.09370004190412731 -0.04996760102429835 -0.013421848285061289 -0.05801453818019113 -0.002888128418260695 -0.003721927352244442 -0.004871077142464875 -0.034790189321587325 -0.010713061630980111 -0.03150555580771189 0.03283946629016047 0.00577243180144869 -0.1349476203485745 0.004122303181038798 -0.00928452670157348 -0.06131930287132896 0.09979223410511055 -0.01566795555903492 -0.06750560815146416 0.011694987464915686 -0.01046759849063136 -0.08819159718856143 -0.020983916048968952 -0.01447695390001626 -0.09040866529959907 0.09979223410511055 -0.01566795555903492 -0.06750560815146416 0.005131792713273067 -0.014188992208091744 -0.06414806733714713 -0.026050879671364255 -0.01605032072647261 -0.05855355881916943 0.09979223410511055 -0.01566795555903492 -0.06750560815146416 0.031005262045226446 -0.005727626738586308 -0.02429626614817918 0.013990853907521365 -0.005789451455385563 -0.011797491181017458 0.09979223410511055 -0.01566795555903492 -0.06750560815146416 0.01805667967630031 -0.011710534406169672 -0.04083241511837596 -0.010257595325712429 -0.013777541664488937 -0.03573387661632349 0.09979223410511055 -0.01566795555903492 -0.06750560815146416 0.07570252730246853 -0.00014562101715921184 -0.0933184554395469 0.0560692867611911 -0.0010369075687022156 -0.1170180086854812 -0.04313982833595229 -0.01317853132684437 -0.09029454854036964 -0.04895551990525421 -0.014798216493754788 -0.05460904481643347 -0.001876047299216554 -0.005098295560937941 -0.0014655837787072162 -0.033778108202543185 -0.01208942983967361 -0.02810006244395423 0.03385154740920461 0.004396063592755191 -0.13154212698481685 0.006276528933958884 -0.00562042745938766 -0.06830998132668696 0.10194645985803064 -0.0120038563168491 -0.07449628660682216 0.013849213217835773 -0.006803499248445541 -0.09518227564391943 -0.018829690296048862 -0.01081285465783044 -0.09739934375495707 0.10194645985803064 -0.0120038563168491 -0.07449628660682216 0.0072860184661931535 -0.010524892965905926 -0.07113874579250513 -0.023896653918444165 -0.01238622148428679 -0.06554423727452743 0.10194645985803064 -0.0120038563168491 -0.07449628660682216 0.03315948779814653 -0.002063527496400488 -0.03128694460353718 0.01614507966044145 -0.002125352213199743 -0.01878816963637546 0.10194645985803064 -0.0120038563168491 -0.07449628660682216 0.020210905429220397 -0.008046435163983854 -0.04782309357373396 -0.008103369572792342 -0.010113442422303116 -0.04272455507168149 0.10194645985803064 -0.0120038563168491 -0.07449628660682216 0.07785675305538861 0.003518478225026608 -0.1003091338949049 0.05822351251411119 0.002627191673483604 -0.12400868714083921 -0.0409856025830322 -0.00951443208465855 -0.09728522699572764 -0.04680129415233412 -0.01113411725156897 -0.06159972327179147 0.00027817845370353266 -0.0014341963187521215 -0.008456262234065218 -0.031623882449623095 -0.008425330597487792 -0.03509074089931223 0.0360057731621247 0.008060162834941011 -0.13853280544017485 0.008444774705624306 -0.0013170220612116394 -0.06831057348619975 0.10411470562969606 -0.007700450918673078 -0.07449687876633494 0.016017458989501195 -0.0025000938502695207 -0.09518286780343221 -0.016661444524383444 -0.00650944925965442 -0.09739993591446985 0.10411470562969606 -0.007700450918673078 -0.07449687876633494 0.009454264237858575 -0.006221487567729904 -0.07113933795201792 -0.021728408146778747 -0.008082816086110771 -0.06554482943404022 0.10411470562969606 -0.007700450918673078 -0.07449687876633494 0.035327733569811955 0.002239877901775532 -0.03128753676304997 0.018313325432106873 0.0021780531849762775 -0.018788761795888245 0.10411470562969606 -0.007700450918673078 -0.07449687876633494 0.02237915120088582 -0.003743029765807833 -0.047823685733246746 -0.0059351238011269205 -0.005810037024127096 -0.04272514723119428 0.10411470562969606 -0.007700450918673078 -0.07449687876633494 0.08002499882705404 0.007821883623202628 -0.10030972605441768 0.06039175828577661 0.0069305970716596246 -0.124009279300352 -0.038817356811366784 -0.005211026686482529 -0.09728581915524043 -0.0446330483806687 -0.006830711853392948 -0.06160031543130426 0.0024464242253689544 0.002869209079423899 -0.008456854393578003 -0.029455636677957676 -0.004121925199311771 -0.03509133305882502 0.03817401893379012 0.012363568233117031 -0.13853339759968764 0.021177967791841376 -0.002566687254728877 -0.06382123379089014 0.11684789871591313 -0.008950116112190315 -0.07000753907102533 0.028750652075718267 -0.003749759043786758 -0.09069352810812262 -0.003928251438166372 -0.007759114453171657 -0.09291059621916024 0.11684789871591313 -0.008950116112190315 -0.07000753907102533 0.022187457324075645 -0.007471152761247142 -0.06664999825670831 -0.008995215060561675 -0.009332481279628008 -0.06105548973873061 0.11684789871591313 -0.008950116112190315 -0.07000753907102533 0.04806092665602903 0.0009902127082582948 -0.026798197067740358 0.03104651851832394 0.0009283879914590396 -0.014299422100578635 0.11684789871591313 -0.008950116112190315 -0.07000753907102533 0.03511234428710289 -0.004992694959325071 -0.043334346037937135 0.00679806928509015 -0.007059702217644334 -0.03823580753588467 0.11684789871591313 -0.008950116112190315 -0.07000753907102533 0.0927581919132711 0.006572218429685391 -0.09582038635910807 0.07312495137199368 0.005680931878142387 -0.11951993960504237 -0.02608416372514971 -0.006460691879999767 -0.09279647945993083 -0.03189985529445163 -0.008080377046910186 -0.05711097573599465 0.015179617311586024 0.0016195438859066612 -0.003967514698268393 -0.016722443591740604 -0.005371590392829009 -0.030601993363515406 0.05090721202000719 0.011113903039599794 -0.134044057904378 0.01790676715820501 -0.001447954538077755 -0.06172332382762181 0.11357669808227676 -0.007831383395539194 -0.067909629107757 0.0254794514420819 -0.002631026327135636 -0.08859561814485428 -0.007199452071802739 -0.006640381736520536 -0.09081268625589192 0.11357669808227676 -0.007831383395539194 -0.067909629107757 0.018916256690439278 -0.006352420044596021 -0.06455208829343999 -0.012266415694198042 -0.008213748562976885 -0.05895757977546228 0.11357669808227676 -0.007831383395539194 -0.067909629107757 0.04478972602239266 0.0021089454249094168 -0.02470028710447203 0.027775317884687574 0.0020471207081101616 -0.012201512137310307 0.11357669808227676 -0.007831383395539194 -0.067909629107757 0.03184114365346652 -0.003873962242673949 -0.04123643607466881 0.0035268686514537823 -0.005940969500993211 -0.03613789757261634 0.11357669808227676 -0.007831383395539194 -0.067909629107757 0.08948699127963473 0.007690951146336512 -0.09372247639583975 0.06985375073835731 0.006799664594793508 -0.11742202964177405 -0.02935536435878608 -0.005341959163348646 -0.0906985694966625 -0.035171055928087995 -0.006961644330259064 -0.05501306577272633 0.011908416677949656 0.002738276602557783 -0.0018696047350000647 -0.019993644225376972 -0.004252857676177887 -0.028504083400247078 0.04763601138637082 0.012232635756250915 -0.1319461479411097 0.01746429087729146 -0.000944838070827951 -0.06273416698866006 0.1131342218013632 -0.00732826692828939 -0.06892047226879526 0.025036975161168346 -0.002127909859885832 -0.08960646130589253 -0.007641928352716289 -0.006137265269270732 -0.09182352941693017 0.1131342218013632 -0.00732826692828939 -0.06892047226879526 0.018473780409525728 -0.005849303577346216 -0.06556293145447824 -0.012708891975111592 -0.007710632095727082 -0.05996842293650054 0.1131342218013632 -0.00732826692828939 -0.06892047226879526 0.044347249741479106 0.002612061892159221 -0.025711130265510286 0.027332841603774027 0.0025502371753599656 -0.013212355298348563 0.1131342218013632 -0.00732826692828939 -0.06892047226879526 0.03139866737255297 -0.003370845775424145 -0.042247279235707064 0.003084392370540232 -0.005437853033743408 -0.037148740733654595 0.1131342218013632 -0.00732826692828939 -0.06892047226879526 0.08904451499872118 0.008194067613586316 -0.094733319556878 0.06941127445744376 0.007302781062043313 -0.11843287280281231 -0.02979784063969963 -0.004838842696098841 -0.09170941265770075 -0.03561353220900154 -0.00645852786300926 -0.05602390893376458 0.011465940397036106 0.003241393069807587 -0.002880447896038321 -0.020436120506290522 -0.0037497412089280827 -0.029514926561285335 0.04719353510545728 0.01273575222350072 -0.13295699110214795 0.021100073567449286 -0.0016672780195107122 -0.0644898348669998 0.11677000449152103 -0.00805070687697215 -0.070676140147135 0.028672757851326176 -0.0028503498085685934 -0.09136212918423228 -0.004006145662558462 -0.006859705217953493 -0.09357919729526991 0.11677000449152103 -0.00805070687697215 -0.070676140147135 0.022109563099683555 -0.006571743526028977 -0.06731859933281797 -0.009073109284953765 -0.008433072044409844 -0.061724090814840274 0.11677000449152103 -0.00805070687697215 -0.070676140147135 0.04798303243163693 0.0018896219434764597 -0.027466798143850023 0.03096862429393185 0.0018277972266772045 -0.0149680231766883 0.11677000449152103 -0.00805070687697215 -0.070676140147135 0.0350344500627108 -0.004093285724106906 -0.0440029471140468 0.0067201750606980595 -0.0061602929824261686 -0.03890440861199433 0.11677000449152103 -0.00805070687697215 -0.070676140147135 0.092680297688879 0.007471627664903556 -0.09648898743521774 0.0730470571476016 0.006580341113360552 -0.12018854068115203 -0.026162057949541802 -0.005561282644781602 -0.0934650805360405 -0.03197774951884372 -0.007180967811692021 -0.057779576812104314 0.015101723087193934 0.0025189531211248263 -0.004636115774378058 -0.016800337816132695 -0.004472181157610844 -0.03127059443962507 0.0508293177956151 0.012013312274817958 -0.13471265898048768 0.013313947608226353 0.0010319897987845746 -0.06040633595336245 0.1089838785322981 -0.005351439058676864 -0.06659264123349765 0.02088663189210324 -0.00015108199027330667 -0.08727863027059493 -0.011792271621781395 -0.004160437399658206 -0.08949569838163256 0.1089838785322981 -0.005351439058676864 -0.06659264123349765 0.014323437140460622 -0.0038724757077336905 -0.06323510041918062 -0.0168592352441767 -0.005733804226114556 -0.05764059190120292 0.1089838785322981 -0.005351439058676864 -0.06659264123349765 0.040196906472414 0.004588889761771747 -0.02338329923021267 0.02318249833470892 0.004527065044972491 -0.010884524263050949 0.1089838785322981 -0.005351439058676864 -0.06659264123349765 0.027248324103487865 -0.0013940179058116193 -0.03991944820040945 -0.0010659508985248738 -0.003461025164130882 -0.03482090969835698 0.1089838785322981 -0.005351439058676864 -0.06659264123349765 0.08489417172965608 0.010170895483198841 -0.09240548852158038 0.06526093118837865 0.009279608931655838 -0.11610504176751468 -0.03394818390876474 -0.0028620148264863155 -0.08938158162240314 -0.03976387547806665 -0.004481699993396734 -0.05369607789846696 0.007315597127971001 0.005218220939420113 -0.0005526168607407067 -0.02458646377535563 -0.001772913339315557 -0.02718709552598772 0.043043191836392165 0.014712580093113246 -0.13062916006685032 0.01377817442661046 0.0008120031581382001 -0.06201619408057112 0.10944810535068221 -0.005571425699323239 -0.06820249936070631 0.02135085871048735 -0.0003710686309196812 -0.0888884883978036 -0.011328044803397289 -0.004380424040304581 -0.09110555650884122 0.10944810535068221 -0.005571425699323239 -0.06820249936070631 0.014787663958844729 -0.004092462348380065 -0.0648449585463893 -0.01639500842579259 -0.005953790866760931 -0.059250450028411596 0.10944810535068221 -0.005571425699323239 -0.06820249936070631 0.04066113329079811 0.004368903121125372 -0.024993157357421344 0.023646725153093025 0.004307078404326117 -0.012494382390259622 0.10944810535068221 -0.005571425699323239 -0.06820249936070631 0.02771255092187197 -0.001614004546457994 -0.04152930632761812 -0.000601724080140767 -0.0036810118047772566 -0.03643076782556565 0.10944810535068221 -0.005571425699323239 -0.06820249936070631 0.08535839854804018 0.009950908842552468 -0.09401534664878905 0.06572515800676276 0.009059622291009465 -0.11771489989472336 -0.03348395709038063 -0.00308200146713269 -0.09099143974961181 -0.039299648659682544 -0.004701686634043109 -0.05530593602567564 0.007779823946355108 0.004998234298773738 -0.0021624749879493796 -0.02412223695697152 -0.0019928999799619317 -0.028796953653196393 0.043507418654776274 0.014492593452466871 -0.132239018194059 0.011031369209848001 0.0010995746746602986 -0.06432049032815126 0.10670130013391975 -0.00528385418280114 -0.07050679560828646 0.01860405349372489 -8.349711439758264e-05 -0.09119278464538375 -0.014074850020159747 -0.004092852523782482 -0.09340985275642137 0.10670130013391975 -0.00528385418280114 -0.07050679560828646 0.01204085874208227 -0.003804890831857966 -0.06714925479396944 -0.01914181364255505 -0.005666219350238832 -0.06155474627599174 0.10670130013391975 -0.00528385418280114 -0.07050679560828646 0.03791432807403565 0.00465647463764747 -0.027297453605001486 0.020899919936330568 0.0045946499208482155 -0.014798678637839763 0.10670130013391975 -0.00528385418280114 -0.07050679560828646 0.024965745705109513 -0.0013264330299358953 -0.04383360257519826 -0.0033485292969032254 -0.0033934402882551578 -0.038735064073145795 0.10670130013391975 -0.00528385418280114 -0.07050679560828646 0.08261159333127772 0.010238480359074566 -0.0963196428963692 0.0629783527900003 0.009347193807531563 -0.1200191961423035 -0.03623076230714309 -0.0027944299506105913 -0.09329573599719196 -0.042046453876445004 -0.00441411511752101 -0.057610232273255776 0.0050330187295926495 0.005285805815295837 -0.004466771235529521 -0.02686904217373398 -0.001705328463439833 -0.031101249900776534 0.040760613438013814 0.014780164968988969 -0.13454331444163914 0.015570166542904234 -0.00011585822660873647 -0.06655399356351148 0.11124009746697598 -0.006499287084070175 -0.07274029884364668 0.023142850826781122 -0.0012989300156666177 -0.09342628788074395 -0.009536052687103514 -0.005308285425051517 -0.09564335599178159 0.11124009746697598 -0.006499287084070175 -0.07274029884364668 0.0165796560751385 -0.005020323733127001 -0.06938275802932965 -0.014603016309498817 -0.006881652251507867 -0.06378824951135195 0.11124009746697598 -0.006499287084070175 -0.07274029884364668 0.04245312540709188 0.0034410417363784354 -0.0295309568403617 0.0254387172693868 0.00337921701957918 -0.017032181873199978 0.11124009746697598 -0.006499287084070175 -0.07274029884364668 0.029504543038165746 -0.0025418659312049304 -0.04606710581055848 0.0011902680361530072 -0.004608873189524193 -0.04096856730850601 0.11124009746697598 -0.006499287084070175 -0.07274029884364668 0.08715039066433396 0.00902304745780553 -0.09855314613172941 0.06751715012305654 0.008131760906262527 -0.12225269937766373 -0.031691964974086856 -0.004009862851879626 -0.09552923923255216 -0.03750765654338877 -0.005629548018790045 -0.05984373550861599 0.009571816062648883 0.004070372914026802 -0.006700274470889736 -0.02233024484067775 -0.002920761364708868 -0.03333475313613675 0.045299410771070046 0.013564732067719933 -0.13677681767699937 0.013509265062841409 -0.003182516932695948 -0.07044552514999307 0.10917919598691316 -0.009565945790157387 -0.07663183043012826 0.021081949346718296 -0.0043655887217538296 -0.09731781946722554 -0.01159695416716634 -0.008374944131138729 -0.09953488757826318 0.10917919598691316 -0.009565945790157387 -0.07663183043012826 0.014518754595075678 -0.008086982439214213 -0.07327428961581124 -0.016663917789561642 -0.009948310957595078 -0.06767978109783354 0.10917919598691316 -0.009565945790157387 -0.07663183043012826 0.040392223927029056 0.0003743830302912238 -0.03342248842684329 0.023377815789323977 0.0003125583134919686 -0.020923713459681567 0.10917919598691316 -0.009565945790157387 -0.07663183043012826 0.027443641558102923 -0.005608524637292142 -0.04995863739704007 -0.0008706334439098178 -0.007675531895611405 -0.0448600988949876 0.10917919598691316 -0.009565945790157387 -0.07663183043012826 0.08508948918427113 0.0059563887517183195 -0.102444677718211 0.06545624864299371 0.005065102200175316 -0.12614423096414532 -0.03375286645414968 -0.007076521557966838 -0.09942077081903375 -0.03956855802345159 -0.008696206724877257 -0.06373526709509758 0.007510914582586057 0.0010037142079395902 -0.010591806057371325 -0.024391146320740572 -0.005987420070796079 -0.03722628472261834 0.04323850929100723 0.010498073361632722 -0.14066834926348096 0.01736790058301154 -0.003742333801996834 -0.07178936269932164 0.1130378315070833 -0.010125762659458273 -0.07797566797945683 0.02494058486688843 -0.0049254055910547155 -0.0986616570165541 -0.007738318646996208 -0.008934761000439615 -0.10087872512759175 0.1130378315070833 -0.010125762659458273 -0.07797566797945683 0.01837739011524581 -0.008646799308515099 -0.07461812716513981 -0.01280528226939151 -0.010508127826895964 -0.06902361864716211 0.1130378315070833 -0.010125762659458273 -0.07797566797945683 0.044250859447199184 -0.00018543383900966213 -0.03476632597617186 0.027236451309494106 -0.0002472585558089173 -0.022267551009010136 0.1130378315070833 -0.010125762659458273 -0.07797566797945683 0.03130227707827305 -0.006168341506593028 -0.05130247494636864 0.002988002076260314 -0.00823534876491229 -0.04620393644431617 0.1130378315070833 -0.010125762659458273 -0.07797566797945683 0.08894812470444127 0.005396571882417434 -0.10378851526753957 0.06931488416316384 0.00450528533087443 -0.12748806851347388 -0.029894230933979547 -0.007636338427267724 -0.10076460836836232 -0.03570992250328146 -0.009256023594178143 -0.06507910464442615 0.011369550102756188 0.00044389733863870427 -0.011935643606699894 -0.02053251080057044 -0.006547236940096965 -0.03857012227194691 0.047097144811177355 0.009938256492331836 -0.14201218681280953 0.018813110151458777 -0.0007050628931198837 -0.06840530311614261 0.11448304107553053 -0.0070884917505813225 -0.0745916083962778 0.026385794435335667 -0.0018881346821777649 -0.09527759743337508 -0.006293109078548971 -0.005897490091562665 -0.09749466554441272 0.11448304107553053 -0.0070884917505813225 -0.0745916083962778 0.019822599683693046 -0.005609528399638149 -0.07123406758196078 -0.011360072700944274 -0.007470856918019015 -0.06563955906398308 0.11448304107553053 -0.0070884917505813225 -0.0745916083962778 0.04569606901564642 0.002851837069867288 -0.03138226639299283 0.028681660877941342 0.002790012353068033 -0.01888349142583111 0.11448304107553053 -0.0070884917505813225 -0.0745916083962778 0.03274748664672029 -0.0031310705977160777 -0.04791841536318961 0.004433211644707551 -0.0051980778560353404 -0.04281987686113714 0.11448304107553053 -0.0070884917505813225 -0.0745916083962778 0.09039333427288851 0.008433842791294385 -0.10040445568436054 0.07076009373161107 0.00754255623975138 -0.12410400893029486 -0.02844902136553231 -0.004599067518390774 -0.09738054878518329 -0.03426471293483423 -0.006218752685301193 -0.06169504506124712 0.012814759671203425 0.0034811682475156544 -0.008551584023520867 -0.019087301232123204 -0.0035099660312200155 -0.03518606268876788 0.04854235437962459 0.012975527401208787 -0.1386281272296305 0.010401549892450911 -0.0007054695247706237 -0.06809661705178195 0.10607148081652266 -0.007088898382232063 -0.07428292233191715 0.017974234176327798 -0.001888541313828505 -0.09496891136901442 -0.014704669337556837 -0.005897896723213405 -0.09718597948005206 0.10607148081652266 -0.007088898382232063 -0.07428292233191715 0.01141103942468518 -0.005609935031288889 -0.07092538151760013 -0.01977163295995214 -0.007471263549669755 -0.06533087299962242 0.10607148081652266 -0.007088898382232063 -0.07428292233191715 0.03728450875663856 0.0028514304382165484 -0.031073580328632174 0.02027010061893348 0.0027896057214172928 -0.01857480536147045 0.10607148081652266 -0.007088898382232063 -0.07428292233191715 0.024335926387712425 -0.0031314772293668178 -0.04760972929882895 -0.003978348614300315 -0.0051984844876860805 -0.04251119079677648 0.10607148081652266 -0.007088898382232063 -0.07428292233191715 0.08198177401388064 0.008433436159643645 -0.10009576961999989 0.06234853347260322 0.00754214960810064 -0.1237953228659342 -0.03686058162454017 -0.004599474150041514 -0.09707186272082263 -0.042676273193842096 -0.006219159316951933 -0.061386358996886464 0.00440319941219556 0.0034807616158649144 -0.008242897959160209 -0.02749886149113107 -0.003510372662870755 -0.03487737662440722 0.04013079412061672 0.012975120769558047 -0.13831944116526984 0.022886454450551378 -0.001696931508036774 -0.06655590491682956 0.11855638537462312 -0.008080360365498213 -0.07274221019696475 0.030459138734428265 -0.002880003297094655 -0.09342819923406204 -0.00221976477945637 -0.0068893587064795545 -0.09564526734509966 0.11855638537462312 -0.008080360365498213 -0.07274221019696475 0.023895943982785647 -0.006601397014555039 -0.06938466938264773 -0.007286728401851673 -0.008462725532935905 -0.06379016086467003 0.11855638537462312 -0.008080360365498213 -0.07274221019696475 0.049769413314739025 0.001859968454950398 -0.029532868193679777 0.03275500517703395 0.0017981437381511427 -0.017034093226518054 0.11855638537462312 -0.008080360365498213 -0.07274221019696475 0.03682083094581289 -0.004122939212632968 -0.046069017163876555 0.008506555943800152 -0.00618994647095223 -0.040970478661824086 0.11855638537462312 -0.008080360365498213 -0.07274221019696475 0.0944666785719811 0.007441974176377494 -0.09855505748504749 0.07483343803070368 0.00655068762483449 -0.12225461073098179 -0.02437567706643971 -0.005590936133307664 -0.09553115058587025 -0.030191368635741626 -0.0072106213002180826 -0.05984564686193407 0.016888103970296026 0.0024892996325987645 -0.0067021858242078125 -0.015013956933030603 -0.004501834646136906 -0.033336664489454826 0.052615698678717196 0.011983658786291896 -0.13677872903031746 0.02405926518740624 -0.002416897044222257 -0.06638490309696715 0.11972919611147799 -0.008800325901683696 -0.07257120837710235 0.03163194947128313 -0.003599968833280138 -0.09325719741419963 -0.0010469540426015084 -0.007609324242665038 -0.09547426552523726 0.11972919611147799 -0.008800325901683696 -0.07257120837710235 0.02506875471964051 -0.007321362550740522 -0.06921366756278532 -0.006113917664996811 -0.009182691069121387 -0.06361915904480762 0.11972919611147799 -0.008800325901683696 -0.07257120837710235 0.05094222405159389 0.001140002918764915 -0.029361866373817373 0.033927815913888805 0.0010781782019656599 -0.01686309140665565 0.11972919611147799 -0.008800325901683696 -0.07257120837710235 0.03799364168266775 -0.00484290474881845 -0.04589801534401415 0.009679366680655013 -0.006909912007137713 -0.04079947684196168 0.11972919611147799 -0.008800325901683696 -0.07257120837710235 0.09563948930883596 0.00672200864019201 -0.09838405566518509 0.07600624876755854 0.0058307220886490065 -0.12208360891111938 -0.023202866329584848 -0.006310901669493147 -0.09536014876600785 -0.029018557898886764 -0.007930586836403566 -0.059674645042071664 0.018060914707150887 0.0017693340964132814 -0.006531184004345408 -0.013841146196175741 -0.0052218001823223885 -0.03316566266959242 0.053788509415572054 0.011263693250106413 -0.13660772721045505 0.009450466384778637 0.0021142827295863947 -0.06374395502441685 0.1051203973088504 -0.004269146127875044 -0.06993026030455204 0.017023150668655528 0.0009312109405285134 -0.09061624934164933 -0.01565575284522911 -0.003078144468856386 -0.09283331745268696 0.1051203973088504 -0.004269146127875044 -0.06993026030455204 0.010459955917012907 -0.0027901827769318704 -0.06657271949023502 -0.020722716467624414 -0.004651511295312737 -0.06097821097225732 0.1051203973088504 -0.004269146127875044 -0.06993026030455204 0.03633342524896628 0.0056711826925735665 -0.02672091830126707 0.019319017111261202 0.005609357975774311 -0.014222143334105347 0.1051203973088504 -0.004269146127875044 -0.06993026030455204 0.023384842880040148 -0.00031172497500979923 -0.04325706727146385 -0.004929432121972589 -0.002378732233329062 -0.03815852876941138 0.1051203973088504 -0.004269146127875044 -0.06993026030455204 0.08103069050620837 0.011253188414000663 -0.09574310759263478 0.06139744996493094 0.010361901862457659 -0.11944266083856908 -0.03781166513221245 -0.0017797218956844955 -0.09271920069345754 -0.043627356701514367 -0.003399407062594914 -0.05703369696952136 0.0034521159045232857 0.006300513870221933 -0.003890235931795105 -0.028449944998803343 -0.000690620408513737 -0.03052471459704212 0.03917971061294445 0.015794873023915065 -0.13396677913790472 0.013227043084637223 -0.0011744879134433755 -0.05690558187907155 0.10889697400870897 -0.007557916770904814 -0.06309188715920674 0.020799727368514112 -0.0023575597025012568 -0.08377787619630403 -0.011879176145370525 -0.0063669151118861565 -0.08599494430734166 0.10889697400870897 -0.007557916770904814 -0.06309188715920674 0.014236532616871493 -0.006078953419961641 -0.05973434634488972 -0.01694613976776583 -0.007940281938342507 -0.05413983782691202 0.10889697400870897 -0.007557916770904814 -0.06309188715920674 0.04011000194882487 0.0023824120495437966 -0.01988254515592177 0.02309559381111979 0.002320587332744541 -0.007383770188760047 0.10889697400870897 -0.007557916770904814 -0.06309188715920674 0.027161419579898736 -0.0036004956180395696 -0.03641869412611855 -0.001152855422114003 -0.005667502876358832 -0.03132015562406608 0.10889697400870897 -0.007557916770904814 -0.06309188715920674 0.08480726720606695 0.007964417770970893 -0.08890473444728948 0.06517402666478952 0.007073131219427888 -0.11260428769322378 -0.034035088432353866 -0.005068492538714266 -0.08588082754811224 -0.03985078000165578 -0.0066881777056246846 -0.05019532382417606 0.007228692604381872 0.0030117432271921625 0.002948137213550195 -0.02467336829894476 -0.003979391051543507 -0.02368634145169682 0.042956287312803036 0.012506102380885295 -0.12712840599255942 0.018988445117445768 -0.0032261774320973815 -0.06032950778149367 0.11465837604151752 -0.009609606289558821 -0.06651581306162886 0.02656112940132266 -0.004409249221155263 -0.08720180209872615 -0.00611777411256198 -0.008418604630540161 -0.08941887020976377 0.11465837604151752 -0.009609606289558821 -0.06651581306162886 0.019997934649680037 -0.008130642938615647 -0.06315827224731185 -0.011184737734957283 -0.009991971456996512 -0.057563763729334146 0.11465837604151752 -0.009609606289558821 -0.06651581306162886 0.04587140398163342 0.00033072253088979034 -0.023306471058343894 0.028856995843928333 0.00026889781409053515 -0.010807696091182172 0.11465837604151752 -0.009609606289558821 -0.06651581306162886 0.03292282161270728 -0.005652185136693575 -0.03984262002854067 0.004608546610694542 -0.007719192395012838 -0.0347440815264882 0.11465837604151752 -0.009609606289558821 -0.06651581306162886 0.0905686692388755 0.005912728252316886 -0.0923286603497116 0.07093542869759807 0.005021441700773882 -0.11602821359564591 -0.02827368639954532 -0.007120182057368272 -0.08930475345053436 -0.034089377968847236 -0.008739867224278691 -0.05361924972659819 0.012990094637190416 0.0009600537085381567 -0.00047578868887192954 -0.018911966266136213 -0.006031080570197514 -0.027110267354118943 0.04871768934561158 0.01045441286223129 -0.13055233189498155 0.02285057140861439 -0.004133759596891917 -0.06339145489192821 0.11852050233268614 -0.010517188454353356 -0.06957776017206341 0.030423255692491276 -0.005316831385949798 -0.09026374920916069 -0.002255647821393359 -0.009326186795334698 -0.09248081732019832 0.11852050233268614 -0.010517188454353356 -0.06957776017206341 0.02386006094084866 -0.009038225103410182 -0.06622021935774638 -0.007322611443788662 -0.010899553621791049 -0.060625710839768684 0.11852050233268614 -0.010517188454353356 -0.06957776017206341 0.049733530272802036 -0.000576859633904745 -0.026368418168778433 0.03271912213509696 -0.0006386843507040002 -0.01386964320161671 0.11852050233268614 -0.010517188454353356 -0.06957776017206341 0.0367849479038759 -0.006559767301488111 -0.04290456713897521 0.008470672901863163 -0.008626774559807374 -0.03780602863692274 0.11852050233268614 -0.010517188454353356 -0.06957776017206341 0.09443079553004412 0.005005146087522351 -0.09539060746014615 0.0747975549887667 0.004113859535979347 -0.11909016070608044 -0.0244115601083767 -0.008027764222162807 -0.0923667005609689 -0.030227251677678615 -0.009647449389073226 -0.056681196837032724 0.016852220928359037 5.2471543743621424e-05 -0.0035377357993064684 -0.015049839974967592 -0.006938662734992048 -0.030172214464553482 0.0525798156367802 0.009546830697436753 -0.13361427900541611 0.02453052779398563 -0.00462368080609023 -0.06670376192895577 0.12020045871805737 -0.01100710966355167 -0.07289006720909097 0.03210321207786252 -0.0058067525951481114 -0.09357605624618826 -0.0005756914360221174 -0.00981610800453301 -0.09579312435722588 0.12020045871805737 -0.01100710966355167 -0.07289006720909097 0.0255400173262199 -0.009528146312608496 -0.06953252639477395 -0.00564265505841742 -0.01138947483098936 -0.06393801787679625 0.12020045871805737 -0.01100710966355167 -0.07289006720909097 0.051413486658173274 -0.001066780843103058 -0.029680725205805995 0.034399078520468196 -0.0011286055599023133 -0.017181950238644272 0.12020045871805737 -0.01100710966355167 -0.07289006720909097 0.03846490428924714 -0.007049688510686424 -0.04621687417600277 0.010150629287234404 -0.009116695769005687 -0.041118335673950304 0.12020045871805737 -0.01100710966355167 -0.07289006720909097 0.09611075191541535 0.004515224878324038 -0.09870291449717371 0.07647751137413794 0.003623938326781034 -0.122402467743108 -0.022731603723005457 -0.008517685431361121 -0.09567900759799647 -0.028547295292307373 -0.01013737059827154 -0.059993503874060286 0.018532177313730278 -0.0004374496654546917 -0.0068500428363340304 -0.01336988358959635 -0.007428583944190362 -0.033484521501581044 0.054259772022151445 0.009056909488238441 -0.13692658604244368 0.017979809332831567 -0.005435701796734939 -0.05935256112593472 0.11364974025690332 -0.011819130654196378 -0.06553886640606991 0.025552493616708458 -0.00661877358579282 -0.08622485544316719 -0.007126409897176181 -0.010628128995177719 -0.08844192355420483 0.11364974025690332 -0.011819130654196378 -0.06553886640606991 0.018989298865065837 -0.010340167303253205 -0.06218132559175289 -0.012193373519571483 -0.01220149582163407 -0.05658681707377519 0.11364974025690332 -0.011819130654196378 -0.06553886640606991 0.04486276819701922 -0.0018788018337477668 -0.02232952440278494 0.027848360059314133 -0.001940626550547022 -0.009830749435623218 0.11364974025690332 -0.011819130654196378 -0.06553886640606991 0.03191418582809308 -0.007861709501331133 -0.03886567337298172 0.003599910826080341 -0.009928716759650395 -0.03376713487092925 0.11364974025690332 -0.011819130654196378 -0.06553886640606991 0.08956003345426129 0.003703203887679329 -0.09135171369415265 0.06992679291298387 0.002811917336136325 -0.11505126694008697 -0.02928232218415952 -0.00932970642200583 -0.0883278067949754 -0.035098013753461436 -0.010949391588916248 -0.05264230307103923 0.011981458852576215 -0.0012494706560994004 0.0005011579666870242 -0.019920602050750413 -0.00824060493483507 -0.02613332069855999 0.04770905356099738 0.008244888497593732 -0.1295753852394226 0.022729094176272148 -0.006428387525481897 -0.06289801743803335 0.11839902510034389 -0.012811816382943337 -0.06908432271816854 0.03030177846014904 -0.007611459314539779 -0.08977031175526581 -0.0023771250537356 -0.011620814723924677 -0.09198737986630345 0.11839902510034389 -0.012811816382943337 -0.06908432271816854 0.023738583708506417 -0.011332853032000163 -0.06572678190385152 -0.007444088676130903 -0.013194181550381028 -0.06013227338587382 0.11839902510034389 -0.012811816382943337 -0.06908432271816854 0.04961205304045979 -0.0028714875624947255 -0.025874980714883568 0.03259764490275471 -0.0029333122792939807 -0.013376205747721845 0.11839902510034389 -0.012811816382943337 -0.06908432271816854 0.03666347067153366 -0.008854395230078091 -0.042411129685080345 0.008349195669520922 -0.010921402488397354 -0.03731259118302788 0.11839902510034389 -0.012811816382943337 -0.06908432271816854 0.09430931829770187 0.00271051815893237 -0.09489717000625128 0.07467607775642446 0.0018192316073893664 -0.11859672325218559 -0.02453303734071894 -0.010322392150752788 -0.09187326310707403 -0.030348728910020856 -0.011942077317663207 -0.05618775938313786 0.016730743696016796 -0.002242156384846359 -0.003044298345411603 -0.015171317207309833 -0.00923329066358203 -0.029678777010658616 0.05245833840443796 0.007252202768846773 -0.13312084155152124 0.02419795412726162 -0.0069307077682021455 -0.06617309558090553 0.11986788505133336 -0.013314136625663584 -0.07235940086104073 0.03177063841113851 -0.008113779557260026 -0.09304538989813801 -0.0009082651027461294 -0.012123134966644926 -0.09526245800917564 0.11986788505133336 -0.013314136625663584 -0.07235940086104073 0.025207443659495888 -0.01183517327472041 -0.0690018600467237 -0.005975228725141432 -0.013696501793101275 -0.063407351528746 0.11986788505133336 -0.013314136625663584 -0.07235940086104073 0.05108091299144926 -0.0033738078052149736 -0.029150058857755755 0.034066504853744184 -0.003435632522014229 -0.016651283890594032 0.11986788505133336 -0.013314136625663584 -0.07235940086104073 0.03813233062252313 -0.00935671547279834 -0.04568620782795253 0.009818055620510392 -0.011423722731117601 -0.040587669325900064 0.11986788505133336 -0.013314136625663584 -0.07235940086104073 0.09577817824869134 0.002208197916212122 -0.09817224814912347 0.07614493770741393 0.0013169113646691183 -0.12187180139505777 -0.02306417738972947 -0.010824712393473036 -0.09514834124994623 -0.028879868959031385 -0.012444397560383454 -0.059462837526010046 0.018199603647006266 -0.0027444766275666072 -0.00631937648828379 -0.013702457256320362 -0.009735610906302277 -0.0329538551535308 0.05392719835542743 0.006749882526126525 -0.1363959196943934 0.016447116705496822 -0.008422632178606414 -0.05959038539147503 0.11211704762956858 -0.014806061036067852 -0.06577669067161022 0.02401980098937371 -0.009605703967664294 -0.0864626797087075 -0.008659102524510926 -0.013615059377049194 -0.08867974781974514 0.11211704762956858 -0.014806061036067852 -0.06577669067161022 0.01745660623773109 -0.013327097685124679 -0.0624191498572932 -0.013726066146906229 -0.015188426203505544 -0.0568246413393155 0.11211704762956858 -0.014806061036067852 -0.06577669067161022 0.04333007556968447 -0.004865732215619242 -0.02256734866832525 0.02631566743197939 -0.004927556932418497 -0.010068573701163527 0.11211704762956858 -0.014806061036067852 -0.06577669067161022 0.030381493200758336 -0.010848639883202608 -0.03910349763852203 0.0020672181987455955 -0.01291564714152187 -0.03400495913646956 0.11211704762956858 -0.014806061036067852 -0.06577669067161022 0.08802734082692655 0.0007162735058078538 -0.09158953795969296 0.06839410028564913 -0.00017501304573514995 -0.11528909120562728 -0.030815014811494266 -0.012316636803877304 -0.08856563106051571 -0.036630706380796185 -0.013936321970787723 -0.05288012733657954 0.01044876622524147 -0.0042364010379708755 0.0002633337011467146 -0.02145329467808516 -0.011227535316706545 -0.0263711449641003 0.04617636093366263 0.0052579581157222565 -0.12981320950496292 0.0210988985930905 -0.008557335451958267 -0.0631816511430839 0.11676882951716225 -0.014940764309419706 -0.0693679564232191 0.02867158287696739 -0.009740407241016148 -0.09005394546031636 -0.004007320636917246 -0.013749762650401048 -0.092271013571354 0.11676882951716225 -0.014940764309419706 -0.0693679564232191 0.02210838812532477 -0.013461800958476532 -0.06601041560890207 -0.009074284259312549 -0.015323129476857399 -0.06041590709092437 0.11676882951716225 -0.014940764309419706 -0.0693679564232191 0.04798185745727815 -0.0050004354889710955 -0.02615861441993412 0.03096744931957307 -0.00506226020577035 -0.013659839452772396 0.11676882951716225 -0.014940764309419706 -0.0693679564232191 0.035033275088352016 -0.01098334315655446 -0.042694763390130896 0.006719000086339275 -0.013050350414873724 -0.03759622488807843 0.11676882951716225 -0.014940764309419706 -0.0693679564232191 0.09267912271452022 0.0005815702324560006 -0.09518080371130183 0.0730458821732428 -0.00030971631908700316 -0.11888035695723614 -0.026163232923900586 -0.012451340077229157 -0.09215689681212458 -0.0319789244932025 -0.014071025244139576 -0.05647139308818841 0.01510054811283515 -0.004371104311322729 -0.003327932050462154 -0.01680151279049148 -0.011362238590058398 -0.029962410715709167 0.05082814282125632 0.005123254842370403 -0.1334044752565718 0.010451551346064373 -0.007288281814368727 -0.0561341466349825 0.10612148227013612 -0.013671710671830165 -0.062320451915117696 0.018024235629941262 -0.008471353603426608 -0.08300644095221497 -0.014654667883943375 -0.012480709012811508 -0.0852235090632526 0.10612148227013612 -0.013671710671830165 -0.062320451915117696 0.011461040878298643 -0.012192747320886991 -0.05896291110080067 -0.019721631506338676 -0.014054075839267858 -0.05336840258282297 0.10612148227013612 -0.013671710671830165 -0.062320451915117696 0.03733451021025202 -0.003731381851381555 -0.01911110991183272 0.02032010207254694 -0.00379320656818081 -0.006612334944670999 0.10612148227013612 -0.013671710671830165 -0.062320451915117696 0.024385927841325886 -0.00971428951896492 -0.0356472588820295 -0.003928347160686853 -0.011781296777284183 -0.03054872037997703 0.10612148227013612 -0.013671710671830165 -0.062320451915117696 0.0820317754674941 0.0018506238700455408 -0.08813329920320043 0.06239853492621668 0.0009593373185025371 -0.11183285244913474 -0.03681058017092671 -0.011182286439639616 -0.08510939230402319 -0.04262627174022863 -0.012801971606550035 -0.04942388858008702 0.004453200865809022 -0.0031020506737331885 0.0037195724576392433 -0.027448860037517606 -0.010093184952468859 -0.02291490620760777 0.04018079557423019 0.0063923084799599435 -0.12635697074847038 0.012302013643723022 -0.0041714478386859375 -0.05581942541187627 0.10797194456779477 -0.010554876696147377 -0.062005730692011464 0.01987469792759991 -0.005354519627743819 -0.08269171972910874 -0.012804205586284726 -0.009363875037128717 -0.08490878784014638 0.10797194456779477 -0.010554876696147377 -0.062005730692011464 0.013311503175957291 -0.009075913345204203 -0.05864818987769444 -0.01787116920868003 -0.010937241863585068 -0.05305368135971674 0.10797194456779477 -0.010554876696147377 -0.062005730692011464 0.03918497250791067 -0.0006145478756987657 -0.01879638868872649 0.02217056437020559 -0.0006763725924980209 -0.006297613721564767 0.10797194456779477 -0.010554876696147377 -0.062005730692011464 0.026236390138984534 -0.006597455543282131 -0.03533253765892327 -0.002077884863028205 -0.008664462801601394 -0.0302339991568708 0.10797194456779477 -0.010554876696147377 -0.062005730692011464 0.08388223776515275 0.00496745784572833 -0.08781857798009421 0.06424899722387532 0.004076171294185326 -0.11151813122602851 -0.03496011787326807 -0.008065452463956829 -0.08479467108091696 -0.040775809442569984 -0.009685137630867247 -0.04910916735698079 0.00630366316346767 1.4783301949600723e-05 0.004034293680745475 -0.02559839773985896 -0.00697635097678607 -0.022600184984501538 0.042031257871888834 0.009509142455642734 -0.12604224952536416 0.02279959371345907 -0.008052493793918156 -0.06581184484596123 0.11846952463753083 -0.014435922651379595 -0.07199815012609642 0.03037227799733596 -0.009235565582976037 -0.09268413916319371 -0.0023066255165486785 -0.013244920992360937 -0.09490120727423133 0.11846952463753083 -0.014435922651379595 -0.07199815012609642 0.02380908324569334 -0.012956959300436421 -0.0686406093117794 -0.007373589138943981 -0.014818287818817288 -0.0630461007938017 0.11846952463753083 -0.014435922651379595 -0.07199815012609642 0.04968255257764671 -0.004495593830930985 -0.028788808122811448 0.032668144439941635 -0.004557418547730239 -0.016290033155649725 0.11846952463753083 -0.014435922651379595 -0.07199815012609642 0.03673397020872058 -0.010478501498514349 -0.045324957093008225 0.008419695206707843 -0.012545508756833613 -0.040226418590955756 0.11846952463753083 -0.014435922651379595 -0.07199815012609642 0.0943798178348888 0.0010864118904961115 -0.09781099741417916 0.07474657729361137 0.00019512533895310775 -0.12151055066011346 -0.024462537803532018 -0.011946498419189046 -0.09478709051500192 -0.030278229372833934 -0.013566183586099465 -0.05910158679106574 0.016801243233203717 -0.0038662626532826178 -0.005958125753339483 -0.015100817670122911 -0.010857396932018287 -0.032592604418586496 0.052528837941624884 0.005628096500410514 -0.1360346689594491 0.023091773483073057 -0.0026375549477349477 -0.07016909466701099 0.11876170440714481 -0.009020983805196387 -0.07635539994714619 0.030664457766949947 -0.0038206267367928287 -0.09704138898424347 -0.0020144457469346913 -0.007829982146177729 -0.0992584570952811 0.11876170440714481 -0.009020983805196387 -0.07635539994714619 0.024101263015307326 -0.007542020454253213 -0.07299785913282916 -0.007081409369329994 -0.009403348972634078 -0.06740335061485146 0.11876170440714481 -0.009020983805196387 -0.07635539994714619 0.0499747323472607 0.0009193450152522242 -0.03314605794386121 0.03296032420955562 0.000857520298452969 -0.020647282976699488 0.11876170440714481 -0.009020983805196387 -0.07635539994714619 0.03702614997833457 -0.005063562652331141 -0.04968220691405799 0.00871187497632183 -0.007130569910650404 -0.04458366841200552 0.11876170440714481 -0.009020983805196387 -0.07635539994714619 0.09467199760450279 0.0065013507366793195 -0.10216824723522892 0.07503875706322535 0.005610064185136316 -0.12586780048116322 -0.02417035803391803 -0.006531559573005838 -0.09914434033605168 -0.029986049603219947 -0.008151244739916257 -0.0634588366121155 0.017093423002817704 0.0015486761929005906 -0.010315375574389246 -0.014808637900508924 -0.005442458085835079 -0.03694985423963626 0.05282101771123887 0.011043035346593722 -0.1403919187804989 0.023687395956832776 -0.005529320599435923 -0.0697884145827113 0.11935732688090453 -0.01191274945689736 -0.0759747198628465 0.03126008024070966 -0.006712392388493804 -0.09666070889994377 -0.0014188232731749718 -0.010721747797878704 -0.09887777701098141 0.11935732688090453 -0.01191274945689736 -0.0759747198628465 0.024696885489067046 -0.010433786105954187 -0.07261717904852948 -0.0064857868955702745 -0.012295114624335053 -0.06702267053055178 0.11935732688090453 -0.01191274945689736 -0.0759747198628465 0.05057035482102042 -0.001972420636448751 -0.032765377859561524 0.033555946683315345 -0.002034245353248006 -0.0202666028923998 0.11935732688090453 -0.01191274945689736 -0.0759747198628465 0.03762177245209429 -0.007955328304032117 -0.0493015268297583 0.00930749745008155 -0.01002233556235138 -0.04420298832770583 0.11935732688090453 -0.01191274945689736 -0.0759747198628465 0.0952676200782625 0.003609585084978345 -0.10178756715092924 0.07563437953698508 0.002718298533435341 -0.12548712039686355 -0.02357473556015831 -0.009423325224706812 -0.09876366025175198 -0.029390427129460227 -0.01104301039161723 -0.06307815652781582 0.017689045476577424 -0.0013430894588003844 -0.00993469549008956 -0.014213015426749204 -0.008334223737536055 -0.03656917415533657 0.05341664018499859 0.008151269694892747 -0.1400112386961992 0.02189884473850048 -0.0016281180777631104 -0.07013167495078607 0.11756877566257223 -0.008011546935224548 -0.07631798023092126 0.029471529022377367 -0.0028111898668209917 -0.09700396926801855 -0.003207374491507268 -0.006820545276205891 -0.09922103737905617 0.11756877566257223 -0.008011546935224548 -0.07631798023092126 0.02290833427073475 -0.006532583584281376 -0.07296043941660424 -0.00827433811390257 -0.008393912102662241 -0.06736593089862654 0.11756877566257223 -0.008011546935224548 -0.07631798023092126 0.04878180360268813 0.0019287818852240614 -0.03310863822763629 0.03176739546498305 0.0018669571684248063 -0.020609863260474565 0.11756877566257223 -0.008011546935224548 -0.07631798023092126 0.035833221233761994 -0.0040541257823593045 -0.049644787197833065 0.007518946231749254 -0.006121133040678567 -0.044546248695780596 0.11756877566257223 -0.008011546935224548 -0.07631798023092126 0.09347906885993021 0.007510787606651157 -0.102130827519004 0.07384582831865279 0.006619501055108153 -0.1258303807649383 -0.025363286778490608 -0.005522122703034001 -0.09910692061982676 -0.031178978347792524 -0.0071418078699444195 -0.06342141689589058 0.015900494258245128 0.0025581130628724276 -0.010277955858164323 -0.0160015666450815 -0.004433021215863242 -0.036912434523411336 0.05162808896666629 0.01205247221656556 -0.14035449906427394 0.012743096606466983 -0.004294733557365462 -0.07092683514784738 0.10841302753053873 -0.0106781624148269 -0.07711314042798258 0.020315780890343874 -0.005477805346423344 -0.09779912946507985 -0.012363122623540765 -0.009487160755808244 -0.10001619757611749 0.10841302753053873 -0.0106781624148269 -0.07711314042798258 0.013752586138701253 -0.009199199063883726 -0.07375559961366555 -0.017430086245936068 -0.011060527582264593 -0.06816109109568785 0.10841302753053873 -0.0106781624148269 -0.07711314042798258 0.039626055470654634 -0.0007378335943782903 -0.0339037984246976 0.02261164733294955 -0.0007996583111775455 -0.02140502345753588 0.10841302753053873 -0.0106781624148269 -0.07711314042798258 0.026677473101728494 -0.006720741261961656 -0.05043994739489438 -0.0016368019002842432 -0.008787748520280919 -0.04534140889284191 0.10841302753053873 -0.0106781624148269 -0.07711314042798258 0.08432332072789671 0.004844172127048805 -0.10292598771606531 0.06469008018661929 0.003952885575505802 -0.12662554096199963 -0.034519034910524105 -0.008188738182636351 -0.09990208081688806 -0.04033472647982602 -0.00980842334954677 -0.0642165770929519 0.006744746126211632 -0.00010850241672992391 -0.011073116055225637 -0.025157314777114997 -0.007099636695465594 -0.03770759472047265 0.0424723408346328 0.009385856736963207 -0.14114965926133527 0.01744551217500987 -0.005204320696376419 -0.07255046751405593 0.11311544309908161 -0.011587749553837859 -0.07873677279419113 0.02501819645888676 -0.006387392485434301 -0.0994227618312884 -0.007660707054997877 -0.0103967478948192 -0.10163982994232604 0.11311544309908161 -0.011587749553837859 -0.07873677279419113 0.01845500170724414 -0.010108786202894685 -0.0753792319798741 -0.01272767067739318 -0.01197011472127555 -0.0697847234618964 0.11311544309908161 -0.011587749553837859 -0.07873677279419113 0.044328471039197515 -0.0016474207333892475 -0.03552743079090615 0.027314062901492436 -0.0017092454501885027 -0.02302865582374443 0.11311544309908161 -0.011587749553837859 -0.07873677279419113 0.03137988867027138 -0.007630328400972613 -0.05206357976110293 0.0030656136682586446 -0.009697335659291876 -0.04696504125905046 0.11311544309908161 -0.011587749553837859 -0.07873677279419113 0.08902573629643959 0.003934584988037848 -0.10454962008227386 0.06939249575516218 0.0030432984364948444 -0.12824917332820818 -0.029816619341981217 -0.00909832532164731 -0.10152571318309661 -0.03563231091128313 -0.010718010488557729 -0.06584020945916044 0.011447161694754519 -0.001018089555740881 -0.012696748421434187 -0.02045489920857211 -0.008009223834476551 -0.0393312270866812 0.047174756403175686 0.008476269597952252 -0.14277329162754382 0.012002186041467949 -0.006774654835581146 -0.07078063559528923 0.1076721169655397 -0.013158083693042584 -0.07696694087542442 0.019574870325344836 -0.007957726624639026 -0.0976529299125217 -0.0131040331885398 -0.011967082034023926 -0.09986999802355934 0.1076721169655397 -0.013158083693042584 -0.07696694087542442 0.013011675573702218 -0.01167912034209941 -0.0736094000611074 -0.018170996810935102 -0.013540448860480277 -0.0680148915431297 0.1076721169655397 -0.013158083693042584 -0.07696694087542442 0.038885144905655596 -0.003217754872593974 -0.03375759887213945 0.021870736767950517 -0.003279579589393229 -0.021258823904977728 0.1076721169655397 -0.013158083693042584 -0.07696694087542442 0.025936562536729463 -0.009200662540177339 -0.05029374784233623 -0.0023777124652832778 -0.011267669798496603 -0.04519520934028376 0.1076721169655397 -0.013158083693042584 -0.07696694087542442 0.08358241016289768 0.002364250848833122 -0.10277978816350716 0.06394916962162026 0.001472964297290118 -0.12647934140944148 -0.035259945475523136 -0.010668659460852036 -0.09975588126432991 -0.04107563704482506 -0.012288344627762455 -0.06407037754039374 0.006003835561212597 -0.0025884236949456074 -0.010926916502667486 -0.025898225342114032 -0.009579557973681277 -0.0375613951679145 0.04173143026963376 0.0069059354587475245 -0.14100345970877712 0.017589492152942646 -0.007369235068019895 -0.07215649215684927 0.11325942307701439 -0.013752663925481334 -0.07834279743698447 0.025162176436819533 -0.008552306857077776 -0.09902878647408175 -0.007516727077065102 -0.012561662266462676 -0.10124585458511938 0.11325942307701439 -0.013752663925481334 -0.07834279743698447 0.018598981685176916 -0.01227370057453816 -0.07498525662266745 -0.012583690699460404 -0.014135029092919027 -0.06939074810468975 0.11325942307701439 -0.013752663925481334 -0.07834279743698447 0.04447245101713029 -0.0038123351050327234 -0.035133455433699494 0.027458042879425215 -0.0038741598218319786 -0.02263468046653777 0.11325942307701439 -0.013752663925481334 -0.07834279743698447 0.03152386864820416 -0.009795242772616088 -0.05166960440389627 0.00320959364619142 -0.011862250030935353 -0.0465710659018438 0.11325942307701439 -0.013752663925481334 -0.07834279743698447 0.08916971627437237 0.0017696706163943723 -0.1041556447250672 0.06953647573309495 0.0008783840648513685 -0.1278551979710015 -0.02967263936404844 -0.011263239693290785 -0.10113173782588997 -0.035488330933350354 -0.012882924860201204 -0.06544623410195378 0.011591141672687294 -0.003183003927384357 -0.012302773064227529 -0.020310919230639334 -0.010174138206120027 -0.03893725172947454 0.047318736381108464 0.006311355226308775 -0.14237931627033718 0.020932717094824495 -0.004563421413986858 -0.0724313157802501 0.11660264801889625 -0.010946850271448295 -0.07861762106038529 0.028505401378701382 -0.005746493203044739 -0.09930361009748256 -0.0041735021351832526 -0.00975584861242964 -0.1015206782085202 0.11660264801889625 -0.010946850271448295 -0.07861762106038529 0.021942206627058765 -0.009467886920505122 -0.07526008024606827 -0.009240465757578555 -0.011329215438885988 -0.06966557172809057 0.11660264801889625 -0.010946850271448295 -0.07861762106038529 0.04781567595901214 -0.0010065214509996858 -0.03540827905710032 0.030801267821307064 -0.001068346167798941 -0.022909504089938595 0.11660264801889625 -0.010946850271448295 -0.07861762106038529 0.03486709359008601 -0.0069894291185830515 -0.051944428027297096 0.006552818588073269 -0.009056436376902314 -0.04684588952524463 0.11660264801889625 -0.010946850271448295 -0.07861762106038529 0.09251294121625422 0.00457548427042741 -0.10443046834846803 0.0728797006749768 0.003684197718884406 -0.12813002159440234 -0.026329414422166592 -0.008457426039257747 -0.10140656144929078 -0.03214510599146851 -0.010077111206168166 -0.06572105772535461 0.014934366614569143 -0.00037719027335131935 -0.012577596687628353 -0.016967694288757485 -0.00736832455208699 -0.03921207535287537 0.050661961322990307 0.009117168880341812 -0.14265413989373799 0.020074579893378533 -0.0030744153617553063 -0.07171324002814206 0.11574451081745028 -0.009457844219216745 -0.07789954530827725 0.027647264177255423 -0.004257487150813187 -0.09858553434537454 -0.005031639336629215 -0.008266842560198088 -0.10080260245641216 0.11574451081745028 -0.009457844219216745 -0.07789954530827725 0.021084069425612802 -0.007978880868273572 -0.07454200449396023 -0.010098602959024518 -0.009840209386654437 -0.06894749597598253 0.11574451081745028 -0.009457844219216745 -0.07789954530827725 0.04695753875756618 0.00048248460123186555 -0.03469020330499228 0.0299431306198611 0.00042065988443261036 -0.022191428337830554 0.11574451081745028 -0.009457844219216745 -0.07789954530827725 0.034008956388640044 -0.0055004230663515 -0.051226352275189055 0.005694681386627307 -0.0075674303246707625 -0.046127813773136586 0.11574451081745028 -0.009457844219216745 -0.07789954530827725 0.09165480401480826 0.006064490322658961 -0.10371239259635999 0.07202156347353084 0.005173203771115957 -0.1274119458422943 -0.027187551623612555 -0.006968419987026197 -0.10068848569718275 -0.03300324319291447 -0.008588105153936616 -0.06500298197324657 0.01407622941312318 0.001111815778880232 -0.011859520935520312 -0.017825831490203448 -0.005879318499855438 -0.038493999600767326 0.04980382412154435 0.010606174932573363 -0.14193606414162996 0.008668247658498803 -0.006297712389797797 -0.05494596964340915 0.10433817858257055 -0.012681141247259236 -0.061132274923544346 0.01624093194237569 -0.007480784178855678 -0.08181826396064162 -0.016437971571508947 -0.011490139588240578 -0.08403533207167926 0.10433817858257055 -0.012681141247259236 -0.061132274923544346 0.009677737190733072 -0.011202177896316062 -0.05777473410922732 -0.02150493519390425 -0.013063506414696929 -0.05218022559124962 0.10433817858257055 -0.012681141247259236 -0.061132274923544346 0.03555120652268645 -0.002740812426810625 -0.01792293292025937 0.01853679838498137 -0.0028026371436098802 -0.005424157953097648 0.10433817858257055 -0.012681141247259236 -0.061132274923544346 0.022602624153760315 -0.00872372009439399 -0.03445908189045615 -0.005711650848252424 -0.010790727352713254 -0.02936054338840368 0.10433817858257055 -0.012681141247259236 -0.061132274923544346 0.08024847177992853 0.0028411932946164706 -0.08694512221162709 0.060615231238651104 0.0019499067430734669 -0.11064467545756139 -0.03859388385849229 -0.010191717015068687 -0.08392121531244984 -0.0444095754277942 -0.011811402181979106 -0.04823571158851367 0.0026698971782434513 -0.0021114812491622587 0.004907749449212594 -0.02923216372508318 -0.009102615527897928 -0.02172672921603442 0.038397491886664616 0.007382877904530873 -0.12516879375689705 0.006146545907128643 -0.008494674976486325 -0.057444573913894764 0.10181647683120039 -0.014878103833947763 -0.06363087919402996 0.013719230191005531 -0.009677746765544205 -0.08431686823112725 -0.018959673322879105 -0.013687102174929106 -0.08653393634216487 0.10181647683120039 -0.014878103833947763 -0.06363087919402996 0.007156035439362912 -0.01339914048300459 -0.06027333837971294 -0.024026636945274408 -0.015260469001385456 -0.05467882986173524 0.10181647683120039 -0.014878103833947763 -0.06363087919402996 0.03302950477131629 -0.004937775013499153 -0.020421537190744986 0.01601509663361121 -0.004999599730298408 -0.007922762223583263 0.10181647683120039 -0.014878103833947763 -0.06363087919402996 0.020080922402390157 -0.010920682681082518 -0.03695768616094176 -0.008233352599622584 -0.012987689939401782 -0.031859147658889295 0.10181647683120039 -0.014878103833947763 -0.06363087919402996 0.07772677002855836 0.0006442307079279428 -0.0894437264821127 0.05809352948728094 -0.000247055843615061 -0.113143279728047 -0.04111558560986245 -0.012388679601757215 -0.08641981958293546 -0.04693127717916436 -0.014008364768667634 -0.05073431585899928 0.00014819542687329133 -0.0043084438358507865 0.002409145178726979 -0.03175386547645334 -0.011299578114586456 -0.024225333486520034 0.03587579013529446 0.0051859153178423455 -0.12766739802738264 0.008048760552650072 -0.009416460166223264 -0.05890082654731887 0.10371869147672182 -0.015799889023684704 -0.06508713182745406 0.01562144483652696 -0.010599531955281145 -0.08577312086455134 -0.017057458677357674 -0.014608887364666045 -0.08799018897558897 0.10371869147672182 -0.015799889023684704 -0.06508713182745406 0.009058250084884341 -0.014320925672741529 -0.06172959101313704 -0.022124422299752977 -0.016182254191122396 -0.05613508249515934 0.10371869147672182 -0.015799889023684704 -0.06508713182745406 0.03493171941683772 -0.005859560203236093 -0.02187778982416909 0.01791731127913264 -0.005921384920035347 -0.009379014857007366 0.10371869147672182 -0.015799889023684704 -0.06508713182745406 0.021983137047911584 -0.011842467870819457 -0.038413938794365866 -0.0063311379541011546 -0.013909475129138722 -0.0333154002923134 0.10371869147672182 -0.015799889023684704 -0.06508713182745406 0.07962898467407979 -0.0002775544818089965 -0.0908999791155368 0.05999574413280238 -0.0011688410333520003 -0.11459953236147111 -0.039213370964341014 -0.013310464791494154 -0.08787607221635955 -0.04502906253364293 -0.014930149958404573 -0.052190568492423386 0.0020504100723947203 -0.005230229025587726 0.0009528925453028761 -0.029851650830931907 -0.012221363304323395 -0.025681586119944137 0.03777800478081589 0.004264130128105406 -0.12912365066080675 0.014238244106478929 -0.010627785406335358 -0.06200178558434908 0.10990817503055068 -0.017011214263796797 -0.06818809086448427 0.021810928390355817 -0.011810857195393239 -0.08887407990158155 -0.01086797512352882 -0.015820212604778137 -0.0910911480126192 0.10990817503055068 -0.017011214263796797 -0.06818809086448427 0.015247733638713198 -0.015532250912853623 -0.06483055005016726 -0.015934938745924124 -0.01739357943123449 -0.05923604153218955 0.10990817503055068 -0.017011214263796797 -0.06818809086448427 0.04112120297066658 -0.007070885443348187 -0.0249787488611993 0.024106794832961496 -0.007132710160147442 -0.012479973894037578 0.10990817503055068 -0.017011214263796797 -0.06818809086448427 0.02817262060174044 -0.013053793110931553 -0.04151489783139608 -0.00014165440027229768 -0.015120800369250814 -0.03641635932934361 0.10990817503055068 -0.017011214263796797 -0.06818809086448427 0.08581846822790866 -0.0014888797219210909 -0.09400093815256702 0.06618522768663124 -0.0023801662734640947 -0.11770049139850132 -0.03302388741051216 -0.014521790031606249 -0.09097703125338977 -0.03883957897981408 -0.016141475198516667 -0.0552915275294536 0.008239893626223578 -0.00644155426569982 -0.0021480664917273365 -0.023662167277103054 -0.01343268854443549 -0.02878254515697435 0.04396748833464474 0.003052804887993312 -0.13222460969783698 0.006151280862142501 -0.00988766466041716 -0.06289285552202016 0.10182121178621426 -0.016271093517878598 -0.06907916080215536 0.013723965146019389 -0.01107073644947504 -0.08976514983925263 -0.018954938367865246 -0.01508009185885994 -0.09198221795029027 0.10182121178621426 -0.016271093517878598 -0.06907916080215536 0.007160770394376769 -0.014792130166935424 -0.06572161998783833 -0.02402190199026055 -0.01665345868531629 -0.060127111469860633 0.10182121178621426 -0.016271093517878598 -0.06907916080215536 0.03303423972633015 -0.006330764697429988 -0.025869818798870382 0.016019831588625067 -0.006392589414229243 -0.01337104383170866 0.10182121178621426 -0.016271093517878598 -0.06907916080215536 0.020085657357404012 -0.012313672365013354 -0.04240596776906716 -0.008228617644608725 -0.014380679623332615 -0.03730742926701469 0.10182121178621426 -0.016271093517878598 -0.06907916080215536 0.07773150498357223 -0.0007487589760028918 -0.0948920080902381 0.0580982644422948 -0.0016400455275458956 -0.11859156133617241 -0.04111085065484859 -0.01378166928568805 -0.09186810119106084 -0.046926542224150505 -0.015401354452598468 -0.05618259746712467 0.00015293038188714941 -0.005701433519781621 -0.0030391364293984174 -0.03174913052143948 -0.01269256779851729 -0.02967361509464543 0.03588052509030831 0.003792925633911511 -0.13311567963550805 0.005704644333517343 -0.00815476882655668 -0.06637143959454773 0.1013745752575891 -0.01453819768401812 -0.07255774487468293 0.013277328617394231 -0.009337840615614561 -0.0932437339117802 -0.019401574896490404 -0.013347196024999461 -0.09546080202281784 0.1013745752575891 -0.01453819768401812 -0.07255774487468293 0.006714133865751612 -0.013059234333074946 -0.06920020406036591 -0.024468538518885707 -0.01492056285145581 -0.06360569554238821 0.1013745752575891 -0.01453819768401812 -0.07255774487468293 0.03258760319770499 -0.004597868863569509 -0.029348402871397956 0.01557319505999991 -0.004659693580368764 -0.016849627904236233 0.1013745752575891 -0.01453819768401812 -0.07255774487468293 0.019639020828778855 -0.010580776531152875 -0.045884551841594734 -0.008675254173233882 -0.012647783789472136 -0.040786013339542265 0.1013745752575891 -0.01453819768401812 -0.07255774487468293 0.07728486845494707 0.000984136857857587 -0.09837059216276567 0.057651627913669644 9.28503063145833e-05 -0.12207014540869998 -0.04155748718347375 -0.01204877345182757 -0.09534668526358842 -0.04737317875277566 -0.01366845861873799 -0.05966118153965225 -0.0002937061467380084 -0.003968537685921142 -0.0065177205019259915 -0.03219576705006464 -0.010959671964656812 -0.033152199167173005 0.035433888561683155 0.00552582146777199 -0.13659426370803562 0.011998257050639437 -0.009002343302352507 -0.06911132479557827 0.10766818797471119 -0.015385772159813946 -0.07529763007571347 0.019570941334516326 -0.010185415091410388 -0.09598361911281075 -0.013107962179368311 -0.014194770500795288 -0.09820068722384838 0.10766818797471119 -0.015385772159813946 -0.07529763007571347 0.013007746582873706 -0.013906808808870772 -0.07194008926139644 -0.018174925801763615 -0.015768137327251637 -0.06634558074341874 0.10766818797471119 -0.015385772159813946 -0.07529763007571347 0.038881215914827086 -0.005445443339365336 -0.03208828807242849 0.021866807777122004 -0.00550726805616459 -0.01958951310526677 0.10766818797471119 -0.015385772159813946 -0.07529763007571347 0.02593263354590095 -0.011428351006948702 -0.04862443704262527 -0.0023816414561117893 -0.013495358265267963 -0.0435258985405728 0.10766818797471119 -0.015385772159813946 -0.07529763007571347 0.08357848117206916 0.0001365623820617605 -0.1011104773637962 0.06394524063079174 -0.0007547241694812433 -0.1248100306097305 -0.03526387446635165 -0.012896347927623397 -0.09808657046461897 -0.04107956603565357 -0.014516033094533816 -0.062401066740682784 0.005999906570384086 -0.004816112161716969 -0.009257605702956528 -0.025902154332942545 -0.011807246440452638 -0.03589208436820354 0.04172750127880525 0.004678246991976163 -0.13933414890906615 0.012722269134795608 -0.010731844851985195 -0.06623245454360545 0.10839220005886736 -0.017115273709446634 -0.07241875982374064 0.020294953418672497 -0.011914916641043076 -0.09310474886083792 -0.01238395009521214 -0.015924272050427977 -0.09532181697187556 0.10839220005886736 -0.017115273709446634 -0.07241875982374064 0.013731758667029878 -0.01563631035850346 -0.06906121900942362 -0.017450913717607444 -0.017497638876884325 -0.06346671049144592 0.10839220005886736 -0.017115273709446634 -0.07241875982374064 0.03960522799898326 -0.007174944888998024 -0.02920941782045567 0.022590819861278175 -0.007236769605797278 -0.016710642853293947 0.10839220005886736 -0.017115273709446634 -0.07241875982374064 0.02665664563005712 -0.01315785255658139 -0.04574556679065245 -0.001657629371955618 -0.01522485981490065 -0.04064702828859998 0.10839220005886736 -0.017115273709446634 -0.07241875982374064 0.08430249325622534 -0.0015929391675709274 -0.09823160711182338 0.06466925271494792 -0.0024842257191139312 -0.1219311603577577 -0.03453986238219548 -0.014625849477256085 -0.09520770021264613 -0.0403555539514974 -0.016245534644166504 -0.05952219648870996 0.006723918654540257 -0.006545613711349657 -0.006378735450983705 -0.025178142248786374 -0.013536747990085326 -0.03301321411623072 0.04245151336296142 0.0029487454423434752 -0.13645527865709334 0.018047816359210114 -0.00909280695599245 -0.07081589342670871 0.11371774728328186 -0.015476235813453889 -0.07700219870684391 0.025620500643087005 -0.010275878745050331 -0.0976881877439412 -0.007058402870797634 -0.014285234154435231 -0.09990525585497882 0.11371774728328186 -0.015476235813453889 -0.07700219870684391 0.019057305891444384 -0.013997272462510715 -0.07364465789252689 -0.012125366493192936 -0.01585860098089158 -0.06805014937454919 0.11371774728328186 -0.015476235813453889 -0.07700219870684391 0.044930775223397765 -0.005535906993005279 -0.033792856703558936 0.02791636708569268 -0.005597731709804534 -0.021294081736397213 0.11371774728328186 -0.015476235813453889 -0.07700219870684391 0.031982192854471625 -0.011518814660588645 -0.050329005673755714 0.003667917852458888 -0.013585821918907906 -0.045230467171703245 0.11371774728328186 -0.015476235813453889 -0.07700219870684391 0.08962804048063984 4.609872842181728e-05 -0.10281504599492665 0.06999479993936242 -0.0008451878231211865 -0.12651459924086095 -0.029214315157780973 -0.01298681158126334 -0.09979113909574941 -0.03503000672708289 -0.014606496748173759 -0.06410563537181323 0.012049465878954762 -0.004906575815356912 -0.010962174334086972 -0.019852595024371866 -0.011897710094092582 -0.037596652999333985 0.04777706058737593 0.00458778333833622 -0.1410387175401966 0.0182370884794554 -0.010546001181222621 -0.06810385122787986 0.11390701940352715 -0.016929430038684058 -0.07429015650801506 0.025809772763332288 -0.011729072970280502 -0.09497614554511233 -0.006869130750552347 -0.015738428379665402 -0.09719321365614997 0.11390701940352715 -0.016929430038684058 -0.07429015650801506 0.01924657801168967 -0.015450466687740886 -0.07093261569369803 -0.01193609437294765 -0.017311795206121753 -0.06533810717572033 0.11390701940352715 -0.016929430038684058 -0.07429015650801506 0.04512004734364305 -0.00698910121823545 -0.031080814504730082 0.02810563920593797 -0.007050925935034705 -0.01858203953756836 0.11390701940352715 -0.016929430038684058 -0.07429015650801506 0.032171464974716915 -0.012972008885818814 -0.04761696347492686 0.0038571899727041746 -0.015039016144138079 -0.04251842497287439 0.11390701940352715 -0.016929430038684058 -0.07429015650801506 0.08981731260088513 -0.0014070954968083537 -0.1001030037960978 0.07018407205960771 -0.0022983820483513575 -0.12380255704203211 -0.029025043037535687 -0.014440005806493511 -0.09707909689692054 -0.034840734606837606 -0.01605969097340393 -0.06139359317298437 0.012238737999200049 -0.006359770040587083 -0.008250132135258118 -0.01966332290412658 -0.013350904319322753 -0.03488461080050513 0.04796633270762121 0.003134589113106049 -0.13832667534136775 0.019338180592086824 -0.01050292882137512 -0.06507045340319376 0.11500811151615857 -0.01688635767883656 -0.07125675868332895 0.02691086487596371 -0.011686000610433001 -0.09194274772042624 -0.005768038637920924 -0.0156953560198179 -0.09415981583146386 0.11500811151615857 -0.01688635767883656 -0.07125675868332895 0.020347670124321093 -0.015407394327893386 -0.06789921786901193 -0.010835002260316227 -0.017268722846274252 -0.06230470935103423 0.11500811151615857 -0.01688635767883656 -0.07125675868332895 0.04622113945627447 -0.006946028858387949 -0.028047416680043978 0.029206731318569393 -0.007007853575187204 -0.015548641712882255 0.11500811151615857 -0.01688635767883656 -0.07125675868332895 0.03327255708734834 -0.012928936525971314 -0.044583565650240756 0.004958282085335598 -0.014995943784290578 -0.03948502714818829 0.11500811151615857 -0.01688635767883656 -0.07125675868332895 0.09091840471351655 -0.001364023136960853 -0.09706960597141169 0.07128516417223912 -0.002255309688503857 -0.12076915921734599 -0.027923950924904264 -0.01439693344664601 -0.09404569907223445 -0.033739642494206176 -0.01601661861355643 -0.05836019534829827 0.013339830111831472 -0.006316697680739582 -0.005216734310572013 -0.018562230791495157 -0.013307831959475252 -0.03185121297581903 0.04906742482025264 0.0031776614729535496 -0.13529327751668163 0.02168022414488922 -0.008008457476812343 -0.07033916385925584 0.11735015506896097 -0.014391886334273782 -0.07652546913939104 0.029252908428766107 -0.009191529265870224 -0.09721145817648832 -0.003425995085118528 -0.013200884675255124 -0.09942852628752595 0.11735015506896097 -0.014391886334273782 -0.07652546913939104 0.02268971367712349 -0.012912922983330608 -0.07316792832507402 -0.00849295870751383 -0.014774251501711473 -0.06757341980709632 0.11735015506896097 -0.014391886334273782 -0.07652546913939104 0.04856318300907687 -0.004451557513825172 -0.033316127136106065 0.03154877487137179 -0.0045133822306244265 -0.020817352168944342 0.11735015506896097 -0.014391886334273782 -0.07652546913939104 0.035614600640150734 -0.010434465181408538 -0.04985227610630284 0.007300325638137994 -0.012501472439727799 -0.044753737604250374 0.11735015506896097 -0.014391886334273782 -0.07652546913939104 0.09326044826631895 0.0011304482076019244 -0.10233831642747378 0.07362720772504153 0.00023916165605892062 -0.12603786967340808 -0.025581907372101868 -0.011902462102083233 -0.09931440952829654 -0.03139759894140379 -0.013522147268993652 -0.06362890580436036 0.015681873664633868 -0.003822226336176805 -0.0104854447666341 -0.01622018723869276 -0.010813360614912474 -0.03711992343188111 0.05140946837305503 0.005672132817516327 -0.14056198797274372 0.021703158218635485 -0.006637569632164974 -0.07167913365900742 0.11737308914270723 -0.013020998489626413 -0.07786543893914262 0.029275842502512375 -0.007820641421222855 -0.09855142797623989 -0.003403061011372263 -0.011829996830607755 -0.10076849608727753 0.11737308914270723 -0.013020998489626413 -0.07786543893914262 0.022712647750869754 -0.01154203513868324 -0.0745078981248256 -0.008470024633767566 -0.013403363657064106 -0.0689133896068479 0.11737308914270723 -0.013020998489626413 -0.07786543893914262 0.048586117082823135 -0.0030806696691778024 -0.034656096935857646 0.03157170894511805 -0.0031424943859770576 -0.022157321968695923 0.11737308914270723 -0.013020998489626413 -0.07786543893914262 0.035637534713896996 -0.009063577336761167 -0.05119224590605442 0.0073232597118842585 -0.011130584595080432 -0.046093707404001955 0.11737308914270723 -0.013020998489626413 -0.07786543893914262 0.09328338234006521 0.0025013360522492933 -0.10367828622722536 0.07365014179878779 0.0016100495007062895 -0.12737783947315967 -0.025558973298355603 -0.010531574257435864 -0.1006543793280481 -0.03137466486765752 -0.012151259424346283 -0.06496887560411194 0.015704807738380133 -0.002451338491529436 -0.01182541456638568 -0.016197253164946496 -0.009442472770265106 -0.038459893231632694 0.0514324024468013 0.007043020662163696 -0.1419019577724953 0.023243454209398502 -0.007372865300306338 -0.0688334651518839 0.11891338513347025 -0.013756294157767777 -0.0750197704320191 0.030816138493275393 -0.008555937089364219 -0.09570575946911639 -0.0018627650206092458 -0.012565292498749119 -0.09792282758015401 0.11891338513347025 -0.013756294157767777 -0.0750197704320191 0.02425294374163277 -0.012277330806824603 -0.07166222961770208 -0.0069297286430045485 -0.014138659325205468 -0.06606772109972438 0.11891338513347025 -0.013756294157767777 -0.0750197704320191 0.050126413073586146 -0.0038159653373191662 -0.031810428428734126 0.03311200493588107 -0.0038777900541184214 -0.019311653461572403 0.11891338513347025 -0.013756294157767777 -0.0750197704320191 0.03717783070466001 -0.009798873004902533 -0.048346577398930904 0.008863555702647276 -0.011865880263221794 -0.043248038896878435 0.11891338513347025 -0.013756294157767777 -0.0750197704320191 0.09482367833082822 0.0017660403841079295 -0.10083261772010184 0.07519043778955081 0.0008747538325649257 -0.12453217096603614 -0.024018677307592586 -0.011266869925577228 -0.0978087108209246 -0.0298343688768945 -0.012886555092487647 -0.06212320709698842 0.01724510372914315 -0.0031866341596708 -0.008979746059262161 -0.014656957174183478 -0.01017776843840647 -0.035614224724509175 0.05297269843756432 0.006307724994022332 -0.13905628926537178 0.021309998663762462 -0.009191445354621564 -0.06877611580924793 0.11697992958783421 -0.015574874212083003 -0.07496242108938313 0.02888268294763935 -0.010374517143679445 -0.0956484101264804 -0.0037962205662452862 -0.014383872553064345 -0.09786547823751804 0.11697992958783421 -0.015574874212083003 -0.07496242108938313 0.02231948819599673 -0.01409591086113983 -0.0716048802750661 -0.008863184188640589 -0.015957239379520694 -0.0660103717570884 0.11697992958783421 -0.015574874212083003 -0.07496242108938313 0.04819295752795011 -0.005634545391634393 -0.03175307908609815 0.03117854939024503 -0.0056963701084336476 -0.01925430411893643 0.11697992958783421 -0.015574874212083003 -0.07496242108938313 0.035244375159023976 -0.011617453059217759 -0.04828922805629493 0.006930100157011235 -0.01368446031753702 -0.04319068955424246 0.11697992958783421 -0.015574874212083003 -0.07496242108938313 0.09289022278519218 -5.253967020729666e-05 -0.10077526837746587 0.07325698224391476 -0.0009438262217503005 -0.12447482162340018 -0.025952132853228626 -0.013085449979892454 -0.09775136147828861 -0.03176782442253054 -0.014705135146802873 -0.062065857754352444 0.01531164818350711 -0.005005214213986026 -0.008922396716626188 -0.01659041271981952 -0.011996348492721695 -0.0355568753818732 0.05103924289192828 0.004489144939707106 -0.13899893992273582 0.02205210905746924 -0.008891415234095854 -0.06738265071756595 0.11772203998154099 -0.015274844091557292 -0.07356895599770115 0.02962479334134613 -0.010074487023153734 -0.09425494503479842 -0.0030541101725385066 -0.014083842432538634 -0.09647201314583606 0.11772203998154099 -0.015274844091557292 -0.07356895599770115 0.02306159858970351 -0.013795880740614119 -0.07021141518338413 -0.00812107379493381 -0.015657209258994984 -0.06461690666540643 0.11772203998154099 -0.015274844091557292 -0.07356895599770115 0.04893506792165689 -0.005334515271108682 -0.030359613994416175 0.03192065978395181 -0.005396339987907937 -0.017860839027254452 0.11772203998154099 -0.015274844091557292 -0.07356895599770115 0.035986485552730756 -0.011317422938692048 -0.04689576296461295 0.007672210550718015 -0.01338443019701131 -0.041797224462560484 0.11772203998154099 -0.015274844091557292 -0.07356895599770115 0.09363233317889896 0.000247490450318414 -0.09938180328578389 0.07399909263762154 -0.0006437961012245898 -0.1230813565317182 -0.025210022459521846 -0.012785419859366744 -0.09635789638660663 -0.031025714028823762 -0.014405105026277162 -0.060672392662670466 0.01605375857721389 -0.004705184093460315 -0.00752893162494421 -0.01584830232611274 -0.011696318372195985 -0.03416341029019122 0.05178135328563506 0.004789175060232817 -0.13760547483105384 -0.03376429428892746 -0.004986038500770553 -0.04363095429177647 0.06190563663514429 -0.011369467358231992 -0.049817259571911666 -0.026191610005050568 -0.006169110289828435 -0.07050324860900894 -0.05887051351893521 -0.010178465699213334 -0.07272031672004658 0.06190563663514429 -0.011369467358231992 -0.049817259571911666 -0.03275480475669319 -0.009890504007288818 -0.046459718757594644 -0.06393747714133051 -0.011751832525669685 -0.04086521023961694 0.06190563663514429 -0.011369467358231992 -0.049817259571911666 -0.006881335424739812 -0.0014291385377833816 -0.006607917568626692 -0.023895743562444893 -0.0014909632545826368 0.005890857398535031 0.06190563663514429 -0.011369467358231992 -0.049817259571911666 -0.019829917793665948 -0.007412046205366747 -0.02314406653882347 -0.048144192795678685 -0.009479053463686011 -0.018045528036771 0.06190563663514429 -0.011369467358231992 -0.049817259571911666 0.03781592983250227 0.004152867183643714 -0.07563010685999441 0.018182689291224845 0.0032615806321007104 -0.09932966010592871 -0.08102642580591854 -0.008880043126041444 -0.07260619996081716 -0.08684211737522046 -0.010499728292951862 -0.03692069623688099 -0.03976264476918281 -0.0007998073601350152 0.016222764800845273 -0.07166470567250943 -0.007790941638870685 -0.01041171386440174 -0.004035050060761644 0.008694551793558117 -0.11385377840526437 -0.03463016505311826 -0.002149674587202896 0.06719206307723881 0.06103976587095349 -0.008533103444664335 0.06100575779710361 -0.027057480769241367 -0.003332746376260777 0.040319768760006335 -0.059736384283126005 -0.007342101785645677 0.0381027006489687 0.06103976587095349 -0.008533103444664335 0.06100575779710361 -0.03362067552088399 -0.0070541400937211615 0.06436329861142064 -0.06480334790552131 -0.008915468612102026 0.06995780712939834 0.06103976587095349 -0.008533103444664335 0.06100575779710361 -0.00774720618893061 0.0014072253757842759 0.1042150998003886 -0.024761614326635692 0.0013454006589850207 0.11671387476755031 0.06103976587095349 -0.008533103444664335 0.06100575779710361 -0.020695788557856747 -0.004575682291799089 0.08767895083019181 -0.049010063559869484 -0.006642689550118352 0.09277748933224428 0.06103976587095349 -0.008533103444664335 0.06100575779710361 0.03695005906831147 0.006989231097211371 0.035192910509020875 0.017316818527034046 0.006097944545668367 0.011493357263086569 -0.08189229657010935 -0.0060436792124737865 0.03821681740819812 -0.08770798813941126 -0.007663364379384205 0.0739023211321343 -0.040628515533373606 0.0020365565534326423 0.12704578216986057 -0.07253057643670024 -0.004954577725303028 0.10041130350461354 -0.004900920824952443 0.011530915707125774 -0.00303076103624908 -0.03126738529566586 -0.0038894721720155105 0.06286560163562081 0.06440254562840589 -0.01027290102947695 0.05667929635548562 -0.02369470101178897 -0.0050725439610733915 0.03599330731838834 -0.05637360452567361 -0.009081899370458292 0.033776239207350706 0.06440254562840589 -0.01027290102947695 0.05667929635548562 -0.030257895763431592 -0.008793937678533776 0.06003683716980264 -0.06144056814806891 -0.010655266196914641 0.06563134568778034 0.06440254562840589 -0.01027290102947695 0.05667929635548562 -0.0043844264314782146 -0.00033257220902833864 0.0998886383587706 -0.021398834569183296 -0.0003943969258275938 0.11238741332593231 0.06440254562840589 -0.01027290102947695 0.05667929635548562 -0.01733300880040435 -0.006315479876611704 0.08335248938857381 -0.04564728380241709 -0.008382487134930967 0.08845102789062628 0.06440254562840589 -0.01027290102947695 0.05667929635548562 0.040312838825763864 0.005249433512398757 0.03086644906740288 0.020679598284486442 0.004358146960855753 0.007166895821468573 -0.07852951681265695 -0.007783476797286401 0.033890355966580125 -0.08434520838195886 -0.00940316196419682 0.0695758596905163 -0.03726573577592121 0.00029675896862002777 0.12271932072824256 -0.06916779667924784 -0.006694375310115642 0.09608484206299554 -0.001538141067500047 0.00979111812231316 -0.007357222477867076 -0.03279306690215924 -0.019989925570458495 0.0632282872208957 0.0628768640219125 -0.026373354427919934 0.0570419819407605 -0.02522038261828235 -0.021172997359516377 0.036355992903663224 -0.05789928613216699 -0.025182352768901274 0.03413892479262559 0.0628768640219125 -0.026373354427919934 0.0570419819407605 -0.03178357736992497 -0.02489439107697676 0.060399522755077525 -0.06296624975456229 -0.026755719595357625 0.06599403127305523 0.0628768640219125 -0.026373354427919934 0.0570419819407605 -0.005910108037971592 -0.016433025607471324 0.10025132394404548 -0.022924516175676674 -0.016494850324270578 0.1127500989112072 0.0628768640219125 -0.026373354427919934 0.0570419819407605 -0.018858690406897728 -0.02241593327505469 0.0837151749738487 -0.047172965408910465 -0.02448294053337395 0.08881371347590117 0.0628768640219125 -0.026373354427919934 0.0570419819407605 0.038787157219270486 -0.010851019886044228 0.031229134652677765 0.019153916677993064 -0.011742306437587231 0.007529581406743459 -0.08005519841915032 -0.023883930195729385 0.03425304155185501 -0.08587088998845224 -0.025503615362639804 0.06993854527579119 -0.03879141738241459 -0.015803694429822955 0.12308200631351744 -0.07069347828574121 -0.022794828708558628 0.09644752764827043 -0.0030638226739934243 -0.006309335276129825 -0.00699453689259219 -0.029057352919989538 -0.014795107480155124 0.06051284104346727 0.06661257800408221 -0.021178536337616564 0.05432653576333207 -0.021484668636112647 -0.015978179269213005 0.033640546726234795 -0.054163572149997286 -0.019987534678597905 0.03142347861519716 0.06661257800408221 -0.021178536337616564 0.05432653576333207 -0.028047863387755268 -0.019699572986673387 0.057684076577649096 -0.05923053577239259 -0.021560901505054256 0.0632785850956268 0.06661257800408221 -0.021178536337616564 0.05432653576333207 -0.0021743940558018905 -0.011238207517167953 0.09753587776661704 -0.019188802193506972 -0.011300032233967208 0.11003465273377877 0.06661257800408221 -0.021178536337616564 0.05432653576333207 -0.015122976424728025 -0.017221115184751317 0.08099972879642027 -0.043437251426740764 -0.01928812244307058 0.08609826729847274 0.06661257800408221 -0.021178536337616564 0.05432653576333207 0.04252287120144019 -0.0056562017957408565 0.028513688475249335 0.022889630660162766 -0.00654748834728386 0.004814135229315029 -0.07631948443698063 -0.018689112105426016 0.03153759537442658 -0.08213517600628253 -0.020308797272336435 0.06722309909836276 -0.035055703400244886 -0.010608876339519586 0.12036656013608901 -0.06695776430357152 -0.017600010618255255 0.093732081470842 0.000671891308176277 -0.0011145171858264538 -0.00970998307002062 -0.03707792297928675 -0.02143641335846199 0.068180496124817 0.058592007944785 -0.02781984221592343 0.0619941908446818 -0.029505238695409858 -0.022619485147519873 0.04130820180758452 -0.062184142209294496 -0.026628840556904773 0.03909113369654689 0.058592007944785 -0.02781984221592343 0.0619941908446818 -0.03606843344705248 -0.026340878864980256 0.06535173165899882 -0.0672511058316898 -0.02820220738336112 0.07094624017697652 0.058592007944785 -0.02781984221592343 0.0619941908446818 -0.010194964115099101 -0.01787951339547482 0.10520353284796677 -0.027209372252804183 -0.017941338112274073 0.1177023078151285 0.058592007944785 -0.02781984221592343 0.0619941908446818 -0.023143546484025238 -0.023862421063058185 0.08866738387777 -0.051457821486037975 -0.025929428321377446 0.09376592237982247 0.058592007944785 -0.02781984221592343 0.0619941908446818 0.03450230114214298 -0.012297507674047723 0.03618134355659906 0.014869060600865555 -0.013188794225590727 0.012481790310664757 -0.08434005449627784 -0.02533041798373288 0.03920525045577631 -0.09015574606557974 -0.0269501031506433 0.07489075417971248 -0.0430762734595421 -0.017250182217826454 0.12803421521743874 -0.07497833436286873 -0.024241316496562124 0.10139973655219173 -0.007348678751120934 -0.00775582306413332 -0.0020423279886708917 -0.04280183412110713 -0.014389264697967759 0.07420675953536124 0.05286809680296462 -0.020772693555429197 0.06802045425522604 -0.03522914983723024 -0.01557233648702564 0.047334465218128764 -0.06790805335111488 -0.01958169189641054 0.04511739710709113 0.05286809680296462 -0.020772693555429197 0.06802045425522604 -0.04179234458887286 -0.019293730204486024 0.07137799506954307 -0.07297501697351018 -0.02115505872286689 0.07697250358752077 0.05286809680296462 -0.020772693555429197 0.06802045425522604 -0.01591887525691948 -0.010832364734980587 0.11122979625851101 -0.03293328339462456 -0.010894189451779841 0.12372857122567274 0.05286809680296462 -0.020772693555429197 0.06802045425522604 -0.028867457625845618 -0.016815272402563954 0.09469364728831424 -0.057181732627858355 -0.018882279660883215 0.09979218579036671 0.05286809680296462 -0.020772693555429197 0.06802045425522604 0.028778390000322597 -0.005250359013553491 0.042207606967143305 0.009145149459045175 -0.006141645565096495 0.018508053721209 -0.09006396563809821 -0.01828326932323865 0.04523151386632055 -0.09587965720740013 -0.019902954490149068 0.08091701759025673 -0.04880018460136248 -0.01020303355733222 0.13406047862798298 -0.0807022455046891 -0.017194167836067892 0.10742599996273597 -0.013072589892941314 -0.0007086744036390886 0.00398393542187335 -0.041314891743748014 -0.018938695949984145 0.07143314763198697 0.054355039180323736 -0.025322124807445584 0.06524684235185177 -0.033742207459871124 -0.020121767739042028 0.04456085331475449 -0.06642111097375576 -0.024131123148426928 0.04234378520371686 0.054355039180323736 -0.025322124807445584 0.06524684235185177 -0.04030540221151375 -0.02384316145650241 0.06860438316616879 -0.07148807459615106 -0.025704489974883275 0.07419889168414649 0.054355039180323736 -0.025322124807445584 0.06524684235185177 -0.014431932879560367 -0.015381795986996974 0.10845618435513674 -0.03144634101726545 -0.015443620703796228 0.12095495932229847 0.054355039180323736 -0.025322124807445584 0.06524684235185177 -0.027380515248486503 -0.02136470365458034 0.09192003538493997 -0.05569479025049924 -0.0234317109128996 0.09701857388699243 0.054355039180323736 -0.025322124807445584 0.06524684235185177 0.03026533237768171 -0.009799790265569878 0.03943399506376903 0.01063209183640429 -0.010691076817112882 0.015734441817834725 -0.0885770232607391 -0.022832700575255035 0.04245790196294628 -0.09439271483004102 -0.024452385742165454 0.07814340568688245 -0.04731324222400336 -0.014752464809348607 0.1312868667246087 -0.07921530312733 -0.02174359908808428 0.1046523880593617 -0.0115856475155822 -0.005258105655655475 0.0012103235184990763 -0.028555002017525425 -0.00882796566274158 0.06036386758864392 0.06711492890654633 -0.01521139452020302 0.054177562308508724 -0.020982317733648538 -0.010011037451799461 0.033491573271411446 -0.05366122124753317 -0.014020392861184361 0.03127450516037381 0.06711492890654633 -0.01521139452020302 0.054177562308508724 -0.027545512485291156 -0.013732431169259846 0.05753510312282575 -0.05872818486992848 -0.01559375968764071 0.06312961164080345 0.06711492890654633 -0.01521139452020302 0.054177562308508724 -0.001672043153337778 -0.005271065699754409 0.0973869043117937 -0.018686451291042856 -0.005332890416553664 0.10988567927895543 0.06711492890654633 -0.01521139452020302 0.054177562308508724 -0.014620625522263913 -0.011253973367337775 0.08085075534159691 -0.04293490052427665 -0.013320980625657036 0.08594929384364938 0.06711492890654633 -0.01521139452020302 0.054177562308508724 0.043025222103904304 0.0003109400216726871 0.028364715020425986 0.02339198156262688 -0.0005803465298703167 0.00466516177449168 -0.07581713353451651 -0.01272197028801247 0.03138862191960323 -0.08163282510381843 -0.01434165545492289 0.0670741256435394 -0.03455335249778078 -0.004641734522106042 0.12021758668126567 -0.0664554134011074 -0.011632868800841712 0.09358310801601866 0.0011742422106403895 0.00485262463158709 -0.009858956524843969 -0.03889849641176135 -0.0027194809446718722 0.07152945705766067 0.0567714345123104 -0.00910290980213331 0.06534315177752548 -0.03132581212788446 -0.0039025527337297533 0.0446571627404282 -0.0640047156417691 -0.007911908143114653 0.042440094629390565 0.0567714345123104 -0.00910290980213331 0.06534315177752548 -0.037889006879527086 -0.007623946451190137 0.0687006925918425 -0.06907167926416441 -0.009485274969571003 0.0742952011098202 0.0567714345123104 -0.00910290980213331 0.06534315177752548 -0.012015537547573705 0.0008374190183152996 0.10855249378081044 -0.029029945685278787 0.0007755943015160444 0.12105126874797217 0.0567714345123104 -0.00910290980213331 0.06534315177752548 -0.02496411991649984 -0.0051454886492680665 0.09201634481061367 -0.05327839491851258 -0.007212495907587329 0.09711488331266614 0.0567714345123104 -0.00910290980213331 0.06534315177752548 0.03268172770966837 0.006419424739742396 0.03953030448944274 0.013048487168390951 0.005528138188199392 0.015830751243508433 -0.08616062792875244 -0.006613485569942762 0.042554211388619985 -0.09197631949805435 -0.00823317073685318 0.07823971511255616 -0.0448968468920167 0.001466750195963666 0.13138317615028242 -0.07679890779534333 -0.005524384082772004 0.1047486974850354 -0.009169252183595537 0.010961109349656798 0.0013066329441727836 -0.04269302196528928 -0.007716204150595239 0.07462579209255214 0.05297690895878247 -0.014099633008056677 0.06843948681241695 -0.035120337681412386 -0.00889927593965312 0.04775349777531967 -0.06779924119529702 -0.012908631349038021 0.045536429664282035 0.05297690895878247 -0.014099633008056677 0.06843948681241695 -0.04168353243305501 -0.012620669657113504 0.07179702762673397 -0.07286620481769232 -0.01448199817549437 0.07739153614471167 0.05297690895878247 -0.014099633008056677 0.06843948681241695 -0.01581006310110163 -0.004159304187608067 0.11164882881570193 -0.03282447123880671 -0.004221128904407323 0.12414760378286364 0.05297690895878247 -0.014099633008056677 0.06843948681241695 -0.028758645470027766 -0.010142211855191433 0.09511267984550514 -0.0570729204720405 -0.012209219113510696 0.10021121834755761 0.05297690895878247 -0.014099633008056677 0.06843948681241695 0.02888720215614045 0.0014227015338190282 0.04262663952433421 0.009253961614863027 0.0005314149822760244 0.018927086278399903 -0.08995515348228036 -0.011610208775866129 0.045650546423511455 -0.09577084505158229 -0.013229893942776547 0.08133605014744763 -0.048691372445544626 -0.003529973009959701 0.13447951118517387 -0.08059343334887126 -0.010521107288695371 0.10784503251992687 -0.012963777737123462 0.005964386143733431 0.004402967979064254 -0.032157808756046055 -0.003386092810402548 0.07551332907444695 0.0635121221680257 -0.009769521667863986 0.06932702379431176 -0.024585124472169165 -0.004569164599460429 0.04864103475721448 -0.0572640279860538 -0.008578520008845328 0.046423966646176845 0.0635121221680257 -0.009769521667863986 0.06932702379431176 -0.031148319223811786 -0.008290558316920812 0.07268456460862878 -0.062330991608449106 -0.010151886835301679 0.07827907312660648 0.0635121221680257 -0.009769521667863986 0.06932702379431176 -0.005274849891858408 0.000170807152584624 0.11253636579759674 -0.02228925802956349 0.00010898243578536882 0.12503514076475847 0.0635121221680257 -0.009769521667863986 0.06932702379431176 -0.018223432260784544 -0.005812100514998742 0.09600021682739995 -0.04653770726279728 -0.007879107773318005 0.10109875532945242 0.0635121221680257 -0.009769521667863986 0.06932702379431176 0.03942241536538367 0.00575281287401172 0.04351417650622902 0.019789174824106248 0.004861526322468716 0.019814623260294713 -0.07941994027303714 -0.0072800974356734376 0.046538083405406265 -0.08523563184233907 -0.008899782602583856 0.08222358712934244 -0.038156159236301404 0.0008001383302329904 0.13536704816706868 -0.07005822013962804 -0.0061909959485026795 0.10873256950182168 -0.0024285645278802406 0.010294497483926123 0.005290504960959064 -0.0359916812439729 -0.00876683181584286 0.07890520159054458 0.05967824968009885 -0.015150260673304298 0.07271889631040938 -0.02841899696009601 -0.00994990360490074 0.052032907273312105 -0.06109790047398065 -0.01395925901428564 0.04981583916227447 0.05967824968009885 -0.015150260673304298 0.07271889631040938 -0.034982191711738636 -0.013671297322361125 0.0760764371247264 -0.06616486409637595 -0.015532625840741991 0.08167094564270411 0.05967824968009885 -0.015150260673304298 0.07271889631040938 -0.009108722379785255 -0.005209931852855688 0.11592823831369437 -0.026123130517490337 -0.005271756569654943 0.1284270132808561 0.05967824968009885 -0.015150260673304298 0.07271889631040938 -0.02205730474871139 -0.011192839520439053 0.09939208934349758 -0.05037157975072413 -0.013259846778758317 0.10449062784555005 0.05967824968009885 -0.015150260673304298 0.07271889631040938 0.03558854287745682 0.00037207386857140805 0.046906049022326646 0.0159553023361794 -0.0005192126829715957 0.02320649577639234 -0.083253812760964 -0.01266083644111375 0.04992995592150389 -0.0890695043302659 -0.014280521608024168 0.08561545964544007 -0.04199003172422825 -0.004580600675207321 0.1387589206831663 -0.07389209262755489 -0.01157173495394299 0.11212444201791931 -0.0062624370158070874 0.004913758478485811 0.00868237747705669 -0.03625297671349628 -0.015600411008747905 0.07933050379824091 0.05941695421057547 -0.021983839866209345 0.07314419851810572 -0.028680292429619392 -0.016783482797805786 0.05245820948100844 -0.06135919594350403 -0.020792838207190686 0.05024114136997081 0.05941695421057547 -0.021983839866209345 0.07314419851810572 -0.035243487181262016 -0.02050487651526617 0.07650173933242274 -0.06642615956589934 -0.022366205033647037 0.08209624785040044 0.05941695421057547 -0.021983839866209345 0.07314419851810572 -0.009370017849308635 -0.012043511045760734 0.11635354052139069 -0.026384425987013717 -0.01210533576255999 0.12885231548855242 0.05941695421057547 -0.021983839866209345 0.07314419851810572 -0.02231860021823477 -0.018026418713344098 0.09981739155119392 -0.05063287522024751 -0.020093425971663362 0.10491593005324638 0.05941695421057547 -0.021983839866209345 0.07314419851810572 0.03532724740793344 -0.006461505324333637 0.04733135123002298 0.01569400686665602 -0.007352791875876641 0.023631797984088675 -0.08351510823048737 -0.019494415634018797 0.05035525812920023 -0.08933079979978928 -0.021114100800929216 0.0860407618531364 -0.04225132719375163 -0.011414179868112367 0.13918422289086266 -0.07415338809707826 -0.018405314146848036 0.11254974422561564 -0.006523732485330468 -0.0019198207144192347 0.009107679684753026 -0.035292966008249695 -0.020859344199713893 0.07561210437162522 0.060376964915822055 -0.027242773057175332 0.06942579909149002 -0.027720281724372804 -0.022042415988771775 0.04873981005439274 -0.06039918523825744 -0.026051771398156676 0.04652274194335511 0.060376964915822055 -0.027242773057175332 0.06942579909149002 -0.03428347647601543 -0.025763809706232158 0.07278333990580704 -0.06546614886065275 -0.027625138224613023 0.07837784842378474 0.060376964915822055 -0.027242773057175332 0.06942579909149002 -0.008410007144062048 -0.01730244423672672 0.11263514109477499 -0.02542441528176713 -0.017364268953525976 0.12513391606193672 0.060376964915822055 -0.027242773057175332 0.06942579909149002 -0.021358589512988184 -0.023285351904310088 0.09609899212457822 -0.04967286451500092 -0.02535235916262935 0.10119753062663069 0.060376964915822055 -0.027242773057175332 0.06942579909149002 0.03628725811318003 -0.011720438515299626 0.04361295180340728 0.01665401757190261 -0.01261172506684263 0.019913398557472976 -0.08255509752524079 -0.024753348824984783 0.04663685870258453 -0.0883707890945427 -0.026373033991895202 0.0823223624265207 -0.041291316488505043 -0.016673113059078357 0.13546582346424696 -0.07319337739183168 -0.023664247337814026 0.10883134479899995 -0.00556372178008388 -0.007178753905385223 0.005389280258137327 -0.03282850397026562 -0.023205929891216 0.07199425929167076 0.06284142695380612 -0.02958935874867744 0.06580795401153557 -0.02525581968638873 -0.024389001680273883 0.04512196497443829 -0.05793472320027337 -0.02839835708965878 0.042904896863400654 0.06284142695380612 -0.02958935874867744 0.06580795401153557 -0.031819014438031354 -0.028110395397734265 0.06916549482585259 -0.06300168682266867 -0.02997172391611513 0.07476000334383029 0.06284142695380612 -0.02958935874867744 0.06580795401153557 -0.005945545106077973 -0.01964902992822883 0.10901729601482055 -0.022959953243783054 -0.019710854645028083 0.12151607098198226 0.06284142695380612 -0.02958935874867744 0.06580795401153557 -0.01889412747500411 -0.025631937595812195 0.09248114704462376 -0.047208402477016846 -0.027698944854131456 0.09757968554667623 0.06284142695380612 -0.02958935874867744 0.06580795401153557 0.038751720151164105 -0.014067024206801733 0.03999510672345283 0.019118479609886684 -0.014958310758344737 0.016295553477518522 -0.0800906354872567 -0.02709993451648689 0.043019013622630074 -0.08590632705655862 -0.02871961968339731 0.07870451734656625 -0.03882685445052097 -0.01901969875058046 0.13184797838429252 -0.0707289153538476 -0.026010833029316133 0.10521349971904549 -0.0030992597420998053 -0.00952533959688733 0.001771435178182873 -0.028524379400003415 -0.0033995841372569374 0.06991444145880576 0.06714555152406834 -0.009783012994718376 0.06372813617867057 -0.020951695116126524 -0.004582655926314819 0.04304214714157329 -0.05363059863001116 -0.008592011335699718 0.04082507903053566 0.06714555152406834 -0.009783012994718376 0.06372813617867057 -0.027514889867769145 -0.008304049643775202 0.06708567699298759 -0.058697562252406466 -0.010165378162156069 0.07268018551096529 0.06714555152406834 -0.009783012994718376 0.06372813617867057 -0.0016414205358157678 0.0001573158257302345 0.10693747818195554 -0.01865582867352085 9.549110893097932e-05 0.11943625314911727 0.06714555152406834 -0.009783012994718376 0.06372813617867057 -0.014590002904741902 -0.005825591841853131 0.09040132921175877 -0.04290427790675464 -0.007892599100172395 0.09549986771381123 0.06714555152406834 -0.009783012994718376 0.06372813617867057 0.04305584472142631 0.00573932154715733 0.03791528889058783 0.02342260418014889 0.004848034995614326 0.014215735644653525 -0.07578651091699451 -0.0072935887625278275 0.04093919578976508 -0.08160220248629642 -0.008913273929438246 0.07662469951370125 -0.034522729880258764 0.0007866470033786009 0.1297681605514275 -0.0664247907835854 -0.006204487275357069 0.1031336818861805 0.0012048648281623997 0.010281006157071733 -0.0003083826546821239 -0.02568996211345956 -0.005538549479075504 0.06550627340640586 0.06997996881061219 -0.011921978336536944 0.05931996812627066 -0.018117277829582674 -0.006721621268133386 0.03863397908917338 -0.050796181343467306 -0.010730976677518284 0.03641691097813575 0.06997996881061219 -0.011921978336536944 0.05931996812627066 -0.024680472581225292 -0.01044301498559377 0.06267750894058768 -0.055863144965862616 -0.012304343503974635 0.06827201745856538 0.06997996881061219 -0.011921978336536944 0.05931996812627066 0.0011929967507280856 -0.0019816495160883325 0.10252931012955563 -0.015821411386976993 -0.0020434742328875877 0.11502808509671736 0.06997996881061219 -0.011921978336536944 0.05931996812627066 -0.011755585618198049 -0.007964557183671698 0.08599316115935886 -0.040069860620210784 -0.010031564441990961 0.09109169966141133 0.06997996881061219 -0.011921978336536944 0.05931996812627066 0.04589026200797017 0.0036003562053387632 0.03350712083818792 0.026257021466692742 0.0027090696537957594 0.009807567592253617 -0.07295209363045065 -0.009432554104346395 0.03653102773736517 -0.07876778519975257 -0.011052239271256814 0.07221653146130134 -0.031688312593714914 -0.001352318338439966 0.1253599924990276 -0.06359037349704154 -0.008343452617175636 0.09872551383378059 0.004039282114706253 0.008142040815253167 -0.004716550707082032 -0.02470293135458173 -0.01125827680869138 0.062403478599514124 0.07096699956949001 -0.01764170566615282 0.05621717331937893 -0.01713024707070484 -0.012441348597749261 0.03553118428228165 -0.04980915058458948 -0.01645070400713416 0.03331411617124402 0.07096699956949001 -0.01764170566615282 0.05621717331937893 -0.02369344182234746 -0.016162742315209644 0.05957471413369595 -0.05487611420698478 -0.018024070833590512 0.06516922265167366 0.07096699956949001 -0.01764170566615282 0.05621717331937893 0.0021800275096059175 -0.007701376845704209 0.0994265153226639 -0.014834380628099162 -0.007763201562503464 0.11192529028982562 0.07096699956949001 -0.01764170566615282 0.05621717331937893 -0.010768554859320217 -0.013684284513287574 0.08289036635246713 -0.039082829861332956 -0.015751291771606838 0.0879889048545196 0.07096699956949001 -0.01764170566615282 0.05621717331937893 0.046877292766847996 -0.002119371124277113 0.03040432603129619 0.027244052225570574 -0.003010657675820117 0.006704772785361884 -0.07196506287157281 -0.01515228143396227 0.03342823293047344 -0.07778075444087473 -0.01677196660087269 0.0691137366544096 -0.030701281834837082 -0.007072045668055842 0.12225719769213586 -0.0626033427381637 -0.014063179946791512 0.09562271902688885 0.005026312873584085 0.0024223134856372897 -0.007819345513973765 -0.020749274592585736 -0.005358083241070253 0.072162370470519 0.07492065633148601 -0.011741512098531692 0.0659760651903838 -0.013176590308708847 -0.006541155030128134 0.04529007615328653 -0.045855493822593484 -0.010550510439513033 0.043073008042248895 0.07492065633148601 -0.011741512098531692 0.0659760651903838 -0.019739785060351466 -0.010262548747588519 0.06933360600470083 -0.050922457444988786 -0.012123877265969384 0.07492811452267853 0.07492065633148601 -0.011741512098531692 0.0659760651903838 0.0061336842716019115 -0.001801183278083081 0.10918540719366879 -0.010880723866103168 -0.001863007994882336 0.1216841821608305 0.07492065633148601 -0.011741512098531692 0.0659760651903838 -0.006814898097324223 -0.007784090945666447 0.092649258223472 -0.03512917309933696 -0.00985109820398571 0.09774779672552447 0.07492065633148601 -0.011741512098531692 0.0659760651903838 0.05083094952884399 0.003780822443344015 0.04016321790230107 0.031197708987566568 0.002889535891801011 0.016463664656366762 -0.06801140610957682 -0.009252087866341144 0.043187124801478315 -0.07382709767887874 -0.010871773033251562 0.07887262852541449 -0.026747625072841088 -0.0011718521004347145 0.13201608956314076 -0.058649685976167716 -0.008162986379170385 0.10538161089789373 0.008979969635580079 0.008322507053258418 0.0019395463570311133 -0.016515099049813835 -0.008067236352225251 0.08120499433276772 0.07915483187425791 -0.01445066520968669 0.07501868905263252 -0.008942414765936947 -0.009250308141283132 0.054332700015535244 -0.04162131827982159 -0.013259663550668032 0.05211563190449761 0.07915483187425791 -0.01445066520968669 0.07501868905263252 -0.015505609517579566 -0.012971701858743516 0.07837622986694955 -0.04668828190221688 -0.01483303037712438 0.08397073838492725 0.07915483187425791 -0.01445066520968669 0.07501868905263252 0.010367859814373812 -0.0045103363892380795 0.1182280310559175 -0.006646548323331268 -0.004572161106037334 0.13072680602307923 0.07915483187425791 -0.01445066520968669 0.07501868905263252 -0.002580722554552323 -0.010493244056821446 0.10169188208572072 -0.030894997556565062 -0.012560251315140707 0.10679042058777319 0.07915483187425791 -0.01445066520968669 0.07501868905263252 0.055065125071615886 0.0010716693321890167 0.049205841764549785 0.035431884530338464 0.00018038278064601287 0.02550628851861548 -0.06377723056680493 -0.011961240977496141 0.05222974866372703 -0.06959292213610684 -0.01358092614440656 0.0879152523876632 -0.022513449530069188 -0.0038810052115897126 0.14105871342538945 -0.05441551043339582 -0.010872139490325382 0.11442423476014245 0.013214145178351979 0.005613353942103419 0.01098217021927983 -0.012044230657206612 -0.023269523618477807 0.09184054859898844 0.08362570026686514 -0.029652952475939246 0.08565424331885324 -0.004471546373329723 -0.02445259540753569 0.06496825428175595 -0.03715044988721436 -0.028461950816920586 0.06275118617071833 0.08362570026686514 -0.029652952475939246 0.08565424331885324 -0.011034741124972342 -0.028173989124996072 0.08901178413317026 -0.04221741350960966 -0.030035317643376937 0.09460629265114796 0.08362570026686514 -0.029652952475939246 0.08565424331885324 0.014838728206981035 -0.019712623655490636 0.1288635853221382 -0.0021756799307240445 -0.01977444837228989 0.14136236028929994 0.08362570026686514 -0.029652952475939246 0.08565424331885324 0.0018901458380549008 -0.025695531323074002 0.11232743635194144 -0.026424129163957838 -0.027762538581393263 0.1174259748539939 0.08362570026686514 -0.029652952475939246 0.08565424331885324 0.059535993464223114 -0.01413061793406354 0.0598413960307705 0.03990275292294569 -0.015021904485606544 0.036141842784836196 -0.0593063621741977 -0.027163528243748698 0.06286530292994774 -0.06512205374349961 -0.028783213410659116 0.09855080665388392 -0.018042581137461964 -0.019083292477842267 0.15169426769161018 -0.04994464204078859 -0.02607442675657794 0.12505978902636317 0.017685013570959203 -0.009588933324149137 0.021617724485500547 -0.017738153214799286 -0.022816311666439413 0.08813716655990522 0.07793177770927247 -0.02919974052390085 0.08195086127977003 -0.010165468930922397 -0.023999383455497295 0.06126487224267275 -0.04284437244480703 -0.028008738864882192 0.059047804131635115 0.07793177770927247 -0.02919974052390085 0.08195086127977003 -0.016728663682565016 -0.027720777172957678 0.08530840209408705 -0.04791133606720234 -0.029582105691338543 0.09090291061206475 0.07793177770927247 -0.02919974052390085 0.08195086127977003 0.009144805649388361 -0.01925941170345224 0.125160203283055 -0.007869602488316719 -0.019321236420251495 0.13765897825021672 0.07793177770927247 -0.02919974052390085 0.08195086127977003 -0.003803776719537773 -0.025242319371035608 0.10862405431285822 -0.03211805172155051 -0.02730932662935487 0.11372259281491069 0.07793177770927247 -0.02919974052390085 0.08195086127977003 0.05384207090663044 -0.013677405982025145 0.05613801399168729 0.03420883036535302 -0.01456869253356815 0.03243846074575298 -0.06500028473179037 -0.026710316291710303 0.059161920890864535 -0.07081597630109229 -0.028330001458620722 0.09484742461480071 -0.023736503695054638 -0.018630080525803873 0.14799088565252697 -0.05563856459838126 -0.025621214804539546 0.12135640698727995 0.011991091013366529 -0.009135721372110743 0.017914342446417333 -0.016871522794387965 -0.020084352581227167 0.0890564357822846 0.07879840812968378 -0.026467781438688606 0.0828701305021494 -0.009298838510511076 -0.02126742437028505 0.06218414146505213 -0.04197774202439571 -0.025276779779669946 0.059967073354014494 0.07879840812968378 -0.026467781438688606 0.0828701305021494 -0.015862033262153696 -0.024988818087745432 0.08622767131646643 -0.047044705646791016 -0.026850146606126297 0.09182217983444413 0.07879840812968378 -0.026467781438688606 0.0828701305021494 0.010011436069799682 -0.016527452618239995 0.1260794725054344 -0.007002972067905398 -0.01658927733503925 0.13857824747259612 0.07879840812968378 -0.026467781438688606 0.0828701305021494 -0.0029371462991264526 -0.02251036028582336 0.1095433235352376 -0.03125142130113919 -0.024577367544142623 0.11464186203729007 0.07879840812968378 -0.026467781438688606 0.0828701305021494 0.05470870132704176 -0.0109454468968129 0.05705728321406667 0.03507546078576434 -0.011836733448355903 0.03335772996813236 -0.06413365431137905 -0.023978357206498057 0.060081190113243914 -0.06994934588068097 -0.025598042373408476 0.09576669383718009 -0.022869873274643317 -0.015898121440591627 0.14891015487490633 -0.054771934177969946 -0.0228892557193273 0.12227567620965933 0.01285772143377785 -0.006403762286898497 0.018833611668796713 -0.012151090156987733 -0.020660693748851898 0.09285752018857836 0.08351884076708402 -0.027044122606313337 0.08667121490844316 -0.004578405873110845 -0.02184376553790978 0.06598522587134589 -0.03725730938699548 -0.02585312094729468 0.06376815776030825 0.08351884076708402 -0.027044122606313337 0.08667121490844316 -0.011141600624753464 -0.025565159255370163 0.09002875572276019 -0.04232427300939078 -0.027426487773751028 0.09562326424073789 0.08351884076708402 -0.027044122606313337 0.08667121490844316 0.014731868707199914 -0.017103793785864727 0.12988055691172815 -0.0022825394305051663 -0.01716561850266398 0.14237933187888985 0.08351884076708402 -0.027044122606313337 0.08667121490844316 0.001783286338273779 -0.023086701453448093 0.11334440794153136 -0.026530988663738958 -0.025153708711767354 0.11844294644358383 0.08351884076708402 -0.027044122606313337 0.08667121490844316 0.059429133964441994 -0.01152178806443763 0.060858367620360426 0.03979589342316457 -0.012413074615980634 0.03715881437442612 -0.05941322167397882 -0.024554698374122788 0.06388227451953768 -0.06522891324328074 -0.026174383541033207 0.09956777824347385 -0.018149440637243084 -0.01647446260821636 0.15271123928120012 -0.05005150154056971 -0.02346559688695203 0.12607676061595308 0.017578154071178083 -0.006980103454523228 0.02263469607509047 -0.021877586824985598 -0.019671633976570124 0.0863774526521348 0.07379234409908615 -0.026055062834031563 0.0801911473719996 -0.01430490254110871 -0.020854705765628007 0.059505158334902324 -0.046983806054993346 -0.024864061175012907 0.05728809022386469 0.07379234409908615 -0.026055062834031563 0.0801911473719996 -0.02086809729275133 -0.02457609948308839 0.08354868818631662 -0.05205076967738865 -0.026437428001469254 0.08914319670429433 0.07379234409908615 -0.026055062834031563 0.0801911473719996 0.005005372039202049 -0.016114734013582953 0.12340048937528458 -0.012009036098503031 -0.016176558730382207 0.1358992643424463 0.07379234409908615 -0.026055062834031563 0.0801911473719996 -0.007943210329724086 -0.02209764168116632 0.1068643404050878 -0.036257485331736825 -0.02416464893948558 0.11196287890714027 0.07379234409908615 -0.026055062834031563 0.0801911473719996 0.04970263729644413 -0.010532728292155857 0.054378300083916864 0.030069396755166705 -0.01142401484369886 0.030678746837982558 -0.06913971834197669 -0.023565638601841014 0.05740220698309411 -0.07495540991127861 -0.025185323768751433 0.09308771070703029 -0.02787593730524095 -0.015485402835934586 0.14623117174475653 -0.05977799820856758 -0.022476537114670257 0.11959669307950953 0.007851657403180216 -0.005991043682241454 0.01615462853864691 -0.01988256790445267 -0.018199832731382242 0.08692773984294141 0.07578736301961908 -0.02458326158884368 0.08074143456280622 -0.01230988362057578 -0.019382904520440124 0.06005544552570894 -0.04498878713446042 -0.02339225992982502 0.05783837741467131 0.07578736301961908 -0.02458326158884368 0.08074143456280622 -0.0188730783722184 -0.023104298237900507 0.08409897537712324 -0.05005575075685572 -0.024965626756281372 0.08969348389510094 0.07578736301961908 -0.02458326158884368 0.08074143456280622 0.007000390959734978 -0.01464293276839507 0.12395077656609119 -0.010014017177970102 -0.014704757485194325 0.13644955153325292 0.07578736301961908 -0.02458326158884368 0.08074143456280622 -0.005948191409191157 -0.020625840435978437 0.10741462759589442 -0.034262466411203896 -0.022692847694297698 0.11251316609794688 0.07578736301961908 -0.02458326158884368 0.08074143456280622 0.051697656216977056 -0.009060927046967975 0.05492858727472348 0.032064415675699634 -0.009952213598510978 0.031229034028789175 -0.06714469942144376 -0.022093837356653132 0.05795249417390073 -0.07296039099074567 -0.02371352252356355 0.0936379978978369 -0.02588091838470802 -0.014013601590746704 0.14678145893556316 -0.05778297928803465 -0.021004735869482375 0.12014698027031614 0.009846676323713145 -0.004519242437053572 0.016704915729453526 -0.01914832241751927 -0.013223126679908938 0.08525034902217622 0.07652160850655249 -0.019606555537370375 0.07906404374204103 -0.011575638133642383 -0.014406198468966819 0.05837805470494375 -0.04425454164752702 -0.01841555387835172 0.056160986593906115 0.07652160850655249 -0.019606555537370375 0.07906404374204103 -0.018138832885285002 -0.018127592186427205 0.08242158455635805 -0.04932150526992232 -0.01998892070480807 0.08801609307433575 0.07652160850655249 -0.019606555537370375 0.07906404374204103 0.0077346364466683755 -0.009666226716921767 0.12227338574532601 -0.009279771691036704 -0.009728051433721022 0.1347721607124877 0.07652160850655249 -0.019606555537370375 0.07906404374204103 -0.005213945922257759 -0.01564913438450513 0.10573723677512922 -0.0335282209242705 -0.017716141642824396 0.11083577527718169 0.07652160850655249 -0.019606555537370375 0.07906404374204103 0.052431901703910454 -0.004084220995494671 0.05325119645395829 0.03279866116263303 -0.004975507547037674 0.029551643208023982 -0.06641045393451037 -0.017117131305179827 0.056275103353135535 -0.07222614550381228 -0.018736816472090245 0.09196060707707171 -0.025146672897774624 -0.0090368955392734 0.14510406811479798 -0.05704873380110125 -0.01602802981800907 0.11846958944955095 0.010580921810646543 0.0004574636144197321 0.015027524908688333 -0.014879841187219925 -0.013862740246053084 0.08858949486699982 0.08079008973685183 -0.020246169103514525 0.08240318958686463 -0.007307156903343036 -0.015045812035110965 0.06171720054976735 -0.03998606041722767 -0.019055167444495865 0.059500132438729716 0.08079008973685183 -0.020246169103514525 0.08240318958686463 -0.013870351654985656 -0.018767205752571348 0.08576073040118165 -0.045053024039622976 -0.020628534270952216 0.09135523891915935 0.08079008973685183 -0.020246169103514525 0.08240318958686463 0.012003117676967722 -0.010305840283065913 0.1256125315901496 -0.005011290460737358 -0.010367664999865168 0.13811130655731133 0.08079008973685183 -0.020246169103514525 0.08240318958686463 -0.0009454646919584125 -0.016288747950649277 0.10907638261995282 -0.02925973969397115 -0.018355755208968542 0.1141749211220053 0.08079008973685183 -0.020246169103514525 0.08240318958686463 0.0567003829342098 -0.004723834561638817 0.05659034229878189 0.03706714239293238 -0.0056151211131818205 0.032890789052847584 -0.06214197270421101 -0.017756744871323976 0.059614249197959136 -0.06795766427351294 -0.019376430038234395 0.09529975292189531 -0.020878191667475277 -0.009676509105417546 0.14844321395962157 -0.052780252570801905 -0.016667643384153216 0.12180873529437455 0.01484940304094589 -0.00018214995172441406 0.018366670753511935 -0.015721708638505787 -0.009917079466171257 0.08313678936845695 0.07994822228556596 -0.016300508323632695 0.07695048408832175 -0.008149024354628899 -0.011100151255229137 0.056264495051224474 -0.04082792786851354 -0.015109506664614037 0.05404742694018684 0.07994822228556596 -0.016300508323632695 0.07695048408832175 -0.014712219106271518 -0.014821544972689522 0.08030802490263877 -0.045894891490908835 -0.016682873491070387 0.08590253342061648 0.07994822228556596 -0.016300508323632695 0.07695048408832175 0.01116125022568186 -0.006360179503184085 0.12015982609160672 -0.00585315791202322 -0.00642200421998334 0.13265860105876845 0.07994822228556596 -0.016300508323632695 0.07695048408832175 -0.001787332143244275 -0.012343087170767451 0.10362367712140995 -0.030101607145257014 -0.014410094429086712 0.10872221562346242 0.07994822228556596 -0.016300508323632695 0.07695048408832175 0.055858515482923934 -0.0007781737817569891 0.051137636800239014 0.03622527494164651 -0.0016694603332999929 0.02743808355430471 -0.06298384015549688 -0.013811084091442147 0.05416154369941626 -0.06879953172479879 -0.015430769258352565 0.08984704742335244 -0.02172005911876114 -0.005730848325535718 0.1429905084610787 -0.05362212002208777 -0.012721982604271388 0.11635602979583168 0.014007535589660027 0.0037635108281574136 0.01291396525496906 -0.011912416807052208 -0.010181726029915128 0.08435682282575208 0.08375751411701954 -0.016565154887376567 0.07817051754561688 -0.00433973252317532 -0.011364797818973009 0.0574845285085196 -0.03701863603705996 -0.015374153228357909 0.05526746039748197 0.08375751411701954 -0.016565154887376567 0.07817051754561688 -0.010902927274817939 -0.015086191536433393 0.0815280583599339 -0.042085599659455256 -0.016947520054814258 0.0871225668779116 0.08375751411701954 -0.016565154887376567 0.07817051754561688 0.014970542057135439 -0.0066248260669279566 0.12137985954890185 -0.0020438660805696413 -0.006686650783727211 0.13387863451606358 0.08375751411701954 -0.016565154887376567 0.07817051754561688 0.002021959688209304 -0.012607733734511323 0.10484371057870508 -0.026292315313803435 -0.014674740992830584 0.10994224908075755 0.08375751411701954 -0.016565154887376567 0.07817051754561688 0.05966780731437751 -0.0010428203455008604 0.05235767025753414 0.04003456677310009 -0.0019341068970438642 0.028658117011599836 -0.0591745483240433 -0.014075730655186018 0.05538157715671139 -0.06499023989334521 -0.015695415822096437 0.09106708088064756 -0.01791076728730756 -0.00599549488927959 0.14421054191837382 -0.04981282819063419 -0.01298662916801526 0.1175760632531268 0.017816827421113606 0.0034988642644135422 0.014133998712264187 -0.01048061455004575 -0.014341381272322594 0.09186073870398156 0.085189316374026 -0.020724810129784034 0.08567443342384637 -0.002907930266168861 -0.015524453061380474 0.06498844438674908 -0.0355868337800535 -0.019533808470765374 0.06277137627571146 0.085189316374026 -0.020724810129784034 0.08567443342384637 -0.00947112501781148 -0.019245846778840857 0.08903197423816339 -0.0406537974024488 -0.021107175297221725 0.09462648275614109 0.085189316374026 -0.020724810129784034 0.08567443342384637 0.0164023443141419 -0.010784481309335422 0.12888377542713134 -0.0006120638235631824 -0.010846306026134678 0.14138255039429307 0.085189316374026 -0.020724810129784034 0.08567443342384637 0.003453761945215763 -0.016767388976918787 0.11234762645693457 -0.024860513056796978 -0.01883439623523805 0.11744616495898703 0.085189316374026 -0.020724810129784034 0.08567443342384637 0.061099609571383974 -0.005202475587908326 0.05986158613576363 0.04146636903010655 -0.00609376213945133 0.036162032889829325 -0.05774274606703684 -0.018235385897593485 0.06288549303494087 -0.06355843763633875 -0.019855071064503904 0.09857099675887705 -0.0164789650303011 -0.010155150131687055 0.1517144577966033 -0.04838102593362773 -0.017146284410422725 0.1250799791313563 0.019248629678120063 -0.0006607909779939233 0.021637914590493676 -0.009153851007847437 -0.01907199078993394 0.09510610537372319 0.08651607991622431 -0.02545541964739538 0.08891980009358799 -0.0015811667239705486 -0.020255062578991824 0.0682338110564907 -0.034260070237855184 -0.024264417988376724 0.06601674294545308 0.08651607991622431 -0.02545541964739538 0.08891980009358799 -0.008144361475613168 -0.023976456296452207 0.09227734090790501 -0.039327033860250486 -0.02583778481483307 0.09787184942588271 0.08651607991622431 -0.02545541964739538 0.08891980009358799 0.017729107856340208 -0.01551509082694677 0.13212914209687296 0.0007146997186351298 -0.015576915543746024 0.1446279170640347 0.08651607991622431 -0.02545541964739538 0.08891980009358799 0.004780525487414075 -0.021497998494530136 0.11559299312667619 -0.023533749514598662 -0.023565005752849397 0.12069153162872866 0.08651607991622431 -0.02545541964739538 0.08891980009358799 0.06242637311358229 -0.009933085105519674 0.06310695280550525 0.04279313257230487 -0.010824371657062678 0.03940739955957095 -0.05641598252483852 -0.022965995415204832 0.0661308597046825 -0.06223167409414044 -0.02458568058211525 0.10181636342861868 -0.015152201488102788 -0.014885759649298403 0.15495982446634493 -0.047054262391429416 -0.021876893928034075 0.12832534580109792 0.02057539322031838 -0.005391400495605271 0.0248832812602353 -0.006525925912813618 -0.015116748932324021 0.09438188384811878 0.08914400501125813 -0.02150017778978546 0.08819557856798359 0.0010467583710632705 -0.0162998207213819 0.06750958953088632 -0.031632145142821366 -0.020309176130766802 0.06529252141984868 0.08914400501125813 -0.02150017778978546 0.08819557856798359 -0.005516436380579349 -0.020021214438842284 0.09155311938230061 -0.03669910876521667 -0.021882542957223153 0.09714762790027831 0.08914400501125813 -0.02150017778978546 0.08819557856798359 0.02035703295137403 -0.01155984896933685 0.13140492057126857 0.003342624813668949 -0.011621673686136105 0.1439036955384303 0.08914400501125813 -0.02150017778978546 0.08819557856798359 0.007408450582447894 -0.017542756636920214 0.11486877160107178 -0.020905824419564845 -0.01960976389523948 0.11996731010312425 0.08914400501125813 -0.02150017778978546 0.08819557856798359 0.06505429820861611 -0.0059778432479097535 0.06238273127990085 0.045421057667338685 -0.006869129799452757 0.038683178033966543 -0.053788057429804706 -0.019010753557594913 0.0654066381790781 -0.05960374899910662 -0.02063043872450533 0.10109214190301427 -0.01252427639306897 -0.010930517791688483 0.1542356029407405 -0.0444263372963956 -0.017921652070424152 0.12760112427549353 0.023203318315352196 -0.0014361586379953509 0.024159059734630894 -0.007265636470010012 -0.02169752125124146 0.09406905054399613 0.08840429445406174 -0.028080950108702898 0.08788274526386093 0.00030704781386687707 -0.02288059304029934 0.06719675622676366 -0.03237185570001776 -0.026889948449684238 0.06497968811572602 0.08840429445406174 -0.028080950108702898 0.08788274526386093 -0.006256146937775743 -0.026601986757759724 0.09124028607817795 -0.03743881932241306 -0.02846331527614059 0.09683479459615565 0.08840429445406174 -0.028080950108702898 0.08788274526386093 0.019617322394177635 -0.018140621288254288 0.1310920872671459 0.0026029142564725554 -0.01820244600505354 0.14359086223430761 0.08840429445406174 -0.028080950108702898 0.08788274526386093 0.006668740025251501 -0.024123528955837654 0.11455593829694913 -0.02164553497676124 -0.026190536214156915 0.1196544767990016 0.08840429445406174 -0.028080950108702898 0.08788274526386093 0.06431458765141972 -0.012558615566827191 0.06206989797577819 0.044681347110142294 -0.013449902118370195 0.03837034472984389 -0.0545277679870011 -0.02559152587651235 0.06509380487495545 -0.06034345955630301 -0.027211211043422768 0.10077930859889161 -0.013263986950265363 -0.01751129011060592 0.15392276963661788 -0.04516604785359199 -0.024502424389341592 0.12728829097137084 0.022463607758155802 -0.008016930956912789 0.02384622643050824 -0.020726241575500973 -0.012045187886721286 0.08587734156953379 0.07494368934857078 -0.018428616744182724 0.0796910362893986 -0.013153557291624084 -0.013228259675779166 0.05900504725230132 -0.04583246080550872 -0.017237615085164068 0.056787979141263684 0.07494368934857078 -0.018428616744182724 0.0796910362893986 -0.019716752043266703 -0.01694965339323955 0.08304857710371562 -0.05089942442790402 -0.018810981911620415 0.08864308562169332 0.07494368934857078 -0.018428616744182724 0.0796910362893986 0.006156717288686674 -0.008488287923734114 0.12290037829268358 -0.010857690849018406 -0.008550112640533368 0.1353991532598453 0.07494368934857078 -0.018428616744182724 0.0796910362893986 -0.00679186508023946 -0.01447119559131748 0.10636422932248679 -0.0351061400822522 -0.01653820284963674 0.11146276782453926 0.07494368934857078 -0.018428616744182724 0.0796910362893986 0.05085398254592875 -0.002906282202307018 0.05387818900131586 0.03122074200465133 -0.0037975687538500218 0.03017863575538155 -0.06798837309249206 -0.015939192511992176 0.0569020959004931 -0.07380406466179398 -0.017558877678902594 0.09258759962442928 -0.026724592055756325 -0.007858956746085747 0.14573106066215552 -0.05862665295908295 -0.014850091024821417 0.11909658199690852 0.009003002652664842 0.0016354024076073847 0.015654517456045902 -0.026606114757688225 -0.023076486748552418 0.08167476356800372 0.06906381616638352 -0.029459915606013857 0.07548845828786853 -0.019033430473811334 -0.0242595585376103 0.05480246925077125 -0.05171233398769597 -0.028268913946995197 0.05258540113973362 0.06906381616638352 -0.029459915606013857 0.07548845828786853 -0.025596625225453955 -0.027980952255070683 0.07884599910218555 -0.056779297610091276 -0.029842280773451548 0.08444050762016325 0.06906381616638352 -0.029459915606013857 0.07548845828786853 0.0002768441064994222 -0.019519586785565247 0.11869780029115351 -0.01673756403120566 -0.0195814115023645 0.13119657525831524 0.06906381616638352 -0.029459915606013857 0.07548845828786853 -0.012671738262426712 -0.025502494453148613 0.10216165132095673 -0.04098601326443945 -0.027569501711467874 0.1072601898230092 0.06906381616638352 -0.029459915606013857 0.07548845828786853 0.0449741093637415 -0.01393758106413815 0.04967561099978579 0.02534086882246408 -0.014828867615681154 0.025976057753851485 -0.0738682462746793 -0.02697049137382331 0.05269951789896304 -0.07968393784398123 -0.028590176540733727 0.08838502162289921 -0.032604465237943574 -0.018890255607916878 0.14152848266062545 -0.0645065261412702 -0.02588138988665255 0.11489400399537845 0.0031231294704775897 -0.009395896454223748 0.011451939454515836 -0.018681849717477883 -0.025302491163870948 0.08515071333732208 0.07698808120659387 -0.03168592002133239 0.07896440805718688 -0.011109165433600994 -0.02648556295292883 0.0582784190200896 -0.04378806894748563 -0.03049491836231373 0.05606135090905197 0.07698808120659387 -0.03168592002133239 0.07896440805718688 -0.017672360185243614 -0.030206956670389213 0.0823219488715039 -0.048855032569880934 -0.03206828518877008 0.0879164573894816 0.07698808120659387 -0.03168592002133239 0.07896440805718688 0.008201109146709764 -0.021745591200883777 0.12217375006047185 -0.008813298990995316 -0.02180741591768303 0.13467252502763358 0.07698808120659387 -0.03168592002133239 0.07896440805718688 -0.004747473222216371 -0.027728498868467143 0.10563760109027508 -0.03306174822422911 -0.029795506126786404 0.11073613959232755 0.07698808120659387 -0.03168592002133239 0.07896440805718688 0.05289837440395184 -0.01616358547945668 0.05315156076910414 0.03326513386267442 -0.017054872030999684 0.029452007523169836 -0.06594398123446897 -0.029196495789141838 0.05617546766828139 -0.07175967280377088 -0.030816180956052257 0.09186097139221756 -0.024680200197733235 -0.02111626002323541 0.14500443242994382 -0.056582261101059864 -0.02810739430197108 0.1183699537646968 0.011047394510687931 -0.011621900869542278 0.014927889223834187 -0.011405461341234395 -0.02556743913881925 0.08866899900123203 0.08426446958283736 -0.03195086799628069 0.08248269372109683 -0.0038327770573575067 -0.02675051092787713 0.06179670468399955 -0.03651168057124214 -0.030759866337262028 0.05957963657296192 0.08426446958283736 -0.03195086799628069 0.08248269372109683 -0.010395971809000126 -0.030471904645337514 0.08584023453541385 -0.041578644193637444 -0.03233323316371838 0.09143474305339155 0.08426446958283736 -0.03195086799628069 0.08248269372109683 0.015477497522953252 -0.022010539175832077 0.1256920357243818 -0.0015369106147518283 -0.02207236389263133 0.13819081069154354 0.08426446958283736 -0.03195086799628069 0.08248269372109683 0.002528915154027117 -0.027993446843415443 0.10915588675418503 -0.02578535984798562 -0.030060454101734704 0.1142544252562375 0.08426446958283736 -0.03195086799628069 0.08248269372109683 0.06017476278019533 -0.01642853345440498 0.05666984643301409 0.04054152223891791 -0.017319820005947985 0.03297029318707979 -0.05866759285822548 -0.02946144376409014 0.05969375333219134 -0.0644832844275274 -0.031081128931000557 0.09537925705612751 -0.017403811821489746 -0.02138120799818371 0.14852271809385376 -0.049305872724816374 -0.02837234227691938 0.12188823942860676 0.01832378288693142 -0.011886848844490578 0.018446174887744138 -0.005953598284520292 -0.023251282187322395 0.09135446011954519 0.08971633263955146 -0.029634711044783834 0.08516815483941 0.0016190859993565968 -0.024434353976380278 0.06448216580231272 -0.03105981751452804 -0.028443709385765174 0.062265097691275084 0.08971633263955146 -0.029634711044783834 0.08516815483941 -0.0049441087522860225 -0.02815574769384066 0.08852569565372702 -0.036126781136923344 -0.030017076212221525 0.09412020417170472 0.08971633263955146 -0.029634711044783834 0.08516815483941 0.020929360579667357 -0.019694382224335224 0.12837749684269498 0.003914952441962275 -0.019756206941134478 0.14087627180985668 0.08971633263955146 -0.029634711044783834 0.08516815483941 0.00798077821074122 -0.02567728989191859 0.11184134787249819 -0.02033349679127152 -0.02774429715023785 0.11693988637455066 0.08971633263955146 -0.029634711044783834 0.08516815483941 0.06562662583690944 -0.014112376502908128 0.05935530755132726 0.04599338529563201 -0.015003663054451132 0.03565575430539295 -0.05321572980151138 -0.027145286812593285 0.062379214450504504 -0.0590314213708133 -0.028764971979503704 0.09806471817444068 -0.011951948764775643 -0.019065051046686855 0.15120817921216695 -0.043854009668102274 -0.02605618532542253 0.12457370054691992 0.02377564594364552 -0.009570691892993725 0.021131636006057303 -0.01760988925407024 -0.026739815385629154 0.08073984375797591 0.07806004167000151 -0.03312324424309059 0.07455353847784071 -0.010037204970193352 -0.027922887174687036 0.053867549440743435 -0.04271610848407799 -0.031932242584071936 0.0516504813297058 0.07806004167000151 -0.03312324424309059 0.07455353847784071 -0.01660039972183597 -0.03164428089214742 0.07791107929215774 -0.04778307210647329 -0.033505609410528284 0.08350558781013544 0.07806004167000151 -0.03312324424309059 0.07455353847784071 0.009273069610117406 -0.023182915422641982 0.11776288048112568 -0.007741338527587674 -0.023244740139441236 0.1302616554482874 0.07806004167000151 -0.03312324424309059 0.07455353847784071 -0.0036755127588087282 -0.02916582309022535 0.10122673151092891 -0.03198978776082147 -0.03123283034854461 0.10632527001298138 0.07806004167000151 -0.03312324424309059 0.07455353847784071 0.053970334867359485 -0.017600909701214886 0.048740691189757976 0.03433709432608206 -0.01849219625275789 0.02504113794382367 -0.06487202077106133 -0.030633820010900044 0.05176459808893522 -0.07068771234036325 -0.03225350517781046 0.0874501018128714 -0.023608239734325593 -0.022553584244993617 0.14059356285059765 -0.05551030063765222 -0.029544718523729287 0.11395908418535064 0.012119354974095574 -0.013059225091300483 0.010517019644488021 -0.010708163534803831 -0.02583454378085064 0.08405133779646452 0.08496176738926792 -0.03221797263831208 0.07786503251632933 -0.0031354792509269425 -0.02701761556990852 0.05717904347923205 -0.03581438276481158 -0.031026970979293418 0.054961975368194416 0.08496176738926792 -0.03221797263831208 0.07786503251632933 -0.009698674002569562 -0.030739009287368904 0.08122257333064635 -0.040881346387206884 -0.03260033780574977 0.08681708184862405 0.08496176738926792 -0.03221797263831208 0.07786503251632933 0.016174795329383818 -0.022277643817863468 0.12107437451961431 -0.0008396128083212641 -0.02233946853466272 0.133573149486776 0.08496176738926792 -0.03221797263831208 0.07786503251632933 0.0032262129604576813 -0.028260551485446834 0.10453822554941752 -0.02508806204155506 -0.030327558743766095 0.10963676405146999 0.08496176738926792 -0.03221797263831208 0.07786503251632933 0.06087206058662589 -0.01669563809643637 0.05205218522824659 0.04123882004534847 -0.017586924647979375 0.028352631982312283 -0.05797029505179492 -0.02972854840612153 0.055076092127423835 -0.06378598662109683 -0.031348233573031944 0.09076159585136001 -0.016706514015059182 -0.0216483126402151 0.14390505688908628 -0.04860857491838581 -0.028639446918950772 0.11727057822383925 0.01902108069336198 -0.012153953486521969 0.013828513682976634 -0.005724121524044334 -0.02317630593537198 0.08604526471233433 0.08994580940002742 -0.029559734792833418 0.07985895943219913 0.0018485627598325543 -0.02435937772442986 0.05917297039510185 -0.030830340754052082 -0.028368733133814758 0.05695590228406422 0.08994580940002742 -0.029559734792833418 0.07985895943219913 -0.004714631991810065 -0.028080771441890244 0.08321650024651615 -0.035897304376447385 -0.02994209996027111 0.08881100876449385 0.08994580940002742 -0.029559734792833418 0.07985895943219913 0.021158837340143313 -0.019619405972384808 0.12306830143548411 0.004144429202438233 -0.01968123068918406 0.13556707640264581 0.08994580940002742 -0.029559734792833418 0.07985895943219913 0.008210254971217178 -0.025602313639968174 0.10653215246528733 -0.02010402003079556 -0.027669320898287435 0.1116306909673398 0.08994580940002742 -0.029559734792833418 0.07985895943219913 0.06585610259738539 -0.014037400250957711 0.05404611214411639 0.04622286205610797 -0.014928686802500715 0.030346558898182087 -0.05298625304103542 -0.02707031056064287 0.05707001904329364 -0.05880194461033734 -0.028689995727553288 0.09275552276722981 -0.011722472004299687 -0.01899007479473644 0.14589898380495608 -0.043624532907626315 -0.025981209073472112 0.11926450513970906 0.02400512270412148 -0.009495715641043309 0.015822440598846438 -0.015537506163672709 -0.025550895618430092 0.07627142379209972 0.08013242476039904 -0.031934324475891535 0.07008511851196453 -0.00796482187979582 -0.026733967407487975 0.04939912947486725 -0.040643725393680455 -0.03074332281687287 0.04718206136382962 0.08013242476039904 -0.031934324475891535 0.07008511851196453 -0.01452801663143844 -0.030455361124948357 0.07344265932628155 -0.04571068901607576 -0.032316689643329226 0.07903716784425925 0.08013242476039904 -0.031934324475891535 0.07008511851196453 0.011345452700514938 -0.02199399565544292 0.1132944605152495 -0.0056689554371901416 -0.022055820372242175 0.12579323548241123 0.08013242476039904 -0.031934324475891535 0.07008511851196453 -0.0016031296684111962 -0.027976903323026287 0.09675831154505272 -0.029917404670423933 -0.030043910581345548 0.1018568500471052 0.08013242476039904 -0.031934324475891535 0.07008511851196453 0.05604271795775702 -0.016411989934015825 0.04427227122388179 0.036409477416479596 -0.01730327648555883 0.020572717977947484 -0.0627996376806638 -0.029444900243700983 0.047296178123059036 -0.06861532924996572 -0.0310645854106114 0.08298168184699521 -0.02153585664392806 -0.021364664477794552 0.13612514288472147 -0.05343791754725469 -0.028355798756530225 0.10949066421947445 0.014191738064493106 -0.011870305324101422 0.006048599678611835 -0.009548771583413915 -0.02418480856023695 0.08045254252200974 0.08612115934065784 -0.030568237417698388 0.07426623724187455 -0.0019760872995370268 -0.02536788034929483 0.05358024820477727 -0.03465499081342166 -0.02937723575867973 0.051363180093739635 0.08612115934065784 -0.030568237417698388 0.07426623724187455 -0.008539282051179646 -0.029089274066755214 0.07762377805619157 -0.03972195443581697 -0.03095060258513608 0.08321828657416927 0.08612115934065784 -0.030568237417698388 0.07426623724187455 0.01733418728077373 -0.020627908597249778 0.11747557924515953 0.0003197791430686516 -0.02068973331404903 0.12997435421232123 0.08612115934065784 -0.030568237417698388 0.07426623724187455 0.004385604911847597 -0.026610816264833144 0.10093943027496274 -0.023928670090165142 -0.028677823523152405 0.10603796877701521 0.08612115934065784 -0.030568237417698388 0.07426623724187455 0.06203145253801581 -0.015045902875822682 0.04845338995379181 0.04239821199673839 -0.015937189427365685 0.024753836707857503 -0.056810903100405 -0.02807881318550784 0.051477296852969055 -0.06262659466970692 -0.029698498352418258 0.08716280057690523 -0.015547122063669268 -0.019998577419601413 0.1403062616146315 -0.04744918296699589 -0.026989711698337082 0.11367178294938447 0.0201804726447519 -0.010504218265908279 0.010229718408521854 -0.02639636783825795 -0.023133536341285742 0.06890998657106771 0.0692735630858138 -0.02951696519874718 0.06272368129093252 -0.018823683554381063 -0.024316608130343625 0.04203769225383524 -0.0515025870682657 -0.02832596353972852 0.039820624142797606 0.0692735630858138 -0.02951696519874718 0.06272368129093252 -0.02538687830602368 -0.028038001847804007 0.06608122210524954 -0.056569550690661 -0.029899330366184872 0.07167573062322724 0.0692735630858138 -0.02951696519874718 0.06272368129093252 0.0004865910259296974 -0.01957663637829857 0.1059330232942175 -0.01652781711177538 -0.019638461095097825 0.11843179826137921 0.0692735630858138 -0.02951696519874718 0.06272368129093252 -0.012461991342996437 -0.025559544045881937 0.08939687432402071 -0.04077626634500918 -0.027626551304201198 0.09449541282607318 0.0692735630858138 -0.02951696519874718 0.06272368129093252 0.04518385628317177 -0.013994630656871475 0.03691083400284978 0.025550615741894354 -0.014885917208414479 0.013211280756915474 -0.07365849935524904 -0.027027540966556633 0.039934740902027026 -0.07947419092455095 -0.02864722613346705 0.0756202446259632 -0.0323947183185133 -0.018947305200650202 0.12876370566368944 -0.06429677922183993 -0.025938439479385875 0.10212922699844244 0.003332876389907865 -0.009452946046957072 -0.0013128375424201755 -0.027959827496982437 -0.025042667854052802 0.07530492984099701 0.06771010342708932 -0.03142609671151424 0.06911862456086182 -0.02038714321310555 -0.026225739643110684 0.04843263552376454 -0.05306604672699018 -0.03023509505249558 0.04621556741272691 0.06771010342708932 -0.03142609671151424 0.06911862456086182 -0.026950337964748168 -0.029947133360571067 0.07247616537517884 -0.05813301034938549 -0.031808461878951935 0.07807067389315654 0.06771010342708932 -0.03142609671151424 0.06911862456086182 -0.0010768686327947904 -0.02148576789106563 0.11232796656414679 -0.01809127677049987 -0.021547592607864884 0.12482674153130852 0.06771010342708932 -0.03142609671151424 0.06911862456086182 -0.014025451001720925 -0.027468675558648997 0.09579181759395002 -0.04233972600373366 -0.029535682816968258 0.10089035609600248 0.06771010342708932 -0.03142609671151424 0.06911862456086182 0.04362039662444729 -0.015903762169638534 0.04330577727277908 0.023987156083169866 -0.016795048721181538 0.019606224026844775 -0.07522195901397352 -0.028936672479323692 0.04632968417195633 -0.08103765058327544 -0.03055635764623411 0.0820151878958925 -0.03395817797723779 -0.020856436713417262 0.13515864893361876 -0.06586023888056441 -0.027847570992152935 0.10852417026837174 0.001769416731183377 -0.011362077559724132 0.005082105727509126 -0.006405279785547991 -0.022489710226166956 0.08318519497005583 0.08926465113852376 -0.028873139083628395 0.07699888968992064 0.0011674044983288976 -0.02367278201522484 0.05631290065282336 -0.031511499015555736 -0.02768213742460974 0.054095832541785724 0.08926465113852376 -0.028873139083628395 0.07699888968992064 -0.005395790253313722 -0.02739417573268522 0.08035643050423766 -0.036578462637951045 -0.029255504251066086 0.08595093902221536 0.08926465113852376 -0.028873139083628395 0.07699888968992064 0.020477679078639656 -0.018932810263179785 0.1202082316932056 0.003463270940934576 -0.01899463497997904 0.13270700666036733 0.08926465113852376 -0.028873139083628395 0.07699888968992064 0.007529096709713521 -0.02491571793076315 0.10367208272300883 -0.020785178292299217 -0.026982725189082412 0.1087706212250613 0.08926465113852376 -0.028873139083628395 0.07699888968992064 0.06517494433588174 -0.013350804541752689 0.0511860424018379 0.045541703794604316 -0.014242091093295692 0.02748648915590359 -0.053667411302539075 -0.026383714851437846 0.054209949301015144 -0.059483102871841 -0.028003400018348265 0.08989545302495132 -0.012403630265803343 -0.01830347908553142 0.14303891406267757 -0.04430569116912997 -0.02529461336426709 0.11640443539743056 0.023323964442617823 -0.008809119931838286 0.012962370856567942 -0.003715698261416634 -0.01635903331447523 0.09410496964595245 0.09195423266265512 -0.022742462171936668 0.08791866436581726 0.0038569860224602548 -0.01754210510353311 0.06723267532871999 -0.028821917491424383 -0.021551460512918008 0.06501560721768235 0.09195423266265512 -0.022742462171936668 0.08791866436581726 -0.002706208729182365 -0.021263498820993494 0.09127620518013428 -0.033888881113819685 -0.02312482733937436 0.09687071369811198 0.09195423266265512 -0.022742462171936668 0.08791866436581726 0.023167260602771012 -0.012802133351488058 0.13112800636910224 0.006152852465065933 -0.012863958068287312 0.14362678133626394 0.09195423266265512 -0.022742462171936668 0.08791866436581726 0.01021867823384488 -0.018785041019071424 0.11459185739890546 -0.01809559676816786 -0.020852048277390685 0.11969039590095792 0.09195423266265512 -0.022742462171936668 0.08791866436581726 0.0678645258600131 -0.0072201276300609615 0.06210581707773452 0.04823128531873567 -0.008111414181603965 0.038406263831800215 -0.05097782977840772 -0.02025303793974612 0.06512972397691177 -0.05679352134770964 -0.021872723106656538 0.10081522770084794 -0.009714048741671985 -0.01217280217383969 0.1539586887385742 -0.041616109644998615 -0.019163936452575362 0.12732421007332717 0.02601354596674918 -0.002678443020146559 0.023882145532464566 -0.002231257766849658 -0.01809500458609701 0.09091449634907944 0.0934386731572221 -0.024478433443558448 0.08472819106894425 0.005341426517027231 -0.01927807637515489 0.06404220203184696 -0.027337476996857405 -0.02328743178453979 0.061825133920809336 0.0934386731572221 -0.024478433443558448 0.08472819106894425 -0.001221768234615389 -0.022999470092615274 0.08808573188326127 -0.03240444061925271 -0.02486079861099614 0.09368024040123897 0.0934386731572221 -0.024478433443558448 0.08472819106894425 0.02465170109733799 -0.014538104623109838 0.12793753307222921 0.007637292959632909 -0.014599929339909092 0.14043630803939094 0.0934386731572221 -0.024478433443558448 0.08472819106894425 0.011703118728411854 -0.020521012290693204 0.11140138410203244 -0.016611156273600883 -0.022588019549012465 0.11649992260408491 0.0934386731572221 -0.024478433443558448 0.08472819106894425 0.06934896635458007 -0.008956098901682742 0.05891534378086151 0.04971572581330264 -0.009847385453225745 0.035215790534927204 -0.04949338928384075 -0.0219890092113679 0.061939250680038756 -0.055309080853142664 -0.023608694378278318 0.09762475440397493 -0.00822960824710501 -0.01390877344546147 0.1507682154417012 -0.04013166915043164 -0.020899907724197142 0.12413373677645417 0.027497986461316157 -0.004414414291768339 0.020691672235591554 -0.01103196758172916 -0.0085815932042204 0.08124724826134684 0.0846379633423426 -0.014965022061681838 0.07506094298121165 -0.003459283297852271 -0.00976466499327828 0.05437495394411437 -0.03613818681173691 -0.01377402040266318 0.052157885833076734 0.0846379633423426 -0.014965022061681838 0.07506094298121165 -0.01002247804949489 -0.013486058710738665 0.07841848379552867 -0.04120515043413221 -0.01534738722911953 0.08401299231350637 0.0846379633423426 -0.014965022061681838 0.07506094298121165 0.01585099128245849 -0.005024693241233228 0.11827028498449663 -0.0011634168552465927 -0.005086517958032483 0.13076905995165833 0.0846379633423426 -0.014965022061681838 0.07506094298121165 0.0029024089135323526 -0.011007600908816594 0.10173413601429984 -0.025411866088480388 -0.013074608167135855 0.10683267451635231 0.0846379633423426 -0.014965022061681838 0.07506094298121165 0.060548256539700564 0.0005573124801938681 0.04924809569312891 0.04091501599842314 -0.0003339740713491357 0.0255485424471946 -0.05829409909872025 -0.01247559782949129 0.052272002592306153 -0.06410979066802217 -0.014095282996401708 0.08795750631624233 -0.01703031806198451 -0.004395362063584861 0.1411009673539686 -0.04893237896531114 -0.01138649634232053 0.11446648868872157 0.018697276646436653 0.005098997090108271 0.011024424147858952 -0.0077233992080678925 -0.010131882420740387 0.08774277600173036 0.08794653171600386 -0.016515311278201827 0.08155647072159516 -0.00015071492419100382 -0.011314954209798268 0.060870481684497886 -0.03282961843807564 -0.015324309619183168 0.05865341357346025 0.08794653171600386 -0.016515311278201827 0.08155647072159516 -0.006713909675833624 -0.015036347927258652 0.08491401153591219 -0.037896582060470946 -0.01689767644563952 0.09050852005388989 0.08794653171600386 -0.016515311278201827 0.08155647072159516 0.019159559656119755 -0.006574982457753216 0.12476581272488013 0.0021451515184146746 -0.00663680717455247 0.13726458769204186 0.08794653171600386 -0.016515311278201827 0.08155647072159516 0.00621097728719362 -0.01255789012533658 0.10822966375468336 -0.022103297714819118 -0.014624897383655844 0.11332820225673583 0.08794653171600386 -0.016515311278201827 0.08155647072159516 0.06385682491336184 -0.0009929767363261194 0.055743623433512426 0.04422358437208441 -0.0018842632878691232 0.03204407018757812 -0.05498553072505898 -0.014025887046011277 0.05876753033268967 -0.0608012222943609 -0.015645572212921698 0.09445303405662585 -0.013721749688323244 -0.005945651280104849 0.1475964950943521 -0.045623810591649876 -0.012936785558840518 0.12096201642910509 0.022005845020097923 0.003548707873588283 0.01751995188824247 -0.0061162452801535655 -0.009918226825555128 0.08482453477748628 0.08955368564391819 -0.016301655683016565 0.07863822949735108 0.0014564390037233232 -0.011101298614613009 0.0579522404602538 -0.031222464510161314 -0.015110654023997909 0.05573517234921617 0.08955368564391819 -0.016301655683016565 0.07863822949735108 -0.005106755747919297 -0.014822692332073393 0.0819957703116681 -0.03628942813255662 -0.01668402085045426 0.0875902788296458 0.08955368564391819 -0.016301655683016565 0.07863822949735108 0.02076671358403408 -0.006361326862567957 0.12184757150063605 0.0037523054463290016 -0.0064231515793672115 0.13434634646779778 0.08955368564391819 -0.016301655683016565 0.07863822949735108 0.007818131215107948 -0.012344234530151321 0.10531142253043928 -0.020496143786904793 -0.014411241788470586 0.11040996103249175 0.08955368564391819 -0.016301655683016565 0.07863822949735108 0.06546397884127617 -0.0007793211411408606 0.05282538220926834 0.04583073829999874 -0.0016706076926838644 0.029125828963334037 -0.053378376797144654 -0.013812231450826018 0.05584928910844559 -0.05919406836644657 -0.015431916617736437 0.09153479283238176 -0.012114595760408917 -0.00573199568491959 0.14467825387010802 -0.04401665666373555 -0.01272312996365526 0.118043775204861 0.023612998948012248 0.003762363468773542 0.014601710663998388 -0.010896557374179397 -0.008524436671013023 0.0770272262889512 0.08477337354989235 -0.014907865528474461 0.070840921008816 -0.0033238730903025083 -0.009707508460070903 0.050154931971718726 -0.036002776604187145 -0.013716863869455804 0.04793786386068109 0.08477337354989235 -0.014907865528474461 0.070840921008816 -0.009887067841945128 -0.013428902177531288 0.07419846182313303 -0.04106974022658245 -0.015290230695912153 0.07979297034111073 0.08477337354989235 -0.014907865528474461 0.070840921008816 0.01598640149000825 -0.004967536708025851 0.11405026301210097 -0.00102800664769683 -0.005029361424825106 0.1265490379792627 0.08477337354989235 -0.014907865528474461 0.070840921008816 0.0030378191210821155 -0.010950444375609217 0.0975141140419042 -0.025276455880930623 -0.013017451633928478 0.10261265254395667 0.08477337354989235 -0.014907865528474461 0.070840921008816 0.06068366674725033 0.0006144690134012448 0.045028073720733267 0.041050426205972906 -0.00027681753814175897 0.02132852047479896 -0.058158688891170485 -0.012418441296283913 0.04805198061991051 -0.06397438046047241 -0.014038126463194332 0.08373748434384669 -0.01689490785443475 -0.0043382055303774845 0.13688094538157294 -0.04879696875776138 -0.011329339809113154 0.11024646671632593 0.018832686853986418 0.0051561536233156475 0.006804402175463312 -0.005050612785866314 -0.010633182595612075 0.08204357410240666 0.09061931813820544 -0.017016611453073514 0.07585726882227146 0.0025220714980105745 -0.011816254384669956 0.055171279785174186 -0.03015683201587406 -0.015825609794054854 0.05295421167413655 0.09061931813820544 -0.017016611453073514 0.07585726882227146 -0.004041123253632045 -0.01553764810213034 0.07921480963658849 -0.03522379563826936 -0.017398976620511205 0.08480931815456619 0.09061931813820544 -0.017016611453073514 0.07585726882227146 0.02183234607832133 -0.0070762826326249036 0.11906661082555645 0.004817937940616253 -0.007138107349424158 0.13156538579271815 0.09061931813820544 -0.017016611453073514 0.07585726882227146 0.008883763709395198 -0.01305919030020827 0.10253046185535966 -0.01943051129261754 -0.01512619755852753 0.10762900035741213 0.09061931813820544 -0.017016611453073514 0.07585726882227146 0.06652961133556341 -0.0014942769111978074 0.05004442153418873 0.04689637079428599 -0.002385563462740811 0.02634486828825442 -0.0523127443028574 -0.014527187220882965 0.05306832843336597 -0.058128435872159316 -0.016146872387793384 0.08875383215730215 -0.011048963266121665 -0.006446951454976537 0.14189729319502842 -0.04295102416944829 -0.013438085733712206 0.11526281452978139 0.024678631442299502 0.0030474076987165952 0.011820749988918772 -0.003243911941516688 -0.011927593432509825 0.08951633236774258 0.09242601898255506 -0.018311022289971265 0.08333002708760738 0.004328772342360201 -0.013110665221567706 0.06264403805051011 -0.028350131171524434 -0.017120020630952606 0.06042696993947247 0.09242601898255506 -0.018311022289971265 0.08333002708760738 -0.002234422409282419 -0.01683205893902809 0.0866875679019244 -0.03341709479391974 -0.018693387457408957 0.0922820764199021 0.09242601898255506 -0.018311022289971265 0.08333002708760738 0.023639046922670957 -0.008370693469522654 0.12653936909089236 0.006624638784965879 -0.00843251818632191 0.1390381440580541 0.09242601898255506 -0.018311022289971265 0.08333002708760738 0.010690464553744825 -0.014353601137106018 0.11000322012069558 -0.017623810448267913 -0.016420608395425283 0.11510175862274805 0.09242601898255506 -0.018311022289971265 0.08333002708760738 0.06833631217991304 -0.0027886877480955575 0.05751717979952464 0.04870307163863562 -0.0036799742996385613 0.03381762655359034 -0.050506043458507774 -0.015821598057780717 0.06054108669870189 -0.05632173502780969 -0.017441283224691136 0.09622659042263806 -0.009242262421772039 -0.007741362291874287 0.1493700514603643 -0.04114432332509867 -0.014732496570609956 0.1227355727951173 0.02648533228664913 0.0017529968618188452 0.019293508254254688 -0.005847639848785724 -0.011666697462358756 0.09115666085298786 0.08982229107528603 -0.018050126319820194 0.08497035557285267 0.0017250444350911647 -0.012849769251416636 0.0642843665357554 -0.030953859078793472 -0.016859124660801535 0.062067298424717754 0.08982229107528603 -0.018050126319820194 0.08497035557285267 -0.004838150316551455 -0.01657116296887702 0.08832789638716969 -0.036020822701188775 -0.018432491487257886 0.09392240490514739 0.08982229107528603 -0.018050126319820194 0.08497035557285267 0.021035319015401923 -0.008109797499371584 0.12817969757613765 0.004020910877696843 -0.008171622216170838 0.14067847254329935 0.08982229107528603 -0.018050126319820194 0.08497035557285267 0.008086736646475788 -0.01409270516695495 0.11164354860594086 -0.02022753835553695 -0.01615971242527421 0.11674208710799333 0.08982229107528603 -0.018050126319820194 0.08497035557285267 0.065732584272644 -0.002527791777944488 0.05915750828476993 0.04609934373136658 -0.003419078329487492 0.03545795503883562 -0.05310977136577681 -0.015560702087629646 0.062181415183947174 -0.05892546293507873 -0.017180387254540064 0.09786691890788335 -0.011845990329041076 -0.007480466321723217 0.15101037994560962 -0.043748051232367705 -0.014471600600458887 0.12437590128036259 0.02388160437938009 0.0020138928319699146 0.020933836739499972 -0.029994023096953502 -0.021912661741459297 0.06654419495752897 0.06567590782711824 -0.028296090598920735 0.06035788967739378 -0.022421338813076612 -0.02309573353051718 0.0396719006402965 -0.05510024232696125 -0.02710508893990208 0.037454832529258866 0.06567590782711824 -0.028296090598920735 0.06035788967739378 -0.028984533564719233 -0.02681712724797756 0.0637154304917108 -0.06016720594935655 -0.028678455766358427 0.0693099390096885 0.06567590782711824 -0.028296090598920735 0.06035788967739378 -0.0031110642327658554 -0.018355761778472125 0.10356723168067875 -0.020125472370470937 -0.01841758649527138 0.11606600664784048 0.06567590782711824 -0.028296090598920735 0.06035788967739378 -0.01605964660169199 -0.02433866944605549 0.08703108271048197 -0.04437392160370473 -0.026405676704374752 0.09212962121253444 0.06567590782711824 -0.028296090598920735 0.06035788967739378 0.04158620102447622 -0.012773756057045029 0.03454504238931104 0.0219529604831988 -0.013665042608588033 0.010845489143376734 -0.07725615461394458 -0.025806666366730187 0.037568949288488286 -0.0830718461832465 -0.027426351533640606 0.07325445301242446 -0.03599237357720885 -0.01772643060082376 0.12639791405015072 -0.06789443448053548 -0.02471756487955943 0.0997634353849037 -0.00026477886878768786 -0.008232071447130626 -0.003678629155958915 -0.027234639831463504 -0.01706998399491937 0.06283668701418604 0.06843529109260825 -0.023453412852380808 0.05665038173405085 -0.019661955547586617 -0.018253055783977252 0.03596439269695357 -0.05234085906147125 -0.02226241119336215 0.033747324585915936 0.06843529109260825 -0.023453412852380808 0.05665038173405085 -0.026225150299229234 -0.021974449501437635 0.06000792254836787 -0.05740782268386656 -0.0238357780198185 0.06560243106634557 0.06843529109260825 -0.023453412852380808 0.05665038173405085 -0.0003516809672758567 -0.013513084031932198 0.09985972373733581 -0.017366089104980935 -0.013574908748731452 0.11235849870449754 0.06843529109260825 -0.023453412852380808 0.05665038173405085 -0.013300263336201991 -0.019495991699515564 0.08332357476713904 -0.04161453833821473 -0.021562998957834825 0.08842211326919151 0.06843529109260825 -0.023453412852380808 0.05665038173405085 0.044345584289966225 -0.007931078310505102 0.03083753444596811 0.0247123437486888 -0.008822364862048106 0.007137981200033804 -0.07449677134845459 -0.02096398862019026 0.033861441345145356 -0.08031246291775651 -0.02258367378710068 0.06954694506908153 -0.033232990311718856 -0.012883752854283831 0.12269040610680779 -0.06513505121504548 -0.019874887133019502 0.09605592744156077 0.002494604396702311 -0.0033893937005906993 -0.0073861370993018455 -0.023800239566163537 -0.01807555034283193 0.06493652067035052 0.07186969135790822 -0.024458979200293367 0.05875021539021533 -0.01622755528228665 -0.01925862213188981 0.03806422635311805 -0.04890645879617128 -0.023267977541274708 0.035847158242080415 0.07186969135790822 -0.024458979200293367 0.05875021539021533 -0.022790750033929268 -0.022980015849350194 0.06210775620453235 -0.05397342241856659 -0.02484134436773106 0.06770226472251005 0.07186969135790822 -0.024458979200293367 0.05875021539021533 0.00308271929802411 -0.014518650379844757 0.1019595573935003 -0.01393168883968097 -0.014580475096644011 0.11445833236066202 0.07186969135790822 -0.024458979200293367 0.05875021539021533 -0.009865863070902025 -0.020501558047428124 0.08542340842330352 -0.03818013807291476 -0.022568565305747385 0.09052194692535599 0.07186969135790822 -0.024458979200293367 0.05875021539021533 0.04777998455526619 -0.008936644658417661 0.03293736810213259 0.028146744013988766 -0.009827931209960665 0.009237814856198283 -0.07106237108315462 -0.02196955496810282 0.035961275001309835 -0.07687806265245654 -0.023589240135013238 0.07164677872524601 -0.02979859004641889 -0.01388931920219639 0.12479023976297227 -0.061700650949745514 -0.020880453480932062 0.09815576109772525 0.0059290046620022775 -0.0043949600485032585 -0.005286303443137366 -0.013367507577922917 -0.02072375227274651 0.07193163293858826 0.08230242334614883 -0.02710718113020795 0.06574532765845306 -0.005794823294046028 -0.021906824061804393 0.045059338621355784 -0.03847372680793067 -0.025916179471189293 0.04284227051031815 0.08230242334614883 -0.02710718113020795 0.06574532765845306 -0.012358018045688647 -0.025628217779264776 0.06910286847277008 -0.04354069043032597 -0.02748954629764564 0.07469737699074779 0.08230242334614883 -0.02710718113020795 0.06574532765845306 0.01351545128626473 -0.01716685230975934 0.10895466966173803 -0.0034989568514403498 -0.017228677026558593 0.12145344462889976 0.08230242334614883 -0.02710718113020795 0.06574532765845306 0.0005668689173385956 -0.023149759977342706 0.09241852069154126 -0.027747406084674145 -0.025216767235661967 0.09751705919359373 0.08230242334614883 -0.02710718113020795 0.06574532765845306 0.05821271654350681 -0.011584846588332243 0.039932480370370324 0.038579476002229385 -0.012476133139875247 0.016232927124436018 -0.060629639094914006 -0.0246177568980174 0.04295638726954757 -0.06644533066421592 -0.02623744206492782 0.07864189099348375 -0.019365858058178267 -0.016537521132110974 0.13178535203121 -0.0512679189615049 -0.023528655410846644 0.10515087336596299 0.016361736650242896 -0.007043161978417841 0.0017088088251003691 -0.020583188241973846 -0.012584412601724214 0.06443499288984876 0.0750867426820979 -0.018967841459185654 0.058248687609713565 -0.013010503958096957 -0.013767484390782094 0.037562698572616286 -0.045689407471981594 -0.017776839800166994 0.03534563046157865 0.0750867426820979 -0.018967841459185654 0.058248687609713565 -0.019573698709739577 -0.017488878108242477 0.06160622842403059 -0.0507563710943769 -0.019350206626623345 0.06720073694200829 0.0750867426820979 -0.018967841459185654 0.058248687609713565 0.006299770622213801 -0.009027512638737042 0.10145802961299855 -0.010714637515491279 -0.009089337355536298 0.11395680458016026 0.0750867426820979 -0.018967841459185654 0.058248687609713565 -0.006648811746712334 -0.015010420306320407 0.08492188064280176 -0.03496308674872507 -0.01707742756463967 0.09002041914485423 0.0750867426820979 -0.018967841459185654 0.058248687609713565 0.05099703587945588 -0.003445506917309946 0.03243584032163083 0.03136379533817846 -0.00433679346885295 0.00873628707569652 -0.06784531975896493 -0.016478417226995105 0.03545974722080807 -0.07366101132826686 -0.018098102393905524 0.07114525094474425 -0.0265815387222292 -0.008398181461088675 0.1242887119824705 -0.05848359962555583 -0.015389315739824345 0.09765423331722349 0.009146055986191969 0.0010961776926044567 -0.005787831223639128 -0.019685895410180267 -0.007448736241884861 0.06784743820502279 0.07598403551389149 -0.013832165099346299 0.06166113292488759 -0.012113211126303378 -0.008631808030942743 0.04097514388779031 -0.044792114640188015 -0.012641163440327643 0.03875807577675268 0.07598403551389149 -0.013832165099346299 0.06166113292488759 -0.018676405877945997 -0.012353201748403125 0.06501867373920461 -0.04985907826258332 -0.014214530266783992 0.07061318225718231 0.07598403551389149 -0.013832165099346299 0.06166113292488759 0.00719706345400738 -0.0038918362788976893 0.10487047492817256 -0.0098173446836977 -0.0039536609956969445 0.11736924989533429 0.07598403551389149 -0.013832165099346299 0.06166113292488759 -0.005751518914918754 -0.009874743946481055 0.08833432595797579 -0.03406579391693149 -0.011941751204800318 0.09343286446002826 0.07598403551389149 -0.013832165099346299 0.06166113292488759 0.05189432871124946 0.0016901694425294064 0.03584828563680485 0.03226108816997204 0.0007988828909864026 0.012148732390870547 -0.06694802692717136 -0.01134274086715575 0.0388721925359821 -0.07276371849647327 -0.01296242603406617 0.07455769625991827 -0.02568424589043562 -0.003262505101249323 0.12770115729764453 -0.05758630679376225 -0.010253639379984993 0.10106667863239752 0.010043348817985548 0.006231854052443809 -0.0023753859084651024 -0.010445225116267203 -0.010541608658755924 0.07365324688178701 0.08522470580780454 -0.016925037516217364 0.06746694160165181 -0.0028725408323903145 -0.011724680447813805 0.046780952564554536 -0.035551444346274955 -0.015734035857198705 0.0445638844535169 0.08522470580780454 -0.016925037516217364 0.06746694160165181 -0.009435735584032934 -0.015446074165274189 0.07082448241596884 -0.04061840796867025 -0.017307402683655056 0.07641899093394654 0.08522470580780454 -0.016925037516217364 0.06746694160165181 0.016437733747920444 -0.006984708695768753 0.11067628360493678 -0.0005766743897846361 -0.007046533412568007 0.12317505857209851 0.08522470580780454 -0.016925037516217364 0.06746694160165181 0.0034891513789943093 -0.012967616363352117 0.09414013463474001 -0.02482512362301843 -0.015034623621671381 0.09923867313679248 0.08522470580780454 -0.016925037516217364 0.06746694160165181 0.06113499900516252 -0.0014027029743416564 0.041654094313569076 0.0415017584638851 -0.0022939895258846602 0.01795454106763477 -0.057707356633258294 -0.014435613284026814 0.04467800121274632 -0.0635230482025602 -0.016055298450937235 0.0803635049366825 -0.016443575596522556 -0.006355377518120386 0.13350696597440875 -0.04834563649984919 -0.013346511796856055 0.10687248730916174 0.01928401911189861 0.0031389816355727462 0.003430422768299121 -0.011305573699633156 -0.014858051446338994 0.07131679484702298 0.0843643572244386 -0.021241480303800433 0.06513048956688779 -0.0037328894157562676 -0.016041123235396876 0.04444450052979051 -0.036411792929640904 -0.020050478644781773 0.042227432418752875 0.0843643572244386 -0.021241480303800433 0.06513048956688779 -0.010296084167398887 -0.01976251695285726 0.06848803038120481 -0.04147875655203621 -0.021623845471238124 0.07408253889918251 0.0843643572244386 -0.021241480303800433 0.06513048956688779 0.01557738516455449 -0.011301151483351823 0.10833983157017277 -0.0014370229731505892 -0.011362976200151077 0.12083860653733448 0.0843643572244386 -0.021241480303800433 0.06513048956688779 0.002628802795628356 -0.01728405915093519 0.09180368259997598 -0.025685472206384383 -0.01935106640925445 0.09690222110202845 0.0843643572244386 -0.021241480303800433 0.06513048956688779 0.06027465042179657 -0.005719145761924727 0.03931764227880505 0.04064140988051915 -0.00661043231346773 0.015618089032870743 -0.058567705216624244 -0.018752056071609884 0.042341549177982295 -0.06438339678592617 -0.020371741238520303 0.07802705290191847 -0.01730392417988851 -0.010671820305703456 0.13117051393964474 -0.04920598508321514 -0.017662954584439127 0.10453603527439771 0.018423670528532658 -0.001177461152010324 0.0010939707335350934 -0.005049740690641601 -0.013310939706896573 0.07931858345465184 0.09062019023343015 -0.019694368564358012 0.07313227817451665 0.002522943593235288 -0.014494011495954454 0.05244628913741937 -0.030155959920649348 -0.018503366905339352 0.050229221026381735 0.09062019023343015 -0.019694368564358012 0.07313227817451665 -0.004040251158407332 -0.01821540521341484 0.07648981898883367 -0.035222923543044654 -0.020076733731795703 0.08208432750681137 0.09062019023343015 -0.019694368564358012 0.07313227817451665 0.021833218173546047 -0.009754039743909402 0.11634162017780161 0.004818810035840966 -0.009815864460708656 0.12884039514496334 0.09062019023343015 -0.019694368564358012 0.07313227817451665 0.00888463580461991 -0.015736947411492768 0.09980547120760484 -0.019429639197392826 -0.01780395466981203 0.10490400970965731 0.09062019023343015 -0.019694368564358012 0.07313227817451665 0.06653048343078813 -0.004172034022482306 0.04731943088643391 0.0468972428895107 -0.0050633205740253096 0.023619877640499602 -0.05231187220763269 -0.017204944332167463 0.050343337785611154 -0.05812756377693461 -0.018824629499077882 0.08602884150954733 -0.011048091170896952 -0.009124708566261035 0.13917230254727359 -0.042950152074223584 -0.016115842844996706 0.11253782388202657 0.024679503537524215 0.0003696505874320969 0.009095759341163953 -0.00599903942902229 -0.016028676019472256 0.07800637397198637 0.08967089149504946 -0.022412104876933694 0.07182006869185117 0.0015736448548545985 -0.017211747808530138 0.051134079654753896 -0.03110525865903004 -0.02122110321791504 0.04891701154371626 0.08967089149504946 -0.022412104876933694 0.07182006869185117 -0.004989549896788022 -0.02093314152599052 0.0751776095061682 -0.03617222228142534 -0.022794470044371386 0.0807721180241459 0.08967089149504946 -0.022412104876933694 0.07182006869185117 0.020883919435165356 -0.012471776056485084 0.11502941069513614 0.003869511297460277 -0.012533600773284338 0.12752818566229787 0.08967089149504946 -0.022412104876933694 0.07182006869185117 0.007935337066239223 -0.01845468372406845 0.09849326172493937 -0.020378937935773517 -0.02052169098238771 0.10359180022699184 0.08967089149504946 -0.022412104876933694 0.07182006869185117 0.06558118469240744 -0.006889770335057988 0.046007221403768436 0.045947944151130016 -0.007781056886600992 0.02230766815783413 -0.053261170946013375 -0.019922680644743146 0.04903112830294568 -0.05907686251531529 -0.021542365811653565 0.08471663202688186 -0.011997389909277642 -0.011842444878836718 0.1378600930646081 -0.04389945081260427 -0.01883357915757239 0.1112256143993611 0.023730204799143523 -0.0023480857251435856 0.007783549858498481 -0.007473317712508258 -0.02079601589881538 0.07837736689521993 0.0881966132115635 -0.02717944475627682 0.07219106161508473 9.93665713686304e-05 -0.021979087687873263 0.051505072577987455 -0.03257953694251601 -0.02598844309725816 0.04928800446694982 0.0881966132115635 -0.02717944475627682 0.07219106161508473 -0.00646382818027399 -0.025700481405333646 0.07554860242940176 -0.03764650056491131 -0.02756180992371451 0.08114311094737946 0.0881966132115635 -0.02717944475627682 0.07219106161508473 0.01940964115167939 -0.01723911593582821 0.1154004036183697 0.0023952330139743088 -0.017300940652627463 0.12789917858553143 0.0881966132115635 -0.02717944475627682 0.07219106161508473 0.006461058782753254 -0.023222023603411576 0.09886425464817293 -0.021853216219259484 -0.025289030861730837 0.1039627931502254 0.0881966132115635 -0.02717944475627682 0.07219106161508473 0.06410690640892147 -0.011657110214401113 0.046378214327001996 0.04447366586764404 -0.012548396765944117 0.02267866108106769 -0.05473544922949935 -0.02469002052408627 0.04940212122617924 -0.060551140798801265 -0.02630970569099669 0.08508762495011542 -0.01347166819276361 -0.01660978475817984 0.13823108598784167 -0.04537372909609024 -0.023600919036915514 0.11159660732259466 0.022255926515657557 -0.0071154256044867106 0.008154542781732041 -0.0027849846822225566 -0.01566469636241958 0.08358432271992842 0.09288494624184919 -0.022048125219881018 0.07739801743979323 0.004787699601654332 -0.01684776815147746 0.05671202840269595 -0.027891203912230305 -0.020857123560862362 0.05449496029165832 0.09288494624184919 -0.022048125219881018 0.07739801743979323 -0.0017754951499882876 -0.020569161868937844 0.08075555825411025 -0.032958167534625604 -0.02243049038731871 0.08635006677208795 0.09288494624184919 -0.022048125219881018 0.07739801743979323 0.02409797418196509 -0.012107796399432408 0.12060735944307821 0.00708356604426001 -0.012169621116231662 0.13310613441023994 0.09288494624184919 -0.022048125219881018 0.07739801743979323 0.011149391813038955 -0.018090704067015774 0.10407121047288143 -0.017164883188973783 -0.020157711325335035 0.1091697489749339 0.09288494624184919 -0.022048125219881018 0.07739801743979323 0.06879523943920716 -0.006525790678005312 0.05158517015171049 0.04916199889792975 -0.0074170772295483155 0.027885616905776185 -0.05004711619921364 -0.01955870098769047 0.05460907705088774 -0.05586280776851556 -0.021178386154600888 0.09029458077482391 -0.008783335162477908 -0.011478465221784041 0.14343804181255015 -0.040685396065804534 -0.018469599500519712 0.11680356314730315 0.026944259545943258 -0.001984106068090909 0.013361498606440536 -0.002138272525497859 -0.013253579647264837 0.08650222617234439 0.09353165839857389 -0.019637008504726276 0.0803159208922092 0.00543441175837903 -0.014436651436322718 0.059629931855111916 -0.027244491755505605 -0.018446006845707616 0.05741286374407428 0.09353165839857389 -0.019637008504726276 0.0803159208922092 -0.00112878299326359 -0.018158045153783102 0.08367346170652622 -0.03231145537790091 -0.020019373672163967 0.08926797022450392 0.09353165839857389 -0.019637008504726276 0.0803159208922092 0.024744686338689786 -0.009696679684277665 0.12352526289549418 0.007730278200984708 -0.00975850440107692 0.13602403786265588 0.09353165839857389 -0.019637008504726276 0.0803159208922092 0.011796103969763654 -0.01567958735186103 0.10698911392529739 -0.016518171032249084 -0.017746594610180293 0.11208765242734986 0.09353165839857389 -0.019637008504726276 0.0803159208922092 0.06944195159593186 -0.004114673962850569 0.054503073604126456 0.049808711054654446 -0.005005960514393573 0.03080352035819215 -0.049400404042488945 -0.017147584272535727 0.0575269805033037 -0.05521609561179086 -0.018767269439446146 0.09321248422723988 -0.00813662300575321 -0.009067348506629299 0.14635594526496615 -0.04003868390907984 -0.01605848278536497 0.11972146659971912 0.027590971702667957 0.0004270106470638333 0.0162794020588565 -0.002907730698298443 -0.01933085570936713 0.08613203826861751 0.0927622002257733 -0.025714284566828567 0.07994573298848232 0.004664953585578446 -0.02051392749842501 0.05925974395138504 -0.028013949928306192 -0.02452328290780991 0.057042675840347404 0.0927622002257733 -0.025714284566828567 0.07994573298848232 -0.0018982411660641739 -0.024235321215885394 0.08330327380279934 -0.033080913550701495 -0.02609664973426626 0.08889778232077704 0.0927622002257733 -0.025714284566828567 0.07994573298848232 0.023975228165889203 -0.015773955746379957 0.12315507499176728 0.006960820028184125 -0.01583578046317921 0.135653849958929 0.0927622002257733 -0.025714284566828567 0.07994573298848232 0.01102664579696307 -0.021756863413963323 0.10661892602157051 -0.01728762920504967 -0.023823870672282584 0.11171746452362298 0.0927622002257733 -0.025714284566828567 0.07994573298848232 0.06867249342313128 -0.010191950024952861 0.05413288570039958 0.04903925288185386 -0.011083236576495865 0.03043333245446527 -0.05016986221528953 -0.02322486033463802 0.057156792599576824 -0.05598555378459145 -0.024844545501548437 0.092842296323513 -0.008906081178553795 -0.01514462456873159 0.14598575736123925 -0.040808142081880425 -0.02213575884746726 0.11935127869599224 0.02682151352986737 -0.005650265415038458 0.015909214155129622 -0.004263324017347093 -0.017098563641718786 0.08144562348386038 0.09140660690672466 -0.023481992499180225 0.07525931820372518 0.0033093602665297955 -0.01828163543077667 0.0545733291666279 -0.029369543247354843 -0.02229099084016157 0.05235626105559027 0.09140660690672466 -0.023481992499180225 0.07525931820372518 -0.003253834485112824 -0.02200302914823705 0.0786168590180422 -0.034436506869750146 -0.023864357666617916 0.0842113675360199 0.09140660690672466 -0.023481992499180225 0.07525931820372518 0.022619634846840556 -0.013541663678731615 0.11846866020701016 0.005605226709135474 -0.013603488395530869 0.13096743517417186 0.09140660690672466 -0.023481992499180225 0.07525931820372518 0.00967105247791442 -0.01952457134631498 0.10193251123681338 -0.01864322252409832 -0.021591578604634242 0.10703104973886585 0.09140660690672466 -0.023481992499180225 0.07525931820372518 0.06731690010408263 -0.007959657957304519 0.04944647091564244 0.04768365956280521 -0.008850944508847523 0.025746917669708137 -0.05152545553433818 -0.020992568266989677 0.05247037781481969 -0.0573411471036401 -0.022612253433900095 0.08815588153875586 -0.010261674497602444 -0.012912332501083248 0.14129934257648213 -0.042163735400929075 -0.01990346677981892 0.11466486391123511 0.02546592021081872 -0.003417973347390116 0.011222799370372488 -0.004733197469387992 -0.019925308600827085 0.08268733690931292 0.09093673345468375 -0.026308737458288524 0.07650103162917772 0.002839486814488897 -0.021108380389884968 0.05581504259208044 -0.02983941669939574 -0.025117735799269868 0.05359797448104281 0.09093673345468375 -0.026308737458288524 0.07650103162917772 -0.003723707937153723 -0.02482977410734535 0.07985857244349474 -0.03490638032179104 -0.026691102625726215 0.08545308096147244 0.09093673345468375 -0.026308737458288524 0.07650103162917772 0.022149761394799655 -0.016368408637839914 0.1197103736324627 0.005135353257094575 -0.016430233354639168 0.1322091485996244 0.09093673345468375 -0.026308737458288524 0.07650103162917772 0.00920117902587352 -0.02235131630542328 0.10317422466226592 -0.019113095976139218 -0.02441832356374254 0.10827276316431839 0.09093673345468375 -0.026308737458288524 0.07650103162917772 0.06684702665204173 -0.010786402916412818 0.05068818434109498 0.04721378611076431 -0.011677689467955821 0.026988631095160677 -0.05199532898637908 -0.023819313226097975 0.05371209124027223 -0.05781102055568099 -0.025438998393008394 0.0893975949642084 -0.010731547949643344 -0.01573907746019155 0.14254105600193467 -0.042633608852969976 -0.022730211738927218 0.11590657733668765 0.024996046758777823 -0.006244718306498415 0.012464512795825028 -0.03762106591119652 -0.013518703365329841 -0.03515606381461864 0.05804886501287523 -0.01990213222279128 -0.041342369094753834 -0.030048381627319633 -0.014701775154387722 -0.06202835813185111 -0.06272728514120426 -0.018711130563772622 -0.06424542624288875 0.05804886501287523 -0.01990213222279128 -0.041342369094753834 -0.03661157637896226 -0.018423168871848104 -0.03798482828043681 -0.06779424876359957 -0.020284497390228973 -0.03239031976245911 0.05804886501287523 -0.01990213222279128 -0.041342369094753834 -0.010738107047008876 -0.00996180340234267 0.0018669729085311407 -0.027752515184713958 -0.010023628119141925 0.014365747875692864 0.05804886501287523 -0.01990213222279128 -0.041342369094753834 -0.023686689415935012 -0.015944711069926034 -0.014669176061665637 -0.05200096441794775 -0.0180117183282453 -0.009570637559613168 0.05804886501287523 -0.01990213222279128 -0.041342369094753834 0.0339591582102332 -0.0043797976809155734 -0.06715521638283657 0.01432591766895578 -0.005271084232458577 -0.09085476962877087 -0.08488319742818762 -0.017412707990600733 -0.06413130948365933 -0.09069888899748953 -0.01903239315751115 -0.028445805759723154 -0.04361941639145187 -0.009332472224694303 0.024697655278003106 -0.07552147729477851 -0.016323606503429972 -0.0019368233872439078 -0.007891821683030709 0.00016188692899882923 -0.10537888792810653 -0.03394223584063112 -0.013919407815809791 -0.02980914727916669 0.06172769508344063 -0.020302836673271228 -0.03599545255930189 -0.02636955155675423 -0.015102479604867672 -0.056681441596399165 -0.05904845507063887 -0.019111835014252572 -0.0588985097074368 0.06172769508344063 -0.020302836673271228 -0.03599545255930189 -0.032932746308396856 -0.018823873322328058 -0.032637911744984864 -0.06411541869303417 -0.020685201840708923 -0.02704340322700716 0.06172769508344063 -0.020302836673271228 -0.03599545255930189 -0.007059276976443474 -0.01036250785282262 0.0072138894439830875 -0.024073685114148556 -0.010424332569621875 0.01971266441114481 0.06172769508344063 -0.020302836673271228 -0.03599545255930189 -0.02000785934536961 -0.016345415520405984 -0.00932225952621369 -0.04832213434738235 -0.01841242277872525 -0.004223721024161221 0.06172769508344063 -0.020302836673271228 -0.03599545255930189 0.037637988280798604 -0.004780502131395524 -0.061808299847384625 0.018004747739521182 -0.0056717886829385274 -0.08550785309331893 -0.08120436735762221 -0.01781341244108068 -0.05878439294820738 -0.08702005892692413 -0.0194330976079911 -0.023098889224271207 -0.03994058632088647 -0.009733176675174253 0.030044571813455052 -0.0718426472242131 -0.016724310953909922 0.003410093148208039 -0.004212991612465307 -0.00023881752148112098 -0.10003197139265457 -0.04115423851943296 -0.01494171357349367 -0.02933797149380597 0.05451569240463879 -0.02132514243095511 -0.03552427677394116 -0.03358155423555607 -0.01612478536255155 -0.05621026581103844 -0.0662604577494407 -0.02013414077193645 -0.05842733392207608 0.05451569240463879 -0.02132514243095511 -0.03552427677394116 -0.04014474898719869 -0.019846179080011933 -0.032166735959624146 -0.07132742137183601 -0.0217075075983928 -0.02657222744164644 0.05451569240463879 -0.02132514243095511 -0.03552427677394116 -0.01427127965524531 -0.011384813610506498 0.007685065229343809 -0.03128568779295039 -0.011446638327305754 0.020183840196505532 0.05451569240463879 -0.02132514243095511 -0.03552427677394116 -0.027219862024171447 -0.017367721278089863 -0.008851083740852968 -0.055534137026184184 -0.019434728536409127 -0.0037525452388004997 0.05451569240463879 -0.02132514243095511 -0.03552427677394116 0.030425985601996768 -0.005802807889079402 -0.06133712406202391 0.010792745060719346 -0.006694094440622406 -0.0850366773079582 -0.08841637003642405 -0.01883571819876456 -0.05831321716284665 -0.09423206160572596 -0.02045540336567498 -0.022627713438910485 -0.04715258899968831 -0.010755482432858132 0.030515747598815774 -0.07905464990301495 -0.0177466167115938 0.0038812689335687607 -0.011424994291267143 -0.0012611232791649996 -0.09956079560729386 -0.050960283968993283 -0.015764122453741897 -0.027261072167899456 0.044709646955078466 -0.022147551311203335 -0.03344737744803465 -0.04338759968511639 -0.01694719424279978 -0.05413336648513193 -0.07606650319900103 -0.02095654965218468 -0.05635043459616956 0.044709646955078466 -0.022147551311203335 -0.03344737744803465 -0.04995079443675902 -0.02066858796026016 -0.030089836633717632 -0.08113346682139633 -0.022529916478641027 -0.024495328115739925 0.044709646955078466 -0.022147551311203335 -0.03344737744803465 -0.024077325104805637 -0.012207222490754725 0.009761964555250323 -0.04109173324251072 -0.01226904720755398 0.022260739522412046 0.044709646955078466 -0.022147551311203335 -0.03344737744803465 -0.03702590747373177 -0.01819013015833809 -0.006774184414946455 -0.06534018247574451 -0.020257137416657352 -0.001675645912893986 0.044709646955078466 -0.022147551311203335 -0.03344737744803465 0.020619940152436442 -0.006625216769327629 -0.05926022473611739 0.0009866996111590198 -0.007516503320870633 -0.0829597779820517 -0.09822241548598437 -0.019658127079012787 -0.05623631783694014 -0.1040381070552863 -0.021277812245923206 -0.02055081411300397 -0.05695863444924863 -0.011577891313106358 0.03259264692472229 -0.08886069535257526 -0.01856902559184203 0.005958168259475274 -0.02123103974082747 -0.0020835321594132265 -0.09748389628138734 -0.06129967271531757 -0.014085533828068071 -0.030405250336957228 0.03437025820875418 -0.02046896268552951 -0.036591555617092424 -0.05372698843144068 -0.015268605617125952 -0.0572775446541897 -0.08640589194532532 -0.019277961026510852 -0.059494612765227335 0.03437025820875418 -0.02046896268552951 -0.036591555617092424 -0.0602901831830833 -0.018989999334586338 -0.0332340148027754 -0.09147285556772061 -0.020851327852967203 -0.027639506284797697 0.03437025820875418 -0.02046896268552951 -0.036591555617092424 -0.03441671385112992 -0.0105286338650809 0.006617786386192551 -0.051431121988835 -0.010590458581880156 0.019116561353354274 0.03437025820875418 -0.02046896268552951 -0.036591555617092424 -0.04736529622005606 -0.016511541532664264 -0.009918362584004227 -0.0756795712220688 -0.01857854879098353 -0.004819824081951758 0.03437025820875418 -0.02046896268552951 -0.036591555617092424 0.010280551406112157 -0.004946628143653804 -0.06240440290517516 -0.009352689135165265 -0.005837914695196808 -0.08610395615110947 -0.10856180423230866 -0.01797953845333896 -0.059380496005997915 -0.11437749580161058 -0.01959922362024938 -0.023694992282061744 -0.06729802319557292 -0.009899302687432533 0.029448468755664516 -0.09920008409889955 -0.016890436966168203 0.002813990090417502 -0.031570428487151754 -0.00040494353373940126 -0.10062807445044511 -0.049003633122872384 -0.01468764051196415 -0.02085678720609725 0.046666297801199366 -0.02107106936942559 -0.02704309248623244 -0.04143094883899549 -0.015870712301022032 -0.04772908152332972 -0.07410985235288013 -0.01988006771040693 -0.04994614963436736 0.046666297801199366 -0.02107106936942559 -0.02704309248623244 -0.04799414359063812 -0.019592106018482415 -0.023685551671915425 -0.07917681597527543 -0.02145343453686328 -0.018091043153937718 0.046666297801199366 -0.02107106936942559 -0.02704309248623244 -0.022120674258684737 -0.011130740548976979 0.01616624951705253 -0.03913508239638982 -0.011192565265776232 0.028665024484214253 0.046666297801199366 -0.02107106936942559 -0.02704309248623244 -0.03506925662761087 -0.017113648216560345 -0.00036989945314424774 -0.06338353162962361 -0.019180655474879606 0.004728639048908221 0.046666297801199366 -0.02107106936942559 -0.02704309248623244 0.02257659099855734 -0.005548734827549882 -0.052855939774315186 0.0029433504572799196 -0.006440021379092886 -0.07655549302024948 -0.09626576463986347 -0.01858164513723504 -0.04983203287513793 -0.1020814562091654 -0.02020133030414546 -0.014146529151201764 -0.05500198360312773 -0.010501409371328612 0.03899693188652449 -0.08690404450645436 -0.017492543650064283 0.012362453221277481 -0.01927438889470657 -0.0010070502176354797 -0.09107961131958514 -0.03906982611485466 -0.013889608486189989 -0.023468354784516796 0.05660010480921709 -0.020273037343651427 -0.02965466006465199 -0.03149714183097777 -0.01507268027524787 -0.05034064910174927 -0.0641760453448624 -0.01908203568463277 -0.0525577172127869 0.05660010480921709 -0.020273037343651427 -0.02965466006465199 -0.0380603365826204 -0.018794073992708254 -0.026297119250334972 -0.06924300896725771 -0.02065540251108912 -0.020702610732357265 0.05660010480921709 -0.020273037343651427 -0.02965466006465199 -0.012186867250667015 -0.010332708523202817 0.013554681938632983 -0.029201275388372097 -0.010394533240002071 0.026053456905794706 0.05660010480921709 -0.020273037343651427 -0.02965466006465199 -0.025135449619593152 -0.016315616190786184 -0.0029814670315637948 -0.05344972462160589 -0.018382623449105445 0.002117071470488674 0.05660010480921709 -0.020273037343651427 -0.02965466006465199 0.03251039800657506 -0.004750702801775721 -0.05546750735273473 0.012877157465297641 -0.005641989353318725 -0.07916706059866904 -0.08633195763184576 -0.01778361311146088 -0.05244360045355748 -0.09214764920114767 -0.019403298278371298 -0.01675809672962131 -0.04506817659511001 -0.00970337734555445 0.03638536430810495 -0.07697023749843665 -0.016694511624290122 0.009750885642857934 -0.009340581886688848 -0.00020901819186131855 -0.09369117889800468 -0.02887787544240688 -0.011741688895797957 -0.024547624800335663 0.06679205548166486 -0.018125117753259395 -0.03073393008047086 -0.02130519115852999 -0.012924760684855837 -0.05141991911756814 -0.05398409467241463 -0.01693411609424074 -0.05363698722860577 0.06679205548166486 -0.018125117753259395 -0.03073393008047086 -0.02786838591017261 -0.016646154402316222 -0.02737638926615384 -0.05905105829480993 -0.018507482920697087 -0.021781880748176132 0.06679205548166486 -0.018125117753259395 -0.03073393008047086 -0.0019949165782192323 -0.008184788932810785 0.012475411922814116 -0.019009324715924314 -0.00824661364961004 0.02497418688997584 0.06679205548166486 -0.018125117753259395 -0.03073393008047086 -0.014943498947145367 -0.014167696600394152 -0.004060737047382662 -0.043257773949158106 -0.016234703858713413 0.0010378014546698067 0.06679205548166486 -0.018125117753259395 -0.03073393008047086 0.042702348679022846 -0.002602783211383689 -0.0565467773685536 0.023069108137745424 -0.003494069762926693 -0.08024633061448791 -0.07614000695939796 -0.015635693521068847 -0.05352287046937635 -0.08195569852869988 -0.017255378687979266 -0.01783736674544018 -0.03487622592266223 -0.0075554577551624185 0.03530609429228608 -0.06677828682598885 -0.014546592033898088 0.008671615627039067 0.0008513687857589353 0.0019389013985307135 -0.09477044891382355 -0.055416091938153236 -0.01285797643622239 -0.012742793602529112 0.040253838985918514 -0.01924140529368383 -0.018929098882664308 -0.047843407654276346 -0.01404104822528027 -0.03961508791976159 -0.08052231116816098 -0.01805040363466517 -0.04183215603079922 0.040253838985918514 -0.01924140529368383 -0.018929098882664308 -0.05440660240591897 -0.017762441942740653 -0.015571558068347289 -0.08558927479055628 -0.01962377046112152 -0.009977049550369583 0.040253838985918514 -0.01924140529368383 -0.018929098882664308 -0.02853313307396559 -0.009301076473235219 0.024280243120620666 -0.04554754121167067 -0.009362901190034474 0.03677901808778239 0.040253838985918514 -0.01924140529368383 -0.018929098882664308 -0.041481715442891726 -0.015283984140818583 0.007744094150423889 -0.06979599044490446 -0.017350991399137847 0.012842632652476357 0.040253838985918514 -0.01924140529368383 -0.018929098882664308 0.01616413218327649 -0.0037190707518081224 -0.044741946170747046 -0.003469108358000933 -0.004610357303351126 -0.06844149941668135 -0.10267822345514432 -0.016751981061493282 -0.0417180392715698 -0.10849391502444625 -0.0183716662284037 -0.006032535547633628 -0.061414442418408585 -0.008671745295586852 0.04711092549009263 -0.09331650332173522 -0.01566287957432252 0.020476446824845618 -0.025686847709987422 0.0008226138581062803 -0.082965617716017 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/ref_pose.txt b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/ref_pose.txt deleted file mode 100644 index 804a89d4..00000000 --- a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/ref_pose.txt +++ /dev/null @@ -1 +0,0 @@ --0.09566993092407175 0.006383428857461439 0.006186305280135194 0.08809724664019486 -0.005200357068403557 0.02068598903709728 0.03267890351388464 0.004009355409384899 0.002217068111037633 0.02215591228698334 -0.0012984225731718906 -0.00011411675922941983 0.09466044139183748 -0.0014789633509431736 -0.003357540814317018 0.03118267238463732 0.0018613285183808658 -0.005594508517977706 0.022904640233889953 -0.001252104232717822 -0.003944514002735955 0.0687869720598841 -0.00994032882044861 -0.043209342003284974 0.017014408137705078 6.182471679925519e-05 -0.012498774967161723 0.015866901206737918 -0.0006911558944476216 -0.010331907402310242 0.08173555442881024 -0.003957421152865245 -0.026673193033088197 0.028314275002012737 0.0020670072583192627 -0.005098538502052469 0.023520512876830754 -0.001688111824815325 -0.00763381417236926 0.024089706802642025 -0.015522334541875706 0.025812847288082738 0.019633240541277422 0.0008912865515430038 0.023699553245934306 0.02221773935198649 -0.0054329711614574065 0.014524118299335649 0.025123592277739984 -0.0009415993498662792 -0.0013130118688188044 0.025914998223897194 0.0006329591679602072 -0.0053306029834193185 0.017689045476577424 -0.0013430894588003844 -0.00993469549008956 0.024591486634408584 -0.00037804688008711684 -0.007450030525558329 0.02601354596674918 -0.002678443020146559 0.023882145532464566 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/track.rapidmodel b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/track.rapidmodel deleted file mode 100644 index 2af7c8dd..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/track.rapidmodel and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/track.rapidproto.wmc b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/track.rapidproto.wmc deleted file mode 100644 index 0f338d93..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/track.rapidproto.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/weights.txt b/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/weights.txt deleted file mode 100644 index 9530c576..00000000 --- a/Android/tuibeauty/src/main/assets/LightHandPlugin/models/LightHandModel.bundle/weights.txt +++ /dev/null @@ -1 +0,0 @@ -0.8192975959697272 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1806659003525273 3.6503677745532845e-05 0.0 0.0 0.0 0.0 0.0 0.551193638817286 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.448806361182714 0.0 0.0 0.0 0.0 0.0 0.0 0.3812393081267916 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.6125065477706197 0.006254144102588725 0.0 0.0 0.0 0.0 0.0 0.7160391454583024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2733481548035388 0.01061269973815886 0.0 0.0 0.0 0.0 0.0 0.10876499725053898 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.891235002749461 0.0 0.0 0.0 0.0 0.0 0.0 0.20998635936772547 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.787299425720149 0.0027142149121253773 0.0 0.0 0.0 0.0 0.0 0.06159426442886417 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8367838197373119 0.10162191583382395 0.0 0.0 0.0 0.0 0.0 0.013515286135072609 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.92528651011713 0.060810985177331627 0.0 0.0 0.0 0.0 0.0003872185704656455 0.5890950947222355 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.32705370003943196 0.08385120523833257 0.0 0.0 0.0 0.0 0.0 0.3160649113052535 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.6170508117450311 0.06688427694971553 0.0 0.0 0.0 0.0 0.0 0.41433186968778357 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2818470358643254 0.303821094447891 0.0 0.0 0.0 0.0 0.0 0.7489872887561648 0.0 0.0007525877600875766 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.18589935165496735 0.06436077182878018 0.0 0.0 0.0 0.0 0.0 0.8155129433013797 0.0 0.0010459498586730923 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1500816907592082 0.033359416080738995 0.0 0.0 0.0 0.0 0.0 0.8525374012947355 0.0 0.03072563436372272 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10702325462841447 0.009713709713127204 0.0 0.0 0.0 0.0 0.0 0.7467300987196605 0.0 0.0001873213906497323 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.18562458880349883 0.06745799108619113 0.0 0.0 0.0 0.0 0.0 0.8641931041003806 0.0 0.03367261899969226 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.09268378318935916 0.009450493710567815 0.0 0.0 0.0 0.0 0.0 0.9756835673915033 0.0 0.0 0.0 0.0 2.351281448389375e-05 0.0 0.0 0.0 0.0 0.0 1.5675209655929165e-05 0.0 0.0 0.024277244584356927 0.0 0.0 0.0 0.0 0.0 0.0 0.9976138484418958 0.0 0.0 0.0 0.0 0.00023335481863776529 0.0 0.0 0.0 0.0 0.0 0.0008024653701548293 0.0 0.0 0.0013503313693116212 0.0 0.0 0.0 0.0 0.0 0.0 0.9727360077864566 0.0 0.0 0.0 0.0 0.01185306726586668 0.0 0.0 0.0 0.0 0.0 0.014739336000846323 0.0 0.0 0.0006715889468303447 0.0 0.0 0.0 0.0 0.0 0.0 0.9684499632990606 0.0 0.008937517456822135 0.0 0.0 0.009119202937175042 0.0 0.0 0.0 0.0 0.0 0.0023764146977704676 0.0 0.0 0.01111690160917167 0.0 0.0 0.0 0.0 0.0 0.0 0.9811594630896031 0.0 0.0 0.0 0.0 0.0001729505361466623 0.0 0.0 0.00030987072642061074 0.0 0.0 0.018357715647829592 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.968985773846248 0.0 0.0 0.0 0.0 0.005260357301602 0.0 0.0 0.0 0.0 0.0 0.025753868852150086 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9988424014059352 0.0 0.0 0.0 0.0 1.1944434490749014e-05 0.0 0.0 0.0 0.0 0.0 0.0011456541595741576 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9993983047246129 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0006016952753871294 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9736088068412103 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.026391193158789704 0.0 0.0 0.0 0.0 0.0 0.0 0.9024931829556763 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.09750681704432375 0.0 0.0 0.0 0.0 0.0 0.0 0.7606983940095706 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2393016059904294 0.0 0.0 0.0 0.0 0.0 0.0 0.9177500371949167 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08224996280508337 0.0 0.0 0.0 0.0 0.0 0.0 0.10793887169197236 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1595834925126598 0.7321640110780502 0.0 0.0 0.0 0.0 0.0003136247173177239 0.39310260160107713 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2795884498752362 0.3271600110585284 0.0 0.0 0.0 0.0 0.00014893746515847164 0.40755597950735123 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.26570646474800397 0.32673755574464475 0.0 0.0 0.0 0.0 0.0 0.10485651248536397 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.154357252967316 0.74078623454732 0.0 0.0 0.0 0.0 0.0 0.9948609838484891 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.005139016151510895 0.0 0.0 0.0 0.0 0.0 0.0 0.9992988301373747 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0007011698626252591 0.0 0.0 0.0 0.0 0.0 0.0 0.9902669804869927 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.009733019513007332 0.0 0.0 0.0 0.0 0.0 0.0 0.9690151981248346 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03098480187516545 0.0 0.0 0.0 0.0 0.0 0.0 0.6985650909987912 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.30143490900120884 0.0 0.0 0.0 0.0 0.0 0.0 0.894499961798573 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10550003820142694 0.0 0.0 0.0 0.0 0.0 0.0 0.9402861014265853 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05971389857341468 0.0 0.0 0.0 0.0 0.0 0.0 0.836144006884109 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.163855993115891 0.0 0.0 0.0 0.0 0.0 0.0 0.4155277114874017 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5844722885125984 0.0 0.0 0.0 0.0 0.0 0.0 0.5859738168569293 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4109808620967398 0.0030453210463309774 0.0 0.0 0.0 0.0 0.0 0.23696185953461388 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7312998756642225 0.03173826480116358 0.0 0.0 0.0 0.0 0.0 0.04661037025128828 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7553090948486719 0.1980805349000397 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0006936258288598856 0.0 0.07702803996504376 0.9222783342060964 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.09556684713399052 0.9044331528660096 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.003948329789211451 0.0 0.526848204434322 0.4692034657764666 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01189361908743754 0.0 0.4324912963542555 0.555615084558307 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 9.856100926473489e-05 0.0 0.1341207239582367 0.865686189725638 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 9.452530686047452e-05 0.0 0.0 0.0 0.0 0.0005189682029109506 0.0 0.11724867806853037 0.8821852173432593 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.713638529936757e-05 0.0 0.0 0.0 0.0 0.011518504928669172 0.0 0.35860935715037684 0.629872137920954 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.005651567914964957 0.0 0.469027022327834 0.525321409757201 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8951379305107136 0.0 0.0007274413049081996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.09894298162467699 0.0051916465597012665 0.0 0.0 0.0 0.0 0.0 0.9408268837083759 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05917311629162411 0.0 0.0 0.0 0.0 0.0 0.0 0.6574767501917849 0.0 0.3419075936135783 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0006156561946369358 0.0 0.0 0.0 0.0 0.0 0.0 0.9575012024853146 0.0 0.03220459519436199 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.010294202320323392 0.0 0.0 0.0 0.0 0.0 0.0 0.9053627854625579 0.0 0.06287735321195177 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03117016761221317 0.0005896937132771697 0.0 0.0 0.0 0.0 0.0 0.7396647704286015 0.0 0.24945835381309117 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.010876875758307402 0.0 0.0 0.0 0.0 0.0 0.0 0.9998766883618134 0.0 0.0 0.0 0.0 0.00010936930368209975 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3942334504489417e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.9998595702850723 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00014042971492767863 0.0 0.0 0.0 0.0 0.0 0.0 0.9901493511047996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.009850648895200374 0.0 0.0 0.0 0.0 0.0 0.0 0.9996511712966265 0.0 0.0 0.0 0.0 6.907031357922364e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00027975838979422854 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9998970875784707 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00010291242152927852 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8605257841473408 0.0 0.0 0.0 0.0 0.10061770350845502 0.0 0.0 0.0 0.0 0.0 0.038856512344204217 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5526051140261485 0.0 0.0 0.0 0.0 0.3633124857344264 0.0 0.0 0.0 0.0 0.0 0.08408240023942504 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4857679771037054 0.0 0.0 0.0 0.0 0.102635010309468 0.0 0.0 0.0 0.0 0.0 0.40912083614499434 0.002476176441832223 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8625885788433875 0.0 0.0 0.0 0.0 0.02326792885996587 0.0 0.0 0.0 0.0 0.0 0.11404104527639146 0.00010244702025523944 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9976305936287428 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0015850819793936084 0.0 0.0 0.000784324391863603 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9996477406399759 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0003522593600240983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9548073325862725 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.044384701190828595 0.0 0.0 0.000807966222898865 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9622586138976836 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.028817686712726862 0.0 0.0 0.008923699389589559 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14830844100694723 0.8516915589930527 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5282083701498379 0.47179162985016204 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.382759601122205 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5878432972641408 0.02939710161365436 0.0 0.0 0.0 0.0 0.0 0.11027390516393902 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7193345397817691 0.17039155505429177 0.0 0.0 0.0 0.0 0.0 0.6857502114340862 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.30982161742597314 0.004428171139940663 0.0 0.0 0.0 0.0 0.0 0.8568352482974909 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14312524307523378 3.950862727533469e-05 0.0 0.0 0.0 0.0 0.0 0.9480858482433718 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0519141517566282 0.0 0.0 0.0 0.0 0.0 0.0 0.9180998111033161 0.0 0.0818564443647505 0.0 0.0 4.374453193350831e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9618745196598232 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03812548034017679 0.0 0.0 0.0 0.0 0.0 0.0 0.9939465638422249 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.006053436157775134 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.998945864293845 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0010541357061550085 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9994629642866548 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0005370357133451957 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9831408974021583 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.016859102597841777 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9638818354824895 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.036118164517510445 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.09409019913086403 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.17911228367808746 0.7260389074005716 0.0 0.0 0.0 0.0 0.0007586097904768377 0.3683631244513664 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3649511076704075 0.2664390831527716 0.0 0.0 0.0 0.0 0.00024668472545453623 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9164426158995732 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08355738410042676 0.0 0.0 0.0 0.0 0.0 0.0 0.93274953840336 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06725046159664005 0.0 0.0 0.0 0.0 0.0 0.0 0.8491557204178378 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.15084427958216218 0.0 0.0 0.0 0.0 0.0 0.0 0.8190666103964859 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1809333896035142 0.0 0.0 0.0 0.0 0.0 0.0 0.30791577698829065 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.6920842230117094 0.0 0.0 0.0 0.0 0.0 0.0 0.3936668946833543 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.6063331053166457 0.0 0.0 0.0 0.0 0.0 0.0 0.10196960161527899 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8979737437288413 5.665465587962019e-05 0.0 0.0 0.0 0.0 0.0 0.9582676501247871 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.041732349875212994 0.0 0.0 0.0 0.0 0.0 0.0 0.9990239295086301 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0009760704913698789 0.0 0.0 0.0 0.0 0.0 0.0 0.992314379399449 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.007685620600551026 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9879171236553883 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.012082876344611599 0.0 0.0 0.0 0.0 0.0 0.0 0.01303886299548241 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.49746683922782736 0.4893779781303019 0.0 0.0 0.0 0.0 0.00011631964638827493 0.0023140966081725716 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08706340237899755 0.9106225010128299 0.0 0.0 0.0 0.0 0.0 0.0020458240458907425 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.09047532289148451 0.9074788530626248 0.0 0.0 0.0 0.0 0.0 0.015554588905158578 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5039171568290125 0.48007649230884686 0.0 0.0 0.0 0.0 0.0004517619569820755 0.6910945341446175 0.0 0.2600296233909052 0.000164011855133594 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.047573075900655966 0.001138754708687882 0.0 0.0 0.0 0.0 0.0 0.698439074207406 0.0 0.2681994869160936 0.00015166963366028226 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03279036314982269 0.0004194060930172987 0.0 0.0 0.0 0.0 0.0 0.8735675899071969 0.0 0.03896790754865927 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.07971663643630132 0.007747866107842474 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5790834361265159 0.0 0.42024282785879896 0.0002584585434934525 0.0 0.0003946784517050977 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.059901948667243e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0035449502622789736 0.0 0.8637024337119862 0.13275261602573485 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.013480301865598131 0.0 0.7631268837639142 0.22339281437048766 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.007108461908898708 0.0 0.9820851175524677 0.010806420538633526 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0018122672512711057 0.0 0.9833690247194568 0.014818708029272157 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2736651596590007 0.0 0.6440496016154134 0.00023238279231972562 0.0 0.08205285593326621 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20181499594595478 0.0 0.7959818708705362 0.0005131179537663052 0.0 0.0016694162102561098 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.059901948667243e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.02390123783587568 0.0 0.9735549326478788 0.0019473540447845683 0.0 0.0005964754714608976 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.018977255517653755 0.0 0.9772654225782244 0.0011818761419180623 0.0 0.0025754457622037662 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4314886982696111 0.0 0.0 0.0 0.0 0.0083590424412979 0.0 0.0 0.0002921141357311162 0.0 0.0 0.5491227139751901 0.010737431178169825 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8090927008479787 0.0 0.0 0.0 0.0 0.0019445451320940406 0.0 0.0 0.0021141132018482702 0.0 0.0 0.1868258876895238 2.2753128555176338e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8279264489360669 0.0 0.06726776648720782 0.00017197766571321288 0.0 0.09867562835223484 0.0 0.0 0.0 0.0 0.0 0.005719920759056981 0.0 0.0 0.00023825779972020422 0.0 0.0 0.0 0.0 0.0 0.0 0.7884862852624559 0.0 0.18849557215291013 0.0004878180662908126 0.0 0.009544833416379385 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.012805273545760599 0.0001802175562033855 0.0 0.0 0.0 0.0 0.0 0.9269628391498064 0.0 0.011341898184099745 0.0 0.0 0.00022593551423864453 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05718513030734312 0.0042841968445122315 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9853999234583198 0.0 0.0 0.0 0.0 0.008583773168357341 0.0 0.0 0.0 0.0 0.0 0.006016303373322784 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9797035292951642 0.0 0.0 0.0 0.0 0.0021433438317088253 0.0 0.0 0.0 0.0 0.0 0.018153126873127007 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9176645492973774 0.0 0.07788919117003437 0.0 0.0 0.004446259532588326 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.651742262389852 0.0 0.3166961159777022 0.00018539117538005187 0.0 0.03135563143757908 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0599019486672425e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.8888218737180151 0.0 0.027502400490746395 0.0 0.0 0.08327990486694595 0.0 0.0 0.0 0.0 0.0 0.00039582092429261403 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9881574270678325 0.0 0.00043158132272912023 0.0 0.0 0.01141099160943838 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.002101745917097124 0.0 0.08954673321085564 0.9083515208720472 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.015475036862979068 0.0 0.4158885125657774 0.5686364505712436 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9037917798422256 0.0 4.026899689928728e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08878793826349572 0.007380012897379431 0.0 0.0 0.0 0.0 0.0 0.9983617364346473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.001638263565352658 0.0 0.0 0.0 0.0 0.0 0.0 0.7051613108757698 0.0 0.0 0.0 0.0 0.00027578626385283794 0.0 0.0 0.04759766109417339 0.0 0.0 0.24696524176620388 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5661402743904633 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.24253608999340293 0.001315709847234054 0.0 0.19000792576889972 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.36741761581508825 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0665741161163873 0.0 0.0 0.564284487124869 0.0017237809436553924 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2930235627853766 0.0 0.0 0.0 0.0 0.00020255644796959531 0.0 0.0 0.01744308175509145 0.0 0.0 0.6892429294100512 8.786960151135709e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9254116094582661 0.07458839054173397 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00020208143881984443 0.0 0.9107090421202501 0.0890888764409301 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5310680772978384 0.46893192270216155 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.513588983323959 0.486411016676041 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.213953503596913 0.0 0.7859734290349736 7.306736811340053e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.35509999679015763 0.0 0.6425590154914128 0.0005706436100399319 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.001770344108389654 0.0 0.0 0.0 0.0 0.0 0.0 0.050469211353380075 0.0 0.9459185196424031 0.003570467353051678 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.180165116522104e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.03223248100157173 0.0 0.9673431080780397 0.00042441092038854604 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2670990102495015 0.0 0.7240983944156796 0.002040909248863669 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0067616860859552996 0.0 0.0 0.0 0.0 0.0 0.0 0.014727486116594368 0.0 0.9781469740610732 0.006578999840830811 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0005465399815017237 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9143547620277735 0.08564523797222644 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6818877508115105e-05 0.0 0.8595000519387451 0.14048312918374675 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.025465728769496158 0.0 0.9701662154739739 0.003059156220591812 0.0 0.0010296741447229948 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0002792253912151458 0.0 0.0 0.0 0.0 0.0 0.0 0.00018806111261295453 0.0 0.9995912056734376 0.0002207332139494596 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9999594024548859 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.0597545114098186e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9911316834979329 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0016615125404604394 0.0 0.0 0.007206803961606643 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9083069870212636 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.04175251751770351 0.0 0.0 0.04994049546103301 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8874927133520671 0.0 0.0 0.0 0.0 0.0057983698711972075 0.0 0.0 0.003357490326123841 0.0 0.0 0.10335142645061174 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.37371181509552537 0.0 0.09695363227747406 0.00029995020806329007 0.0 0.528968752293822 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 6.585012511523772e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.45808628783501604 0.0 0.4309377047461747 0.0019922126082209247 0.0 0.10843940478173532 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0005443900288530276 0.0 0.0 0.0 0.0 0.0 0.0 0.4666741767291482 0.0 0.051837062683867396 0.000165212578714308 0.0 0.4794239345785894 0.0 0.0 0.0 0.0 0.0 0.0018674477119027273 0.0 0.0 3.216571777799221e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.9998346182663278 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00016538173367225103 0.0 0.0 0.0 0.0 0.0 0.0 0.01109383671935186 0.0 0.8362259680270655 0.15268019525358262 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9786529234917792 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.021347076508220663 0.0 0.0 0.0 0.0 0.0 0.0 0.9984334308388673 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0015665691611328066 0.0 0.0 0.0 0.0 0.0 0.0 0.9925355585181097 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.007464441481890327 0.0 0.0 0.0 0.0 0.0 0.0 0.9375363892914098 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.062378243925796856 8.536678279331096e-05 0.0 0.0 0.0 0.0 0.0 0.0013263746408027023 0.0 0.9378414244319891 0.06083220092720817 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.006963018567870185 0.0 0.8603699732682489 0.13266700816388083 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7986162952755217 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.02982798750609852 0.0 0.0 0.17155571721837984 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.45690135117873304 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.022335586997321737 0.0 0.0 0.5130026611148559 0.007760400709089206 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2800206384302866 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.04662096696351482 0.0 0.0 0.6623860126562708 0.010972381949927765 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.6140663974073155 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1251100298565453 0.0009140148950231932 0.0 0.2597333031925238 0.00017625464859221545 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5956966538615165 0.0 0.0 0.0 0.0 0.0015903471142099288 0.0 0.0 0.3992914359352793 0.0 0.0 0.0034215630889942146 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.6938055943743093 0.0 0.0 0.0 0.0 0.0002878326241256319 0.0 0.0 0.29185013893809736 0.0 0.0 0.014056434063467642 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8117769736027417 0.0 0.0 0.0 0.0 0.06791638603360327 0.0 0.0 0.0 0.0 0.0 0.12030664036365504 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0008408119209265439 0.0 0.8423628901845972 0.1567962978944763 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4293430190325088 0.5706569809674912 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9994241480632413 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0005758519367587365 0.0 0.0 0.0 0.0 0.0 0.0 0.967578326069864 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03230275397557569 0.00011891995456036007 0.0 0.0 0.0 0.0 0.0 0.9986417322657654 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0013582677342346434 0.0 0.0 0.0 0.0 0.0 0.0 0.9808851643369186 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01911483566308146 0.0 0.0 0.0 0.0 0.0 0.0 0.8663258312958159 0.0 0.0021454038291394734 0.0 0.0 0.09945043590944129 0.0 0.0 0.0 0.0 0.0 0.03207832896560334 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.933635773555986 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06636422644401402 0.0 0.0 0.0 0.0 0.0 0.0 0.04234547120089497 0.9576545287991051 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08437312317790628 0.9154181314958459 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00020874532624786974 0.0 0.0 0.0 0.0 0.0 0.0 0.00013721320274102865 0.935323941420015 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06453884537724405 0.0 0.0 0.0 0.0 0.0 0.0 0.4454295032078969 0.5545704967921031 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.09225535964185001 0.9077342535535465 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0386804603431794e-05 0.0 0.0 0.0 0.0 0.8762129377100832 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.117736755557022 0.006050306732894797 0.0 0.0 0.0 0.0 0.0 0.5261005165786817 0.0 0.09203318554075175 0.0 0.0 0.38140280924642006 0.0 0.0 0.0 0.0 0.0 0.0004634886341466084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8122339656612856 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.18281893612897843 0.004947098209735988 0.0 0.0 0.0 0.0 0.0 0.6903704281446434 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2370021560465567 0.07262741580879999 0.0 0.0 0.0 0.0 0.0 0.6098786289251876 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.34560217829861634 0.04451919277619605 0.0 0.0 0.0 0.0 0.0 0.7998278404580191 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19809570221304904 0.002076457328931714 0.0 0.0 0.0 0.0 0.0 0.5599285579518095 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.42344759511638247 0.016623846931808166 0.0 0.0 0.0 0.0 0.0 0.9756158777292825 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.024384122270717384 0.0 0.0 0.0 0.0 0.0 0.0 0.9194847850002501 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08051521499974996 0.0 0.0 0.0 0.0 0.0 0.0 0.2997440890890838 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5825956559129282 0.11766025499798803 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0017362856442471979 0.9775571947527687 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.020706519602984114 0.0 0.0 0.0 0.0 0.0 0.0 0.0008670271053427473 0.9628951801380538 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0362377927566036 0.0 0.0 0.0 0.0 0.9953456742300083 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.004654325769991706 0.0 0.0 0.0 0.0 0.0 0.0 0.05537896499726782 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8588401376620393 0.08544546757130093 0.0 0.0 0.0 0.0 0.0003354297693920337 0.9949231597695646 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.005076840230435409 0.0 0.0 0.0 0.0 0.0 0.0 0.9812039792132605 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.018796020786739507 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9999903594015116 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 9.640598488354144e-06 0.0 0.0 0.0 0.0 0.0 0.0 1.8761726078799253e-05 0.0 0.002214325538055697 0.9935206840948915 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.004246228640974053 0.0 0.0 0.0 0.0 0.31674361785203914 0.0 0.0 0.0 0.0 0.5276132010584843 0.0 0.0 0.0 0.0 0.0 0.15564318108947656 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2801491583117445 0.0 0.0 0.0 0.0 0.1758010806913066 0.0 0.0 0.0 0.0 0.0 0.5428761875988233 0.001173573398125693 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.014009329148979118 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.474915498808035 0.5110751720429858 0.0 0.0 0.0 0.0 0.0 0.0024107215094966547 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.09672505181727241 0.900864226673231 0.0 0.0 0.0 0.0 0.0 0.003209405419953996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13886961563927824 0.8578909739098658 0.0 0.0 0.0 0.0 3.000503090199426e-05 0.003245514457057146 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1536185644160364 0.8430226823385288 0.0 0.0 0.0 0.0 0.00011323878837770581 0.009378335535916016 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4622806439356381 0.5283050144913635 0.0 0.0 0.0 0.0 3.600603708239311e-05 0.01613075981731637 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4897559808310616 0.4940944985283355 0.0 0.0 0.0 0.0 1.876082328658364e-05 0.9712485707109804 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.028751429289019557 0.0 0.0 0.0 0.0 0.0 0.0 0.9951178646808502 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.004882135319149891 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.22863045121570894 0.0 0.7630914607040535 0.0006765946301006148 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.007601493450136974 0.0 0.0 0.0 0.0 0.0 0.0 0.5910569665726602 0.0 0.3859642439108937 0.00011225156352855194 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.02252304200201138 0.00034349595090621003 0.0 0.0 0.0 0.0 0.0 0.13304196761894807 0.0 0.8650338059509742 0.00018897838737090095 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0017352480427068112 0.0 0.0 0.0 0.0 0.0 0.0 0.015677361416922955 0.0 0.9738435742205568 0.010470747662586705 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 8.316699933466409e-06 0.0 0.0 0.0 0.0 0.0 0.0 0.3138176163580566 0.0 0.16667570582659869 0.0 0.0 0.5195066778153447 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19170637631390844 0.0 0.6880674076424478 0.0008047692477715748 0.0 0.11928153486107747 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00013991193479473947 0.0 0.0 0.0 0.0 0.0 0.0 0.682084463778167 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.317915536221833 0.0 0.0 0.0 0.0 0.0 0.0 0.6128413539985913 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3871586460014087 0.0 0.0 0.0 0.0 0.0 0.0 0.16464552226338725 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5086809113038533 0.32667356643275947 0.0 0.0 0.0 0.0 0.0 0.05111612047016119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1519512269034636 0.7969326526263751 0.0 0.0 0.0 0.0 0.0 0.9861791614058378 0.0 0.0 0.0 0.0 0.013458586424285142 0.0 0.0 0.0 0.0 0.0 0.00036225216987706047 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4816238674120783 0.0 0.0 0.0 0.0 0.4269480975304185 0.0 0.0 0.0 0.0 0.0 0.09142803505750316 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5211618351114596 0.0 0.005719096363707119 0.0 0.0 0.4562177865447905 0.0 0.0 0.0 0.0 0.0 0.01690128198004279 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9202477016766736 0.0 0.00029604902419570246 0.0 0.0 0.0771607750248953 0.0 0.0 0.0 0.0 0.0 0.0022954742742355115 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.013108225046816805 0.9316659652984848 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05522580965469837 0.0 0.0 0.0 0.0 4.6968982423565386e-05 0.0 0.008651718550375899 0.9725003226868092 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.018800989780391356 0.0 0.0 0.0 0.0 0.2693115982369965 0.0 0.7252128892956538 0.0016423719449256229 0.0 0.0017973788283843224 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.002035761694039681 0.0 0.0 0.0 0.0 0.0 0.0 0.9702006148919161 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0020404931985447813 0.0 0.0 0.02775889190953916 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4072632792912771 0.0 0.0 0.0 0.0 0.12338690975967145 0.0 0.0 0.0 0.0 0.0 0.4693498109490515 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2699674615416637 0.0 0.0 0.0 0.0 0.5831712689274068 0.0 0.0 0.0 0.0 0.0 0.14686126953092962 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8269670169912663 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.17158781180090918 0.0014451712078245812 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10334350512281924 0.8963345016656408 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00032199321154000054 0.0 0.0 0.0 0.0 0.0 0.0 0.000761881374487266 0.9533784619202137 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.04585965670529902 0.0 0.0 0.0 0.0 0.0 0.0 0.0007551502624400391 0.9419051700986091 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05733967963895096 0.0 0.0 0.0 0.0 0.0 0.0 0.006786699874386574 0.9741801061335912 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.019033193992022187 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9601346370801079 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0398653629198921 0.0 0.0 0.0 0.0 0.0 0.0 0.10483352155107958 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.45082481263641094 0.44391118348936 0.0 0.0 0.0 0.0 0.0004304823231494942 0.01663718669724991 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.18425978673875754 0.7987615543263902 0.0 0.0 0.0 0.0 0.00034147223760244325 0.6102450472001045 0.0 0.0017799872585350523 0.0 0.0 0.37881448855116007 0.0 0.0 0.0 0.0 0.0 0.009160476990200414 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.6053305288775624 0.0 0.0 0.0 0.0 6.374298827129015e-05 0.0 0.0 0.31924528975198607 0.0001938576527372213 0.0 0.07516658072944299 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.6049287417928356 0.0 0.0 0.0 0.0 0.017962307897248803 0.0 0.0 0.004648770418618807 0.0 0.0 0.3724601798912968 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19209916070010066 0.0 0.0 0.0 0.0 0.00897426517232457 0.0 0.0 0.0006813772190768818 0.0 0.0 0.7982451969084978 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08515406977382536 0.0 0.0 0.0 0.0 0.014715348079215304 0.0 0.0 0.0 0.0 0.0 0.9001305821469594 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0997233260034883 0.0 0.0 0.0 0.0 0.03186088795283499 0.0 0.0 0.0 0.0 0.0 0.8683500398240844 6.574621959237345e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000323623801415029 0.5306887569751237 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4689876192234612 0.0 0.0 0.0 0.0 0.0 0.0 0.001391655417408426 0.7006531971366482 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.29795514744594337 0.0 0.0 0.0 0.0 0.0 0.0 0.0005999444679719378 0.471030601228032 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5283694543039961 0.0 0.0 0.0 0.0 3.133421069123268e-05 0.0 0.0006359954453362946 0.6538143996107002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.34551827073327224 0.0 0.0 0.0 0.0 2.6857894878199446e-05 0.0 0.0004777122713489776 0.7456567087514477 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2538387210823251 0.0 0.0 0.0 0.0 0.0 0.0 2.267265224685984e-05 0.5746252269434283 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.42535210040432486 0.0 0.0 0.0 0.0 0.0 0.0 0.0010972020902448147 0.48564337794244516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.51325941996731 0.0 0.0 0.0 0.0 0.0 0.0 0.0007900445314394031 0.6370209646218238 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3621889908467368 0.0 0.0 0.0 0.0 0.0 0.0 0.00019792677071864387 0.11807527395630449 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8817267992729768 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.07134508061403567 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9286549193859643 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.04538367028360177 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9546163297163982 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00015630987946664183 0.12022176583401946 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.879621924286514 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13430389882860425 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8656961011713957 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00021718474277182027 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9997828152572281 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 4.0241448692152914e-05 0.004022837311129582 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9959369212401783 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0007765268930027496 0.008461751309751582 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9907617217972456 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0009835859004963194 0.25624440403842014 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7427720100610835 0.0 0.0 0.0 0.0 0.0 0.0 0.00013800401428579645 0.20416212945872597 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7956998665269882 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00021409838571852672 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9997859016142815 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0014904165503077946 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9985095834496921 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7828106607150668 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.21718933928493325 0.0 0.0 0.0 0.0 0.0 0.0 0.0004279101796832293 0.6700441660500077 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3295279237703091 0.0 0.0 0.0 0.0 0.0 0.0 0.0020489593220328456 0.1880921046505758 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8098589360273913 0.0 0.0 0.0 0.0 0.0 0.0 0.000663086618126705 0.010319319230882045 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9890175941509913 0.0 0.0 0.0 0.0 0.0 0.0 0.001962754813246134 0.1699881061614152 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8280491390253387 0.0 0.0 0.0 0.0 0.0 0.0 0.00085680131616358 0.07125971302761497 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9278834856562215 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00042187725508781635 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9995781227449122 0.0 0.0 0.0 0.0 0.0 0.0 0.00021895724437309642 0.0079607074340072 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9918203353216197 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.00417342838049372 0.0 0.0 0.0 0.0 0.18103418958216044 0.8065581538467652 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00823422819058063 0.0 0.0 0.0 0.0030556908170688416 0.0 0.0 0.0 0.0 0.17348196412776265 0.8187121164121224 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.004750228643046248 0.0 0.0 0.0 0.002413507645763141 0.0 0.0 0.0 0.0 0.6699742343331045 0.3264742003203104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0011380577008221302 0.0 0.0 0.0 0.0035721274321951044 0.0 0.0 0.0 0.0 0.6448612097044137 0.3481100634403757 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.003456599423015392 0.0 0.0 0.0 0.0013321477476115617 0.0 0.0 0.0 0.0 0.3291757189019849 0.6603019335169236 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.009190199833480121 0.0 0.0 0.0 0.002923705296488139 0.0 0.0 0.0 0.0 0.2616803425139259 0.7144679857501781 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.02092796643940779 0.0 0.0 0.0 0.0031221226485300744 0.0 0.0 0.0 0.0 0.6746627121104313 0.31036622571244765 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.011848939528591014 0.0 0.0 0.0 0.004211013444856074 0.0 0.0 0.0 0.0 0.7718651467114087 0.2213532672656801 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0025705725780551347 0.0 0.0 0.0 0.0014570841659295544 0.0 0.0 0.0 0.0 0.4204014339527409 0.5771327134848495 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0010087683964800972 0.0 0.0 0.0 0.0042213574935614185 0.0 0.0 0.0 0.0 0.8469692418381504 0.1488094006682882 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0030522556321104723 0.0 0.0 0.0 0.0 0.9647233572309237 0.032224387136965904 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0021144902975505013 0.0 0.0 0.0 0.0 0.9488241174625731 0.04870854446610993 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00035284777376637844 0.0 0.0 0.0 0.08883770945957842 0.0 0.008861264894285747 0.0 0.0 0.9015036437297363 0.0007973819163995253 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.09418961310595719 0.0 0.0020429665159532057 0.0 0.0 0.9000672012954174 0.0026963570747426456 0.0 0.0 0.0 0.0 0.001003862007929542 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.15664331741531956 0.0 0.0 0.0 0.0 0.8282204854201684 0.00038419886501650123 0.0 0.0 0.0 0.0 0.01475199829949553 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06868687262666531 0.0 0.0 0.0 0.0 0.9010799104496816 0.00022137530012577414 0.0 0.0 0.0 0.0 0.030011841623527345 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.005211187641642316 0.0 0.0 0.0 0.0 0.2140967244765813 0.7645522440246731 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01613984385710328 0.0 0.0 0.0 0.0036438990530789825 0.0 0.0 0.0 0.0 0.6656345133891268 0.3212917063444473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.009429881213346937 0.0 0.0 0.0 7.306736811340053e-05 0.0 0.0 0.0 0.0 0.9665154731878417 0.03341145944404493 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0004011794374288583 0.0 0.0 0.0 0.0 0.9546272942234454 0.0449586583135956 0.0 0.0 0.0 0.0 1.2868025530162637e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0014889232868742297 0.0 0.0 0.0 0.0 0.6516598915789275 0.3449844022709528 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0018667828632455252 0.0 0.0 0.0 0.0009285077356276637 0.0 0.0 0.0 0.0 0.6588355072994517 0.33517975565111313 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.005056229313807408 0.0 0.0 0.0 0.10044897709148386 0.0 0.006942763821187253 0.0 0.0 0.8919466930491986 0.0006615660381302521 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.16847055912364184 0.0 0.0011477153374432644 0.0 0.0 0.8287520210242253 1.7102787754403954e-05 0.0 0.0 0.0 0.0 0.0016126017269352567 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06859094112455048 0.0 0.009560018914452054 0.0 0.0 0.9211062162872359 0.0007428236737616225 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0008870663637796974 0.0 0.0 0.0 0.0 0.9618037901126173 0.03698514020331213 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00032400332029090606 0.0 0.0 0.0 0.004129748274634794 0.0 0.0 0.0 0.0 0.9594142723401026 0.036455979385262655 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08108941673104153 0.0 0.0 0.0 0.0 0.8979082639596495 0.00263519045633312 0.0 0.0 0.0 0.0 0.018367128852975867 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.049876595799049066 0.0 0.0 0.0 0.0 0.9307540572037074 2.7114967462039044e-05 0.0 0.0 0.0 0.0 0.01934223202978155 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0014525080449332534 0.0 0.0 0.0 0.0 0.9589147485434788 0.039632743411587984 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0005985856022925712 0.0 0.0 0.0 0.0 0.9704663897736074 0.028935024624100088 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0016240336422617989 0.0 0.0 0.0 0.0 0.9414862450398606 0.056889721317877597 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.005965517672561725 0.0 0.0 0.0 0.0 0.9711603847457448 0.022874097581693432 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.001443736235972904 0.0 0.0 0.0 0.0 0.7753397574830749 0.22237170923439908 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0008447970465531142 0.0 0.0 0.0 0.0002681598364424857 0.0 0.0 0.0 0.0 0.008697116653028128 0.9330772967289536 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.057957426781575755 0.0 0.0 0.0 0.0017063897666279326 0.0 0.0 0.0 0.0 0.13168069620876308 0.859177682699939 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.007435231324670033 0.0 0.0 0.0 0.0012071403587846992 0.0 0.0 0.0 0.0 0.16629565773152405 0.8245826624070791 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.007914539502612096 0.0 0.0 0.0 0.00011952434496544571 0.0 0.0 0.0 0.0 0.007196962325557199 0.9543713885209033 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03831212480857402 0.0 0.0 0.0 0.0014492209307952345 0.0 0.0 0.0 0.0 0.5939254712826914 0.3962533373108625 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00837197047565099 0.0 0.0 0.0 0.0004681722337218601 0.0 0.0 0.0 0.0 0.2694942247434778 0.7265322736582263 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0035053293645741267 0.0 0.0 0.0 0.0012888817460786962 0.0 0.0 0.0 0.0 0.010663581121176345 0.9467829094581679 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.041264627674577094 0.0 0.0 0.0 0.0005778491354477725 0.0 0.0 0.0 0.0 0.008351663221419111 0.9616572002977979 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.02941328734533517 0.0 0.0 0.0 0.0017951144012971062 0.0 0.0 0.0 0.0 0.013650119847675295 0.9282797770979294 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05627498865309828 0.0 0.0 0.0 0.10538442133313963 0.0 0.0 0.0 0.0 0.8855029528583385 0.0020759714209379063 0.0 0.0 0.0 0.0 0.007036654387583933 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03509713618884716 0.9108979357773321 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0540049280338208 0.0 0.0 0.0 0.0016745343706993257 0.0 0.0 0.0 0.0 0.02457016453820789 0.9054567519619721 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06829854912912076 0.0 0.0 0.0 0.0013592576356307084 0.0 0.0 0.0 0.0 0.14509907339697628 0.8493533948512835 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.004188274116109604 0.0 0.0 0.0 0.0001145294187485686 0.0 0.0 0.0 0.0 0.00331667900795619 0.9534721888132024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.043096602760092834 0.0 0.0 0.0 0.00020339589296585158 0.0 0.0 0.0 0.0 0.011933473667289474 0.9423616598665395 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.045501470573205166 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.028803703912605904 0.959428449458748 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.011767846628646165 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00048476935591129205 0.5428920550195873 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.45662317562450155 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0006952493822278683 0.7268431912388937 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.27246155937887834 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0023550768558666326 0.522135007114015 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4755099160301184 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0025668832164241107 0.5997931514401381 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3976399653434379 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0013757558263565288 0.7184933343201132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2801309098535304 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0018156719623479258 0.5569877800708454 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4411965479668068 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0005381881462398544 0.5913056470839986 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4081561647697615 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3204548091425913e-05 0.6686155244607235 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.33136127099118506 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 6.037067595033508e-05 0.11323762854025855 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8867020007837911 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.5610818009527225e-05 0.07199329884241938 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9279810903395711 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0002754937236387016 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9997245062763613 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.865469761105433e-05 0.06077056167016132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9391807836322277 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000616660029235223 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9993833399707648 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00015895636064674568 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9998410436393532 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 8.894291347336905e-05 0.1429531462457033 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8569579108408233 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0006437018351228316 0.18011155751682606 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8192447406480512 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01599099487252797 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.984009005127472 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.020472961288863063 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9795270387111369 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.02623741802663659 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9737625819733634 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00020333277834352318 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9997966672216565 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2709592054946874 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7290407945053127 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00043598029529166144 0.24107025586769815 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7584937638370102 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0004061050443990193 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.999593894955601 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00048287916801998353 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.99951712083198 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 5.892681960866328e-05 0.7080535050520119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2918875681283795 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7454935814114328 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2545064185885671 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2817362975342778 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7182637024657222 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03486279552676114 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9651372044732389 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9337123409521593e-05 0.23799418949865508 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7619864733779353 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1236839766138057 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8763160233861943 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0056510725259333525 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9943489274740667 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.020156809398728364 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9798431906012717 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.374453193350831e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9999562554680665 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0003265043899032916 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9996734956100967 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.00045063782584581273 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.07213762939170908 0.9245100360840655 0.0 0.0 0.0 0.0 0.0 0.0 0.0029016966983797516 0.0 5.1258393561945765e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.09849927551106921 0.8992737827975558 0.0 0.0 0.0 0.0 0.0 0.0 0.0021756832978131625 0.0 0.002479627543779828 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4669725434972889 0.5305478289589314 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.008859707721555206 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3890382162573868 0.6021020760210579 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.04944503365487405 0.943386525513564 0.0 0.0 0.0 0.0 0.0 0.0 0.007168440831562008 0.0 0.00018789928598271328 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.056554415134284795 0.9394656510837621 0.0 0.0 0.0 0.0 0.0 0.0 0.003792034495970422 0.0 0.00435432710819543 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.25624047349705265 0.739405199394752 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0029995953909556718 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3112840449772131 0.6857163596318312 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 9.391435011269724e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.09143338203301664 0.9069222594464957 0.0 0.0 0.0 0.0 0.0 0.0 0.0015504441703749713 0.0 0.0022837257216236392 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4633926557344514 0.534323618543925 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.003244604518735877 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7687713912842511 0.22798400419701303 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01228662028480469 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.6738140382811733 0.3138993414340221 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.003693823175566219 0.0 0.0 0.0 0.0 8.721437292865861e-05 0.0 0.0 0.0 0.0 0.0 0.9739798703566671 0.022239092094837876 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0015875861665133272 0.0 0.0 0.0 0.0 0.0003976448365048175 0.0 0.0 0.0 0.0 0.0 0.98486098323132 0.013153785765661943 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03965833010773956 0.9571462126809726 0.0 0.0 0.0 0.0 0.0 0.0 0.0031954572112879325 0.0 0.008787946892324467 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3150765636774588 0.6761354894302167 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.012240381911375423 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7560971763262293 0.2316624417623952 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0015176523283558624 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8683832483154346 0.13009909935620956 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.002467003878815706 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.42303467529885 0.5744983208223342 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.009123304092490996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2870473196283665 0.7031788573748798 0.0 0.0 0.0 0.0 0.0 0.0 0.0006505189042626984 0.0 0.08419239984493013 0.0 0.0 0.0 0.0 0.020872777410025974 0.0 0.0 0.0 0.0 0.0 0.886996909965931 0.007937912779112918 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06896194948848074 0.0 0.0 0.0 0.0 0.004376492195144494 0.0 0.0 0.0 0.0 0.0 0.9112771411739726 0.015384417142402027 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.039701964597288954 0.0 0.0 0.0 0.0 0.013402613340959801 0.0 0.0 0.0 0.0 0.0 0.9378859403521778 0.009009481709573448 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.021603390913476645 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7323755739779273 0.2456174007520484 0.0 0.0 0.0 0.0 0.0 0.0 0.00040363435654766964 0.0 0.009513004827003473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8108369330210967 0.17965006215189988 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03007883644265873 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00046417029687479143 0.0 0.0 0.9557461038054481 0.01371088945501843 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.048543426507074966 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.005015715204663599 0.0 0.0 0.9269392007082949 0.01950165757996642 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.014692823460907185 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7886974669961192 0.19660970954297363 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00119312065001943 0.0 0.0 0.0 0.0 2.187800822613109e-05 0.0 0.0 0.0 0.0 0.0 0.8232054265492349 0.17557957479251954 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00796092384436123 0.0 0.0 0.0 0.0 0.00016418890680040598 0.0 0.0 0.0 0.0 0.0 0.8125782977375486 0.17929658951128968 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0016191140216486443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8520790268198634 0.14630185915848815 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.010953320906644073 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39719275273969107 0.591736944887802 0.0 0.0 0.0 0.0 0.0 0.0 0.00011698146586287643 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.004955848669452462 0.882525837255482 0.0 0.0 0.0 0.0 0.0 0.0 0.11251831407506571 0.0 0.00023503982341076374 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03280986688922395 0.9612494309452324 0.0 0.0 0.0 0.0 0.0 0.0 0.005705662342132859 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.02795043363770956 0.9644569982369563 0.0 0.0 0.0 0.0 0.0 0.0 0.007592568125334235 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.005979379000440054 0.85944282673333 0.0 0.0 0.0 0.0 0.0 0.0 0.13457779426622984 0.0 0.011302182044716075 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2781040321943852 0.7094112323081598 0.0 0.0 0.0 0.0 0.0 0.0 0.0011825534527390164 0.0 0.0006868497995824675 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06135123356909583 0.9347272296244968 0.0 0.0 0.0 0.0 0.0 0.0 0.003234687006824892 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.007125017514334182 0.9103141931603881 0.0 0.0 0.0 0.0 0.0 0.0 0.0825607893252778 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0034191129204511413 0.9395344252388936 0.0 0.0 0.0 0.0 0.0 0.0 0.05704646184065522 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.006476497855061776 0.8976028715644181 0.0 0.0 0.0 0.0 0.0 0.0 0.09592063058052015 0.0 0.009112941596575377 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9821127962945828 0.008774262108841814 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.048338718056609865 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.008604553058748984 0.0 0.0 0.921682437374343 0.02137429151029825 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.009923236800777346 0.8582549817378103 0.0 0.0 0.0 0.0 0.0 0.0 0.13182178146141232 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.007678605590812405 0.8895426846539602 0.0 0.0 0.0 0.0 0.0 0.0 0.10277870975522735 0.0 8.785802143735723e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06531938466618047 0.9318196196344557 0.0 0.0 0.0 0.0 0.0 0.0 0.002773137677926561 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.003752208830267729 0.9273624419539869 0.0 0.0 0.0 0.0 0.0 0.0 0.06888534921574546 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.005111437692269023 0.8892936572400967 0.0 0.0 0.0 0.0 0.0 0.0 0.10559490506763423 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.006680276229853953 0.9235787921389682 0.0 0.0 0.0 0.0 0.0 0.0 0.06974093163117795 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01854713554182729 0.5631281227205457 0.0 0.0 0.0 0.0 0.0 0.0 0.41832474173762707 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01983901121397319 0.6197429621347765 0.0 0.0 0.0 0.0 0.0 0.0 0.3604180266512502 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.024131157276239486 0.4674813556012152 0.0 0.0 0.0 0.0 0.0 0.0 0.5083874871225453 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01700694909027051 0.5224626656357797 0.0 0.0 0.0 0.0 0.0 0.0 0.4605303852739499 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01520697189450156 0.5762759172565002 0.0 0.0 0.0 0.0 0.0 0.0 0.40851711084899833 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.017105666645331825 0.5540982535074939 0.0 0.0 0.0 0.0 0.0 0.0 0.4287960798471743 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.02061935481688942 0.4637699963515289 0.0 0.0 0.0 0.0 0.0 0.0 0.5156106488315817 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.013062828891786851 0.6311568364730924 0.0 0.0 0.0 0.0 0.0 0.0 0.3557803346351207 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.014294828849336704 0.1656367702460131 0.0 0.0 0.0 0.0 0.0 0.0 0.8200684009046503 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.015427988084676832 0.17694709005839088 0.0 0.0 0.0 0.0 0.0 0.0 0.8076249218569322 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0005276364395772091 0.003060245156819463 0.0 0.0 0.0 0.0 0.0 0.0 0.9964121184036033 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.012178975652974757 0.0826185669814787 0.0 0.0 0.0 0.0 0.0 0.0 0.9052024573655466 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0009524511982794932 0.006127769916003251 0.0 0.0 0.0 0.0 0.0 0.0 0.9929197788857173 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.006535929179058023 0.03580626288828167 0.0 0.0 0.0 0.0 0.0 0.0 0.9576578079326602 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0002950046295415044 0.0 0.0 0.0 0.0 0.0 0.0 0.9997049953704585 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.003961423899469577 0.024714617161852383 0.0 0.0 0.0 0.0 0.0 0.0 0.9713239589386781 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.02332199092607172 0.2156689482206911 0.0 0.0 0.0 0.0 0.0 0.0 0.7610090608532372 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.011287136156131897 0.11847102861559439 0.0 0.0 0.0 0.0 0.0 0.0 0.8702418352282737 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0007273360824403437 0.006136045743789744 0.0 0.0 0.0 0.0 0.0 0.0 0.9931366181737699 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.454947484798231e-05 0.002765494923212961 0.0 0.0 0.0 0.0 0.0 0.0 0.9971999556019391 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0012567039462104024 0.02202096105789773 0.0 0.0 0.0 0.0 0.0 0.0 0.9767223349958919 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.012052166386549915 0.30947544457975845 0.0 0.0 0.0 0.0 0.0 0.0 0.6784723890336916 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.009587666389782302 0.13496813916686226 0.0 0.0 0.0 0.0 0.0 0.0 0.8554441944433554 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0010325069016474523 0.008349551012397264 0.0 0.0 0.0 0.0 0.0 0.0 0.9906179420859553 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0020419442646404575 0.01586538020764433 0.0 0.0 0.0 0.0 0.0 0.0 0.9820926755277152 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.009774581720113744 0.7189002642435104 0.0 0.0 0.0 0.0 0.0 0.0 0.2713251540363759 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.009182361538024354 0.696171991307045 0.0 0.0 0.0 0.0 0.0 0.0 0.2946456471549308 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.010688359773197221 0.25838682209944674 0.0 0.0 0.0 0.0 0.0 0.0 0.730924818127356 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.001996858694953042 0.0296914010787905 0.0 0.0 0.0 0.0 0.0 0.0 0.9683117402262564 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.015185426578149851 0.233424688290073 0.0 0.0 0.0 0.0 0.0 0.0 0.7513898851317771 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.013078485369508938 0.1316355669576117 0.0 0.0 0.0 0.0 0.0 0.0 0.8552859476728794 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.001692277943380416 0.014129631722980379 0.0 0.0 0.0 0.0 0.0 0.0 0.9841780903336391 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.003378016152991107 0.032589910667251996 0.0 0.0 0.0 0.0 0.0 0.0 0.9640320731797569 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.07398568089569064 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0038380240923401214 0.0 0.0 0.9048113512075608 0.017364943804408343 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05034099877016 0.94965900122984 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03986882074842733 0.9601311792515727 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00038345785805872886 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.33936581015312767 0.6602507319888137 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.001019949415959921 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39116455770345593 0.6078154928805842 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.004823615798025246 0.9951763842019747 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.024459310263648403 0.9755406897363516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.002906462745789259 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2756931405603015 0.7209205064301242 0.0 0.0004798902637849814 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.004977632781364044 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.24453966236313984 0.7501275800326822 0.0 0.00035512482281400693 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00023191094619666043 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.04810439474147697 0.9516636943123263 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.006414050852994549 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.32502959417577265 0.6685563549712329 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.020901461817212755 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7390679511429298 0.2363396513388064 0.0 0.003690935701051097 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.015136893392963969 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7350474445873524 0.24623850620039575 0.0 0.003577155819287945 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1803244263930093 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7619258099396257 0.003962881442014928 0.0 0.0537868822253501 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.22476707121837264 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7276524356774745 0.0047611924791720875 0.0 0.042819300624980794 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4582234425748172 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5301640081965588 0.011612549228623988 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.6876589310810983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.29911025873148317 0.013230810187418488 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2441510406266963 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7213272293126728 0.034521730060630855 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.16559615999313565 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8142924410922217 0.020111398914642586 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.045420186702674156 0.9545798132973259 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0005794117394603168 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2883283697558763 0.7110922185046635 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.012533882706135644 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8438638115265468 0.14360230576731758 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.013044404163596202 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7901847373714099 0.1967708584649939 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0019129821866233927 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3970813732608262 0.6010056445525505 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.006765431281069933 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.41205556568096624 0.5811790030379638 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7039572041185842 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2835960974533863 0.01009641372496805 0.0 0.002350284703061447 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7972979502629481 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1493831321387733 0.0015179059075783588 0.0 0.051801011690700186 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4536446891155451 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.47743105949860337 0.010595180379425286 0.0 0.05832907100642606 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.26953657218742133 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.6866914864434946 0.03977283188752051 0.0 0.003999109481563626 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.335666949150824 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5544360963179511 0.011580071360063391 0.0 0.09831688317116156 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.005474249304372883 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9383308809119668 0.05619486978366017 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00579136379917981 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8777632327752102 0.1164454034256101 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10288501461262241 0.0 0.0 0.0 0.0 0.0016921408502190394 0.0 0.0 0.8878672624774101 0.004374974699584194 0.0 0.0031806073601643747 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1021734586415425 0.0 0.0 0.0 0.0 2.435578937113351e-05 0.0 0.0 0.891603826336342 0.006174003443373225 0.0 2.435578937113351e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03229823444042898 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7449396329431093 0.21256758153654304 0.0 0.010194551079918663 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.003621103042827492 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.746252743899915 0.25012615305725755 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.04838938219771233 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7775290787127109 0.16806366191435274 0.0 0.006017877175224096 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0058417076786950375 0.0 0.0 0.0 0.0 3.1259768677711774e-05 0.0 0.0 0.8208817085369284 0.17311956579422677 0.0 0.0001257582214719809 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.006117914849152537 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031548429304964 0.5907272422203511 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.015422434022904464 0.9123158283863554 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.07226173759074017 0.0 0.0 0.0006843997381159652 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06522872870912792 0.9336596202961863 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00042725125656981175 0.0 0.0 0.0006960556844547564 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.060274381625583136 0.938883402876163 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0001461598137990438 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.007726958386397282 0.8998826315858786 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.09239041002772423 0.0 0.0 0.00827638807578025 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5130427657683879 0.47868084615583184 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0009486213759972166 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06997286638493194 0.9289374637359107 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00014104850316020177 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00897310518467732 0.9394367920212658 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05159010279405681 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.007391926049087285 0.9898855233508769 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0027225506000358233 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0038533249246059283 0.9574743404752886 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0386723346001056 0.0 0.0 0.186547780311043 0.0 0.0 0.0 0.0 0.0012963598209690171 0.0 0.0 0.8026297230377524 0.00023544728109457715 0.0 0.009290689549141024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.008270416946562754 0.939181448242374 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.052548134811063206 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.003917238886585359 0.9595714719949421 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.036511289118472574 0.0 0.0 8.576329331046312e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0672228298156324 0.9326914068910571 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.010739823135207079 0.9715238440291679 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.017736332835625087 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01884845441911762 0.900872005001809 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08027954057907334 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00820744450444108 0.9589844243769987 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03280813111856018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.020046250429893064 0.4985615043745334 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4813922451955735 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.024029359379554065 0.7072518077910601 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.26871883282938575 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.008885115205118588 0.5837846903078074 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.407330194487074 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.006011541920630491 0.6603390578291286 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.33364940025024087 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.007292270206811859 0.6650499714756589 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.32765775831752925 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01077131183950336 0.5877621579418151 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.40146653021868156 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0023626471993078864 0.5354292171689726 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4622081356317194 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00783992501064226 0.6904153503805214 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.30174472460883645 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0036073855244004496 0.1413683599650377 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8550242545105619 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0013752934573486712 0.056354602959800604 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9422701035828508 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00013196964698119438 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9998680303530189 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00032467472376968774 0.07691648484224452 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9227588404339858 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.002966276695903056 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9970337233040969 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0017904996832831836 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9982095003167168 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.005929793650861465 0.193867091915879 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8002031144332595 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0010728614421394362 0.14829781962222421 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8506293189356364 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.002351268591426072 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9976487314085739 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00993625796775403 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.990063742032246 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.001910932447771431 0.21190662395113563 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7861824436010929 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0016607462624892897 0.19071977999637668 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8076194737411341 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00017495080277186604 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9998250491972281 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.003313172809920499 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9966868271900795 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.007577964609965402 0.6131997660674603 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.37922226932257436 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.012496579618221575 0.8271686791085135 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.16033474127326483 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.002214442082539343 0.33736996090745136 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.6604155970100094 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03417499083300166 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9658250091669983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0002348079271156194 0.2084665254133613 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7912986666595231 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0008529757570764838 0.17034822422566293 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.8287988000172606 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01047994000749906 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9895200599925009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.02175296269784458 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9782470373021555 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.4137759562443235 0.0 0.0 0.0 0.0 0.0008203363840507852 0.0 0.0 0.5815459642715576 0.0023969847909845097 0.0 0.001460758309083748 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0065704948410899465 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03161629985548699 0.8633150593752685 0.0 0.0 0.0 0.0 0.09849814592815455 0.008308502581511541 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.02878656294324085 0.8847990978519423 0.0 0.0 0.0 0.0 0.07810583662330522 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0004350332141854828 0.9736256033543751 0.0 0.0 0.0 0.0 0.025939363431439485 0.0003787796443369188 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0022746439874848237 0.9692013106524143 0.0 0.0 0.0 0.0 0.028145265715763954 0.0001518527264447196 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.005577640991953398 0.9577019227828197 0.0 0.0 0.0 0.0 0.03656858349878206 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.012822311229632486 0.9421118972414652 0.0 0.0 0.0 0.0 0.04506579152890229 0.0002676956628172903 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.009497089564845124 0.9548625065013224 0.0 0.0 0.0 0.0 0.03537270827101517 0.004069974151805416 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.015526641198790195 0.9479302237721176 0.0 0.0 0.0 0.0 0.03247316087728684 0.0020063385852999074 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.019545995028112197 0.9477076246989962 0.0 0.0 0.0 0.0 0.030740041687591712 0.0002805579038529302 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.009803881847115352 0.9302518538221077 0.0 0.0 0.0 0.0 0.05966370642692395 0.0009966445848426022 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.013843799266552383 0.4554611133509103 0.0 0.0 0.0 0.0 0.5296984427976947 0.00040996461949174254 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.019021888124436698 0.6003497049534969 0.0 0.0 0.0 0.0 0.3802184423025746 0.00012103118570218255 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01463744721201007 0.47960818910691483 0.0 0.0 0.0 0.0 0.5056333324953729 0.0002930557764305993 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.014640730740100884 0.6230305075000189 0.0 0.0 0.0 0.0 0.36203570598344975 5.677218638206585e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.012265589105467193 0.6328192517077896 0.0 0.0 0.0 0.0 0.3548583870003611 0.0015703812506419204 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.014636856826233625 0.4939570611734319 0.0 0.0 0.0 0.0 0.48983570074969246 0.0005505845041058012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0064029188313374065 0.6048439983924289 0.0 0.0 0.0 0.0 0.388202498272128 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0017313700074379397 0.6617780991038711 0.0 0.0 0.0 0.0 0.33649053088869096 0.00012881064834692997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.002733453024027162 0.07240552402439018 0.0 0.0 0.0 0.0 0.9247322123032358 1.2154803578374175e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.000740782431129826 0.00901627475352172 0.0 0.0 0.0 0.0 0.9902307880117701 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0009638368416994371 0.0 0.0 0.0 0.0 0.9990361631583006 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0007194528672786607 0.01801224919163367 0.0 0.0 0.0 0.0 0.9812682979410877 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.00010631091098571256 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.004330660702543924 0.07324440900619623 0.0 0.0 0.0 0.0 0.9223186193802742 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0035638956866467027 0.09771707758309195 0.0 0.0 0.0 0.0 0.8987190267302614 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.006018165714925949 0.0 0.0 0.0 0.0 0.993981834285074 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.005301793573906308 0.0 0.0 0.0 0.0 0.9946982064260937 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.001709287533653457 0.0 0.0 0.0 0.0 0.9982907124663466 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0024869416278526773 0.0 0.0 0.0 0.0 0.9975130583721473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.007704864545976062 0.0 0.0 0.0 0.0 0.9922951354540239 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.011263180094438106 0.0 0.0 0.0 0.0 0.988736819905562 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.004327469297187801 0.0 0.0 0.0 0.0 0.9956725307028123 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0009179200296691365 0.0 0.0 0.0 0.0 0.9990820799703308 2.1950041705079245e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0033369147855720547 0.18301009544295377 0.0 0.0 0.0 0.0 0.8136310397297691 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.004972275975209103 0.17107921445592877 0.0 0.0 0.0 0.0 0.8239485095688621 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.011722934131927334 0.0 0.0 0.0 0.0 0.9882770658680726 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.001310867765227231 0.0 0.0 0.0 0.0 0.9986891322347727 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.001049042157667724 0.0 0.0 0.0 0.0 0.9989509578423322 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0037399227153850855 0.0 0.0 0.0 0.0 0.996260077284615 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 2.195004170507924e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.004187942075418395 0.6584993843118121 0.0 0.0 0.0 0.0 0.3372907235710644 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0009897458314670187 0.7362598442801275 0.0 0.0 0.0 0.0 0.2627504098884055 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0005129713884237893 0.25460938395363036 0.0 0.0 0.0 0.0 0.7448776446579459 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.018685164354455688 0.0 0.0 0.0 0.0 0.9813148356455443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0009794913243102487 0.1812819078999468 0.0 0.0 0.0 0.0 0.817738600775743 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0018850373171253121 0.14980914001413306 0.0 0.0 0.0 0.0 0.8483058226687417 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01757629603137137 0.0 0.0 0.0 0.0 0.9824237039686287 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.014944631255836114 0.0 0.0 0.0 0.0 0.9850553687441639 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.02348305603374172 0.0 0.0 0.0 0.0 0.9765169439662583 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0321993496330198 0.0 0.0 0.0 0.0 0.9678006503669803 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.010618336885230844 0.0 0.0 0.0 0.0 0.9893816631147692 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.020299451204963015 0.0 0.0 0.0 0.0 0.979700548795037 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.003275084035548188 0.0 0.0 0.0 0.0 0.9967249159644518 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.012192320083687425 0.0 0.0 0.0 0.0 0.9878076799163126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03437431690744998 0.0 0.0 0.0 0.0 0.96562568309255 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.02583479148439778 0.0 0.0 0.0 0.0 0.9741652085156022 0.9434578337141012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05626718808756492 0.00027497819833395147 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9476829124812913 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.04922364278500226 0.0004772710761474132 0.0 0.0026161736575591073 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9932402938879952 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.006759706112004815 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9999201186808171 0.0 0.0 0.0 0.0 0.0 0.0 0.0 7.988131918292815e-05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9975192699353076 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.001983742216113842 0.0 0.0 0.0004969878485785576 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9535825639588413 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01938286231230813 0.0 0.0 0.02703457372885056 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/high/LightSegmentBody.rapidmodel b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/high/LightSegmentBody.rapidmodel deleted file mode 100644 index fb4b3871..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/high/LightSegmentBody.rapidmodel and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/high/LightSegmentBody.rapidproto.wmc b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/high/LightSegmentBody.rapidproto.wmc deleted file mode 100644 index 5f2f650b..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/high/LightSegmentBody.rapidproto.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/low/LightSegmentBody.rapidmodel b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/low/LightSegmentBody.rapidmodel deleted file mode 100644 index ce108513..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/low/LightSegmentBody.rapidmodel and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/low/LightSegmentBody.rapidproto.wmc b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/low/LightSegmentBody.rapidproto.wmc deleted file mode 100644 index aa745391..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/low/LightSegmentBody.rapidproto.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/middle/LightSegmentBody.rapidmodel b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/middle/LightSegmentBody.rapidmodel deleted file mode 100644 index d41b9ed6..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/middle/LightSegmentBody.rapidmodel and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/middle/LightSegmentBody.rapidproto.wmc b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/middle/LightSegmentBody.rapidproto.wmc deleted file mode 100644 index d4668b13..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/middle/LightSegmentBody.rapidproto.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/readme.txt b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/readme.txt deleted file mode 100644 index 23b15ab0..00000000 --- a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/readme.txt +++ /dev/null @@ -1,15 +0,0 @@ -High middle low文件夹分别对应多输入人体分割的大、中、小模型 -其中iOS没有小模型(low) - - -high: -humanseg_v5.5.0_2021.01.27_xcp-up-4input-256x256-big-0126finv2-tnn - - -middle: -humanseg_v5.5.0_2021.01.27_mnv-v2-4input-192x192-middle-0126finv2-49-tnn - - -low: -LightSegmentBody.rapidmodel -> tnn_BodySeg_身体分割_v5.7.1_202110091836_1005_xcp_spconv_v3_144x144_64.opt.tnnm -LightSegmentBody.rapidproto -> tnn_BodySeg_身体分割_v5.7.1_202110091836_1005_xcp_spconv_v3_144x144_64.opt.tnnp diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/segment_ios.metallib b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/segment_ios.metallib deleted file mode 100644 index 9a0b54c1..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/segment_ios.metallib and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/segment_mac.metallib b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/segment_mac.metallib deleted file mode 100644 index 0ac7240f..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/segment_mac.metallib and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/segment_simulator.metallib b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/segment_simulator.metallib deleted file mode 100644 index 117a3c4b..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/segment_simulator.metallib and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/still/LightSegmentBody.rapidmodel b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/still/LightSegmentBody.rapidmodel deleted file mode 100644 index ab8c8cd6..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/still/LightSegmentBody.rapidmodel and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/still/LightSegmentBody.rapidproto.wmc b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/still/LightSegmentBody.rapidproto.wmc deleted file mode 100644 index d48db96e..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentBody.bundle/still/LightSegmentBody.rapidproto.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/high/LightSegmentHair.rapidmodel b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/high/LightSegmentHair.rapidmodel deleted file mode 100644 index 2adf9083..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/high/LightSegmentHair.rapidmodel and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/high/LightSegmentHair.rapidproto.wmc b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/high/LightSegmentHair.rapidproto.wmc deleted file mode 100644 index 4f10f51f..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/high/LightSegmentHair.rapidproto.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/high/LightSegmentHairModel.txt b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/high/LightSegmentHairModel.txt deleted file mode 100644 index d54b4719..00000000 --- a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/high/LightSegmentHairModel.txt +++ /dev/null @@ -1 +0,0 @@ -头发分割_hairseg_v3.2_2020.11.23_mbnv2-256x256-big-4_input_iaa3_1e-4_MobileNetV2_Depthwise_SADv4_92-postv4.opt.tnnm \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/low/LightSegmentHair.rapidmodel b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/low/LightSegmentHair.rapidmodel deleted file mode 100644 index 1e2cb7ef..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/low/LightSegmentHair.rapidmodel and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/low/LightSegmentHair.rapidproto.wmc b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/low/LightSegmentHair.rapidproto.wmc deleted file mode 100644 index 784f6db8..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/low/LightSegmentHair.rapidproto.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/low/LightSegmentHairModel.txt b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/low/LightSegmentHairModel.txt deleted file mode 100644 index cddcb444..00000000 --- a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/low/LightSegmentHairModel.txt +++ /dev/null @@ -1 +0,0 @@ -头发分割_hairseg_v3.0.3_2020.1223_mbnv2-192x192-small-EXP_1124_meta_v4_flow_v3_4input_MobileNetV2_Depthwise_192x192_200_postv4.opt.tnnm \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/segment_ios.metallib b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/segment_ios.metallib deleted file mode 100644 index 9a0b54c1..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/segment_ios.metallib and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/segment_mac.metallib b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/segment_mac.metallib deleted file mode 100644 index 0ac7240f..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/segment_mac.metallib and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/segment_simulator.metallib b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/segment_simulator.metallib deleted file mode 100644 index 117a3c4b..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHair.bundle/segment_simulator.metallib and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/high/LightSegmentHead.rapidmodel b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/high/LightSegmentHead.rapidmodel deleted file mode 100644 index 5ad76833..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/high/LightSegmentHead.rapidmodel and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/high/LightSegmentHead.rapidproto.wmc b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/high/LightSegmentHead.rapidproto.wmc deleted file mode 100644 index fea79243..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/high/LightSegmentHead.rapidproto.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/high/readme.txt b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/high/readme.txt deleted file mode 100644 index 38a50e4f..00000000 --- a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/high/readme.txt +++ /dev/null @@ -1,2 +0,0 @@ -LightSegmentHead.rapidmodel -> 分割_头部分割_71ce1accb14411eb81aa5e7682e52aca.opt.tnnm -LightSegmentHead.rapidproto -> 分割_头部分割_71ce1accb14411eb81aa5e7682e52aca.opt.tnnm \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/low/LightSegmentHead.rapidmodel b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/low/LightSegmentHead.rapidmodel deleted file mode 100644 index 6a9c8217..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/low/LightSegmentHead.rapidmodel and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/low/LightSegmentHead.rapidproto.wmc b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/low/LightSegmentHead.rapidproto.wmc deleted file mode 100644 index c1d2d006..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/low/LightSegmentHead.rapidproto.wmc and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/low/readme.txt b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/low/readme.txt deleted file mode 100644 index 099a77d8..00000000 --- a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/low/readme.txt +++ /dev/null @@ -1,2 +0,0 @@ -LightSegmentHead.rapidmodel -> 分割_头部分割_7dfb7dbcb19411eb8d4d5e7682e52aca.opt.tnnm -LightSegmentHead.rapidproto -> 分割_头部分割_7dfb7dbcb19411eb8d4d5e7682e52aca.opt.tnnm \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/segment_ios.metallib b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/segment_ios.metallib deleted file mode 100644 index 9a0b54c1..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/segment_ios.metallib and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/segment_mac.metallib b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/segment_mac.metallib deleted file mode 100644 index 0ac7240f..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/segment_mac.metallib and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/segment_simulator.metallib b/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/segment_simulator.metallib deleted file mode 100644 index 117a3c4b..00000000 Binary files a/Android/tuibeauty/src/main/assets/LightSegmentPlugin/models/LightSegmentHead.bundle/segment_simulator.metallib and /dev/null differ diff --git a/Android/tuibeauty/src/main/assets/benchmark/cpu_infos.json b/Android/tuibeauty/src/main/assets/benchmark/cpu_infos.json deleted file mode 100644 index ed5197fd..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/cpu_infos.json +++ /dev/null @@ -1 +0,0 @@ -{"creationTime": "2022-01-20 13:40:28", "cpuPartRatio": 0.8, "cpuPart": {"0xd04": 3.0, "0xd03": 5.0, "0x801": 5.0, "0xd05": 3.0, "0x803": 2.5, "0x805": 3.0, "0xd07": 5.0, "0xd08": 4.0, "0xd09": 3.0, "0x800": 3.0, "0xd0a": 2.5, "0xd0b": 2.0, "0xd40": 2.0, "0x804": 2.0, "0xd0e": 2.0, "0xd0d": 1.5, "0xd41": 1.5, "0xd44": 1.0}, "cpuFreq": {"(0.0, 1.0]": 5.0, "(1.0, 1.1]": 3, "(1.1, 1.2]": 5.0, "(1.2, 1.3]": 5.0, "(1.3, 1.4]": 5.0, "(1.4, 1.5]": 4.59, "(1.5, 1.6]": 5.0, "(1.6, 1.7]": 5.0, "(1.7, 1.8]": 4.5, "(1.8, 1.9]": 4.0, "(1.9, 2.0]": 3.47, "(2.0, 2.1]": 3.05, "(2.1, 2.2]": 3.27, "(2.2, 2.3]": 4.06, "(2.3, 2.4]": 2.44, "(2.4, 2.5]": 4.53, "(2.5, 2.6]": 1.8, "(2.6, 2.7]": 2.0, "(2.7, 2.8]": 1.78, "(2.8, 2.9]": 1.0, "(2.9, 3.0]": 1.0, "(3.0, 3.1]": 1.0, "(3.1, 3.2]": 1.0}} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/0.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/0.json deleted file mode 100644 index cc4a9ca7..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/0.json +++ /dev/null @@ -1 +0,0 @@ -{"02-b324-191689": 1, "02-d726-193394": 1, "00-d124-209878": 3, "00-d124-208745": 3, "00-d124-208519": 3, "02-d124-211138": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/1.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/1.json deleted file mode 100644 index 21b0e075..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/1.json +++ /dev/null @@ -1 +0,0 @@ -{"11pro": 1, "16s pro": 1, "16t": 1, "16s": 1, "16th plus": 2, "16th": 2, "15 plus": 3, "16 x": 3, "1809-a01": 3, "1801-a01": 3, "1803-a01": 3, "1807-a01": 3, "15": 3, "1607-a01": 4, "1605-a01": 4, "1515-a01": 4, "1509-a00": 4, "1713-a01": 5, "1707-a01": 5, "15 lite": 5, "1505-a02": 5, "1906_20": 5, "1505-a01": 5, "1503-m02": 5, "1503-a01": 5, "1711-a01": 5, "1501-a02": 5, "1501_m02": 5, "1701-m01": 5, "1603-a03": 5, "1603-a02": 5, "1871-a0": 5, "1831-a0": 5, "1872-a0": 5, "1832-a0": 5, "1105": 5, "1107": 5, "1201": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/2.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/2.json deleted file mode 100644 index 5359d24a..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/2.json +++ /dev/null @@ -1 +0,0 @@ -{"2106118c": 1, "2107113sg": 1, "2112123ac": 1, "21051182c": 1, "21081111rg": 1, "21061110ag": 1, "2107119dc": 2, "2109119bc": 2, "2109119dg": 2, "2015105": 3, "21091116ac": 3, "202018": 3, "20190718q": 3, "20200519": 4, "20200606": 4, "201906": 5, "20180102q": 5, "20190416q": 5, "20190325d": 5, "2014812": 5, "2014813": 5, "2014811": 5, "20190619g": 5, "20190620g": 5, "20180208q": 5, "20170829d": 5, "20190618g": 5, "20170605q": 5, "20151209t": 5, "21091116c": 5, "2014817": 5, "2014821": 5, "2014813_2": 5, "2014112": 5, "2014501": 5, "20161220": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/3.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/3.json deleted file mode 100644 index f8b6027a..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/3.json +++ /dev/null @@ -1 +0,0 @@ -{"3007": 5, "3005": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/4.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/4.json deleted file mode 100644 index bfb60f97..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/4.json +++ /dev/null @@ -1 +0,0 @@ -{"4087u": 5, "4187u": 5, "4g+": 5, "404kc": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/5.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/5.json deleted file mode 100644 index 26cd4d42..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/5.json +++ /dev/null @@ -1 +0,0 @@ -{"5062z": 3, "5s plus": 4, "506sh": 4, "502so": 4, "5053k": 5, "5053a": 5, "5053d": 5, "501so": 5, "5048y_eea": 5, "5048y": 5, "5048u": 5, "5048a": 5, "5048i": 5, "5028d_eea": 5, "5007u": 5, "5061k": 5, "5029d": 5, "5028d": 5, "5060d": 5, "5007a": 5, "5007u_eea": 5, "5032w": 5, "5007g": 5, "5029e": 5, "5028a": 5, "5029f": 5, "5060a": 5, "5061k_eea": 5, "5007z": 5, "5060": 5, "5061u": 5, "5002j": 5, "5002d": 5, "5002h": 5, "5102k": 5, "5002x": 5, "5002a": 5, "5002h_eea": 5, "5002b": 5, "5085j": 5, "5085n": 5, "5086d": 5, "5086a": 5, "5101j": 5, "5033d_ru": 5, "5059d": 5, "5041c": 5, "5033e": 5, "5059x": 5, "5033m": 5, "5008u": 5, "5033f": 5, "5058a": 5, "5059a": 5, "5159j": 5, "5033j": 5, "5033q": 5, "5059d_ru": 5, "5033d": 5, "5052d": 5, "5033g": 5, "5008d": 5, "5033a": 5, "5152d": 5, "5030a": 5, "5080a": 5, "5046y": 5, "5080x": 5, "5049z": 5, "5049w": 5, "5099u": 5, "507sh": 5, "5024d_eea": 5, "5001u": 5, "5030u": 5, "5024f_eea": 5, "5030f": 5, "5001d": 5, "5001a": 5, "5024j": 5, "5124j": 5, "5024i": 5, "5030j": 5, "5030d": 5, "5024a": 5, "5001j": 5, "5030f_eea": 5, "5024f": 5, "5030d_eea": 5, "5024d": 5, "5024d_ru": 5, "5001t": 5, "503kc": 5, "5056a": 5, "5026d": 5, "5003g": 5, "5003a": 5, "5003d": 5, "5023f": 5, "5010d": 5, "5010e": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/6.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/6.json deleted file mode 100644 index 5df92d96..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/6.json +++ /dev/null @@ -1 +0,0 @@ -{"605sh": 2, "602so": 4, "601so": 4, "6607": 5, "6156d": 5, "6062w": 5, "6025h_eea": 5, "6201": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/7.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/7.json deleted file mode 100644 index aab75f14..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/7.json +++ /dev/null @@ -1 +0,0 @@ -{"706sh": 2, "702so": 2, "701so": 2, "701sh": 3, "7 plus": 3} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/8.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/8.json deleted file mode 100644 index ff3f4e3e..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/8.json +++ /dev/null @@ -1 +0,0 @@ -{"8094m": 1, "8848 m6": 1, "808sh": 1, "802so": 1, "801sh": 2, "801so": 2, "8848 m5": 2, "8030n": 3, "8848 m3": 4, "8848 m4": 4, "801lv": 5, "801fj": 5, "8692-m02": 5, "8692-a00": 5, "8676-a01": 5, "8681-a01": 5, "8676-m01": 5, "8681-m02": 5, "8298-m02": 5, "8298-a01": 5, "8675-a": 5, "8051_tr": 5, "8092_tr": 5, "8091_tr": 5, "8788_7": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/9.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/9.json deleted file mode 100644 index f9a7ede3..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/9.json +++ /dev/null @@ -1 +0,0 @@ -{"908sh": 1, "901so": 1, "9030n": 3, "9060x": 3, "9032z": 5, "9026x": 5, "9008n": 5, "9027q": 5, "9013x": 5, "9032t": 5, "9013a": 5, "9027f": 5, "9027x": 5, "9032x": 5, "9013t": 5, "9029z": 5, "9024o": 5, "9010x": 5, "9003x": 5, "9009a": 5, "9009g": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/a.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/a.json deleted file mode 100644 index b57d597c..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/a.json +++ /dev/null @@ -1 +0,0 @@ -{"abr-al00": 1, "asus_i005da": 1, "asus_i005db": 1, "asus_i005dc": 1, "asus_i003d": 1, "asus_i002d": 1, "a002so": 1, "asus_i003dd": 1, "asus_i001dc": 1, "asus_i001da": 1, "asus_i001db": 1, "asus_i001de": 1, "asus_1001d": 1, "asus_i001dd": 1, "asus_i001d": 1, "asus_i01wd": 1, "ana-nx9": 1, "ana-tn00": 1, "ana-an00": 1, "ana-lx4": 1, "ang-an00": 2, "asus_z01rd": 2, "awm-a0": 2, "a2019 pro": 2, "asus_z01qd": 2, "agm x3": 2, "a 6003": 2, "a5000": 2, "asus_z01gd": 2, "a5010": 2, "a2121": 2, "ac2001": 2, "ac2003": 2, "aqm-al10": 3, "a80s": 3, "ala-an70": 3, "a2110": 3, "a001xm": 3, "allure x": 3, "a1 alpha 20+": 3, "a01": 3, "ars-l22": 3, "asus_z01kda": 3, "asus_x01bda": 3, "ars-al00": 3, "asus_z01kd": 3, "active 1+": 3, "ars-tl00": 3, "active 1": 3, "a5 (2020)": 3, "a002op": 3, "a22": 3, "a3": 3, "artel tesla": 3, "allure m3": 3, "active 3": 3, "artel t10": 3, "alp-al00": 3, "alp-l09": 3, "alp-tl00": 3, "alp-l29": 3, "alp-al00_2": 3, "agm h2": 4, "aqm-al00": 4, "art-al00m": 4, "aqm-tl00": 4, "ags3-w00e": 4, "ags3-al00": 4, "art-tl00x": 4, "ags3-w09": 4, "art-l29": 4, "ags3-w09hn": 4, "art-al00x": 4, "agr-w09": 4, "aqm-lx1": 4, "ask-al20": 4, "ags3-al09hn": 4, "aka-al10": 4, "art-l29n": 4, "aka-l29": 4, "art-l28": 4, "ags3-w00d": 4, "ags3-l09": 4, "agr-w09hn": 4, "ask-al00x": 4, "agm x2": 4, "a9 pro": 4, "a53 pro": 4, "asus_p00i": 4, "asus_z012d": 4, "asus_a006": 4, "asus_z016d": 4, "asus_x00td": 4, "asus_x00tda": 4, "are-al00": 4, "asus_x00tdb": 4, "are-l22hn": 4, "are-al10": 4, "are-tl00": 4, "asus_x00t": 4, "asus_x00qd": 4, "alfa10tb": 5, "asus_x01ad": 5, "a23": 5, "asus_x017da": 5, "aquaris x pro": 5, "aquaris x": 5, "asus_z017da": 5, "asus_z012db": 5, "a1": 5, "asus_z017db": 5, "a77": 5, "asus_z012da": 5, "asus_z01fd": 5, "asus_z01hda": 5, "asus_z012de": 5, "ane-lx2": 5, "ane-tl00": 5, "ags2-w09hn": 5, "ane-al00": 5, "ags2-l09": 5, "ane-lx3": 5, "ags2-al00hn": 5, "ane-lx2j": 5, "ags2-w09": 5, "ane-lx1": 5, "ags2-l03": 5, "ags2-al00": 5, "ags2-w19": 5, "allure m1": 5, "a680q": 5, "a1603": 5, "agm h1": 5, "aum-l41": 5, "asus_a001d": 5, "a1001": 5, "a80plus": 5, "allure m3 lite": 5, "a0001": 5, "a7h": 5, "a79": 5, "a83": 5, "a7 pro": 5, "artel premium": 5, "a73": 5, "a5_pro": 5, "a6_max": 5, "artel quadro pro": 5, "artel tomchi": 5, "artel air": 5, "alpha 20": 5, "amn-lx9": 5, "a60pro": 5, "artel quadro": 5, "amn-lx2": 5, "amn-lx3": 5, "a80pro": 5, "allure m1 plus": 5, "allure m2": 5, "aquaris v": 5, "aquaris u2": 5, "a57": 5, "a0722": 5, "aquaris v plus": 5, "aum-l29": 5, "asus_x00ddb": 5, "asus_x00ld": 5, "asus_x00dda": 5, "asus_x00pd": 5, "asus_x00id": 5, "atu-tl10": 5, "aum-al00": 5, "asus_x017d": 5, "aum-al20": 5, "asus_x00dd": 5, "aum-l33": 5, "atu-al10": 5, "aum-tl20": 5, "ags-w09": 5, "ags-l03": 5, "atu-l31": 5, "atu-l22": 5, "asus_x00rd": 5, "atu-l11": 5, "atu-l42": 5, "asus_x00lda": 5, "asus_x00hd": 5, "atu-lx3": 5, "ags-l09": 5, "atu-l21": 5, "a1 lite": 5, "asus_x018dc": 5, "a59s": 5, "a59": 5, "a37": 5, "a37m": 5, "asus_x00gd": 5, "a59st": 5, "asus_x015d": 5, "asus_x018d": 5, "a1 pro": 5, "a3_pro": 5, "asus_x008d": 5, "asus_x008": 5, "a7s": 5, "asus_x008da": 5, "a80": 5, "atman_x5": 5, "asus_x008db": 5, "asus_x008dc": 5, "a1601": 5, "ale-tl00": 5, "ale-ul00": 5, "ale-l02": 5, "ale-l21": 5, "ale-l23": 5, "asus_x550": 5, "asus_z00ud": 5, "a53": 5, "asus_z010d": 5, "ale-cl00": 5, "ath-al00": 5, "ath-cl00": 5, "ath-tl00h": 5, "asus_z00udb": 5, "ath-tl00": 5, "ath-ul00": 5, "aqua s9": 5, "a1 alpha 21": 5, "a1 alpha": 5, "a23 max": 5, "aoson mini5": 5, "asus_x002": 5, "a37f": 5, "a31c": 5, "asus_z010da": 5, "asus_x00bd": 5, "a33f": 5, "a37fw": 5, "a51kc": 5, "a33fw": 5, "a31t": 5, "a11": 5, "a51f": 5, "asus_x00ad": 5, "a51": 5, "a31": 5, "a31u": 5, "asus_z00ld": 5, "a51w": 5, "asus_a007": 5, "asus_x013d": 5, "alfa_7mrc": 5, "alfa7lm": 5, "alfa_8st": 5, "alfa_7m": 5, "a11w": 5, "a33w": 5, "a850": 5, "aquaris m10": 5, "alfa_10mb": 5, "a10h(m3t3)": 5, "alfa_8ms": 5, "alfa_10tm": 5, "alfa_8mb": 5, "a10s(m3h3)": 5, "aloes": 5, "andromax a26c4h": 5, "alcatel_5044c": 5, "a574bl": 5, "a30": 5, "andromax b16c2g": 5, "ax1076+": 5, "asus_x014d": 5, "a20": 5, "a10": 5, "a60": 5, "a102": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/b.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/b.json deleted file mode 100644 index eab48e06..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/b.json +++ /dev/null @@ -1 +0,0 @@ -{"bal-al00": 1, "bmh-tn10": 2, "bmh-an10": 2, "bmh-an20": 2, "brq-an00": 2, "brq-al00": 2, "bah3-w59": 2, "bah3-an10": 2, "be2029": 2, "be2\u200b\u200b029": 2, "be2025": 2, "blade 20 pro 5g": 2, "bah3-l09": 3, "bbf100-4": 3, "bq-5732l": 3, "bla-tl00": 3, "bkl-l09": 3, "bkl-al20": 3, "bkl-l04": 3, "bla-a09": 3, "bla-l29": 3, "bkl-al00": 3, "bla-al00": 3, "bla-l09": 3, "bkl-tl10": 3, "bos-a0": 4, "be2011": 4, "be2013": 4, "btv-w09": 4, "btv-dl09": 4, "bkk-tl00": 5, "bkk-al00": 5, "bkk-lx2": 5, "bkk-l21": 5, "bkk-al10": 5, "bbb100-4": 5, "bird l8": 5, "bln-tl00": 5, "bnd-tl10": 5, "bac-al00": 5, "bln-al40": 5, "bln-al10_2": 5, "bac-l21": 5, "bln-l21": 5, "bln-al30": 5, "bah2-l09": 5, "bnd-al00": 5, "bln-al20": 5, "bah2-w09": 5, "bln-al10": 5, "bzt-w09": 5, "bnd-al10": 5, "bln-tl10_2": 5, "bll-l23": 5, "bln-l22": 5, "bah2-al10": 5, "bah2-w19": 5, "bac-l23": 5, "bac-l03": 5, "bll-l21": 5, "bzt-al10": 5, "bln-tl10": 5, "bll-l22": 5, "bac-tl00": 5, "bnd-l21": 5, "bln-al10_3": 5, "bv6000": 5, "blade v9": 5, "bah-w09": 5, "bah3-al00": 5, "blade v ultra": 5, "bah-l09": 5, "blade v9 vita": 5, "bah3-w09": 5, "bah-al00": 5, "bbc100-1": 5, "bzd-al00": 5, "blade v8q": 5, "bza-l00": 5, "blade v580": 5, "blade v8 se": 5, "bee 3": 5, "buzz 1 plus": 5, "bee": 5, "bf_t25": 5, "blade a530": 5, "blade a602": 5, "bror t60": 5, "blade v6 plus": 5, "bird d08": 5, "boway_v95pro": 5, "boway_u10": 5, "blade v6": 5, "bird m6": 5, "bird l802": 5, "bird l902": 5, "bird l6": 5, "bq-6040l": 5, "bq-6042l": 5, "bird l3": 5, "bird l9": 5, "bf_a500": 5, "bq-1085l": 5, "bgo-l03": 5, "bgo-dl09": 5, "bird l7": 5, "bird l900": 5, "bg2-w09": 5, "bg2-u01": 5, "buzz 2 plus": 5, "bq-5518g": 5, "bq-5016g": 5, "buzz 1": 5, "buzz 2 lite": 5, "bq-7098g": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/c.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/c.json deleted file mode 100644 index 4ba2f9c8..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/c.json +++ /dev/null @@ -1 +0,0 @@ -{"cph2173": 1, "cph2211": 1, "cph2247": 1, "cph2025": 1, "cph2207": 1, "cph2023": 1, "cph2249": 1, "cph2201": 1, "cph1921": 1, "cph1919": 1, "cph2251": 2, "cp05": 2, "cph1871": 2, "cdy-an00": 2, "cdy-nx9a": 2, "cdy-tn20": 2, "cdy-nx9b": 2, "cdy-tn00": 2, "cdy-an95": 2, "cdy-an20": 2, "cdy-an90": 2, "cdy-tn90": 2, "cph2091": 2, "cph2009": 2, "cph2089": 2, "cph2145": 2, "cph2005": 2, "cph1907": 3, "cph2119": 3, "cph2285": 3, "cph2123": 3, "cph2125": 3, "cph2217": 3, "cph2121": 3, "cph2203": 3, "cph2113": 3, "cph2109": 3, "cph2235": 3, "cph2159": 3, "cdl-an50": 3, "cph2161": 3, "cph2065": 3, "cnd-an00": 3, "cph1983": 3, "cph1917": 3, "cph1877": 3, "cph1955": 3, "cph1879": 3, "cph2043": 3, "cph2037": 3, "cph1979": 3, "cph1951": 3, "cph1945": 3, "cph2205": 3, "cph2035": 3, "cph2213": 3, "cph2237": 3, "cp03": 3, "chl-al00": 3, "cha-a0": 3, "cph1911": 3, "cph2209": 3, "cph1987": 3, "cph1969": 3, "cph1989": 3, "cph1938": 3, "cph2001": 3, "cph2021": 3, "cph1719": 3, "cph1893": 3, "cph1707": 3, "cph1721": 3, "cph1831": 3, "cph2061": 3, "cph1943": 3, "cph2059": 3, "cph1931": 3, "cph2013": 3, "cph1941": 3, "cph1937": 3, "cph2069": 3, "cph2067": 3, "cph1933": 3, "chl-an00": 3, "cma-an00": 3, "cph2321": 3, "cph1819": 3, "cph1835": 3, "cph1861": 3, "cph1837": 3, "cph1823": 3, "cph1859": 3, "cph1881": 3, "cph1821": 3, "cph1825": 3, "cph2219": 3, "cph2095": 3, "cph2223": 3, "cph2365": 3, "cph2099": 3, "col-al10": 3, "clt-al00l": 3, "clt-tl01": 3, "col-l29": 3, "clt-al00": 3, "clt-tl00": 3, "clt-al01": 3, "cor-tl10": 3, "clt-l29": 3, "col-tl10": 3, "cor-al00": 3, "cor-l29": 3, "cor-al10": 3, "clt-l04": 3, "chl-al60": 4, "cmr-al19": 4, "cmr-w19": 4, "cmr-w09": 4, "cmr-al09": 4, "c106-7": 4, "cool1_cn": 4, "c1-u02": 4, "cph1613": 4, "c106-6": 4, "c107-9": 4, "cph1611": 4, "coolpad c106": 4, "c103": 4, "c106-8": 4, "c106": 4, "c106-9": 4, "cph2263": 4, "cph2195": 4, "cph2197": 4, "cph2131": 4, "cph2137": 4, "cph2127": 4, "cph2135": 4, "cph2139": 4, "c105-8": 4, "c105": 4, "c105-6": 4, "clt-l09": 4, "caz-al10": 5, "cph1607": 5, "coolpad 3701a": 5, "capture+": 5, "conquest-s8": 5, "cmcc m761": 5, "cph1801": 5, "cph1903": 5, "cph1905": 5, "cph1809": 5, "cph1851": 5, "cp3705a": 5, "cph1853": 5, "cph1803": 5, "cph1805": 5, "cp3705as": 5, "cph1901": 5, "c6903": 5, "c6902": 5, "conquest-s11": 5, "cph2071": 5, "cph2179": 5, "cph2185": 5, "cph2015": 5, "cph1909": 5, "cph2239": 5, "cph2083": 5, "cph2031": 5, "cph2081": 5, "cph2077": 5, "cph2269": 5, "c20": 5, "conquest-s19": 5, "cph1912": 5, "cph1920": 5, "cph2073": 5, "coolpad v1-c": 5, "coolpad v1-t": 5, "cph1729": 5, "cph1723": 5, "cph1725": 5, "cph1727": 5, "cph1827": 5, "c17 pro": 5, "cph1923": 5, "c16_pro": 5, "coolpad 8971": 5, "cpn-al00": 5, "coolpad 8739": 5, "cpn-l09": 5, "cpn-w09": 5, "coolpad 5380ca": 5, "cph1701": 5, "casper_via_a2": 5, "casper_via_m2": 5, "casper_via_g1": 5, "casper_via_g1_plus": 5, "comio x9": 5, "casper_via_m1": 5, "comio m7000": 5, "cph1609": 5, "c1001": 5, "cph1715": 5, "cph1717": 5, "cph1605": 5, "cro-l23": 5, "cc2": 5, "c_note_pro": 5, "changhongs06": 5, "comio m5000": 5, "comio t9": 5, "changhongs16": 5, "casper_via_m3": 5, "c19": 5, "c19 pro": 5, "cm820": 5, "casper_via_e2": 5, "coolpad 8718": 5, "casper_via_e1": 5, "cag-l03": 5, "cag-l22": 5, "cro-l22": 5, "cro-l03": 5, "cag-l02": 5, "cag-l23": 5, "coolpad 7722": 5, "cun-al00": 5, "coolpad y803-8": 5, "coolpad 5370": 5, "coolpad b770s": 5, "coolpad e502": 5, "coolpad y71-511": 5, "coolpad y71-511s": 5, "coolpad 8722v": 5, "coolpad y803-9": 5, "coolpad 5367": 5, "cun-tl00": 5, "curvy c50l": 5, "coolpad 8737": 5, "coolpad 5367c": 5, "coolpad 8737a": 5, "changhongp06": 5, "cam-l21": 5, "cam-l32": 5, "cam-l03": 5, "che2-ul00": 5, "chm-ul00": 5, "cam-l23": 5, "chm-u01": 5, "chm-tl00": 5, "che2-tl00h": 5, "che-tl00h": 5, "chm-tl00h": 5, "che2-l11": 5, "che-tl00": 5, "che2-tl00": 5, "coolpad 8690_t00": 5, "coolpad 8690": 5, "changhong x6": 5, "c6603": 5, "cam-ul00": 5, "cam-tl00": 5, "coolpad a8-931": 5, "cam-al00": 5, "coolpad 3600i": 5, "cam-tl00h": 5, "coolpad a8-831": 5, "coolpad a8": 5, "coolpad 8675-fhd": 5, "coolpad t2-00": 5, "coolpad 8675-a": 5, "coolpad y90": 5, "coolpad a8-932": 5, "coolpad t2-w01": 5, "cm810": 5, "coolpad 8675-w00": 5, "coolpad s6-nc1": 5, "coolpad a8-930": 5, "coolpad s6-nt": 5, "coolpad t2-c01": 5, "chm-cl00": 5, "cm cm5s": 5, "coolpad 8675-hd": 5, "coolpad 8297d": 5, "coolpad 8297-t02": 5, "coolpad 9976a": 5, "coolpad 9976t": 5, "coolpad 8297": 5, "coolpad 8297w": 5, "coolpad 8675-f01": 5, "coolpad 8675": 5, "crr-tl00": 5, "crr-ul00": 5, "crr-cl00": 5, "che2-tl00m": 5, "coolpad 5956": 5, "coolpad k1-nt": 5, "coolpad y76": 5, "coolpad y75": 5, "ck3-01": 5, "che1-cl10": 5, "coolpad y80d": 5, "coolpad 8297-t01": 5, "coolpad y82-520": 5, "coolpad y82-820": 5, "coolpad y70-c": 5, "coolpad y72-821": 5, "c8817d": 5, "coolpad b770": 5, "coolpad y72-921": 5, "coolpad 8297-c00": 5, "che1-cl20": 5, "coolpad sk1-01": 5, "coolpad 8297_4.4": 5, "coolpad y1": 5, "coolpad 8297-w01": 5, "coolpad 8712": 5, "coolpad 8712s": 5, "coolpad y891": 5, "coolpad y91-921": 5, "coolpad 9190l": 5, "coolpad 8702": 5, "coolpad 8729": 5, "coolpad t1": 5, "coolpad 8715": 5, "coolpad 8732": 5, "coolpad 7620l": 5, "coolpad 5892": 5, "coolpad 8730l": 5, "coolpad 9190_t00": 5, "changhonga100": 5, "changhongn9": 5, "coolpad 7295c": 5, "coolpad 8670": 5, "casper_s38": 5, "casper_s28": 5, "coolpad 8721": 5, "coolpad 5360": 5, "coolpad 5721": 5, "casper_l10_4.5g": 5, "ctab-1044": 5, "cro-u00": 5, "cc5": 5, "c6 2019": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/d.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/d.json deleted file mode 100644 index 0a4bd442..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/d.json +++ /dev/null @@ -1 +0,0 @@ -{"dt2002c": 1, "dby-w09": 1, "dn2103": 1, "dn2101": 1, "dlt-a0": 1, "dt1901a": 1, "dt1902a": 1, "dlt-h0": 1, "de106": 2, "desire 21 pro": 2, "dvc-an00": 3, "dvc-an20": 3, "dvc-tn20": 3, "digi k2": 3, "duk-l09": 3, "dnn-lx9": 4, "duk-al20_4": 4, "duk-al20_3": 4, "duk-tl30": 4, "duk-al20_2": 4, "duk-al20": 4, "de2118": 4, "d-01j": 4, "d10": 5, "d-01k": 5, "d-02k": 5, "dub-al00a": 5, "dub-lx2": 5, "dub-al00": 5, "dub-tl00": 5, "dub-tl00a": 5, "dub-lx3": 5, "dub-al20": 5, "d5503": 5, "d5803": 5, "d6683": 5, "d6653": 5, "d6633": 5, "d6603": 5, "d5833": 5, "digi_k1": 5, "doovx11 pro": 5, "d1": 5, "digi r2": 5, "dra-lx9": 5, "dua-lx9": 5, "digi c2": 5, "d6502": 5, "d6503": 5, "d6708": 5, "dig-l03": 5, "dub-lx1": 5, "dig-l21": 5, "dig-l21hn": 5, "dig-al00": 5, "dig-tl10": 5, "dli-al10": 5, "dli-l22": 5, "dli-tl20": 5, "dli-al10_2": 5, "dli-l42": 5, "doov l5m": 5, "doov l5pro": 5, "doov s5": 5, "doov l5": 5, "doov l9": 5, "doov l8 plus": 5, "doov a8": 5, "doov l520": 5, "doov l9 mini": 5, "doov l520s": 5, "doov v5": 5, "dra-lx5": 5, "dra-l21": 5, "dra-tl00": 5, "dra-l01": 5, "dra-lx3": 5, "dua-l22": 5, "dua-tl00": 5, "dua-al00": 5, "dra-lx2": 5, "dra-al00": 5, "dua-lx3": 5, "dazen 6a": 5, "doov a10": 5, "doov a5": 5, "doov v8": 5, "doov a15s": 5, "doov a11": 5, "doov a6": 5, "doov a3": 5, "doov l7": 5, "doov m2": 5, "doov v3": 5, "doov l525": 5, "doov m1t": 5, "dazen x7": 5, "daq q5321": 5, "doov t20": 5, "doov l1": 5, "doov v1": 5, "d-01h": 5, "d-02h": 5, "doov l3c": 5, "d5322": 5, "d2302": 5, "doov v15": 5, "doov v11": 5, "dc-7015": 5, "d2502": 5, "doov a15": 5, "d96": 5, "doov s3": 5, "doov s2y": 5, "droid4x-win": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/e.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/e.json deleted file mode 100644 index 7a072af5..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/e.json +++ /dev/null @@ -1 +0,0 @@ -{"elz-an00": 1, "elz-an10": 1, "els-tn00": 1, "els-n04": 1, "els-an10": 1, "els-an00": 1, "els-n39": 1, "ebg-an00": 1, "ebg-an10": 1, "ebg-tn00": 1, "els-nx9": 1, "evr-tl00": 2, "ele-al00": 2, "evr-n29": 2, "ele-l09": 2, "evr-al00": 2, "ele-tl00": 2, "evr-an00": 2, "evr-l29": 2, "ele-l29": 2, "ele-l04": 2, "eb2101": 2, "eb2103": 2, "eml-l29": 3, "eml-tl00": 3, "eml-l09": 3, "eml-al00": 3, "eva-dl00": 4, "eva-al10": 4, "eva-al00_2": 4, "eva-cl00": 4, "eva_tl00": 4, "eva-l19": 4, "edi-al10": 4, "eva-l09": 4, "eva-tl00": 4, "eva-al10_2": 4, "eva-al00": 4, "e5333": 5, "e5533": 5, "e2 noir": 5, "e6653": 5, "e6853": 5, "e6883": 5, "e6633": 5, "e6833": 5, "e6683": 5, "e5823": 5, "e30": 5, "e": 5, "e109gcm": 5, "e602": 5, "e475": 5, "ex10s4": 5, "e6810": 5, "e108gcm": 5, "eluga u3": 5, "etab5": 5, "eton i95": 5, "eton i7": 5, "e82l": 5, "eben k8s": 5, "e6782": 5, "e2115": 5, "e0111": 5, "e504": 5, "eben m2": 5, "e553": 5, "ex7sl4": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/f.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/f.json deleted file mode 100644 index 7ee39130..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/f.json +++ /dev/null @@ -1 +0,0 @@ -{"figi p40": 1, "f810": 2, "find x": 2, "frl-an00a": 3, "frl-tn00": 3, "frl-l23": 3, "frl-23": 3, "frl-l22": 3, "frl-22": 3, "fs8016": 3, "fs8015": 3, "f-01k": 3, "f9s": 3, "fs8009": 4, "f5321": 4, "f5122": 4, "f5121": 4, "f8132": 4, "f8332": 4, "f8331": 4, "frd-al00": 4, "frd-l14": 4, "frd-dl00": 4, "frd-l09": 4, "frd-al00_2": 4, "frd-al10_2": 4, "frd-al10": 4, "frd-al00_3": 4, "frd-l19": 4, "fs8010": 5, "fs8018": 5, "fs8032": 5, "f-01j": 5, "fig-tl00": 5, "fla-lx1": 5, "fig-tl10": 5, "fig-lx1": 5, "fla-al10": 5, "fla-al20": 5, "fig-la1": 5, "fig-al00": 5, "fig-lx3": 5, "fla-tl10": 5, "fig-lx2": 5, "fig-al10": 5, "fla-lx2": 5, "fla-lx3": 5, "f3113": 5, "f3215": 5, "f3111": 5, "f3115": 5, "f3213": 5, "f3212": 5, "f3216": 5, "f3116": 5, "f3211": 5, "f-04k": 5, "fs8002": 5, "find7": 5, "flare s8": 5, "flare_s8_pro": 5, "flare_y7_pro": 5, "f-03g": 5, "f-04h": 5, "f-02h": 5, "fs8001": 5, "fresh_4g": 5, "f100s": 5, "f106l": 5, "f106": 5, "flare s6": 5, "f100sl": 5, "f103 pro": 5, "f105": 5, "f100a": 5, "f100": 5, "f3313": 5, "f3311": 5, "f103": 5, "f303": 5, "fire": 5, "fire phone": 5, "f100l": 5, "find 5": 5, "fdr-a01w": 5, "fdr-a03l": 5, "flare tab pro": 5, "fly5_lite": 5, "f1": 5, "f1f": 5, "f1fw": 5, "f1w": 5, "f301": 5, "f103s": 5, "f103l": 5, "f5": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/g.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/g.json deleted file mode 100644 index dc746fef..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/g.json +++ /dev/null @@ -1 +0,0 @@ -{"g100": 1, "galaxy s10": 1, "gm1925": 1, "ga01181-us": 1, "gm1901": 1, "gm1920": 1, "gm1917": 1, "gm1915": 1, "gm1911": 1, "g020i": 1, "gm1910": 1, "gm1900": 1, "gm1903": 1, "galaxy+s10": 1, "gm1913": 1, "galaxy s9": 2, "g7 thinq": 2, "galaxy s9+": 2, "g9600": 2, "galaxy note 9": 2, "g8441": 2, "g8341": 2, "g8342": 2, "g011c": 2, "google pixel 2": 2, "g8141": 2, "galaxy note 8": 2, "g8142": 2, "g011a": 2, "g60": 3, "gm 9 pro": 3, "gm 9 pro d": 3, "gionee m7plus": 3, "g7620de": 3, "glk-tl00": 4, "glk-al00": 4, "glk-lx1u": 4, "geo10x": 4, "g1701": 4, "glory g1": 4, "g50": 4, "g6+": 4, "g6": 4, "g8232": 4, "galaxy note 7": 4, "g0215d": 4, "g0245d": 4, "galaxy s7": 4, "galaxy s7 edge": 4, "galaxy s6 edge+": 5, "g9208": 5, "g5 plus": 5, "g": 5, "go n3s": 5, "gn9006": 5, "gt-i9502": 5, "gt-i9500": 5, "gt-i9506": 5, "gn8002": 5, "gionee s10bl": 5, "gn8002s": 5, "gionee a1": 5, "gionee s10b": 5, "get": 5, "gn9011": 5, "gome 2017m95a": 5, "gn9002": 5, "gt-i9508v": 5, "galaxy note 3": 5, "gs55-6": 5, "gs57-6": 5, "g3412": 5, "g3221": 5, "g3125": 5, "g3116": 5, "g3212": 5, "g3123": 5, "g3421": 5, "g3121": 5, "g3426": 5, "g3112": 5, "g3223": 5, "g3416": 5, "g3423": 5, "g3226": 5, "galaxy s5": 5, "gionee s11": 5, "gionee s11l": 5, "gionee_star": 5, "gome 2018x38a": 5, "gome_u9": 5, "gome_c7_note_plus": 5, "gn9008": 5, "gn9012": 5, "gn8003": 5, "gn8003l": 5, "gionee s10l": 5, "gionee s10": 5, "gome 2017m27a": 5, "gionee m7": 5, "gionee m7l": 5, "gly1620": 5, "gionee s11s": 5, "gn9004": 5, "gionee gn5007": 5, "gm8 go": 5, "gm 8 d": 5, "gionee gn5007l": 5, "gm 8": 5, "gionee s11 lite": 5, "gionee f6l": 5, "gionee f6": 5, "gionee gn5006": 5, "gionee s10 lite": 5, "gionee s10cl": 5, "gionee s10c": 5, "g3311": 5, "gm 6 d": 5, "g3313": 5, "g3312": 5, "gn8001": 5, "gn9010": 5, "gn8001l": 5, "gome 2016m25a": 5, "gn5003": 5, "gn3001l": 5, "gn3001": 5, "gs100": 5, "griffe t7": 5, "gome 2017x05a": 5, "gionee f109": 5, "gome s1": 5, "gn9007": 5, "g501": 5, "gn5005": 5, "gn5005l": 5, "gionee f109l": 5, "gn3002": 5, "gn3003": 5, "gn5001s": 5, "gn3003l": 5, "gn5001l": 5, "gn5001": 5, "gn3002l": 5, "griffe t2": 5, "go t2": 5, "griffe t8 plus": 5, "gm-q5": 5, "gm-q6": 5, "gn152": 5, "g19": 5, "gt-n5100": 5, "gt-n7102": 5, "gt-n5120": 5, "gt-n8000": 5, "galaxy note2": 5, "gt-n7105": 5, "gt-n5110": 5, "gt-i9308": 5, "gt-i9308i": 5, "gt-n7108": 5, "gt-n7100": 5, "gt-i9305": 5, "gt-i9300": 5, "gt-i9505": 5, "gt-i9515": 5, "gt-i9508": 5, "gt-i9515l": 5, "gt-i9220": 5, "galaxy c5": 5, "gm 5 plus d": 5, "gm 5 plus": 5, "galaxy a8": 5, "gt-i9152": 5, "gt-i9200": 5, "gionee f9 plus": 5, "gionee max": 5, "griffe t9": 5, "griffe t9 plus": 5, "gionee f9": 5, "gs110": 5, "g750-t20": 5, "gn9000": 5, "gn5002": 5, "grace": 5, "gem-703l": 5, "gra-ul00": 5, "gra-ul10": 5, "gra-cl00": 5, "gem-702l": 5, "gem-703lt": 5, "g621-tl00": 5, "g620s-ul00": 5, "g760-ul20": 5, "g760-tl00": 5, "general mobile 4g": 5, "g7-ul20": 5, "gm 5": 5, "general mobile 4g dual": 5, "gt-i9190": 5, "gm 5 d": 5, "g7-l01": 5, "g0128": 5, "gt-i9195": 5, "g7-tl00": 5, "gt-i9192": 5, "g621-tl00m": 5, "g01111": 5, "gt-i9100": 5, "gn9000l": 5, "gt-i9301q": 5, "griffe t6": 5, "gm-t1": 5, "gm-t5": 5, "go5e": 5, "gn9005": 5, "gt-i9158v": 5, "gt-i9158p": 5, "g620-l75": 5, "gt-i9300i": 5, "gn715": 5, "gt-i9158": 5, "gt-i9301i": 5, "gn151": 5, "gt-i9060i": 5, "go3e": 5, "griffe t5": 5, "g630-u10": 5, "gt-i8552": 5, "griffe t8": 5, "gap yoq": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/h.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/h.json deleted file mode 100644 index 5a434dbb..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/h.json +++ /dev/null @@ -1 +0,0 @@ -{"hd1925": 1, "hd1900": 1, "hd1907": 1, "hd1913": 1, "hd1910": 1, "hd1903": 1, "hd1911": 1, "hd1901": 1, "hma-l09": 2, "hma-l29": 2, "hw-02l": 2, "hma-al00": 2, "huawei honor v20": 2, "hma-tl00": 2, "h8324": 2, "h8216": 2, "h8296": 2, "h8166": 2, "h9493": 2, "htc 2q55100": 2, "htc 2q55300": 2, "h8416": 2, "htc u12+": 2, "hebe-bd00": 2, "hera-bd00": 2, "htc 2pzc100": 2, "htc 2q4d200": 2, "htc 2q4r400": 2, "htc u11 eyes": 2, "htv33": 2, "htc u11": 2, "htc u-3w": 2, "htc_u-3u": 2, "htc u11 plus": 2, "htc_2q4d100": 2, "h1a1000": 2, "htc 2q7a100": 2, "htc u20 5g": 2, "hlk-al10": 3, "hlk-l41": 3, "hlk-al00a": 3, "hlk-al00": 3, "hlk-l42": 3, "hisense infinity h50": 3, "htc desire 20+": 3, "hjc-an90": 3, "hjc-lx9": 3, "hisense infinity h50 zoom": 3, "hlte316t": 3, "hisense infinity h40": 3, "hisense infinity h30": 3, "hisense infinity h40 rock": 3, "hlte501n": 3, "hw-v9": 3, "hlte700t": 3, "hlte730t": 3, "htc desire 20 pro": 3, "hw-01k": 3, "hlte217t": 4, "hry-al00ta": 4, "hry-al00t": 4, "hry-al00a": 4, "hry-lx1": 4, "hry-al00": 4, "hry-tl00": 4, "hry-lx1t": 4, "hry-lx1meb": 4, "hry-lx2": 4, "hwv33": 4, "hwi-al00": 4, "huawei honor v9": 4, "hwi-tl00": 4, "htc 2q4r100": 4, "htc u-1w": 4, "htc u ultra": 4, "htc m10u": 4, "htc_u-1u": 4, "htc_m10h": 4, "htc m10h": 4, "htc 10": 4, "hlte510t": 4, "htc u12 life": 4, "hlte311t": 4, "huawei nxt-dl00": 4, "huawei nxt-tl00": 4, "huawei nxt-l09": 4, "huawei nxt-cl00": 4, "huawei-mediapad": 4, "huawei nxt-al10": 4, "huawei nxt-l29": 4, "huawei nxt-al10_3": 4, "huawei nxt-al10_2": 4, "h4133": 5, "h4213": 5, "h3213": 5, "h3113": 5, "h4233": 5, "h4113": 5, "h3223": 5, "h3123": 5, "hlte500t": 5, "htc u11 life": 5, "h4493": 5, "hltem800": 5, "huawei mla-al00": 5, "huawei mla-al10_2": 5, "huawei caz-tl10": 5, "huawei caz-tl20": 5, "huawei mla-tl10_2": 5, "huawei mla-l11": 5, "huawei mla-ul00": 5, "huawei mla-l01": 5, "huawei caz": 5, "huawei mla-tl10": 5, "huawei caz-al10_2": 5, "huawei mla-l13": 5, "huawei mla-al10": 5, "huawei mla": 5, "huawei can-l12": 5, "huawei can-l11": 5, "huawei caz-al10": 5, "huawei can-l01": 5, "huawei can-l13": 5, "huawei g628-tl00": 5, "htc d626t": 5, "htc d820us": 5, "htc d820ts": 5, "h3": 5, "huawei g629-ul00": 5, "huawei tag-cl00": 5, "huawei tag-al00": 5, "huawei tag-l01": 5, "htc d830u": 5, "huawei tag-l13": 5, "huawei tag-l23": 5, "huawei tag-tl00": 5, "hdn-l09": 5, "huawei vns-l31": 5, "hdl-w09": 5, "hwv32": 5, "hdn-w09": 5, "huawei tag-l21": 5, "huawei vns-l22": 5, "hwv31": 5, "hlte202n": 5, "hlte213t": 5, "hisense rock 5": 5, "huawei vns-l21": 5, "huawei nmo-l31": 5, "huawei vns-l23": 5, "huawei vns-l53": 5, "huawei vns-tl00": 5, "huawei vns-dl00": 5, "htc_d10i": 5, "htc u play": 5, "htc_a9sx": 5, "htc one a9s": 5, "htc desire 10 pro": 5, "htc d10w": 5, "htc_x10u": 5, "hlte310t": 5, "hisense h12": 5, "h18": 5, "hisense infinity h12": 5, "hlte215t": 5, "hlte310m": 5, "htc desire 12+": 5, "hla note3": 5, "htc one m9": 5, "htc_m10f": 5, "htc desire 19": 5, "htc desire 19+": 5, "htc desire eye": 5, "htc m8st": 5, "hisense infinity e30": 5, "hisense e30": 5, "htc desire 19s": 5, "htc one m9plus": 5, "htc desire 830": 5, "htc e9pw": 5, "htc e9w": 5, "htc desire 830 dual sim": 5, "htc_x9u": 5, "htc_d830x": 5, "htc e9t": 5, "htc_e9pw": 5, "hs-x1": 5, "htc m8d": 5, "htc one_m8 eye": 5, "htc one_m8": 5, "htc_m8x": 5, "htc desire 12s": 5, "hlte210t": 5, "hisense e76": 5, "hisense e76minim": 5, "hisense a2": 5, "hm-n700-fl": 5, "hisense k1": 5, "hisense e77mini": 5, "hlte210m": 5, "hisense f31": 5, "hisense e77": 5, "hisense infinity h11": 5, "hisense e76mini": 5, "hisense c20s": 5, "hisense f31m": 5, "hisense c30": 5, "hlte300t": 5, "hisense e9": 5, "hisense f22": 5, "hlte200t": 5, "hisense e70-t": 5, "hisense f23": 5, "hisense f23m": 5, "hisense f22m": 5, "h3321": 5, "h3311": 5, "h4331": 5, "hisense f24": 5, "h4311": 5, "huawei tag-l03": 5, "hla nx": 5, "htc desire 728g dual sim": 5, "htc d728w": 5, "hla note3 pro": 5, "htc_d728x": 5, "htc desire 628 dual sim": 5, "hla nx-plus": 5, "htc_d828g": 5, "htc desire 728 dual sim": 5, "htc desire 828 dual sim": 5, "htc d828w": 5, "hisense f17 pro": 5, "htc desire 12": 5, "hisense infinity e6": 5, "hisense f16": 5, "hisense f27": 5, "hisense f35": 5, "hisense f10": 5, "hm-i506-tl": 5, "hisense t5 plus": 5, "huawei lyo-l01": 5, "huawei tit-tl00": 5, "huawei tit-cl10": 5, "hm-i502-fl": 5, "huawei lyo-l21": 5, "hisense f30": 5, "huawei tit-cl00": 5, "huawei tit-al00": 5, "huawei cun-l22": 5, "hisense d2-m": 5, "hlj-x1-l": 5, "huawei cun-l03": 5, "huawei lua-l22": 5, "huawei lua-l21": 5, "huawei cun-u29": 5, "huawei tit-u02": 5, "hlj-gm-q1": 5, "huawei cun-l23": 5, "hlj-x1-w": 5, "hasee.x2": 5, "huawei cun-l21": 5, "huawei lua-l23": 5, "huawei cun-l01": 5, "hlj-xm-e": 5, "huawei lua-l03": 5, "huawei tit-l01": 5, "honor 4x(che2-ul00)": 5, "htc_m910x": 5, "htc j one": 5, "htc 8060": 5, "htc one": 5, "htc 9060": 5, "htc 801e": 5, "htc butterfly": 5, "htc one 801e": 5, "h60-l21": 5, "htc_a9u": 5, "hisense a1": 5, "htc a9w": 5, "htc one a9": 5, "huawei vns-l62": 5, "huawei vns-al00": 5, "h60-l03": 5, "h60-l02": 5, "h60-l04": 5, "h60-l11": 5, "h60-l12": 5, "h60-l01": 5, "hisense h910": 5, "huawei rio-l02": 5, "hwt31": 5, "huawei rio-ul00": 5, "huawei rio-tl00": 5, "huawei ath-ul01": 5, "htc d826t": 5, "huawei rio-l03": 5, "huawei m2-a01w": 5, "htc desire 820": 5, "huawei c8818": 5, "huawei ale-cl00": 5, "huawei rio-l01": 5, "huawei c199s": 5, "htc d820u": 5, "huawei kii-l21": 5, "htc d820t": 5, "huawei kii-l23": 5, "huawei rio-al00": 5, "htc desire 826 dual sim": 5, "hlte230e": 5, "hisense v40": 5, "hisense infinity h30 lite": 5, "hisense h40 lite": 5, "hlte223e": 5, "hisense infinity e30 lite": 5, "hisense e40": 5, "hisense infinity h40 lite": 5, "hisense e50 lite": 5, "hisense f19": 5, "hisense h30 lite": 5, "hisense e40 lite": 5, "hisense infinity e30se": 5, "hit p10": 5, "huawei mt7-ul00": 5, "huawei mt7-cl00": 5, "huawei mt7-tl00": 5, "huawei rio-cl00": 5, "huawei mt7-l09": 5, "huawei mt7-tl10": 5, "huawei g750-t00": 5, "huawei g750-t01": 5, "huawei p6-t00": 5, "huawei g750-t20": 5, "hm note 1w": 5, "hm note 1s": 5, "hasee x50ts": 5, "htc desire 620g dual sim": 5, "htc desire 820g plus dual sim": 5, "hasee v5": 5, "hlj-xl": 5, "huawei crr-ul00": 5, "huawei gra-cl10": 5, "huawei gra-ul10": 5, "huawei p8max": 5, "huawei crr-cl00": 5, "huawei crr-ul20": 5, "huawei gra-l09": 5, "huawei gra-tl00": 5, "huawei m2-802l": 5, "huawei gra-cl00": 5, "huawei m2-a01l": 5, "huawei gra-ul00": 5, "huawei m2-803l": 5, "huawei m2-801w": 5, "htc d820mt": 5, "huawei y635-tl00": 5, "huawei g7-ul20": 5, "hisense i639t": 5, "hisense g610m": 5, "huawei c8817e": 5, "huawei g7-tl00": 5, "huawei sc-cl00": 5, "huawei g7-l11": 5, "huawei y635-cl00": 5, "huawei g7-l03": 5, "htc desire 820s dual sim": 5, "huawei mla-tl00": 5, "hm note 1td": 5, "huawei y560-cl00": 5, "htc d626d": 5, "hisense i635t": 5, "huawei g7-l01": 5, "huawei sc-ul10": 5, "hm note 1lte td": 5, "htc desire 650": 5, "htc d816d": 5, "hm note 1ltetd": 5, "htc desire 10 lifestyle": 5, "hm 1s": 5, "htc d816w": 5, "hm 1sltetd": 5, "hm note 1ltew": 5, "huawei c199": 5, "htc d816t": 5, "htc_d10u": 5, "huawei b199": 5, "hm note 1lte": 5, "hm 1sc": 5, "hisense f8 mini": 5, "htc desire 630 dual sim": 5, "htc desire 816 dual sim": 5, "hisense u963": 5, "hisense u40": 5, "hm-i505-tl": 5, "hlte103e": 5, "hisense e71-m": 5, "hisense e75t": 5, "hisense c1": 5, "hisense c20": 5, "hm 2a": 5, "huawei g660-l075": 5, "huawei g730-l075": 5, "h30-t10": 5, "hm 1sw": 5, "hol-u19": 5, "h30-t00": 5, "h30-u10": 5, "huawei p7-l09": 5, "huawei p7-l00": 5, "htc desire 526g dual sim": 5, "hol-t00": 5, "huawei p7-l05": 5, "huawei p7-l10": 5, "hol-u10": 5, "huawei p7-l07": 5, "honor h30-l01": 5, "huawei g730-t00": 5, "huawei lua-u22": 5, "huawei mt2-c00": 5, "huawei mt2-l01": 5, "huawei p6 s-u06": 5, "honor h30-l01m": 5, "huawei g730-u00": 5, "honor h30-l02": 5, "huawei g610-t11": 5, "huawei g610-u00": 5, "hisense m20-t": 5, "htc_d530u": 5, "huawei y560-u02": 5, "huawei scl-u31": 5, "hisense e51-m": 5, "hisense m20-m": 5, "huawei scc-u21": 5, "hisense u962": 5, "hwcd100e": 5, "hisense u964": 5, "hisense u605": 5, "huawei c8815": 5, "huawei y625-u32": 5, "h30-c00": 5, "huawei c8816d": 5, "hisense f20t": 5, "hisense m30t": 5, "hisense m30": 5, "huawei p6-c00": 5, "huawei c8816": 5, "hisense u965": 5, "hoffmann x-prime": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/i.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/i.json deleted file mode 100644 index 2928c717..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/i.json +++ /dev/null @@ -1 +0,0 @@ -{"in2013": 1, "in2010": 1, "i1928": 1, "i1927": 1, "in2021": 1, "in2023": 1, "in2025": 1, "in2020": 1, "in2011": 1, "infinix x6810": 2, "infinix x695": 2, "infinix x695d": 2, "infinix x695c": 2, "infinix x6811b": 2, "infinix x687": 3, "infinix x687b": 3, "i5g": 3, "i9658": 3, "infinix x693": 3, "infinix x689": 3, "infinix x689b": 3, "infinix x689d": 3, "infinix x683b": 3, "infinix x692": 3, "infinix x662": 3, "infinix x690b": 3, "infinix x689c": 3, "infinix x659b": 3, "infinix pr652b": 3, "infinix x682c": 3, "infinix x683": 3, "infinix x690c": 3, "infinix x690": 3, "infinix x682b": 3, "in_note1": 3, "ine-lx1": 4, "ine-al00": 4, "ine-tl00": 4, "ine-lx2": 4, "ine-lx2r": 4, "ine-lx1r": 4, "ivy-lx2": 4, "i4293": 4, "i4193": 5, "infocus s1": 5, "im-a890": 5, "infinix x625c": 5, "infinix x660b": 5, "infinix x660c": 5, "infinix x660": 5, "infinix x688c": 5, "infinix x688b": 5, "im-a910k": 5, "iuni i1": 5, "infinix x605": 5, "io pro": 5, "infinix x604": 5, "infinix x625d": 5, "infinix x626": 5, "infinix x655d": 5, "infinix x680d": 5, "infinix x655c": 5, "infinix x652b": 5, "infinix x655": 5, "infinix x626b lte": 5, "infinix x655f": 5, "infinix x626b": 5, "i3312": 5, "infinix x680c": 5, "infinix x652": 5, "ioutdoor w2": 5, "i4312": 5, "i4332": 5, "infinix x625b": 5, "infinix x656": 5, "infinix x680f": 5, "infinix x657b": 5, "infinix x650d": 5, "infinix x657c": 5, "infinix x612b": 5, "infinix x653": 5, "infinix x653c": 5, "infinix x5516c": 5, "infinix x650": 5, "infinix x680b": 5, "infinix x650b": 5, "infinix x650c": 5, "infinix x627v": 5, "infinix x627": 5, "infinix x603": 5, "ivvi c5-t": 5, "infinix x573b": 5, "ivvi i3p-02": 5, "infinix x573": 5, "im-100gn": 5, "infinix x622": 5, "infinix x608": 5, "infinix x606d": 5, "infinix x623": 5, "infinix x657": 5, "infinix x612": 5, "infinix x572": 5, "infinix_x521": 5, "infinix-x600-lte": 5, "infinix note 3": 5, "infinix s2 pro": 5, "infinix x571": 5, "infinix note 3 pro": 5, "iuni n1": 5, "ivvi k5-t": 5, "inoi_5i": 5, "ilium m9": 5, "itel l5503": 5, "infinix x5515": 5, "infinix x5514d": 5, "iris88": 5, "ilium m5": 5, "i95": 5, "infinix x680": 5, "ilium alpha 3": 5, "io 3d": 5, "infinix x606b": 5, "iris90": 5, "ilium l1120": 5, "infinix hot4 lte": 5, "infinix hot 4 pro": 5, "ivvi f2c": 5, "ivvi f1s": 5, "iris 755": 5, "infocus m530": 5, "im-a870k": 5, "i9200": 5, "itel l6501": 5, "i97": 5, "iku a50": 5, "itel l6005": 5, "ilium alpha 1s": 5, "iku a40": 5, "ilium m9s": 5, "itel l6002p": 5, "itab_x39l": 5, "iplay_20": 5, "itel l6503": 5, "ivvi i3-01": 5, "ivvi ss1-03": 5, "ivvi ss1-01": 5, "ivvi f2-t": 5, "itab-a1": 5, "i68": 5, "inoi 7 2020": 5, "itel l5002p": 5, "itel a48": 5, "itel l5002": 5, "itel l6006": 5, "itel a23": 5, "itel l6502": 5, "infocus m2": 5, "ivvi v1": 5, "itel a16 plus ru": 5, "iris51": 5, "itel w6501": 5, "itel w5505": 5, "itel l6003p": 5, "itel a16 plus": 5, "itel w6004p": 5, "itel w6002": 5, "itel w6004": 5, "itel w5504": 5, "itell_k3102n": 5, "ilium m7s": 5, "itel l5505": 5, "iris50": 5, "itel s11plus": 5, "infinix x559": 5, "infinix x559f": 5, "infinix x559c": 5, "itel p32": 5, "infinix x609": 5, "infinix x624": 5, "iris 820": 5, "infinix x5010": 5, "itel a32f": 5, "infinix x606c": 5, "infinix x606": 5, "itel w5001p": 5, "itel w5008": 5, "i10": 5, "infinix hot 4": 5, "infinix hot 4 lite": 5, "infinix x624b": 5, "itel s33": 5, "infinix x652a": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/j.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/j.json deleted file mode 100644 index f07a9852..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/j.json +++ /dev/null @@ -1 +0,0 @@ -{"jad-al50": 1, "j3s": 1, "j1sc": 1, "j9210cn": 1, "j9210": 1, "j9110": 1, "jef-tn00": 2, "jef-an20": 2, "jef-tn20": 2, "jer-tn20": 2, "jer-tn10": 2, "jer-an10": 2, "jer-an20": 2, "jef-an00": 2, "jef-nx9": 2, "jlh-an00": 2, "jny-lx1": 3, "jny-al10": 3, "jny-lx2": 3, "jsc-an00": 3, "joy 4": 3, "jkm-al00": 4, "jsn-l21": 4, "jsn-l42": 4, "jkm-lx2": 4, "jkm-tl00": 4, "jsn-al00": 4, "jdn2-al00hn": 4, "jdn2-al50": 4, "jkm-al00a": 4, "jkm-lx1": 4, "jdn2-w09": 4, "jdn2-l09": 4, "jdn2-al00": 4, "jsn-tl00": 4, "jdn2-w09hn": 4, "jkm-al00b": 4, "jdn2-al50hn": 4, "jsn-al00a": 4, "jsn-l22": 4, "jsn-l23": 4, "j01": 4, "joy 3+": 5, "jy-s3": 5, "jkm-lx3": 5, "joy 2+": 5, "jat-l29": 5, "jat-al00": 5, "jat-tl00": 5, "jat-lx3": 5, "jat-lx1": 5, "jat-l41": 5, "joy 1": 5, "joy 1+": 5, "jmm-al10": 5, "jmm-al00": 5, "jmm-tl10": 5, "jmm-l22": 5, "jdn-al00": 5, "jdn-w09": 5, "jd-plus": 5, "joy 3": 5, "joy": 5, "jerry2": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/k.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/k.json deleted file mode 100644 index d92c2353..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/k.json +++ /dev/null @@ -1 +0,0 @@ -{"kb2000": 1, "kb2001": 1, "kb2003": 1, "krj-an00": 2, "kjr-w09": 2, "krj-w09": 2, "kkg-an70": 2, "kreta g25": 2, "k20": 3, "kkg-an00": 3, "kingkong-an00": 3, "kuliao k10": 3, "kfmawi": 4, "kfsuwi": 4, "knt-al10": 4, "knt-tl10": 4, "knt-ul10": 4, "knt-al20": 4, "kfonwi": 5, "kyv41": 5, "kyt33": 5, "kob2-w09": 5, "kf6i": 5, "kindle fire hdx": 5, "kindle fire hdx 7": 5, "koobee f2": 5, "k-touch la1": 5, "koobee f2 plus": 5, "koobee y3": 5, "k-touch_hd1": 5, "ksa-al10": 5, "king 7": 5, "king 7s": 5, "ksa-lx9": 5, "ksa-al00": 5, "ksa-lx2": 5, "ksa-lx3": 5, "kyv33": 5, "kyt32": 5, "kyv38": 5, "kob-l09": 5, "kob-w09": 5, "konka 711": 5, "k-touch x21": 5, "kaan_n2": 5, "koobee f1": 5, "k10": 5, "koobee k10": 5, "k350t": 5, "koobee s12": 5, "koobee s309": 5, "koobee s506m": 5, "koobee s106": 5, "koobee h9l": 5, "koobee s305": 5, "koobee m7q": 5, "koobee s305m": 5, "koobee h9": 5, "koobee m9 plus": 5, "koobee s600": 5, "koobee m9": 5, "koobee s206m": 5, "k-touch 8848": 5, "k500": 5, "koobee s103": 5, "koobee m6": 5, "k-touch x7": 5, "konka s1": 5, "k-touch 2a": 5, "koobee s301t": 5, "konka e1": 5, "k3dx-v5g": 5, "k88": 5, "kiw-l21": 5, "kiw-al1o": 5, "kiw-cloo": 5, "kyt31": 5, "kiw-tlooh": 5, "kiw-tloo": 5, "kiw-al20": 5, "kiw-al10_2": 5, "kiw-uloo": 5, "kiw-tl00h": 5, "kiw-ul00": 5, "kiw-tl00": 5, "kiw-al10": 5, "kiw-cl00": 5, "k88l": 5, "kyy24": 5, "kyv34": 5, "kopo k33": 5, "k-touch tou ch3": 5, "kingsun-f70": 5, "k-touch h2": 5, "kfkawi": 5, "kfmuwi": 5, "kfdowi": 5, "kfauwi": 5, "kffowi": 5, "kd50": 5, "ks964": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/l.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/l.json deleted file mode 100644 index df963a43..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/l.json +++ /dev/null @@ -1 +0,0 @@ -{"le2123": 1, "le2111": 1, "l70081": 1, "lenovo l70081": 1, "le2121": 1, "le2120": 1, "le2110": 1, "lenovo tb-j606l": 1, "le2101": 1, "le2100": 1, "lenovo tb-j716f": 1, "lenovo l79031": 1, "l79031": 1, "lm-v510n": 1, "lm-v500n": 1, "lenovo l78051": 1, "lenovo l78032": 1, "lm-g810": 1, "lenovo l79041": 1, "lenovo l78031": 1, "lm-g820": 1, "lm-g820n": 1, "lm-g850": 1, "lio-an00": 1, "lio-n29": 1, "lio-tl00": 1, "lio-an00m": 1, "lio-an00p": 1, "lio-l29": 1, "lio-al00": 1, "lya-al10": 2, "lya-tl00": 2, "lya-al00p": 2, "lya-l0c": 2, "lya-l09": 2, "lya-al00": 2, "lya-l29": 2, "lm-v350": 2, "lm-v409n": 2, "lg-g710": 2, "lm-g710n": 2, "lgv35": 2, "lm-v405": 2, "lm-g710": 2, "lm-v350n": 2, "lm-g910": 2, "lsa-an00": 2, "lgm-v300s": 2, "lg v30": 2, "l-01k": 2, "lg-as998": 2, "lgm-v300k": 2, "lg-h933": 2, "lm-q927l": 2, "lgm-v300l": 2, "lm-q910": 2, "lg-h930": 2, "lg-ls998": 2, "lg-h932": 2, "lg-us998": 2, "lm-f100n": 2, "lmf100n": 2, "lenovo tb-j607f": 2, "lm-q920n": 2, "lm-g900n": 2, "lm-g900": 2, "lenovo tb-j706f": 3, "lenovo l78121": 3, "lenovo l38111": 3, "lenovo l78071": 3, "l78071": 3, "lenovo k10": 3, "lm-q730n": 3, "lenovo k11 power": 3, "lt-note 10s": 3, "lenovo k12 note": 3, "lenovo tb-j606f": 3, "lra-al00": 4, "lra-lx1": 4, "lon-al00_4": 4, "lon-al00-pd": 4, "lon-al00_2": 4, "lon-al00": 4, "lon-al00_3": 4, "lon-l29": 4, "lg-h848": 4, "le x528": 4, "lg-h845": 4, "le x526": 4, "lg-h840": 4, "lenovo k13 note": 4, "lex720_2": 4, "lm-t605": 4, "lex720": 4, "lg-as993": 4, "letv-x720": 4, "lex728": 4, "lgm-g600l": 4, "lgus992": 4, "lg-h990": 4, "lm-q850": 4, "le max": 4, "lgm-x800l": 4, "lg-h910": 4, "lm-q925s": 4, "lg-h831": 4, "le x820": 4, "letv x720": 4, "lg-f700s": 4, "lg-ls993": 4, "lex722": 4, "lg-h871": 4, "lg-ls997": 4, "lg-h918": 4, "lg-h868": 4, "lgls992": 4, "lg-h860": 4, "lg-f800k": 4, "letv x502": 4, "lg-h870": 4, "l-01j": 4, "le x822": 4, "lg-f800l": 4, "lex820": 4, "lg-h872": 4, "lg-h820": 4, "lm-q925l": 4, "lg-f700k": 4, "lg-h850": 4, "lgm-g600k": 4, "lgm-g600s": 4, "lg-h870s": 4, "lg-f700l": 4, "lg-us996": 4, "lg-h870ds": 4, "lg-h873": 4, "lg-h830": 4, "lg-f800s": 4, "lm-q925k": 4, "lenovo l58041": 4, "lenovo l78011": 4, "lenovo l58091": 4, "lenovo l38041": 4, "lenovo k12": 4, "lenovo l39051": 5, "lenovo tb-8804f": 5, "l-03k": 5, "lenovo tb-8703f": 5, "lenovo tb-x704f": 5, "lenovo tb-8704f": 5, "lt note 10m": 5, "lenovo tb-8704x": 5, "lenovo tb-x704l": 5, "lenovo tb-x804f": 5, "lenovo p2a42": 5, "lenovo p2c72": 5, "lenovo tb-8704n": 5, "lenovo tb-8703x": 5, "lenovo k520": 5, "lenovo a7000-a": 5, "lenovo k50-t3s": 5, "lenovo a936": 5, "lenovo k50a40": 5, "lenovo k50-t5": 5, "lenovo a938t": 5, "lenovo a7600-m": 5, "lld-al00": 5, "lld-al30": 5, "lld-l21": 5, "lld-l31": 5, "lld-tl10": 5, "lld-al20": 5, "lld-al10": 5, "lenovo yt-x705x": 5, "lenovo yt-x705f": 5, "lenovo a7020a48": 5, "lenovo k52t38": 5, "lm-q610.fgn": 5, "lenovo tb-x705l": 5, "lm-q815l": 5, "lenovo l38012": 5, "lm-q720": 5, "lenovo tb-x605fc": 5, "lenovo tb-x505l": 5, "lm-q710.fg": 5, "lnd-tl40": 5, "lenovo tb-x505f": 5, "lm-q815s": 5, "lm-q710(fgn)": 5, "lm-q725k": 5, "lenovo tb-x605lc": 5, "lm-q725s": 5, "lm-q815k": 5, "lenovo tb-x705m": 5, "lnd-al30": 5, "lnd-al40": 5, "lenovo tb-x605l": 5, "lenovo pb-6505m": 5, "lg-q710pl": 5, "lenovo tb-x605f": 5, "lm-q725l": 5, "le x625": 5, "lex651": 5, "lex650": 5, "lenovo k8 note": 5, "le x620 pro": 5, "le x621": 5, "le2 x620": 5, "le x620_2": 5, "lex636": 5, "le x527": 5, "lex622": 5, "le x626": 5, "lex626": 5, "le x620": 5, "lenovo tb-x606x": 5, "lenovo tb-x306f": 5, "lenovo tb-x606f": 5, "lenovo tb-x306x": 5, "lg-f400l": 5, "lg-vs985": 5, "lgls990": 5, "lg-f350s": 5, "lg-d802": 5, "lg-d838": 5, "lg-ls990": 5, "lg-f320l": 5, "lg-d858": 5, "lenovo k910": 5, "lg-f400s": 5, "lg-d859": 5, "lg-d958": 5, "lgv31": 5, "lgl22": 5, "lenovo k8 plus": 5, "lm-k520": 5, "lm-q730": 5, "lm-q630": 5, "lm-q520n": 5, "lm-k510": 5, "lm-q630n": 5, "lm-k525": 5, "l55u": 5, "lg-d855": 5, "lgl24": 5, "lgus990": 5, "le9910": 5, "lm-k300": 5, "lava le9820": 5, "lenovo l19041": 5, "lm-x625n": 5, "lm-q510n": 5, "lenovo l10041": 5, "lm-x525": 5, "lava le9830": 5, "lm-k420": 5, "lgl355dl": 5, "lm-x440im": 5, "lt_c3500": 5, "lenovo l38043": 5, "lava le9810": 5, "lm-k500": 5, "lm-q310n": 5, "lm-x440zmw": 5, "lenovo l38031": 5, "lm-x420n": 5, "lm-x540": 5, "lm-k410": 5, "lm-x430": 5, "lenovo tb-8705n": 5, "lm-x520": 5, "lm-x420": 5, "letv x500": 5, "letv x501": 5, "le x500": 5, "le x520": 5, "le x507": 5, "lgls755": 5, "lenovo tb-8505x": 5, "lenovo tb-8505fs": 5, "lava lf9810_2gb": 5, "lenovo tb-8505xs": 5, "lenovo tb-8505f": 5, "le x509": 5, "lm-k200": 5, "l50t": 5, "l50u": 5, "lg-tp450": 5, "lg-p530l": 5, "lgm-x600k": 5, "lg-m710": 5, "lgmp450": 5, "lgm-x600l": 5, "lg-ls777": 5, "lg-m700": 5, "lg-m703": 5, "lgm-x600s": 5, "lg-k535": 5, "lenovo k33a48": 5, "lenovo k53a48": 5, "ldn-al00": 5, "lnd-l29": 5, "ldn-tl10": 5, "lenovo k53b36": 5, "ldn-al20": 5, "lg-k530": 5, "ldn-al10": 5, "ldn-lx2": 5, "lenovo k33b36": 5, "lenovo k33a42": 5, "lgms550": 5, "ldn-tl00": 5, "ldn-lx3": 5, "ldn-l01": 5, "lenovo l38011": 5, "ldn-l21": 5, "ldn-tl20": 5, "lg-m200": 5, "lm-x415k": 5, "lml212vl": 5, "lm-x212(g)": 5, "lenovo tb-x304f": 5, "lenovo tb-x505x": 5, "lm-x220": 5, "lm-x415s": 5, "lgmp260": 5, "lg-m210": 5, "lm-x320": 5, "lenovo tb-8504x": 5, "lg-m327": 5, "lm-x210": 5, "lgl322dl": 5, "lm-x410l": 5, "lenovo tb-x304n": 5, "lgl84vl": 5, "lm-x220n": 5, "lgm-k120l": 5, "lm-x210apm": 5, "lm-x510.fg": 5, "lm-x410s": 5, "lm-x410(fg)": 5, "lgms210": 5, "lg-tp260": 5, "lm-x210(g)": 5, "lm-x410.f": 5, "lenovo tb-x304x": 5, "lm-x415l": 5, "lgm-k120s": 5, "lm-x210cm": 5, "lm-x410um": 5, "lenovo tb-x304l": 5, "lg-m430": 5, "lenovo tab 2 a10-70f": 5, "lenovo tab 2 a10-70l": 5, "lenovo tab 2 a10-70lc": 5, "lg-h961n": 5, "lg-h961an": 5, "lg-h818": 5, "lg-h815": 5, "lgv32": 5, "lg-h968": 5, "lgls991": 5, "lg-h819": 5, "lg-h812": 5, "lenovo x3c50": 5, "lg-f500s": 5, "lg-h960": 5, "lg-f500l": 5, "lg-f600s": 5, "lg-f600l": 5, "l39h": 5, "lg-k580": 5, "lenovo a7010a48": 5, "lg-k430": 5, "lenovo k51c78": 5, "lg-f820l": 5, "lava_a3": 5, "lm-q610.fg": 5, "lg-m400": 5, "lg-m250": 5, "lg-sp320": 5, "la-x7": 5, "lg-sp200": 5, "lm-x510k": 5, "lg-m320": 5, "la-v11": 5, "lg-q710al": 5, "lm-x220pm": 5, "lgm-x320l": 5, "lm-x510l": 5, "lm-x510s": 5, "lgm-x320k": 5, "lgm-x320s": 5, "lio+": 5, "l553": 5, "lm-x120": 5, "lenovo l18021": 5, "lg-x240": 5, "la-s35": 5, "lg-k350": 5, "la-s31": 5, "lyo-l21": 5, "lg-f750k": 5, "lovme-t11": 5, "lenovo a2016b30": 5, "lg-k240": 5, "lg-k220": 5, "lg-x230": 5, "la-v9": 5, "lenovo a3690": 5, "lenovo a2010-a": 5, "lenovo a7700": 5, "lg-k130": 5, "lenovo a5500": 5, "lenovo a3580": 5, "la9-l": 5, "la-s3 volte": 5, "lenovo a5860": 5, "la-s5": 5, "la-s6": 5, "lenovo p1ma40": 5, "lenovo k10a40": 5, "la-x4": 5, "la-s2 volte": 5, "lenovo a6600d40": 5, "la-x6-pro": 5, "lenovo a2860": 5, "la-x5": 5, "lenovo a5600": 5, "lenovo a3860": 5, "la-s1": 5, "lenovo pb2-670y": 5, "lenovo pb2-670n": 5, "lg-f460s": 5, "lenovo tb-7504x": 5, "lenovo tb3-850m": 5, "lenovo pb2-650y": 5, "lenovo tb3-730m": 5, "lenovo tb-7504n": 5, "lenovo tb-7304x": 5, "lenovo tab 2 a8-50lc": 5, "lenovo x2-ap": 5, "lenovo x2-to": 5, "lenovo tb-7305x": 5, "lg-f240s": 5, "lg-v500": 5, "lgt31": 5, "lgt32": 5, "lenovo p1c58": 5, "lenovo z90a40": 5, "lenovo k32c36": 5, "lenovo z90-7": 5, "lenovo z90-3": 5, "lenovo s1a40": 5, "lg-v521": 5, "lenovo pb1-750n": 5, "lenovo pb2-650m": 5, "lenovo x2pt5": 5, "lenovo a6020a46": 5, "lenovo p1c72": 5, "lenovo l19111": 5, "logic l55s": 5, "lenovo k13": 5, "lenovo p1a42": 5, "lephone t7+": 5, "lenovo s939": 5, "lenovo a806": 5, "lenovo a808t-i": 5, "lenovo s938t": 5, "lenovo s898t+": 5, "lenovo a808t": 5, "lenovo a916": 5, "lovme-t16": 5, "lenovo a5800-d": 5, "la6-l": 5, "la7-l": 5, "lenovo p70-t": 5, "lenovo p70-a": 5, "lenovo a858t": 5, "lenovo s858t": 5, "la5-l": 5, "lovme-t6": 5, "lg-k520": 5, "la3-l": 5, "lenovo k30-e": 5, "lenovo z2": 5, "lenovo z2w": 5, "lenovo s90-t": 5, "lenovo s60-t": 5, "lenovo s90-e": 5, "lenovo tb-8604f": 5, "lenovo a805e": 5, "lenovo tb-8504f": 5, "lg-k420": 5, "lenovo k30-t": 5, "lenovo tb-7703x": 5, "lg-f620k": 5, "lenovo a6000": 5, "la4-l": 5, "lenovo k30-w": 5, "lenovo tb-7703n": 5, "lgls775": 5, "lg-k500": 5, "lenovo a768t": 5, "lenovo pb1-750p": 5, "ln9910": 5, "lephone t7a": 5, "la-s7": 5, "lava ln9810": 5, "lh9920": 5, "l503f plus": 5, "lephone t10a": 5, "lephone t6+v": 5, "lenovo a6020a40": 5, "lenovo a6020l36": 5, "lenovo tb-7304n": 5, "lenovo tb-7104f": 5, "lenovo tb-7304f": 5, "lenovo tb-7304i": 5, "lephone t708": 5, "lovme-t9": 5, "lgl25": 5, "lenovo s658t": 5, "lenovo a708t": 5, "lenovo s930": 5, "lenovo a320t": 5, "lenovo a3500-hv": 5, "lenovo a3800-d": 5, "lenovo s850t": 5, "lg-d331": 5, "lenovo a688t": 5, "lg-d690": 5, "lenovo a5000": 5, "lenovo a7600": 5, "lenovo s668t": 5, "lenovo s650": 5, "lenovo tab 2 a7-30hc": 5, "lenovoa3300-hv": 5, "lenovo a850": 5, "lenovo a3300-t": 5, "lenovoa3300-gv": 5, "lenovo tab 2 a7-30gc": 5, "lenovo tab 2 a7-30dc": 5, "lenovo a850+": 5, "lenovo 2 a7-30tc": 5, "lenovo 2 a7-30hc": 5, "lenovo a536": 5, "lg-d337": 5, "lenovo s898t": 5, "lenovo s968t": 5, "lenovo a820t": 5, "lenovo tb-8304f1": 5, "lenovo a388t": 5, "lenovo s960": 5, "lenovo tb-x104f": 5, "lg-m153": 5, "lg-m150": 5, "lg-k200": 5, "lenovo yt3-850m": 5, "lenovo a3910t30": 5, "lenovo tb-x104f1": 5, "lenovo tb2-x30m": 5, "lgl158vl": 5, "lenovo tb2-x30l": 5, "lg-m154": 5, "lenovo tb-x104l": 5, "lenovo yt3-x50m": 5, "lgls676": 5, "lenovo tb3-710f": 5, "lenovo tb-7305f": 5, "lenovo tb3-710i": 5, "lenovo tb-7305i": 5, "lenovo a1000": 5, "lenovo tb-7104i": 5, "lava lh9950": 5, "le9920_p": 5, "lenny3": 5, "lenny4 plus": 5, "leapad_x": 5, "l20": 5, "lenovo a360t": 5, "lephone w7": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/m.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/m.json deleted file mode 100644 index b50299b8..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/m.json +++ /dev/null @@ -1 +0,0 @@ -{"m2001j2c": 1, "m2012k11g": 1, "m2102k1g": 1, "mi 11": 1, "m2011j18c": 1, "meizu 18": 1, "m181q": 1, "mt2110": 1, "m2102k1c": 1, "m191q": 1, "m2011k2c": 1, "m2102k1ac": 1, "meizu 18 pro": 1, "m2011k2g": 1, "m2012k11c": 1, "m182q": 1, "m192q": 1, "m2012k11ai": 1, "m2105k81c": 1, "m2012k11ag": 1, "mrr-w29": 1, "m172q": 1, "m2012k11ac": 1, "m2102j2sc": 1, "m2007j3sp": 1, "m2007j3si": 1, "meizu 17": 1, "mi 10 pro": 1, "m2007j1sc": 1, "m2007j3sg": 1, "m2007j3sc": 1, "m091q": 1, "mi 10": 1, "meizu 17 pro": 1, "m2007j3sy": 1, "m081q": 1, "moto edge+": 1, "m2104k10i": 1, "m2104k10c": 1, "m2012k10c": 1, "m2101k9g": 1, "m2101k9c": 1, "m2104k10ac": 1, "m2006j10c": 1, "m973q": 1, "mi9 pro 5g": 1, "mix alpha": 1, "m971q": 1, "mi 9 transparent edition": 1, "mi mix 3 5g": 1, "m856": 1, "mi+9": 1, "mi 9": 1, "mi 9 roy": 1, "mi 9t pro": 1, "m928q": 1, "m2102j20sg": 1, "mrx-al19": 1, "mrx-w09": 1, "mrx-w29": 1, "mrx-an19": 1, "mrx-al09": 1, "mrx-w39": 1, "mrx-w19": 1, "mix3": 2, "mi 8 explorer edition": 2, "mp1801": 2, "mix 3 the palace museum edition": 2, "mi mix 3": 2, "mi 8 pro": 2, "mi mix 2s": 2, "mi+8": 2, "mi 8": 2, "mix 3": 2, "mi 8 ud": 2, "m892q": 2, "mix 2s emerald edition": 2, "mix 2s": 2, "m882q": 2, "mix+3": 2, "motorola edge 20": 2, "mix 2_4": 2, "mix 2": 2, "mix+2": 2, "mi 6_5": 2, "mi 6_6": 2, "mix 2_3": 2, "mi 6_3": 2, "moto z3": 2, "mi 6": 2, "moto z (2)": 2, "mi 6_4": 2, "mi mix 2": 2, "mi+6": 2, "mix 2_2": 2, "mix_2": 2, "m2007j17c": 2, "m2007j17g": 2, "moto g 5g": 2, "m2007j17i": 2, "motorola one 5g ace": 2, "m2002j9s": 2, "motorola edge": 2, "m2002j9e": 2, "m2002j9g": 2, "m2004j7ac": 2, "m2004j7bc": 2, "m2101k7bi": 2, "m2101k7bny": 2, "m2101k7bg": 2, "m2101k7bl": 2, "moto g 5g plus": 2, "m2101k6r": 3, "m2101k6i": 3, "m2101k9ai": 3, "m2101k9ag": 3, "m2101k6g": 3, "m2101k6p": 3, "m1906g7i": 3, "m1906g7g": 3, "moto g(9) plus": 3, "mi note 10": 3, "mi note 10 lite": 3, "mi cc9 pro": 3, "mi cc9 pro premium edition": 3, "mi 9t": 3, "motorola one fusion+": 3, "mi note 10 pro": 3, "m2004j19pi": 3, "meizu 15 plus": 3, "mi 9 se": 3, "m2007j22c": 3, "m2007j22g": 3, "mxw-tn00": 3, "mxw-an00": 3, "mi cc 9 meitu edition": 3, "mi cc 9": 3, "m872q": 3, "mi 9 lite": 3, "meizu x8": 3, "multilaser h": 3, "m1852": 3, "motorola one fusion": 3, "mi 8 se": 3, "motorola one hyper": 3, "motorola one zoom": 3, "m1923": 3, "meizu note9": 3, "meizu 16xs": 3, "moto z4": 3, "motorola edge 20 lite": 3, "motorola one action": 3, "motorola one vision": 3, "m2003j15sc": 3, "m1908c3jgg": 3, "m2004j19c": 3, "m7": 3, "mzb9919in": 3, "meizu pro 6 plus": 3, "m1808d2te": 3, "mp1718": 3, "mi a2": 3, "mi note 3": 3, "mi 6x": 3, "mi 8 lite": 3, "mi pad 4": 3, "mi pad 4 plus": 3, "mp1710": 3, "mi 6x miku": 3, "mi note 3_2": 3, "meizu 15": 3, "m1908c3jh": 3, "moto g stylus": 3, "m1908c3ji": 3, "mi a3": 3, "moto g fast": 3, "moto g(8) plus": 3, "m1908c3jg": 3, "moto g(8)": 3, "mi cc 9e": 3, "moto g(8) power": 3, "m2103k19pi": 3, "m2103k19g": 3, "m2103k19pg": 3, "m2103k19c": 3, "m2103k19i": 3, "moto g50 5g": 3, "meizu pro 7 plus": 3, "mp1605": 3, "motorola one macro": 3, "mate 30 max": 3, "m12pro": 3, "moto g(8) play": 3, "m2010j19sc": 3, "moto g(9) play": 3, "m2010j19cg": 3, "moto g(9)": 3, "moto g power": 3, "m2010j19sl": 3, "m2010j19si": 3, "m2010j19ci": 3, "m2010j19sg": 3, "m2010j19sy": 3, "mate rs": 3, "mar-lx2b": 4, "mar-lx2j": 4, "mar-al00": 4, "mar-lx3am": 4, "mar-lx1m": 4, "mar-lx1a": 4, "mar-lx3a": 4, "mar-lx1h": 4, "mar-lx2": 4, "mar-lx1b": 4, "mar-lx3bm": 4, "mar-tl00": 4, "mi pad 3": 4, "m2017": 4, "mann 8s": 4, "m6splus": 4, "mha-al00_2": 4, "mha-al00": 4, "mha-al00_4": 4, "mha-tl00": 4, "mha-al00_3": 4, "mha-l09": 4, "mi 5s plus_3": 4, "mi 5s plus_2": 4, "mi 5s plus": 4, "mix": 4, "mi 5s": 4, "mi note 2": 4, "mi 5s_3": 4, "mi note 2_2": 4, "m1l": 4, "mi 5s_2": 4, "mi mix": 4, "mi max": 4, "mi max_4": 4, "mi max_2": 4, "mi max\uff0832g)": 4, "mi max_5": 4, "mi max_3": 4, "mi 5_5": 4, "mi 5_3": 4, "mi 5_4": 4, "mi 5": 4, "mi pad": 4, "moto g7 plus": 4, "mblu e3": 4, "motorola one power": 4, "meizu e3": 4, "moto z3 play": 4, "max 3": 4, "moto g(7) plus": 4, "mi max 3": 4, "m2006c3lc": 4, "m2006c3li": 4, "m2006c3lg": 4, "mha-l29": 4, "moto g(7)": 5, "m822q": 5, "moto g(7) power": 5, "m1822": 5, "moto g(7) supra": 5, "moto g(7) play": 5, "meizu note8": 5, "moto e": 5, "moto x4": 5, "moto g(6) plus": 5, "m15": 5, "meizu 15 lite": 5, "moto z2 play": 5, "mla-al10": 5, "m6 note": 5, "mla-tl10": 5, "moto g (5s) plus": 5, "m836": 5, "m6 note_2": 5, "mi 5x": 5, "mi a2 lite": 5, "mi a1": 5, "m721c": 5, "motorola one": 5, "m6+note": 5, "mi max 2": 5, "mla-al00": 5, "moto g (5) plus": 5, "mblu": 5, "meizu s6": 5, "meizu m6s": 5, "meitu m4s": 5, "m1 note": 5, "meitu m4": 5, "mx4 pro": 5, "m355": 5, "m57ac": 5, "m3note": 5, "m5 note_2": 5, "m3 note_2": 5, "mp1503": 5, "mp1512": 5, "m5 note": 5, "m850a": 5, "moto g(6)": 5, "m762g": 5, "m850": 5, "m570q": 5, "mp1701": 5, "mp1713": 5, "mp1711": 5, "mp1709": 5, "mx6": 5, "m20 4g(m3k4)": 5, "mp1602": 5, "mx6_4": 5, "mx6_2": 5, "m685u": 5, "m685c": 5, "mx6_3": 5, "mp1611": 5, "mp1603": 5, "m8wl": 5, "mi note lte": 5, "m51w": 5, "meizu m10": 5, "mi note pro": 5, "m2 e": 5, "m3x": 5, "m2 e_2": 5, "m2006c3mg": 5, "med-tl00": 5, "med-al20": 5, "moto g(8) power lite": 5, "m1901f9e": 5, "moa-al00": 5, "mrd-tl00": 5, "m2006c3mii": 5, "mi play": 5, "m2006c3mi": 5, "moa-al20": 5, "m2006c3mt": 5, "m2006c3mng": 5, "mrd-al00": 5, "med-al00": 5, "moto g pure": 5, "moto e(7)": 5, "m2006c3lvg": 5, "m2006c3lii": 5, "mi 4lte_2": 5, "mi 4w": 5, "mi 4lte": 5, "mi4": 5, "meizu m8": 5, "moto e(6s)": 5, "moa-lx9n": 5, "med-lx9": 5, "moto e(6) plus": 5, "m816q": 5, "med-lx9n": 5, "moto e6s": 5, "moto e(7) plus": 5, "m1813": 5, "mx5": 5, "meitu v4": 5, "m9s": 5, "m1 metal": 5, "mi 3w": 5, "m1 e": 5, "m3 note": 5, "m621c-s": 5, "m621c": 5, "m3 max": 5, "m681c": 5, "mrd-lx2": 5, "mrd-lx1": 5, "mrd-lx3": 5, "m1 lite": 5, "mrd-lx1n": 5, "m10": 5, "mi 3c": 5, "moto e5 supra": 5, "micromax e4816": 5, "moto e6": 5, "mon-al19b": 5, "m700": 5, "moto e6 (xt2005dl)": 5, "moto g (5)": 5, "moto g (5s)": 5, "moto g(6) play": 5, "moto e5 plus": 5, "moto e5": 5, "m653": 5, "micromax hs2": 5, "moto e (4)": 5, "mrd-lx1f": 5, "meizu m8c": 5, "moto e5 play": 5, "moto e5 cruise": 5, "mi-4c_2": 5, "mi 4c": 5, "mi 4s": 5, "mi-4c": 5, "mya-l11": 5, "mya-al10": 5, "mya-l22": 5, "mya-l03": 5, "mya-l13": 5, "mya-tl10": 5, "m4 ss4458-r": 5, "m4 ss4453-r": 5, "mya-l23": 5, "mya-l41": 5, "mya-u29": 5, "mi 3": 5, "mi 5c": 5, "meizu6753_65c_l1": 5, "m612c": 5, "m2 note": 5, "meizu_m5s": 5, "m571c": 5, "m5s": 5, "m612q": 5, "meizu m6": 5, "m5": 5, "m688c": 5, "m5_2": 5, "meizu 6t": 5, "m3s": 5, "m6t": 5, "meizu_m5": 5, "max5": 5, "m760": 5, "m611d": 5, "m711c": 5, "m6": 5, "m3": 5, "m3s_2": 5, "mobiistar c2": 5, "m1816": 5, "mdc m5": 5, "ms50x": 5, "moto e6 play": 5, "myria_l600": 5, "mobiistar c1": 5, "moto e (4) plus": 5, "m a5": 5, "maxtron s8": 5, "moto c plus": 5, "m7s": 5, "m5c": 5, "m2": 5, "m578ca": 5, "m578c": 5, "m578ce": 5, "moto c": 5, "m460a": 5, "mx4": 5, "mi 2sc": 5, "mi 2s": 5, "mi 2": 5, "mo-01j": 5, "moto g (4)": 5, "m636": 5, "m463c": 5, "moto x play": 5, "mytel": 5, "motog3-te": 5, "multilaser_g_pro": 5, "mt7-ul00": 5, "mt7-al00": 5, "mt7-tl00": 5, "mt7-tl10": 5, "mt7-cl00": 5, "mlled r9": 5, "mi 1s": 5, "m1": 5, "mi 2a": 5, "m631": 5, "m623c": 5, "moto g play": 5, "motoe2(4g-lte)": 5, "motog3": 5, "m654": 5, "m652yn": 5, "m651g_my": 5, "meizu c9 pro": 5, "multilaser_g_max": 5, "m651cy": 5, "maxtron s9": 5, "mts-t0": 5, "myxi1 plus": 5, "multilaser_g": 5, "m652": 5, "micromax q402+": 5, "meizu c9": 5, "m7go_2019": 5, "m823": 5, "m821": 5, "m811": 5, "m812c": 5, "m4 ss4458": 5, "multilaser_f": 5, "multilaser_e": 5, "multilaser_e_lite": 5, "mediapad 10": 5, "mediapad t1 8.0": 5, "my_star_x": 5, "max 5x": 5, "max 3x": 5, "max 2x": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/n.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/n.json deleted file mode 100644 index 9712f9b0..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/n.json +++ /dev/null @@ -1 +0,0 @@ -{"nx669j-p": 1, "nx669j-s": 1, "nx666j": 1, "nx669j": 1, "nx667j": 1, "noh-nx9": 1, "noh-al10": 1, "noh-al00": 1, "noh-an00": 1, "noh-an01": 1, "nop-an00": 1, "n2011k2c": 1, "n2012k11ac": 1, "nx659j": 1, "nx627j": 1, "nex3": 1, "n9700": 1, "nx629j": 1, "nat-tn70": 2, "new-an90": 2, "ntn-an20": 2, "nokia 9": 2, "nx619j": 2, "nx616j": 2, "nx606j": 2, "nx609j": 2, "nam-al00": 2, "nth-an00": 2, "nam-lx9": 2, "nth-nx9": 2, "nokia 8 sirocco": 2, "nx595j": 2, "nx563j": 2, "nx563j_2": 2, "nx651j": 2, "nokia 8.1": 3, "nokia x7": 3, "n7 pro": 3, "nzone s7 pro+ 5g": 3, "note_1": 3, "nx611j": 3, "nokia x71": 3, "nokia 7 plus": 3, "n7 lite": 3, "nokia 7.2": 3, "nokia 5.3": 3, "nokia 5.1 plus": 3, "nokia x5": 3, "nen-lx1": 3, "nen-l22": 3, "nova 3": 3, "neo-al00": 3, "nx569h": 4, "nx589j": 4, "nova 2s": 4, "nx523j_v1": 4, "nx535j": 4, "nx569j": 4, "nokia 3.4": 4, "nx531j_2": 4, "nx531j": 4, "nx549j": 4, "nokia 6.2": 4, "nokia 7.1": 4, "nokia 6.1 plus": 4, "nokia x6": 4, "nxt-ql10": 4, "nxt-dl00": 4, "nts-al00": 4, "nxt-cl00": 4, "nxt-tl00": 4, "nxt-al10": 4, "nxt-tl10": 4, "nokia 6.1": 5, "nx551j": 5, "nx608j": 5, "nx612j": 5, "nx573j": 5, "nx617j": 5, "nxt": 5, "nokia 4.2": 5, "nem-al10": 5, "nem-tl00h": 5, "nem-tl00": 5, "nem-ul10": 5, "nem-l21": 5, "nem-l51": 5, "nx541j": 5, "nokia 5.1": 5, "nokia 3.2": 5, "nexus 5": 5, "nx510j": 5, "nx508j": 5, "nexus 6p": 5, "nza-al00": 5, "nx505j": 5, "n20": 5, "neffos x20 pro": 5, "nokia 2.4": 5, "nokia 3.1 plus": 5, "note 9p": 5, "n30": 5, "n8301": 5, "nokia 2.3": 5, "neffos x20": 5, "note_7p": 5, "nokia 2.2": 5, "neffos c9 max": 5, "note_1_pro": 5, "n5702l": 5, "nokia 1.3": 5, "nokia 1.4": 5, "n5209": 5, "nx507j": 5, "n5207": 5, "n9560": 5, "nx907j": 5, "nokia 2.1": 5, "nexus 5x": 5, "next u": 5, "neffos_x9": 5, "nokia 3.1": 5, "neffos x1 lite": 5, "nx575j": 5, "neffos_y7": 5, "nce-tl10": 5, "neffos_c7": 5, "nce-al10": 5, "nce-al00": 5, "neffos_c9a": 5, "next_p_pro": 5, "nokia 1 plus": 5, "neffos_c9": 5, "next p+": 5, "neo_a900": 5, "neffos_c7a": 5, "nokia c1": 5, "nokia 1": 5, "nexus 6": 5, "n8010": 5, "n1": 5, "n1t": 5, "nx529j": 5, "nx591j": 5, "nx511j_v3": 5, "nx511j": 5, "nx513j": 5, "nokia c3": 5, "neffos c7s": 5, "n918st": 5, "neolix 1-c-p": 5, "n958st": 5, "n5117": 5, "n5116": 5, "nokia c2": 5, "noain r9s": 5, "neffos y5": 5, "nokia 2": 5, "neffos y5i": 5, "n919": 5, "neffos c5 plus": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/o.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/o.json deleted file mode 100644 index 837b823e..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/o.json +++ /dev/null @@ -1 +0,0 @@ -{"oce-an10": 1, "oce-an50": 1, "oneplus 7": 1, "oce-al50": 1, "oxf-an10": 1, "oxp-an00": 1, "oxf-an00": 1, "oneplus 6": 2, "oneplus a6013": 2, "oneplus a6010": 2, "oneplus a6000": 2, "oneplus a6003": 2, "oneplus a5000_3": 2, "oneplus a5010": 2, "oneplus a5010_4": 2, "oneplus a5010_2": 2, "oneplus a5010_3": 2, "oneplus a5000": 2, "oneplus a5000_2": 2, "oneplus 5": 2, "oneplus a5000_4": 2, "oneplus 5t": 2, "oppo r17 pro": 3, "oe106": 3, "oppo r17": 3, "oppo+r11+plus": 3, "os105": 3, "oppo+r11s": 3, "oppo r11s_3": 3, "oppo r11s plus": 3, "oppo r11": 3, "oppo r11st": 3, "oppo r11s": 3, "oppo r11 plus": 3, "oppo r11s plust": 3, "oppo r11 pluskt": 3, "oppo+r11": 3, "oppo r11t": 3, "oppo r11 plusk": 3, "oppo r11s_2": 3, "oppo r9 plusm a_2": 4, "oppo r9s plus": 4, "oppo r9s plust": 4, "oppo r9 plust a": 4, "oppo r9 plusm a": 4, "oppo r9 plustm a": 4, "oneplus 3t": 4, "oneplus a3010_2": 4, "oneplus a3010": 4, "oneplus a3003": 4, "oneplus a3000_2": 4, "oneplus a3000": 4, "os103": 4, "od103": 5, "od105": 5, "oppo r9sk": 5, "oppo r9skt": 5, "oppo a77t_2": 5, "oppo+r9s": 5, "oppo a77": 5, "oc105": 5, "oppo r9st": 5, "oppo a77t": 5, "oppo r9s": 5, "oppo r7": 5, "oppo r7t": 5, "oppo r7st": 5, "oppo r7s": 5, "oppo r9tm": 5, "oppo+r9m": 5, "oppo f1s": 5, "oppo r9t": 5, "oppo r9m": 5, "oppo r9km": 5, "onda x20": 5, "one a2003": 5, "one a2001": 5, "oppo a30": 5, "one e1001": 5, "oppo+a83": 5, "oppo a73": 5, "oppo a83": 5, "oppo a79k": 5, "oppo a83t": 5, "oppo a73t": 5, "oppo a79t": 5, "oppo a79": 5, "oppo a79kt": 5, "orl-c0": 5, "oppo a57t": 5, "oppo+a57": 5, "oppo a57": 5, "own smart 9": 5, "oppo+a59s": 5, "oppo a37t": 5, "oppo a37t_2": 5, "oppo a59st": 5, "oppo a59m": 5, "oppo a37m": 5, "oppo a59t": 5, "oppo a59s": 5, "owwo 7s": 5, "own fun 6": 5, "own fun 7": 5, "okp6 pro": 5, "oppo r7sm": 5, "oppo r7sm_2": 5, "oppo a53m": 5, "oppo r7splus": 5, "oppo a53": 5, "oppo a53t": 5, "oppo a33m": 5, "oppo a37f": 5, "oppo a33": 5, "oppo a33t": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/p.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/p.json deleted file mode 100644 index 8401eede..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/p.json +++ /dev/null @@ -1 +0,0 @@ -{"peum00": 1, "peem00": 1, "penm00": 1, "pedm00": 1, "pdrm00": 1, "pdhm00": 1, "pdet10": 1, "pdrt00": 1, "pdem10": 1, "pdem30": 1, "poco f2 pro": 1, "pepm00": 1, "peym00": 1, "pfdm00": 1, "pdsm00": 1, "pclm10": 1, "pixel 4": 1, "pixel 4 xl": 1, "pccm00": 1, "p40": 1, "pdcm00": 2, "pdst00": 2, "peqm00": 2, "p30": 2, "pct-tl10": 2, "pct-al10": 2, "pct-l29": 2, "pafm00": 2, "paft00": 2, "pahm00": 2, "pixel 3 xl": 2, "pixel 3": 2, "phone 2": 2, "pocophone f1": 2, "poco f1": 2, "perm10": 2, "pfjm10": 2, "ph-1": 2, "pixel 2": 2, "pixel 2 xl": 2, "pexm00": 2, "pegm10": 2, "pegt10": 2, "pcrt01": 2, "pcrt00": 2, "pdnm00": 2, "pixel 5": 2, "pegm00": 2, "pdnt00": 2, "pdpm00": 2, "pcrm00": 2, "pegt00": 2, "pixel 4a (5g)": 2, "pdpt00": 2, "pclm50": 2, "panb0001in": 3, "panv0001in": 3, "pcnm00": 3, "pixel 4a": 3, "poco x2": 3, "pckm00": 3, "poco m2 pro": 3, "pect30": 3, "pdkm00": 3, "pdkt00": 3, "pcam00": 3, "pcgm00": 3, "pbdt00": 3, "pbdm00": 3, "pcat00": 3, "pro 2s": 3, "pcdt10": 3, "pcdm10": 3, "pckm80": 3, "pbem00": 3, "pixel 3a xl": 3, "pbet00": 3, "pixel 3a": 3, "pecm30": 3, "pelm00": 3, "pdyt20": 3, "peat00": 3, "perm00": 3, "pdym10": 3, "pdym20": 3, "peam00": 3, "pcat10": 3, "pcem00": 3, "pcet00": 3, "pcam10": 3, "pcpm00": 3, "pro 6 plus": 3, "pbcm30": 3, "pbcm10": 3, "pbct10": 3, "pchm00": 3, "pdat10": 3, "pchm10": 3, "pdam10": 3, "pchm30": 3, "pemm20": 3, "pemm00": 3, "pemt20": 3, "pemt00": 3, "pfvm10": 3, "pfgm00": 3, "pro 7-h": 3, "pro 7 plus": 3, "padt00": 3, "pbbm00": 3, "paam00": 3, "pbbt00": 3, "pacm00": 3, "paat00": 3, "padm00": 3, "pact00": 3, "par-lx1": 3, "p20 pro": 3, "par-al00": 3, "par-lx1m": 3, "par-lx9": 3, "par-tl00": 3, "par-tl20": 3, "pot-tl00a": 4, "pot-lx1": 4, "pot-lx3": 4, "pot-al10": 4, "pot-lx1af": 4, "pot-lx1a": 4, "pot-al00": 4, "pot-lx1t": 4, "ppa-lx2": 4, "pot-lx2j": 4, "ppa-lx1": 4, "ppa-lx3": 4, "pot-al00a": 4, "ppa-al20": 4, "p027": 4, "p10": 4, "p10 plus": 4, "pehm00": 4, "peht00": 4, "pdvm00": 4, "pamr0002in": 4, "pixel": 4, "p008": 4, "pixel xl": 4, "p9 plus": 4, "pro 5": 5, "pol-t0": 5, "protruly v10s": 5, "plume h1": 5, "pic-lx9": 5, "pra-lx3": 5, "pra-al00x": 5, "pra-lx1": 5, "pra-al00": 5, "pic-tl00": 5, "pra-lx2": 5, "pra-la1": 5, "pic-al00": 5, "pra-tl10": 5, "pgn612": 5, "pbbt30": 5, "pbat00": 5, "pbfm00": 5, "pbam00": 5, "pbbm30": 5, "pbft00": 5, "pro 6s": 5, "pro 6": 5, "protruly d7": 5, "pro 5_2": 5, "pcdt00": 5, "pdbm00": 5, "plume l8 pro": 5, "pefm00": 5, "pcdm00": 5, "pamh0001in": 5, "primo rx7": 5, "plume l3 smart": 5, "plume l3": 5, "plume l6 pro": 5, "primo s7": 5, "primo hm5": 5, "p13_blue": 5, "primo h9 pro": 5, "pro 7": 5, "p13_blue_max": 5, "pro 7-s": 5, "philips x596": 5, "plume l3 plus": 5, "pgn610": 5, "primo gm3 plus": 5, "plume l1 plus": 5, "pgn611": 5, "pgn605": 5, "pioneer c1": 5, "p8_3d": 5, "plume l2": 5, "pearl k2": 5, "pearl k2 2020": 5, "pearl k3": 5, "primo h8 pro": 5, "primo h8": 5, "plume l2 pro": 5, "plume l1": 5, "plume p8 pro": 5, "pgn528": 5, "pgn522": 5, "pgn523": 5, "pgn527": 5, "p7 max": 5, "ple-703l": 5, "plume l4 pro": 5, "pcs01": 5, "primo r6": 5, "plume l4": 5, "primo r6 max": 5, "pe-cl00": 5, "pe-ul00": 5, "pe-tl00m": 5, "pe-tl20": 5, "pe-tl10": 5, "plk-al10": 5, "plk-cl00": 5, "plk-tl01h": 5, "p8": 5, "plk-tl00": 5, "plk-ul00": 5, "plk-l01": 5, "p024": 5, "plus_m19_c779": 5, "p7-l05": 5, "p7-l00": 5, "p7-l07": 5, "p7-l09": 5, "p00c": 5, "plus-7_c777": 5, "p00a": 5, "pcsgob10mva_a": 5, "p00l": 5, "p028": 5, "pgn513": 5, "p52_pride5c": 5, "pgn518": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/q.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/q.json deleted file mode 100644 index 72690ac4..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/q.json +++ /dev/null @@ -1 +0,0 @@ -{"q5 plus": 4, "q6+": 5, "quantum muv pro": 5, "q10": 5, "qmobile x700 pro ii": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/r.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/r.json deleted file mode 100644 index c73724aa..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/r.json +++ /dev/null @@ -1 +0,0 @@ -{"rmx3310": 1, "redmi k40 pro+": 1, "rmx2202": 1, "rmx3366": 1, "rmx3370": 1, "rmx2142": 1, "rmx2072": 1, "redmi k30 pro zoom edition": 1, "rmx2075": 1, "redmi k30 pro": 1, "ry1202": 1, "rmx2076": 1, "rmx2071": 1, "rmx3350": 1, "rmx3031": 1, "rmx3357": 1, "rmx2205": 1, "redmi k30 ultra": 1, "rmx3115": 1, "rmx2111": 1, "rmx2085": 1, "rmx1931": 1, "rmx2083": 1, "redmi k20 pro premium edition": 1, "rmx2086": 1, "rmx2081": 1, "royole flexpai": 1, "redmi k20pro": 1, "redmi k20 pro": 1, "rmx3462": 2, "rmx3363": 2, "rna-an00": 2, "rmx3461": 2, "rte-al00": 2, "rmx3361": 2, "redmi k30 5g speed": 2, "rmx3142": 2, "rmx3161": 2, "redmi k30 5g": 2, "redmi k30i 5g": 2, "rmx2144": 2, "redmi k30i": 2, "rmx2051": 2, "redmi 10x pro": 2, "rmx3085": 2, "rmx2155": 2, "rmx2163": 2, "rmx2161": 2, "rmx2151": 3, "rmx2002": 3, "redmi+note+8+pro": 3, "redmi note 8 pro": 3, "realme 6s": 3, "rmx2001": 3, "rmx1991": 3, "rmx1992": 3, "rmx1993": 3, "redmi k20": 3, "redmi k30": 3, "rmx2063": 3, "redmi note 9 pro max": 3, "rmx3081": 3, "redmi note 9s": 3, "rmx2061": 3, "rmx2170": 3, "redmi note 9 pro": 3, "rmx1971": 3, "rmx1921": 3, "rmx1973": 3, "rmx3092": 3, "rmx2173": 3, "rmx2117": 3, "rmx2176": 3, "rmx1903": 3, "rmx1851": 3, "rmx1901": 3, "redmi note 7 pro": 3, "redmi note7 pro": 3, "r17": 3, "rmx2201": 3, "rmx3093": 3, "rmx2121": 3, "rmx2200": 3, "rmx3171": 3, "rmx2193": 3, "rmx3195": 3, "rmx2040": 3, "rmx2042": 3, "rmx3191": 3, "rmx2020": 3, "rmx2022": 3, "rmx2027": 3, "rmx1807": 3, "redmi note 7s": 3, "r11splus": 3, "r11plus": 3, "rmx1801": 3, "redmi note 7": 3, "r11": 3, "r11s": 3, "rmx1919": 3, "rmx2050": 3, "redmi note 8": 3, "rmx1911": 3, "rmx2032": 3, "rmx1927": 3, "rmx2030": 3, "rmx1925": 3, "rmx1929": 3, "redmi note 8t": 3, "rmx3042": 3, "rmx3041": 3, "rmx3043": 3, "rmx3121": 3, "rmx3122": 3, "rmx3241": 3, "ravoz z8": 3, "rmx1831": 3, "rmx1821": 3, "rx7 mini": 3, "rmx1822": 3, "rmx1833": 3, "rmx1827": 3, "r15": 3, "rmx1825": 3, "rmx2103": 3, "rvl-al09": 3, "readboy_c12pro": 4, "r9splus": 4, "readboy_g550s": 4, "r9plus": 4, "rmx2194": 4, "rmx2195": 4, "rmx2101": 4, "redmi note 3": 4, "redmi note 3_6": 4, "redmi note 3_4": 4, "redmi note 3_5": 4, "redmi note 5 pro": 4, "redmi note 6 pro": 4, "redmi note 5": 4, "redmi 9a": 4, "redmi y3": 5, "revvlry": 5, "redmi 7": 5, "redmi 6 pro": 5, "r9s": 5, "redmi note 4x_4": 5, "redmi note 4x": 5, "r9sk": 5, "redmi6 pro": 5, "redmi 5 plus_2": 5, "redmi note 4x_3": 5, "revvlplus c3701a": 5, "redmi 4": 5, "redmi y2": 5, "redmi s2": 5, "redmi 5": 5, "redmis2": 5, "redmi 5 plus": 5, "r7t": 5, "rne-l22": 5, "rne-l21": 5, "rne-l23": 5, "rne-al00": 5, "rne-l01": 5, "rne-l03": 5, "rne-l02": 5, "redmi 8a pro": 5, "redmi 8": 5, "redmi 8a": 5, "redmi 7a": 5, "redmi 8a dual": 5, "r9": 5, "rmx1811": 5, "rmx1809": 5, "rmx1805": 5, "redmi pro": 5, "redmi note 4": 5, "redmi note 4x_2": 5, "rmx3063": 5, "rmx3201": 5, "rmx2185": 5, "rmx2180": 5, "rmx2189": 5, "ravoz_z6": 5, "ravoz z7": 5, "rmx2021": 5, "rmx1942": 5, "rmx1945": 5, "rmx1941": 5, "rmx1943": 5, "redmi 6a": 5, "redmi 6": 5, "ravoz z6 lite": 5, "redmi note 3_3": 5, "redmi note 2": 5, "redmi note 3_2": 5, "ravoz z5": 5, "ravoz z3": 5, "redmi note 5a prime": 5, "redmi note 5a": 5, "redmi note 5a(435)": 5, "redmi y1": 5, "redmi 4x_2": 5, "redmi 4x": 5, "redmi 3x": 5, "redmi 3s": 5, "redmi go": 5, "redmi 4a": 5, "redmi note 5a(425)": 5, "redmi y1 lite": 5, "redmi 5a": 5, "ravoz z3 pro": 5, "rio-ul00": 5, "r7plus": 5, "r7sf": 5, "r7plusf": 5, "r8200": 5, "r1": 5, "redmi 3": 5, "r5": 5, "r7kf": 5, "r8207": 5, "r8205": 5, "r7c": 5, "rio-al00": 5, "r7plusm": 5, "r8107": 5, "r7 lite": 5, "ramos mos 1": 5, "redmi 3_2": 5, "r7plust": 5, "rmx3231": 5, "rio-cl00": 5, "readboy_g90s": 5, "r7005": 5, "r7007": 5, "r8007": 5, "r6007": 5, "r831s": 5, "r2017": 5, "r2010": 5, "r833t": 5, "r829t": 5, "r827t": 5, "r815t": 5, "r819t": 5, "r40": 5, "robby": 5, "r831t": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/s.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/s.json deleted file mode 100644 index d1a31af4..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/s.json +++ /dev/null @@ -1 +0,0 @@ -{"sm-w2022": 1, "sm-g991u": 1, "sm-f711b": 1, "sm-g9910": 1, "sm-g998u1": 1, "sm-g9980": 1, "sm-f7110": 1, "sm-g998n": 1, "sm-g9960": 1, "sm-g996b": 1, "sm-f711n": 1, "sm-g991b": 1, "sm-g996u": 1, "sm-f9260": 1, "sm-g998u": 1, "shark ksr-a0": 1, "sm-f926n": 1, "shark prs-a0": 1, "sm-t970": 1, "sm-w2021": 1, "sm-t875n": 1, "sm-t870": 1, "sm-n9860": 1, "sm-f9160": 1, "sm-f916n": 1, "sm-t875": 1, "sm-f916b": 1, "scg06": 1, "sm-t975": 1, "sc-53a": 1, "sm-f707n": 1, "sm-t975n": 1, "sm-g781w": 1, "shark mbu-h0": 1, "sm-n986u": 1, "sm-n981n": 1, "sm-g9880": 1, "sc-52a": 1, "sm-g988u": 1, "sm-g986u": 1, "sm-g986u1": 1, "shark kle-h0": 1, "sc-51a": 1, "shark mbu-a0": 1, "so-51a": 1, "sm-n981u": 1, "sm-g9860": 1, "sm-n986u1": 1, "sog01": 1, "sm-t976n": 1, "sog02": 1, "sm-g981w": 1, "scg02": 1, "sm-g781n": 1, "sm-g7810": 1, "sm-g986w": 1, "sm-n986n": 1, "sm-n9810": 1, "sm-g781b": 1, "sm-g9810": 1, "shark kle-a0": 1, "sh-51a": 1, "sm-n986w": 1, "so-52a": 1, "scg01": 1, "sm-g781u": 1, "sm-g988w": 1, "sm-g780g": 1, "sm-g986b": 1, "sm-g981n": 1, "sm-g981b": 1, "sm-g980f": 1, "sm-n980f": 1, "sm-n986b": 1, "sm-g780f": 1, "sm-n985f": 1, "sm-g986n": 1, "sm-g985f": 1, "sm-g988b": 1, "sm-g981u": 1, "sm-g988n": 1, "sm-n981b": 1, "sm-f700n": 1, "sm-w2020": 1, "sm-t866n": 1, "sm-f700f": 1, "sm-g973w": 1, "skw-a0": 1, "sm-f907n": 1, "sm-g970f": 1, "sm-g970w": 1, "sc-01m": 1, "sm-n9700": 1, "sm-g887n": 1, "sm-n9760": 1, "sm-n975u": 1, "sm-n975w": 1, "sm-a908n": 1, "skw-h0": 1, "sm-g9738": 1, "sm-g770f": 1, "sm-g973f": 1, "sm-f900f": 1, "sm-g970u": 1, "sm-g970u1": 1, "sm-g975w": 1, "sm-n975u1": 1, "sh-04l": 1, "sm-n976u": 1, "scv45": 1, "sm-t860": 1, "sov41": 1, "sm-a908b": 1, "sm-f7000": 1, "sm-g975u": 1, "sm-g9758": 1, "sm-g977n": 1, "sm-g975u1": 1, "sov40": 1, "sm-n970u": 1, "sh-01m": 1, "sm-n9750": 1, "sm-t865": 1, "sm-g973u": 1, "scv42": 1, "sc-04l": 1, "sm-g975f": 1, "sm-g9750": 1, "sm-t865n": 1, "sm-n970w": 1, "sm-g9730": 1, "sm-g973u1": 1, "so-03l": 1, "sm-g977b": 1, "sm-f9000": 1, "so-01m": 1, "shv47": 1, "sm-g975n": 1, "sm-a9080": 1, "scv41": 1, "sm-a826s": 1, "sm-g9700": 1, "scmr-al09": 1, "scmr-w09": 1, "sm-n971n": 2, "sm-n976n": 2, "sm-e625f": 2, "sm-n976q": 2, "sm-n976b": 2, "sm-n975f": 2, "sm-n970f": 2, "sm-m625f": 2, "sm-g970n": 2, "sc-03l": 2, "sm-g973n": 2, "sea-al10": 2, "scm-w09": 2, "scm-al09": 2, "scv38": 2, "sm-n960u": 2, "sh-z10": 2, "sm-g9608": 2, "sov37": 2, "sm-g960w": 2, "sm-n9600": 2, "sm-g960u": 2, "skr-a0": 2, "so-04k": 2, "sc-03k": 2, "sm-w2019": 2, "sm-g9600": 2, "shv42": 2, "sm-g9650": 2, "so-01l": 2, "sc-01l": 2, "scv39": 2, "sm-g960x": 2, "sm-n960u1": 2, "sc-02k": 2, "sh-03k": 2, "skr-h0": 2, "so-03k": 2, "scv40": 2, "sm-g965u": 2, "sm-g965u1": 2, "sov38": 2, "so-05k": 2, "sm-g710": 2, "sm-g960u1": 2, "sov39": 2, "sm-a528b": 2, "sm-g960f": 2, "sm-n960f": 2, "sm-g965f": 2, "sm-n960w": 2, "sm-n770f": 2, "sm-g965w": 2, "sm-g960n": 2, "sm-n960n": 2, "sm-g965n": 2, "sm-w2018": 2, "so-04j": 2, "sm-n950w": 2, "sm-n950u1": 2, "scv35": 2, "sm-g955u": 2, "scv36": 2, "sm-g955w": 2, "sm-g9550_2": 2, "sc-03j": 2, "sm-n9508": 2, "sm-n950u": 2, "sm-t835c": 2, "sc-02j": 2, "sm-g9500": 2, "sm-t830": 2, "sm-t835": 2, "sm-g950u": 2, "sov36": 2, "sh-03j": 2, "sm-g892a": 2, "sm-g9508": 2, "sh-c02": 2, "sm-t835n": 2, "sm-n9500": 2, "sm-g892u": 2, "sm-g955u1": 2, "sm-g9550": 2, "sm-g950u1": 2, "shv39": 2, "so-01k": 2, "sc-01k": 2, "scv37": 2, "sm-g950w": 2, "so-02k": 2, "sm-a426b": 2, "sm-t735n": 2, "sm-a5260": 2, "sm-e5260": 2, "sm-a4260": 2, "sm-a526b": 2, "spn-al00": 3, "sea-al00": 3, "stk-lx1": 3, "sm-a516b": 3, "sm-a716u": 3, "sm-a716s": 3, "sm-a7160": 3, "sm-a5160": 3, "sm-a716f": 3, "sm-a516n": 3, "sm-a516u": 3, "sm-a716b": 3, "sm-a8050": 3, "sm-m515f": 3, "sm-a805n": 3, "sm-a805f": 3, "sm-a715f": 3, "sm-a725f": 3, "sm-a725m": 3, "sm-a525f": 3, "sm-g950f": 3, "sm-g955f": 3, "sm-n950f": 3, "sm-g955fd": 3, "sm-g955n": 3, "sm-g950n": 3, "sm-n950n": 3, "s5": 3, "sac-a0": 3, "sm-g887f": 3, "sm-g8870": 3, "sm-a217n": 3, "sm-a127f": 3, "sm-a217m": 3, "sm-a217f": 3, "sm-m127f": 3, "sm-a705gm": 3, "sm-a705fn": 3, "sm-a707f": 3, "sm-a7070": 3, "sm-a705f": 3, "sm-a715w": 3, "sm-a7050": 3, "sm-a705w": 3, "sm-a606y": 3, "sm-a6060": 3, "s1 pro": 3, "sm-a705yn": 3, "sm-t725n": 3, "sm-t725": 3, "sm-t720": 3, "sm-t725c": 3, "sp200": 3, "sp300": 3, "sm-a326b": 3, "sm-a505n": 3, "sm-m215f": 3, "sm-a515w": 3, "sm-a505g": 3, "sm-m307f/ds": 3, "sm-a505gt": 3, "sm-m317f": 3, "sm-a515f": 3, "sm-a505yn": 3, "sm-a507fn": 3, "sm-a505f": 3, "sm-f415f": 3, "sm-g715fn": 3, "sm-p615n": 3, "sm-a515u": 3, "sm-m3070": 3, "sm-a505gn": 3, "sm-a505fm": 3, "sm-p610": 3, "sm-a505u": 3, "sm-m307fn": 3, "sm-p615": 3, "sm-a505w": 3, "sm-m315f": 3, "sm-m307f": 3, "sm-a5070": 3, "sm-a505fn": 3, "sm-a225f": 3, "sm-m325f": 3, "sm-a325f": 3, "sm-m325fv": 3, "sm-e225f": 3, "s12pro": 3, "scv48": 3, "sm-a415f": 3, "sc-41a": 3, "sm-a315f": 3, "sm-a315g": 3, "sm-a315n": 3, "sm-g935l": 3, "sm-g930w8": 3, "sm-n935l": 3, "sm-g930s": 3, "sm-n935f": 3, "sm-g935fd": 3, "sm-g930f": 3, "sm-g935f": 3, "sm-g930fd": 3, "sm-g930k": 3, "sm-g930l": 3, "sm-g935k": 3, "sm-g885s": 3, "sm-g8858": 3, "sm-a750g": 3, "sm-a920n": 3, "sm-a920f": 3, "sm-g885f": 3, "sm-g885y": 3, "sm-g8850": 3, "sm-a9200": 3, "sm-g6200": 3, "sm-a750gn": 3, "sm-g8750": 3, "so-41a": 3, "sov43": 3, "sm-a226b": 3, "sugar t50": 3, "shahin ii": 3, "s40 pro": 3, "smart 9 pro": 3, "sm-a3050": 3, "sm-p205": 3, "sm-a305n": 3, "sm-a307fn": 3, "scv43-u": 3, "sm-a305fn": 3, "sm-t307u": 3, "sm-a405fm": 3, "sm-a305yn": 3, "sm-p200": 3, "sm-a307gn": 3, "sm-t515": 3, "sm-a307gt": 3, "sm-a405s": 3, "sm-a305gn": 3, "sm-t297": 3, "scv43": 3, "sm-m305m": 3, "sm-m205n": 3, "sm-m205fn": 3, "sm-a307g": 3, "sm-a3051": 3, "sm-a305f": 3, "sm-a305g": 3, "sm-m205m": 3, "sm-t510": 3, "sm-a305gt": 3, "sm-t515n": 3, "sm-a3058": 3, "sm-a025f": 3, "sm-t505n": 3, "sm-t507": 3, "sm-t505": 3, "sm-t500": 3, "stk-tl00": 4, "stk-l21": 4, "stk-al00": 4, "sne-lx2": 4, "stk-lx3": 4, "stk-l22": 4, "sne-lx1": 4, "sne-lx3": 4, "sne-al00": 4, "sm-c9008": 4, "sm-c9000_2": 4, "sm-c900y": 4, "sm-c9000": 4, "sm-c900f": 4, "sht-w09": 4, "stf-al10_2": 4, "sht-al09": 4, "stf-tl10_2": 4, "stf-al00_2": 4, "stf-tl10": 4, "stf-al10": 4, "stf-al00": 4, "stf-l09": 4, "sm-t719y": 4, "sm-a910f": 4, "sm-t719": 4, "sm-a9100": 4, "sm-a9000": 4, "sm-t819c": 4, "sm-t819": 4, "sm919": 4, "sm-g9298": 4, "sm901": 4, "so-02j": 4, "sm-t825n0": 4, "sc-02h": 4, "sm-g935v": 4, "so-03j": 4, "sm-t825y": 4, "sm-g935t": 4, "scv33": 4, "sm-g930v": 4, "sm-t825": 4, "sm-g9308": 4, "samsung-sm-g891a": 4, "sm-g935u": 4, "so-01j": 4, "sm-g930vl": 4, "sm-g9300": 4, "sh-04h": 4, "sm-g930p": 4, "samsung-sm-g935a": 4, "sov33": 4, "sm-g9350_2": 4, "sm-g935s": 4, "samsung-sm-g930a": 4, "sov35": 4, "sm-g935p": 4, "sm-g930u": 4, "sm-g9350": 4, "sov34": 4, "sm-t820": 4, "so-04h": 4, "sm-g930t": 4, "sm-g935w8": 4, "sm-t825c": 4, "shield tablet": 4, "shv46": 4, "sm-g9208": 5, "sm-g928s": 5, "sm-g920k": 5, "sm-g928v": 5, "sm-g9287c": 5, "sm-g925f": 5, "sm-w2016": 5, "sm-g925k": 5, "sm-g920w8": 5, "sm-n920l": 5, "samsung-sm-g928a": 5, "sm-g928t": 5, "sm-g920t": 5, "sm-g9287": 5, "sm-n920p": 5, "sm-g925a": 5, "sm-n920g": 5, "sm-n920c": 5, "sm-g9280": 5, "sm-g920v": 5, "sm-g925w8": 5, "sm-g9200": 5, "sc-04g": 5, "sm-a810s": 5, "sm-n920t": 5, "sm-n935s": 5, "sm-g925t": 5, "sm-n9200": 5, "sm-g928k": 5, "sm-g9209": 5, "sm-g925s": 5, "sm-g928c": 5, "sm-n920s": 5, "sm-a810yz": 5, "sm-n920i": 5, "sm-g9280_2": 5, "scv31": 5, "sm-n920w8": 5, "sm-g920i": 5, "sm-g920p": 5, "sm-g928l": 5, "samsung-sm-g920a": 5, "sm-n935k": 5, "sm-n9208": 5, "sc-05g": 5, "sm-g9250": 5, "sm-g928f": 5, "s6": 5, "sm-g920f": 5, "sm-n920v": 5, "sm-g925i": 5, "samsung-sm-n920a": 5, "samsung-sm-g890a": 5, "sm-g920s": 5, "sm-n920k": 5, "sm-g928p": 5, "sm-a810f": 5, "sm-g925p": 5, "sm-g925v": 5, "sm-g920l": 5, "sm-n920f": 5, "sm-g928g": 5, "samsung-sm-g925a": 5, "sm-g925l": 5, "sm-a102u": 5, "sm-a205g": 5, "sm-s102dl": 5, "sm-a202k": 5, "sm-a202f": 5, "sm-a205yn": 5, "scv46": 5, "sm-a105g": 5, "sm-a205w": 5, "sm-a105fn": 5, "sm-a105m": 5, "sm-j737p": 5, "sm-a102n": 5, "sm-a205s": 5, "sm-m107f": 5, "sm-a205fn": 5, "sm-a105f": 5, "sm-a102w": 5, "sm-a205f": 5, "sm-a205gn": 5, "sc-02m": 5, "sm-a205u": 5, "sm-j737t1": 5, "sm-j337v": 5, "sm-a750f": 5, "sm-j720m": 5, "sm-m305f": 5, "sc-02l": 5, "sm-a530f": 5, "sm-a750n": 5, "sm-m205g": 5, "sm-a530w": 5, "sm-a730f": 5, "sm-a750c": 5, "sm-a405fn": 5, "sm-j720f": 5, "sm-m205f": 5, "sm-a530n": 5, "sm-a750fn": 5, "sh-02m": 5, "shv48": 5, "sh-rm12": 5, "so-02l": 5, "s2": 5, "sov42": 5, "sm-a720s": 5, "sm-a520l": 5, "sm-a520k": 5, "sm-a520w": 5, "sm-a720f": 5, "sm-a520s": 5, "sm-a520f": 5, "sm-c5018": 5, "sm-c5010": 5, "sm-c7010": 5, "sm-c701f": 5, "sm-g6100": 5, "sm-g610k": 5, "sm-j727p": 5, "sm-j727v": 5, "sm-c7100": 5, "sm-c7000_2": 5, "sm-c7000": 5, "sm-t815n0": 5, "sm-t715n0": 5, "sm-t715c": 5, "sm-n910k": 5, "sm-n910u": 5, "sm-t815": 5, "sm-n910l": 5, "sm-n910c": 5, "sm-t715": 5, "sm-n910h": 5, "scv32": 5, "sm-n910s": 5, "sm-t715y": 5, "sm-n916k": 5, "sm-n910f": 5, "sm-t710": 5, "sm-a800i": 5, "sm-t815c": 5, "sm-n916s": 5, "sm-n916l": 5, "sm-a710l": 5, "sm-a710f": 5, "sm-j700m": 5, "sm-g903f": 5, "sm-a510s": 5, "sm-j700h": 5, "sm-a710m": 5, "sm-a5108": 5, "sm-a510m": 5, "sm-a310f": 5, "sm-a710y": 5, "sm-a710k": 5, "sm-g903w": 5, "sm-a710s": 5, "sm-a310n0": 5, "sm-j700f": 5, "sm-j700t1": 5, "sm-j700t": 5, "sm-g903m": 5, "sm-a510f": 5, "sm-j7108": 5, "sm-j700k": 5, "ss136": 5, "sm-g850fq": 5, "sm-a800f": 5, "sm-a800s": 5, "sm-g850k": 5, "sm-t805c": 5, "sm-g850f": 5, "sm-g850s": 5, "sm-a700f": 5, "sm-n7500q": 5, "sm-g900h": 5, "sm-t800": 5, "sm-n900": 5, "sm-n9000q": 5, "sm-t805": 5, "samsung-sm-n900a": 5, "sm-p601": 5, "sm-t705c": 5, "sch-i959": 5, "samsung-sm-j727az": 5, "samsung-sm-j727a": 5, "sc-04j": 5, "sm-p585n0": 5, "sm-j530gm": 5, "sm-j737t": 5, "sm-j530fm": 5, "sm-j530f": 5, "sm-t585": 5, "sm-j710fq": 5, "sm-j730fm": 5, "sm-a600fn": 5, "sm-j701mt": 5, "sm-m105f": 5, "sm-j530g": 5, "sm-j600fn": 5, "sm-g610y": 5, "sm-g611mt": 5, "sm-j737s": 5, "sm-m105g": 5, "sm-a600f": 5, "sm-p585y": 5, "sm-m105m": 5, "sm-g611m": 5, "sm-p580": 5, "sm-j710mn": 5, "sm-g611ff": 5, "sm-a320y": 5, "sm-g611s": 5, "sm-t583": 5, "sm-j810m": 5, "sm-g611l": 5, "sm-j727s": 5, "sm-g611f": 5, "sm-j730g": 5, "sm-g611k": 5, "sm-j710gn": 5, "sm-j730f": 5, "sm-j710f": 5, "sm-a260f": 5, "sm-t585n0": 5, "sm-t580": 5, "sm-j600gf": 5, "sm-j530s": 5, "sm-j727t1": 5, "sm-a600gn": 5, "sm-j701m": 5, "sm-j600f": 5, "sm-j600l": 5, "sm-s767vl": 5, "sm-j600gt": 5, "sm-j600g": 5, "sm-g610s": 5, "sm-j730gm": 5, "sm-a600p": 5, "sm-j727t": 5, "sm-a260g": 5, "sm-g610m": 5, "sm-j530y": 5, "sm-g610l": 5, "sm-a600g": 5, "sm-j730k": 5, "sm-j701f": 5, "sm-p585m": 5, "sm-t395": 5, "sm-t536": 5, "sm-a320f": 5, "sm-g610f": 5, "sm-p585": 5, "sm-s111dl": 5, "sm-a015f": 5, "sm-a015az": 5, "sm-m015g": 5, "sm-a015g": 5, "sm-m015f": 5, "sm-a015m": 5, "sm-a015t1": 5, "s9l": 5, "sm-c7108": 5, "sm-t295n": 5, "sm-j610fn": 5, "sm-m115m": 5, "sm-j810gf": 5, "shv43": 5, "sugar c13": 5, "sm-t290": 5, "sugar s20s": 5, "sm-m115f": 5, "sm-e025f": 5, "sm-t595n": 5, "sm-a2070": 5, "sm-a605g": 5, "sm-a207m": 5, "sm-j810f": 5, "sm-a115u": 5, "sm-a207f": 5, "sm-m025f": 5, "sm-s115dl": 5, "sugar s11": 5, "sm-a115a": 5, "sm-j810y": 5, "sh-01l": 5, "sm-a605f": 5, "sugar c21": 5, "sm-t595": 5, "sm-a115f": 5, "sm-a605fn": 5, "sm-a115w": 5, "sm-j810g": 5, "sm-a605gn": 5, "sm-a115az": 5, "sm-a115m": 5, "s5-sh": 5, "sm-a6050": 5, "sm-t295": 5, "sm-t590": 5, "sm-a605k": 5, "sm-t225": 5, "sm-t225n": 5, "sm-t220": 5, "sugar t20": 5, "sugar t30": 5, "sm-n9008s": 5, "sm-j530k": 5, "sm-n900t": 5, "sm-n900k": 5, "sm-n9008": 5, "sm-j530l": 5, "sm-n900l": 5, "sm-n9006": 5, "sm-n900p": 5, "sm-n900u": 5, "sm-a320fl": 5, "sm-w2014": 5, "sm-n9002": 5, "sm-g900fq": 5, "shv-e330s": 5, "sm-n900s": 5, "sm-j710k": 5, "sm-n9005": 5, "sm-n9008v": 5, "sm-n900v": 5, "sm-n9009": 5, "sm-a600n": 5, "sm-c710f": 5, "so-02h": 5, "sov32": 5, "so-01h": 5, "so-03h": 5, "sot31": 5, "so-03g": 5, "sov31": 5, "so-05g": 5, "sm-g615f": 5, "sm-g615fu": 5, "sm-a037f": 5, "sm-a125f": 5, "sm-a215w": 5, "s5pro": 5, "star 4": 5, "sm-a215u": 5, "sm-g900p": 5, "sm-g900s": 5, "so-02g": 5, "sm-g8508s": 5, "sm-g900w8": 5, "sm-g900v": 5, "sc-04f": 5, "sm-g900m": 5, "sm-w2015": 5, "so-01g": 5, "sm-g9006v": 5, "sm-g9008w": 5, "samsung-sm-g900a": 5, "sm705": 5, "sol26": 5, "sc-02g": 5, "sm-g9008v": 5, "sm-g9009w": 5, "sm-g900t": 5, "sm-g900i": 5, "sm-g900k": 5, "sm-g9006w": 5, "sm-g900md": 5, "sm-g900fd": 5, "sm-g9009d": 5, "sm-g900f": 5, "sm-g900l": 5, "sm-m017f": 5, "sugar t10": 5, "stg s20": 5, "s16": 5, "sm-a107f": 5, "sm-a107m": 5, "s20": 5, "stg s30": 5, "s12": 5, "star": 5, "sea-a0": 5, "s11 plus": 5, "so-03f": 5, "sm-n900w8": 5, "so-05f": 5, "sm-t810": 5, "s3-sh": 5, "sh-01k": 5, "sm-t385m": 5, "shv40_u": 5, "sugar c11": 5, "shv40": 5, "star 3": 5, "sh-m05": 5, "sugar c9": 5, "soap r11": 5, "sugar f7": 5, "sh-02j": 5, "sm-p350": 5, "s4-kc": 5, "sugar c11s": 5, "sugar f11": 5, "sh-l02": 5, "sugar s9": 5, "s1": 5, "sm-j415f": 5, "sm-t385": 5, "sm-j400m": 5, "sm-g5520": 5, "sm-j610g": 5, "sm-s327vl": 5, "sm-s727vl": 5, "sugar y12": 5, "sm-t385k": 5, "sm-j327vpp": 5, "sm-j415fn": 5, "samsung-sm-j327az": 5, "sugar y8 max": 5, "sm-j327v": 5, "sm-j610f": 5, "sm-j327t1": 5, "sm-j250f": 5, "sla-l03": 5, "sm-j250m": 5, "sla-tl10_2": 5, "sm-t385s": 5, "sla-l22": 5, "sm-j415g": 5, "sm-t385l": 5, "sm-j410g": 5, "sm-t387v": 5, "sm-t385c": 5, "sla-tl10": 5, "sm-j3300": 5, "sm-j327t": 5, "sla-al00_2": 5, "sla-al00": 5, "sm-j327p": 5, "sugar y9": 5, "sm-j250y": 5, "sm-j3308": 5, "sm-j250g": 5, "sla-l02": 5, "sm-t387w": 5, "sm-j415gn": 5, "sm-j260fu": 5, "sm-g5510": 5, "sm-j415n": 5, "sm-g160n": 5, "s10cl": 5, "stv100-4": 5, "sh-01h": 5, "sm801": 5, "sm-g532f": 5, "sm-g532mt": 5, "sm-g532g": 5, "sm-g532m": 5, "sop-s9": 5, "s10": 5, "sugar y13s": 5, "sm-p605": 5, "s9": 5, "s9t": 5, "s6s": 5, "smart8": 5, "sugar f7 mini": 5, "sm-a013m": 5, "sugar y16": 5, "sm-a022f": 5, "sm-m013f": 5, "sm-a013g": 5, "sm-m022f": 5, "sugar p1": 5, "sugar y12s": 5, "sm-m022m": 5, "sm-a013f": 5, "sm-m022g": 5, "sp413": 5, "symphony r100": 5, "sm-t713": 5, "sm-t813": 5, "sgh-n075t": 5, "sm-t705": 5, "sm-n9109w": 5, "sm-n9106w": 5, "sm-g901f": 5, "so-04g": 5, "sm-n9100": 5, "sm-n9108v": 5, "samsung-sm-n910a": 5, "sm-t719c": 5, "sm-g906k": 5, "sm-n910v": 5, "sm-t320": 5, "sgp521": 5, "sm-n9150": 5, "sm-n915f": 5, "sm-g906l": 5, "sm-g906s": 5, "shv-e330k": 5, "sm-n915s": 5, "sm-j330n": 5, "sm-j330l": 5, "sm-j337t": 5, "sm-j330fn": 5, "sm-g390f": 5, "sm-g570m": 5, "sm-g570y": 5, "sm-j400f": 5, "sm-j327f": 5, "sm-j330f": 5, "sm-j260g": 5, "sm-j337a": 5, "sm-j330g": 5, "sm-j260mu": 5, "sm-j260a": 5, "sm-g570f": 5, "sm-j400g": 5, "sm-j337p": 5, "sm-j260f": 5, "samsung-sm-j327a": 5, "sm-j260gu": 5, "sm-j260y": 5, "sm-s367vl": 5, "sm-j410f": 5, "sm-j260t1": 5, "sm-j260az": 5, "sm-j337w": 5, "sm-j260m": 5, "sm-g7508q": 5, "sm-g7509": 5, "sch-n719": 5, "shv-e250s": 5, "sch-i545": 5, "sm-c5000": 5, "sm-j7109": 5, "sm-c5000_2": 5, "sm-j710fn": 5, "sm-g5700": 5, "sm-a7108": 5, "sm-a510l": 5, "sm-a800iz": 5, "sm-a700yd": 5, "sm-a7000": 5, "sm-a700h": 5, "sm-a700fd": 5, "sm-a7100": 5, "sm-a5100": 5, "sm-a700s": 5, "sm-a510y": 5, "sm-a7009": 5, "sm-a800yz": 5, "sm-a510k": 5, "sm-j700p": 5, "sm-a700l": 5, "sm-a8000": 5, "sch-p709": 5, "sugar_p11": 5, "sugar_y18": 5, "sm-j5007": 5, "sm-t377w": 5, "sm-g600f": 5, "sm-a300f": 5, "sm-t3777": 5, "sm-t378l": 5, "sm-a500fu": 5, "sugar y7": 5, "sm-t355y": 5, "sm-j3119s": 5, "sm-t239": 5, "sm-j5008": 5, "sm-t533": 5, "sm-j510fn": 5, "sm-g600s": 5, "sm-t355": 5, "sm-j5108": 5, "sm-a500l": 5, "sk3-01": 5, "sm-j510f": 5, "sm-a500m": 5, "sm-a3000": 5, "sm-a5000": 5, "sugar f9": 5, "sm-p355m": 5, "sm-e7000": 5, "sm-t560nu": 5, "sm-a300fu": 5, "sm-g357fz": 5, "sm-j3110": 5, "sm-g6000": 5, "sm-j500h": 5, "sm-g531f": 5, "sm-j500n0": 5, "sm-j510k": 5, "sm-g361h": 5, "sm-j510un": 5, "sk3-02": 5, "sm-j510mn": 5, "sm-p355": 5, "sm-a300h": 5, "sm-a5009": 5, "sm-j500m": 5, "sm-j510s": 5, "sm-e700f": 5, "sm-e7009": 5, "sm-t380": 5, "sm-a500f": 5, "sm-j500g": 5, "sm-g530bt": 5, "sm-g7200": 5, "sm-g530f": 5, "sm-g600fy": 5, "sm-j3119": 5, "sm-j3109": 5, "sm-j510fq": 5, "sm-g5108q": 5, "sm-e500f": 5, "sm-j500fn": 5, "sm-p355y": 5, "sm-t562": 5, "sm-g360bt": 5, "sm-t350": 5, "sm-g720n0": 5, "sm-g360m": 5, "sm-j510l": 5, "sm-g5308w": 5, "sm-a300m": 5, "sm-a500s": 5, "sm-g3608": 5, "sm-t550": 5, "sm-t375s": 5, "sm-g5108": 5, "sm-a3009": 5, "sm-j500f": 5, "sm-t555": 5, "sm-p555": 5, "sm-t555c": 5, "sm-j510gn": 5, "sm-p550": 5, "sm-g5109": 5, "sm-e700m": 5, "sm-n7502": 5, "sm-g7102t": 5, "smart 4g gen c 5.5": 5, "sm-t280": 5, "sm-j105f": 5, "sm-j120m": 5, "sm-j120f": 5, "samsung-sm-j120a": 5, "sm-j105b": 5, "sm-j110h": 5, "sm-j106h": 5, "sm-t285m": 5, "sm-j320m": 5, "sm-j105h": 5, "sm-j111m": 5, "sm-j106f": 5, "sm-j7008": 5, "s7-classic": 5, "sm-t535": 5, "sm-t331": 5, "sm-t532": 5, "sm-t530": 5, "sm-g7109": 5, "sm-g7106": 5, "sm-g3588v": 5, "sm-g7108": 5, "sh-04g": 5, "sm-g7108v": 5, "sm-t531": 5, "sm-n7508v": 5, "sm-g7102": 5, "sm-n7506v": 5, "sm-g5306w": 5, "sm-t560": 5, "sm-t561": 5, "sm-g360h": 5, "sm-t116": 5, "sm-t116nu": 5, "sm-t285": 5, "sm-j120h": 5, "sm-j320g": 5, "sm-g531h": 5, "sm-t285yd": 5, "sm-t113": 5, "sm-j320h": 5, "sm-t561y": 5, "sm-j210f": 5, "sm-t116bu": 5, "sm-t113nu": 5, "sm-j111f": 5, "scl-cl00": 5, "scl-tl10h": 5, "scl-tl00": 5, "scl-al00": 5, "scl-tl10": 5, "scl-tl00h": 5, "sm-g5528": 5, "sm-j200gu": 5, "sm-j320f": 5, "sm-g550fy": 5, "samsung-sm-t377a": 5, "sm-g550t1": 5, "sm-j200g": 5, "sm-j200bt": 5, "sm-j120g": 5, "sm-g5500": 5, "sm-j200f": 5, "sm-j320fn": 5, "sm-j200h": 5, "sm-t235y": 5, "sm-g800f": 5, "sm-g800h": 5, "sm-t331c": 5, "sp531": 5, "sunny2 plus": 5, "s7t": 5, "sm-t235": 5, "sm-t230": 5, "sm-t231": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/t.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/t.json deleted file mode 100644 index 9a73ed0c..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/t.json +++ /dev/null @@ -1 +0,0 @@ -{"tet-an50": 1, "tetan10": 1, "tet-an00": 1, "tyh611m": 1, "tah-an00m": 1, "tas-al00": 1, "tas-tl00": 1, "tas-an00": 1, "tas-l29": 1, "tny-al00": 2, "tny-tl00": 2, "tah-an00": 2, "tel-an00a": 2, "tel-tn00": 2, "tel-an10": 2, "tel-an00": 2, "ta-1012": 2, "ta-1052": 2, "ta-1004": 2, "tecno ce9": 3, "tnnh-an00": 3, "tnn-an00": 3, "tyh601m": 3, "ta-1131": 3, "t780h": 3, "tyh612m": 3, "tecno ld7j": 3, "tecno ld7": 3, "tecno kf7j": 3, "tecno ce7": 3, "tecno ce7j": 3, "tecno ce8": 3, "tecno ke7": 3, "ta-1172": 3, "t770h": 3, "tfy-an00": 3, "t8(e8c1)": 4, "t-1000": 4, "tg-l900s": 4, "ta-1361": 4, "tcl 950": 4, "ta-1041": 5, "ta-1054": 5, "tcl m2m": 5, "tag-al00": 5, "tag-cl00": 5, "tag-ul00": 5, "tag-tl00": 5, "tpc-705kids": 5, "t801": 5, "t106": 5, "tecno ke5k": 5, "tecno cd8": 5, "tecno ab7": 5, "tecno cd8j": 5, "tg-l800s": 5, "tecno ca8": 5, "tecno in6": 5, "tecno cd6": 5, "tecno lc8": 5, "tecno lb8a": 5, "tecno cf8": 5, "tecno bc2": 5, "tecno cd7": 5, "tecno id5b": 5, "tecno kb3": 5, "tecno cc7s": 5, "tesla_sp9_2": 5, "tecno cc9": 5, "t766a": 5, "tecno id6": 5, "t766h_eea": 5, "t766u": 5, "t766j": 5, "tecno cc7": 5, "tecno cc6": 5, "tecno cb7j": 5, "tecno kd6": 5, "tcl 750": 5, "tcl-550": 5, "tecno ke6j": 5, "tecno kd7": 5, "tecno ke6": 5, "tecno ra8": 5, "tecno kb2j": 5, "tecno id3k": 5, "tecno kc3": 5, "tecno kd7h": 5, "tecno kb2": 5, "tecno lc6a": 5, "tecno kc1j": 5, "tecno kc2j": 5, "tecno id5a": 5, "tecno lc6": 5, "tecno kc2": 5, "tecno ke5": 5, "tecno kc6s": 5, "tecno cf7k": 5, "tecno kc1": 5, "tecno cb7": 5, "tecno kd6a": 5, "tecno bb4k": 5, "tecno kb8": 5, "tecno lc7": 5, "tecno kc6": 5, "tecno kc8": 5, "tecno kb7j": 5, "trt-al10": 5, "trt-al00_2": 5, "trt-tl10": 5, "trt-al00": 5, "trt-lx1": 5, "trt-tl10a": 5, "t5211": 5, "trt-lx3": 5, "turkcell t80": 5, "trt-al00a": 5, "trt-l53": 5, "trt-l21a": 5, "trt-lx2": 5, "ta-1044": 5, "ta-1000": 5, "ta-1039": 5, "ta-1003": 5, "ta-1027": 5, "ta-1024": 5, "ta-1053": 5, "ta-1021": 5, "ta-1025": 5, "ta-1033": 5, "tecno in1": 5, "tecno ke5j": 5, "t1": 5, "turk telekom tt175": 5, "tcl 580": 5, "tecno bc3": 5, "tesla_sp3_4": 5, "tecno lb7": 5, "tecno in1 pro": 5, "tecno cf7": 5, "tecno in2": 5, "tesla_sp6_4_lite": 5, "tecno f4 pro": 5, "tcl 520": 5, "ta-1028": 5, "tecno ca6": 5, "tecno ia5": 5, "tesla_sp6.3": 5, "ta-1020": 5, "tecno i3": 5, "tecno in5": 5, "ta-1032": 5, "ta-1038": 5, "tecno-j8": 5, "tcl_p620m": 5, "tit-al00": 5, "tb717l": 5, "tecno-w5": 5, "tit-tl00": 5, "tcl p316l": 5, "tit-l01": 5, "tcl p588l": 5, "tb717g": 5, "turkcell t60": 5, "tag-dc": 5, "tesla_sp3.5": 5, "tab8": 5, "ta-1388": 5, "tg08rk": 5, "t1-a23l": 5, "t1-821w": 5, "t1-823l": 5, "tcl p590l": 5, "t1-a21w": 5, "tab64": 5, "t10b": 5, "t1 7.0": 5, "turkcell t70": 5, "tab2a7-10f": 5, "tecno p704a": 5, "t1-701u": 5, "twist 3": 5, "twist 2 pro": 5, "twist 2": 5, "ta-1189": 5, "ta-1170": 5, "tecno cx air": 5, "tecno bc2c": 5, "tecno b1f": 5, "tecno bb2": 5, "tecno ka7o": 5, "tecno ba2": 5, "tecno f1": 5, "tecno b1p": 5, "tecno k7": 5, "tecno rb6s": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/u.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/u.json deleted file mode 100644 index 314a28b3..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/u.json +++ /dev/null @@ -1 +0,0 @@ -{"u3x": 3, "uk-al20": 4, "u ultra": 4, "u11 life": 5, "u20_2": 5, "u36": 5, "umix6": 5, "urban 1 pro": 5, "u20": 5, "u10": 5, "u3_4g": 5, "u304aa": 5, "u19": 5, "u707t": 5, "u2": 5, "ulefone s7": 5, "ulefone_s11": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/v.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/v.json deleted file mode 100644 index 2eee00f5..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/v.json +++ /dev/null @@ -1 +0,0 @@ -{"v2141a": 1, "v2049a": 1, "v2154a": 1, "vtl-202101": 1, "v2145a": 1, "v2136ga": 1, "v2056a": 1, "v2136a": 1, "v2046a": 1, "v2059a": 1, "v2047a": 1, "v2118a": 1, "v2157a": 1, "v2045": 1, "v2046": 1, "v2055a": 1, "v1950a": 1, "v1955a": 1, "v1981a": 1, "v2024a": 1, "v2011a": 1, "v2025a": 1, "v11v": 1, "v2133a": 1, "v2134a": 1, "v2163a": 1, "v2121a": 1, "v2085a": 1, "v2072a": 1, "v2162a": 1, "v1986a": 1, "v1923a": 1, "vivo 1912": 1, "v1916a": 1, "v1924a": 1, "v1922a": 1, "v1936a": 1, "v1824ba": 1, "vivo 1908_19": 1, "v1824a": 1, "v1936al": 1, "v2131a": 2, "v2123a": 2, "v2130a": 2, "vog-l04": 2, "vog-al00": 2, "vrd-w10": 2, "vog-l29": 2, "vog-tl00": 2, "vog-l09": 2, "vog-al10": 2, "vrd-w09": 2, "vrd-al10": 2, "vrd-al09": 2, "v1821a": 2, "v1821t": 2, "vivo nex s": 2, "v1914a": 2, "vivo 1813": 2, "vivo 1805": 2, "v2148a": 2, "v2115a": 2, "vs996": 2, "v30 plus": 2, "v30": 2, "v2073a": 2, "v2001a": 2, "v2012a": 2, "v1930": 2, "vivo 2005": 2, "vivo 2018": 2, "vivo 2006": 2, "v2020ca": 2, "v2020a": 2, "v2005a": 2, "v1963a": 2, "v2080a": 2, "v2048a": 2, "v1962ba": 3, "v1962a": 3, "v1938t": 3, "v1938ct": 3, "v2040": 3, "v2002a": 3, "vivo 2004": 3, "vivo 1939": 3, "v2043_21": 3, "v2025": 3, "v2023a": 3, "v2024": 3, "v2061": 3, "vivo 1918": 3, "vivo 1951": 3, "v1921a": 3, "vivo 1917": 3, "vivo 1921": 3, "v1990a": 3, "v1932a": 3, "vivo 1933": 3, "v2061a": 3, "v2031ea": 3, "vivo nex": 3, "v1829t": 3, "v1836t": 3, "v1836a": 3, "v1829a": 3, "vivo 1919": 3, "v1911a": 3, "v1813ba": 3, "v1919a": 3, "vivo nex a": 3, "v1832t": 3, "vivo s1 pro": 3, "vivo 1818": 3, "v1838a": 3, "v1832a": 3, "v1809t": 3, "v1813bt": 3, "v1809a": 3, "v1816t": 3, "v2102": 3, "v2156a": 3, "vp002": 3, "v2021": 3, "v2031a": 3, "v2057a": 3, "v2066": 3, "vp001": 3, "v2050": 3, "v2110": 3, "v2109": 3, "v2037": 3, "v2038": 3, "v1831a": 3, "v1838t": 3, "v1831t": 3, "v1913t": 3, "vivo 1907": 3, "vivo 1915": 3, "v2066ba": 3, "v2066a": 3, "vivo v1907": 3, "v1934a": 3, "v1913a": 3, "vivo 1907_19": 3, "v1907": 3, "vivo x21ud": 3, "vivo x20plus ud": 3, "vivo 1814": 3, "v1816a": 3, "vivo x20plus": 3, "vivo z1": 3, "vivo x21a": 3, "vivo x21": 3, "vivo x20a": 3, "v1730ga": 3, "vivo 1725": 3, "vivo x20plus a": 3, "vivo x21ud a": 3, "v1814a": 3, "vivo x21s": 3, "vivo+x21ud+a": 3, "vivo+x20a": 3, "v1814t": 3, "vivo 1816": 3, "vivo z3x": 3, "vivo 1804": 3, "vivo x20": 3, "vivo+x21a": 3, "vivo 1851": 3, "vivo x20a_2": 3, "vivo+x21": 3, "vivo 1920_20": 3, "v2023": 3, "v2030": 3, "vivo 1935": 3, "v1945a": 3, "v1928a": 3, "v2022": 3, "vivo 1916": 3, "v1965a": 3, "v1937": 3, "vivo 1920": 3, "v2041": 3, "v2164a": 3, "v2069a": 3, "v2068a": 3, "vivo x21i": 3, "v1813da": 3, "vivo 1806": 3, "v1813a": 3, "vivo x21i a": 3, "vivo 1819": 3, "v1813t": 3, "via_a3_plus": 3, "via_p3": 3, "v2065a": 3, "v2031": 3, "v2036": 3, "v2099a": 3, "vce-l22": 3, "vce-tl00": 3, "vce-al00": 3, "vivo x9plus_3": 4, "vivo x9 plus": 4, "vivo x9plus l_2": 4, "vivo x9plus l": 4, "vivo+x9plus": 4, "vivo x9plus_2": 4, "vivo x9plus": 4, "vivo x9s plus l": 4, "vivo x9s plus": 4, "vcr-a0": 4, "vtr-tl00_2": 4, "vtr-tl00": 4, "vtr-al00": 4, "vky-al00_2": 4, "vtr-l09": 4, "vtr-al00_2": 4, "vky-al00": 4, "vky-l29": 4, "vtr-l29": 4, "vky-l09": 4, "vky-tl00": 4, "vivo xplay5a_2": 4, "vivo x6splus d_2": 4, "vivo+x7": 4, "vivo x6splus a": 4, "vivo x9s l": 4, "vivo x6splus d": 4, "vivo x6splus": 4, "vivo v3max": 4, "vivo x7l": 4, "vivo x7": 4, "vivo x6s": 4, "vivo x6s a": 4, "vivo x9s": 4, "vivo x7plus": 4, "vivo x7_3": 4, "vivo x6s a_2": 4, "vivo xplay5a": 4, "vivo x7plus l": 4, "vivo x7_2": 4, "v2111a": 4, "vp003": 4, "v2143a": 4, "v2058": 4, "v2054a": 4, "v2106a": 4, "v2034a": 4, "v2027": 4, "v2032": 4, "v2028": 4, "v2029": 4, "vs988": 4, "vivo xplay6l": 4, "vs987": 4, "vs995": 4, "vivo xplay6": 4, "vivo xplay6_2": 4, "vivo xplay5s": 4, "vivo z1i": 4, "vie-al10": 4, "vie-l09": 4, "vie-l29": 4, "v tab z1": 5, "via_s48_0": 5, "via_s48": 5, "via_s30": 5, "venus z20": 5, "vivo 1723": 5, "v1730ea": 5, "venus v6": 5, "vivo x9_2": 5, "vivo y79": 5, "vivo x9i": 5, "vivo 1727": 5, "vivo x9": 5, "vivo y79a": 5, "vivo 1611": 5, "vivo+x9": 5, "vivo x9i_2": 5, "vivo x9l_2": 5, "vivo x9l": 5, "vivo x5max s": 5, "vivo x5max": 5, "vivo x5pro d_2": 5, "vivo x6plus l": 5, "vivo x5max+": 5, "vivo x6d": 5, "vivo x6plus d": 5, "vivo x5pro l": 5, "vivo x5pro d": 5, "vivo x6l": 5, "vivo x5s l": 5, "v1818a": 5, "vivo 1906": 5, "v2033": 5, "vivo 2019": 5, "v1818t": 5, "vivo 1807": 5, "vivo 2007": 5, "vivo y91": 5, "vivo 1906_20": 5, "vivo 1811": 5, "v1731ca": 5, "v2052": 5, "vivo 1817": 5, "vns-dl00": 5, "vns-tl00": 5, "via_f1": 5, "v7+": 5, "via_a3": 5, "vivo 1850": 5, "v0900": 5, "vivo 1716": 5, "vivo 1718": 5, "vivo y85a": 5, "vivo y75s": 5, "vivo y85": 5, "vivo+y85a": 5, "via_f2": 5, "v2036a": 5, "v2026": 5, "via_f20": 5, "v1930a": 5, "v2043": 5, "vivo 1938": 5, "vivo 1901": 5, "vivo 1929": 5, "v1901a": 5, "vivo 1902_19": 5, "vivo 1902": 5, "v1901t": 5, "vivo 1901_19": 5, "venus e5": 5, "venus z30": 5, "via a4": 5, "vivo y75a": 5, "vivo y75": 5, "vivo y93s": 5, "vivo 1940": 5, "via_g4": 5, "v1732a": 5, "venus v7": 5, "via_e3": 5, "vivo 1808i": 5, "vivo 1815": 5, "vivo 1808": 5, "vivo y83": 5, "vivo 1802": 5, "vivo 1820_19": 5, "vivo 1803": 5, "v1818ct": 5, "vivo 1820": 5, "via_s": 5, "v1732t": 5, "via_g3": 5, "vivo 1726": 5, "vivo 1904": 5, "vivo y81s": 5, "v1818ca": 5, "vivo y83a": 5, "via_a1_1": 5, "via_a1": 5, "vivo 1823": 5, "vivo 1812_19": 5, "vivo 1908": 5, "vivo 1812": 5, "vfd 630": 5, "v5002e": 5, "vivo x710f": 5, "vivo x710l": 5, "vivo xplay3s": 5, "vivo xplay": 5, "vfd 710": 5, "venus z10": 5, "vivo y55": 5, "vivo y66": 5, "vivo y55n": 5, "vivo y55a": 5, "vivo 1603": 5, "vivo+y66": 5, "vivo y55l": 5, "vivo y66l": 5, "vivo y66i": 5, "vivo y71a": 5, "vivo 1719": 5, "vivo 1801": 5, "vox alpha plus": 5, "view": 5, "vs501": 5, "venus e4": 5, "vivo 1724": 5, "vivo 1606a": 5, "vivo 1610": 5, "vivo y71": 5, "vivo y66i a": 5, "vzh": 5, "vivo y53": 5, "vivo y53n": 5, "vivo y53l": 5, "vivo 1606": 5, "venus v5": 5, "via_p2": 5, "venus_v3_5580": 5, "vivo 1609": 5, "vivo y67": 5, "vivo y67a": 5, "vivo v3l": 5, "vivo 1714": 5, "vivo y69a": 5, "vivo 1601": 5, "vivo+y67a": 5, "vivo y67l": 5, "vivo 1713": 5, "vivo 1612": 5, "vfd 529": 5, "vfd 527": 5, "vfd 620": 5, "venus e3": 5, "via_m4": 5, "venus_v4": 5, "vivo y33": 5, "vivo y33l": 5, "vivo y35l": 5, "vivo y35": 5, "vivo y13il": 5, "vodacom power tab 10": 5, "vfd 1300": 5, "via_l8": 5, "vivax tpc-102 4g": 5, "vivo x510t": 5, "vns-al00": 5, "vivo x5max l": 5, "vivo y37a": 5, "vivo x5v": 5, "vivo v3": 5, "vivo x6plus a": 5, "vivo x6a": 5, "vivo x5pro v": 5, "vivo y37": 5, "vivo x3f": 5, "vivo x5m": 5, "vivo x5max v": 5, "vivo v3m a": 5, "vivo v3max a": 5, "vivo v3max l": 5, "vodafone smart ultra 6": 5, "vivo x3s w": 5, "v183": 5, "vivo x5l": 5, "vivo y613f": 5, "vivo y27": 5, "vivo y23l": 5, "voto gt11 pro": 5, "vivo y51l": 5, "vivo y51": 5, "vivo y13l": 5, "vivo y51n": 5, "vivo y937": 5, "vivo y51a": 5, "vivo y31a": 5, "vivo y31": 5, "vivo y51_2": 5, "vivo y51t l": 5, "vivo y35a": 5, "vivo 2015": 5, "vivo y21l": 5, "vivo 1707": 5, "vivo y28l": 5, "vivo y623": 5, "vivo y15t": 5, "vivo y927": 5, "vivo y913": 5, "vivo y13": 5, "vivo y29l": 5, "vivo y18l": 5, "vivo y923": 5, "vivo x3l": 5, "vivo y22il": 5, "vivo y22l": 5, "venus_v3_5040_2gb": 5, "v188": 5, "vivo y17t": 5, "vivo y20t": 5, "v188s": 5, "vivo y17w": 5, "vivo x3t": 5, "vivo y19t": 5, "vivo x1st": 5, "vivo x3v": 5, "venus_v3_5570": 5, "vestel_5530": 5, "vestel_5000_2gb": 5, "via_s10": 5, "vfd 1100": 5, "vivo y21": 5, "vivax tablet tpc-101 3g": 5, "vivo s7i(t)": 5, "v880": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/w.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/w.json deleted file mode 100644 index 9cc58c60..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/w.json +++ /dev/null @@ -1 +0,0 @@ -{"wgr-w09": 1, "wlz-al10": 1, "wlz-an00": 1, "wkg-tn00": 3, "wkg-an00": 3, "w2021": 3, "was-tl10": 5, "w909": 5, "w-v830-ope": 5, "w-v730-ope": 5, "w-v730-eea": 5, "w-v830-eea": 5, "was-al00": 5, "was-lx2j": 5, "was-lx3": 5, "was-lx1a": 5, "was-lx1": 5, "was-lx2": 5, "w-v730-tvm": 5, "w-p311-eea": 5, "w-k560-tvm": 5, "w_c800": 5, "wm-lg8200": 5, "w-k560-ope": 5, "w-k560-eea": 5, "wildfire e lite": 5, "w-v680-ope": 5, "w-v680-eea": 5, "w900": 5, "w900s": 5, "w_p200cm": 5, "w_p130": 5, "w_k600": 5, "w-v600": 5, "w-v720-ope": 5, "w-v720-eea": 5, "w-v800-eea": 5, "wildfire e": 5, "w-k130-tmv": 5, "w-k380-tvm": 5, "w-k380-tvm2g": 5, "w-k420-tvm": 5, "w-k130-eea": 5, "w-k130-ope": 5, "w_k300": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/x.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/x.json deleted file mode 100644 index 9ce941fa..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/x.json +++ /dev/null @@ -1 +0,0 @@ -{"xq-bc72": 1, "x60": 1, "xq-at52": 1, "xq-as72": 1, "xt2125-4": 1, "xiaomi 9 pro": 1, "xiaomi 9": 1, "xz2": 2, "xiaomi 8": 2, "xz2 premium": 2, "xz2 compact": 2, "xt2153-1": 2, "xt2143-1": 2, "xq-bt52": 2, "xz premium": 2, "xt1710-11": 2, "xiaomi 6": 2, "xt1789-05": 2, "xt1929-15": 2, "xz1": 2, "xt2071-4": 2, "x22": 3, "x27": 3, "xt2091-8": 3, "x20 plus": 3, "x20": 3, "xq-au52": 3, "x21i": 3, "x9079": 4, "xt2137-2": 4, "xt2081": 4, "xiaomi mix": 4, "xt1650-05": 4, "xt1650": 4, "x performance": 4, "xt1943-1": 4, "xt1942-1": 4, "xt1965-6": 4, "x2-ht": 5, "xt1710-08": 5, "xt1635-01": 5, "xt1941-2": 5, "xt1635-02": 5, "x9": 5, "xt1635-03": 5, "xt1710-02": 5, "x5": 5, "xt1662": 5, "xt1663": 5, "x9009": 5, "xt1925-10": 5, "x620": 5, "x800": 5, "xt1585": 5, "x900": 5, "x800+": 5, "x900+": 5, "xt1097": 5, "x9070": 5, "x9007": 5, "x9077": 5, "xt1085": 5, "x19": 5, "x-go": 5, "x600": 5, "x608": 5, "xs2_lte": 5, "x9000": 5, "xt1924-9": 5, "xt1799-2": 5, "xl39h": 5, "x90l": 5, "xp9800": 5, "x95": 5, "x60l": 5, "x7 pro": 5, "x1": 5, "x-max": 5, "x4": 5, "xm-t": 5, "xt1706": 5, "xt1254": 5, "x909": 5, "x909t": 5, "x510t": 5, "xt1052": 5, "x510w": 5, "xt1030": 5, "xt1562": 5, "x-play": 5, "xt1080": 5, "x-pro": 5, "xt1609": 5, "xt1069": 5, "xt1068": 5, "xt1078": 5, "xt1033": 5, "xt1032": 5, "x3t": 5, "x1st": 5, "x1s": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/y.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/y.json deleted file mode 100644 index f672778b..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/y.json +++ /dev/null @@ -1 +0,0 @@ -{"yok-an10": 1, "yal-l41": 2, "yal-l21": 2, "yal-tl00": 2, "yal-al10": 2, "yal-al00": 2, "yal-al50": 3, "yu fly f9": 4, "yndx-000sb": 5, "y79": 5, "y11 (2019)": 5, "y85": 5, "y9plus": 5, "y83": 5, "y55": 5, "y66i": 5, "y685q": 5, "y685c": 5, "y69": 5, "yu5014": 5, "y71-811": 5, "yq603": 5, "yq607": 5, "yq601": 5, "yusun a7": 5, "y635-l03": 5, "y11it": 5, "y19t": 5, "y11": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/device_models/z.json b/Android/tuibeauty/src/main/assets/benchmark/device_models/z.json deleted file mode 100644 index 878ce1f4..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/device_models/z.json +++ /dev/null @@ -1 +0,0 @@ -{"zs676ks": 1, "zte a2022p": 1, "zs673ks": 1, "zte a2022": 1, "zte a2322": 1, "zs661ks": 1, "zs670ks": 1, "zs671ks": 1, "z20": 1, "zte a2020 pro": 1, "zs600kl": 2, "zte a2019 pro": 2, "z17": 2, "z17s": 2, "zte a2021l": 2, "zte a2021": 2, "z5": 3, "zte 8010ru": 3, "zte 9000n": 3, "z3": 3, "zte v1000": 3, "zte blade v10": 3, "zb631kl": 3, "z1": 3, "zte 7530n": 3, "zte v1050": 3, "zte 9000": 3, "zte a7000": 3, "zte blade a7 2019": 3, "zte 2050ru": 3, "zte 2050": 3, "zte a2018": 4, "z999": 4, "zuk z2151": 4, "z11": 4, "zuk z2121": 4, "zuk z2132": 4, "zuk z2131": 4, "zte a2017": 4, "z1i": 4, "zenfone max pro m1": 4, "zb602kl": 4, "zte v890": 4, "zik_w1027": 5, "zb633kl": 5, "z2 play": 5, "zte c2017": 5, "ze553kl": 5, "zte bv0710t": 5, "zte bv0720": 5, "zte bv0710": 5, "zte bv0730": 5, "z6400c": 5, "zte v0900": 5, "zte blade v9": 5, "z16": 5, "z28": 5, "zte a2015": 5, "zuk z1": 5, "zte blade a7 2020": 5, "zte a7010": 5, "zte blade a7 2020ru": 5, "z81": 5, "zte grand s ii lte": 5, "zte blade v ultra z982": 5, "zte v0920": 5, "zte blade a0620": 5, "z982": 5, "zte blade v0850": 5, "zte blade v9 vita": 5, "zte bv0870": 5, "z983": 5, "zte blade v0800": 5, "zte blade v0920": 5, "zc554kl": 5, "zc520kl": 5, "zte blade a512": 5, "zte z10": 5, "zte v0840": 5, "z971": 5, "zte a0616": 5, "zte v0721": 5, "z12 pro": 5, "zte bv0701": 5, "zte s2010": 5, "z25": 5, "zte blade v073000": 5, "zte bv0720t": 5, "z91": 5, "z61": 5, "z61_2gb": 5, "zte blade a530": 5, "zte ba602": 5, "z90": 5, "zte blade a520": 5, "zte ba520": 5, "zte c880u": 5, "zte c880a": 5, "zte b880": 5, "zte c880s": 5, "zte c880d": 5, "zte q529c": 5, "zte q529t": 5, "zte q806t": 5, "zte blade a610": 5, "zte ba910": 5, "z60": 5, "zte ba611t": 5, "zte ba510": 5, "zte ba610t": 5, "zte ba601": 5, "zte ba611c": 5, "zte q519t": 5, "zte blade v0720": 5, "zte ba610c": 5, "z30": 5, "z981": 5, "zte c2016": 5, "z963vl": 5, "zte g720t": 5, "zte b2015": 5, "zte blade a5 2019ru": 5, "zte blade a7 2019ru": 5, "zte blade a5 2020ru": 5, "zte blade v10 vita": 5, "zte blade a5 2019": 5, "zte blade v10 vita ru": 5, "zte a7020ru": 5, "zte 8031": 5, "zte a7030": 5, "zte blade a5 2020": 5, "zte a7020": 5, "zte blade a51": 5, "z15": 5, "zte 8010": 5, "zug_5s_q": 5, "zte a880": 5, "zte blade a3 lite": 5, "zte blade a3 2019ru": 5, "zte blade a3 2020ru": 5, "zte blade a3 2020": 5, "zte q802t": 5, "zte g718c": 5, "zte q505t": 5, "z851m": 5, "zte ba603": 5, "z835": 5, "zte n928dt": 5, "z899vl": 5, "zte q302c": 5, "z557bl": 5, "z855": 5, "z839": 5, "z558vl": 5, "zte blade l210": 5, "zte blade l210ru": 5, "zte blade l130": 5, "zte blade l8ru": 5, "zte blade l8": 5} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/assets/benchmark/soc_models.json b/Android/tuibeauty/src/main/assets/benchmark/soc_models.json deleted file mode 100644 index 95b9c6e8..00000000 --- a/Android/tuibeauty/src/main/assets/benchmark/soc_models.json +++ /dev/null @@ -1 +0,0 @@ -{"kirin9000": 1, "mt6891": 1, "mt6889z": 1, "mt6889": 1, "s5e9815": 1, "kirin9905g": 1, "kirin990": 1, "kirin9000e": 1, "mt6893": 1, "exynos990": 1, "exynos9830": 1, "exynos9815": 1, "mt6891z": 1, "sm8250-ab": 1, "sm8250": 1, "sm8250-ac": 1, "sm8150-ac": 1, "sm8150": 1, "sm7350-ab": 1, "sm8350": 1, "kirin980": 2, "kirin985": 2, "kirin9855g": 2, "kirin8205g": 2, "sm7325": 2, "sm7250-ac": 2, "exynos9825": 2, "exynos9820": 2, "sm7250-ab": 2, "exynos9810": 2, "mt6785t": 2, "sm7250-aa": 2, "kirin820": 2, "sm7225": 2, "msm8998": 2, "sdm765g": 2, "mt6885z": 2, "sdm845": 2, "mt6877": 2, "sm6350": 2, "mt6875": 2, "mt6769v/cb": 3, "kirin970": 3, "msm8976plus": 3, "mt6769v/cu": 3, "mt6769z": 3, "mt6771": 3, "mt6785v": 3, "mt6873": 3, "mt6853v": 3, "mt6853t": 3, "mt6853": 3, "mt6833v": 3, "mt6771v": 3, "mt6779": 3, "mt6779v": 3, "mt6785": 3, "s5e3830": 3, "mt6833": 3, "mt6799": 3, "mt6771t": 3, "mt6768": 3, "heliog85": 3, "sdm730": 3, "heliog80": 3, "heliog70": 3, "exynos980": 3, "exynos9630": 3, "exynos9611": 3, "exynos9610": 3, "exynos8895": 3, "exynos8890": 3, "exynos880": 3, "exynos7904": 3, "kirin810": 3, "sm6150": 3, "sm6125": 3, "sm6115": 3, "heliop60": 3, "heliop70": 3, "sdm712": 3, "sdm670": 3, "sdm660": 3, "sm7125": 3, "sm7150-aa": 3, "sm7150-ab": 3, "sm7150ab": 3, "sm7150-ac": 3, "sdm710": 3, "sm7150aa": 3, "sm4250": 4, "sm4250-aa": 4, "sm4350": 4, "msm8996pro": 4, "msm8996lite": 4, "msm8976sg": 4, "mt8183": 4, "msm8976pro": 4, "msm8976": 4, "msm8956": 4, "mt8173": 4, "mt8176": 4, "msm8996": 4, "kirin710f": 4, "t310": 4, "tegra k1": 4, "kirin710a": 4, "kirin710": 4, "heliog25": 4, "sdm636": 4, "kirin960": 4, "kirin955": 4, "kirin950": 4, "apq8096": 4, "mt6762v": 5, "mt6763": 5, "mt6762g": 5, "mt6763t": 5, "mt6763v": 5, "mt6765": 5, "mt6797t": 5, "mt6797x": 5, "mt6795": 5, "mt6795m": 5, "mt6795t": 5, "mt6797": 5, "mt6797d": 5, "mt6797m": 5, "mt6765v": 5, "mt6762r": 5, "sc7731e": 5, "mt8163": 5, "s5e4212": 5, "sc7730s": 5, "sc7731": 5, "mt6762d": 5, "sc7731g": 5, "sc8830": 5, "sc9830": 5, "sc9832": 5, "s5e3475": 5, "sc9832e": 5, "sc9863": 5, "sc9863a": 5, "sdm429": 5, "sdm439": 5, "sdm450": 5, "sdm630": 5, "sdm632": 5, "t114": 5, "sc9850": 5, "mt8127": 5, "s1": 5, "rk3326": 5, "mt8163b": 5, "mt8167": 5, "mt8168": 5, "mt8321": 5, "mt8321m": 5, "mt8382": 5, "mt8382m": 5, "mt8392": 5, "rk3368": 5, "mt8732": 5, "mt8765": 5, "mt8765v": 5, "mt8768t": 5, "mt8783": 5, "omap4430": 5, "pxa1088": 5, "qm215": 5, "qsd8250": 5, "mt8735": 5, "mt6762": 5, "apq8016": 5, "mt6761": 5, "kirin650": 5, "kirin655": 5, "kirin658": 5, "kirin659": 5, "kirin910": 5, "kirin910t": 5, "kirin920": 5, "kirin925": 5, "kirin928": 5, "kirin930": 5, "kirin935": 5, "l1860c": 5, "msm7227": 5, "kirin620": 5, "msm8210": 5, "msm8225q": 5, "msm8226": 5, "msm8228": 5, "msm8260": 5, "msm8274": 5, "msm8612": 5, "msm8625q": 5, "msm8628": 5, "msm8660": 5, "msm8660a": 5, "msm8905": 5, "msm8909": 5, "msm8909v2": 5, "msm8212": 5, "msm8916": 5, "k3v2hi3620": 5, "exynos7884": 5, "apq8017": 5, "apq8026": 5, "apq8053": 5, "apq8060": 5, "apq8064": 5, "apq8064t": 5, "apq8074aa": 5, "apq8074ab": 5, "apq8076": 5, "apq8084": 5, "apq8084ab": 5, "exynos3470": 5, "exynos3475": 5, "exynos7885": 5, "exynos4210": 5, "exynos4415": 5, "exynos5260": 5, "exynos5410": 5, "exynos5420": 5, "exynos5422": 5, "exynos5430": 5, "exynos5433": 5, "exynos7420": 5, "exynos7570": 5, "exynos7580": 5, "exynos7870": 5, "exynos7872": 5, "exynos7880": 5, "exynos4412": 5, "mt6761d": 5, "msm8917": 5, "msm8926": 5, "mt6595m": 5, "mt6732": 5, "mt6732a": 5, "mt6735": 5, "mt6735a": 5, "mt6735m": 5, "mt6735v": 5, "mt6737": 5, "mt6737m": 5, "mt6737t": 5, "mt6738": 5, "mt6739": 5, "mt6739w": 5, "mt6595": 5, "mt6750": 5, "mt6750s": 5, "mt6750t": 5, "mt6752": 5, "mt6752m": 5, "mt6753": 5, "mt6753t": 5, "mt6755": 5, "mt6755m": 5, "mt6755t": 5, "mt6757": 5, "mt6757cd": 5, "mt6757t": 5, "mt6758": 5, "mt6750c": 5, "msm8920": 5, "mt6592m": 5, "mt6589w": 5, "msm8928": 5, "msm8929": 5, "msm8937": 5, "msm8939": 5, "msm8939v2": 5, "msm8940": 5, "msm8952": 5, "msm8953": 5, "msm8953pro": 5, "msm8960": 5, "msm8974": 5, "msm8974aa": 5, "msm8974ab": 5, "mt6592": 5, "msm8974ac": 5, "msm8994": 5, "mt6570": 5, "mt6572": 5, "mt6575": 5, "mt6577": 5, "mt6580": 5, "mt6580m": 5, "mt6582": 5, "mt6582m": 5, "mt6582t": 5, "mt6589": 5, "mt6589m": 5, "mt6589t": 5, "msm8992": 5, "mt6735p": 5, "lahaina": 1, "kona": 1, "msmnile": 1, "trinket": 3, "lito": 2, "bengal": 3, "atoll": 3, "holi": 4, "hana": 1, "nairo": 2, "napali": 2, "sdmmagpie": 3} \ No newline at end of file diff --git a/Android/tuibeauty/src/main/java/com/tencent/qcloud/tuikit/tuibeauty/presenter/TUIBeautyPresenter.java b/Android/tuibeauty/src/main/java/com/tencent/qcloud/tuikit/tuibeauty/presenter/TUIBeautyPresenter.java index 7fe8c843..a0dfeb7e 100644 --- a/Android/tuibeauty/src/main/java/com/tencent/qcloud/tuikit/tuibeauty/presenter/TUIBeautyPresenter.java +++ b/Android/tuibeauty/src/main/java/com/tencent/qcloud/tuikit/tuibeauty/presenter/TUIBeautyPresenter.java @@ -5,6 +5,8 @@ import android.content.Context; import android.graphics.Bitmap; import android.graphics.BitmapFactory; +import android.os.Handler; +import android.os.Looper; import android.text.TextUtils; import android.util.Log; import android.util.TypedValue; @@ -42,12 +44,13 @@ public class TUIBeautyPresenter implements ITUIBeautyPresenter { private Context mContext; private TUIBeautyParams mTUIBeautyParams; private TXBeautyManager mBeautyManager; - + private Handler mMainHandler; public TUIBeautyPresenter(Context context, TXBeautyManager beautyManager) { mContext = context; mTUIBeautyParams = new TUIBeautyParams(); mBeautyManager = beautyManager; + mMainHandler = new Handler(Looper.getMainLooper()); } @Override @@ -235,7 +238,7 @@ private void downloadVideoMaterial(final TUIBeautyItemInfo itemInfo) { @Override public void onDownloadFail(final String errorMsg) { - ((Activity) mContext).runOnUiThread(new Runnable() { + mMainHandler.post(new Runnable() { @Override public void run() { if (mProgressDialog != null) { @@ -248,7 +251,7 @@ public void run() { @Override public void onDownloadProgress(final int progress) { - ((Activity) mContext).runOnUiThread(new Runnable() { + mMainHandler.post(new Runnable() { @Override public void run() { if (mProgressDialog == null) { @@ -265,7 +268,7 @@ public void run() { @Override public void onDownloadSuccess(final String filePath) { - ((Activity) mContext).runOnUiThread(new Runnable() { + mMainHandler.post(new Runnable() { @Override public void run() { if (mProgressDialog != null) { diff --git a/Android/tuibeauty/src/main/java/com/tencent/qcloud/tuikit/tuibeauty/view/TUIBeautyView.java b/Android/tuibeauty/src/main/java/com/tencent/qcloud/tuikit/tuibeauty/view/TUIBeautyView.java index 9fd692e4..3ea82e53 100644 --- a/Android/tuibeauty/src/main/java/com/tencent/qcloud/tuikit/tuibeauty/view/TUIBeautyView.java +++ b/Android/tuibeauty/src/main/java/com/tencent/qcloud/tuikit/tuibeauty/view/TUIBeautyView.java @@ -55,7 +55,8 @@ public TUIBeautyView(Context context, TXBeautyManager beautyManager) { mBeautyManager = beautyManager; Window window = getWindow(); if (window != null) { - window.findViewById(R.id.design_bottom_sheet).setBackgroundResource(android.R.color.transparent); + window.findViewById(com.google.android.material.R.id.design_bottom_sheet) + .setBackgroundResource(android.R.color.transparent); } initPresenter(); initView(); diff --git a/Android/tuibeauty/src/main/res/drawable-xxhdpi/tuibeauty_beauty_natural.png b/Android/tuibeauty/src/main/res/drawable-xxhdpi/tuibeauty_beauty_natural.png index dd4af2ec..e0aefa59 100644 Binary files a/Android/tuibeauty/src/main/res/drawable-xxhdpi/tuibeauty_beauty_natural.png and b/Android/tuibeauty/src/main/res/drawable-xxhdpi/tuibeauty_beauty_natural.png differ diff --git a/Android/tuibeauty/src/main/res/drawable-xxhdpi/tuibeauty_beauty_pitu.png b/Android/tuibeauty/src/main/res/drawable-xxhdpi/tuibeauty_beauty_pitu.png index a49c7dfa..3737e9cf 100644 Binary files a/Android/tuibeauty/src/main/res/drawable-xxhdpi/tuibeauty_beauty_pitu.png and b/Android/tuibeauty/src/main/res/drawable-xxhdpi/tuibeauty_beauty_pitu.png differ diff --git a/Android/tuiplayer/src/main/java/com/tencent/qcloud/tuikit/tuiplayer/view/TUIPlayerView.java b/Android/tuiplayer/src/main/java/com/tencent/qcloud/tuikit/tuiplayer/view/TUIPlayerView.java index 94a62207..95b3e426 100644 --- a/Android/tuiplayer/src/main/java/com/tencent/qcloud/tuikit/tuiplayer/view/TUIPlayerView.java +++ b/Android/tuiplayer/src/main/java/com/tencent/qcloud/tuikit/tuiplayer/view/TUIPlayerView.java @@ -353,6 +353,8 @@ public void stopPlay() { TXCLog.i(TAG, "stopPlay"); if (mLinkState == LinkState.LINK_PUSH_SEND_SUCCESS) { mTUIPlayerPresenter.stopLink(15); + } else if (mLinkState == LinkState.LINK_REQ_SEND_SUCCESS) { + mTUIPlayerPresenter.cancelLink(); } mTUIPlayerPresenter.destory(); } diff --git a/Android/tuipusher/src/main/java/com/tencent/qcloud/tuikit/tuipusher/view/TUIPusherView.java b/Android/tuipusher/src/main/java/com/tencent/qcloud/tuikit/tuipusher/view/TUIPusherView.java index f74d0242..50dc24c3 100644 --- a/Android/tuipusher/src/main/java/com/tencent/qcloud/tuikit/tuipusher/view/TUIPusherView.java +++ b/Android/tuipusher/src/main/java/com/tencent/qcloud/tuikit/tuipusher/view/TUIPusherView.java @@ -488,6 +488,8 @@ public void stop() { TUIPusherConfig.getInstance().destory(); if (mState == State.PK) { mTUIPusherPresenter.stopPK(); + } else if (mPKState == PKState.PK_REQ) { + mTUIPusherPresenter.cancelPK(); } if (mTUIPusherPresenter != null) { mTUIPusherPresenter.destory();