添加看板娘
This commit is contained in:
parent
d0c2583ca8
commit
469c56f570
@ -2,11 +2,11 @@
|
||||
<div class="overlay" style="background: <%= theme.style && theme.style.header ? theme.style.header : defaultBg %>"></div>
|
||||
<div class="intrude-less">
|
||||
<header id="header" class="inner">
|
||||
<a href="<%=config.root%>" class="profilepic">
|
||||
<a href="<%=config.root%>" @mouseover="linkMouseover('home')" class="profilepic">
|
||||
<img src="<%=theme.avatar%>" class="js-avatar">
|
||||
</a>
|
||||
<hgroup>
|
||||
<h1 class="header-author"><a href="<%=config.root%>"><%=theme.author%></a></h1>
|
||||
<h1 class="header-author"><a href="<%=config.root%>" @mouseover="linkMouseover('home')"><%=theme.author%></a></h1>
|
||||
</hgroup>
|
||||
<% if (theme.subtitle){ %>
|
||||
<p class="header-subtitle"><%=theme.subtitle%></p>
|
||||
@ -22,14 +22,14 @@
|
||||
<nav class="header-smart-menu">
|
||||
<% for (let menuName in theme.smart_menu){
|
||||
if(theme.smart_menu[menuName]){ %>
|
||||
<a @click="openSlider($event, '<%-menuName%>')" href="javascript:void(0)"><%= __(theme.smart_menu[menuName]) %></a>
|
||||
<a @click="openSlider($event, '<%=menuName%>')" @mouseover="linkMouseover('<%=menuName%>')" href="javascript:void(0)"><%= __(theme.smart_menu[menuName]) %></a>
|
||||
<% }
|
||||
} %>
|
||||
</nav>
|
||||
<nav class="header-nav">
|
||||
<div class="social">
|
||||
<% for (let i in theme.subnav){ %>
|
||||
<a class="<%= i %>" target="_blank" href="<%- url_for(theme.subnav[i]) %>" title="<%= i %>"><i class="icon-<%= i %>"></i></a>
|
||||
<% for (let navName in theme.subnav){ %>
|
||||
<a class="<%= navName %>" target="_blank" href="<%- url_for(theme.subnav[navName]) %>" @mouseover="linkMouseover('<%=navName %>')" title="<%= navName %>"><i class="icon-<%= navName %>"></i></a>
|
||||
<% } %>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
13
themes/yilia/layout/_partial/live2d.ejs
Normal file
13
themes/yilia/layout/_partial/live2d.ejs
Normal file
@ -0,0 +1,13 @@
|
||||
<div class="waifu" @mouseover="waifu.showTools=true" @mouseout="waifu.showTools=false">
|
||||
<div class="waifu-tips" v-text="waifu.tip" v-bind:style="{opacity: waifu.tipOpacity}"></div>
|
||||
<div style="width: 250px;overflow: hidden;">
|
||||
<canvas id="live2d" width="650" height="600" @mouseover="linkMouseover('waifu')" style="width: 325px;height: 300px;"></canvas>
|
||||
</div>
|
||||
<div class="waifu-tool" v-show="waifu.showTools">
|
||||
<span class="fui-eye" @mouseover="linkMouseover('tools.eye')" @click="toolsClick('tools.eye')">夜间</span>
|
||||
<span class="fui-chat" @mouseover="linkMouseover('tools.chart')" @click="toolsClick('tools.chart')">一言</span>
|
||||
<span class="fui-photo" @mouseover="linkMouseover('tools.photo')" @click="toolsClick('tools.photo')">拍照</span>
|
||||
<span class="fui-info-circle" @mouseover="linkMouseover('tools.info')">关于</span>
|
||||
<span class="fui-cross" @mouseover="linkMouseover('tools.close')" @click="toolsClick('tools.close')">关闭</span>
|
||||
</div>
|
||||
</div>
|
||||
@ -1,4 +1 @@
|
||||
<%- js('js/main.d4ce0a49f6a804442394.js') %>
|
||||
<%- js('js/mobile.a2383b4df99032c991a8.js') %>
|
||||
<%- js('js/slider.1b67fc1124692aad9054.js') %>
|
||||
<%- js('js/comment.9e7d076dca16e0a7c78e.js') %>
|
||||
<%- js('js/mobile.20f43113c8272156b4bc.js') %> <%- js('js/slider.04cd5097b8512828a2aa.js') %> <%- js('js/comment.3c5be78a9577afb4fddf.js') %> <%- js('js/main.bc3ad605ba4123d612db.js') %> <%- js('js/waifu.0fd1dce4d3ba6f0ae31d.js') %>
|
||||
@ -4,6 +4,7 @@
|
||||
<canvas id="anm-canvas" class="anm-canvas"></canvas>
|
||||
<div class="left-col" :class="{show:isShow}">
|
||||
<%- partial('_partial/left-col', null, {cache: !config.relative_link}) %>
|
||||
<%- partial('_partial/live2d') %>
|
||||
</div>
|
||||
<div class="mid-col" :class="{show:isShow,hide:!isShow}">
|
||||
<%- partial('_partial/mobile-nav', null, {cache: !config.relative_link}) %>
|
||||
|
||||
766
themes/yilia/package-lock.json
generated
766
themes/yilia/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -25,7 +25,7 @@
|
||||
"dom101": "^1.3.0",
|
||||
"extract-text-webpack-plugin": "^3.0.2",
|
||||
"html-webpack-plugin": "^2.24.1",
|
||||
"node-sass": "^4.9.0",
|
||||
"node-sass": "^4.11.0",
|
||||
"postcss-loader": "^2.1.5",
|
||||
"sass-loader": "^7.0.2",
|
||||
"style-loader": "^0.21.0",
|
||||
@ -34,13 +34,13 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "^0.18.0",
|
||||
"babel-core": "6.24.0",
|
||||
"babel-core": "^6.26.3",
|
||||
"babel-loader": "7.1.4",
|
||||
"babel-plugin-transform-runtime": "6.23.0",
|
||||
"babel-polyfill": "^6.23.0",
|
||||
"babel-preset-es2015": "6.24.0",
|
||||
"babel-preset-es2015": "^6.24.1",
|
||||
"babel-preset-react": "6.23.0",
|
||||
"babel-preset-stage-2": "6.22.0",
|
||||
"babel-preset-stage-2": "^6.24.1",
|
||||
"badjs-report": "^1.2.2",
|
||||
"es6-promise": "^4.0.5",
|
||||
"file-loader": "^0.9.0",
|
||||
|
||||
21
themes/yilia/source-src/config/waifu-tip.json
Normal file
21
themes/yilia/source-src/config/waifu-tip.json
Normal file
@ -0,0 +1,21 @@
|
||||
{
|
||||
"mouseover": {
|
||||
"waifu": ["是…是不小心碰到了吧", "萝莉控是什么呀", "你看到我的小熊了吗", "再摸的话我可要报警了!⌇●﹏●⌇", "110吗,这里有个变态一直在摸我(ó﹏ò。)"],
|
||||
"home": "点击前往首页,想回到上一页可以使用浏览器的后退功能哦",
|
||||
"innerArchive": "所有文章都在这里,支持搜索喔",
|
||||
"aboutme": "想听听关于主人的故事吗",
|
||||
"github": "发现主人出没地点!",
|
||||
"weibo": "发现主人出没地点!",
|
||||
"mail" : "这里是主人的联系方式",
|
||||
"tools.eye": "深夜时要爱护眼睛呀",
|
||||
"tools.chart": "猜猜我要说些什么",
|
||||
"tools.photo": "你要给我拍照呀,一二三~茄子~~",
|
||||
"tools.info": "想要知道更多有关我的事吗?",
|
||||
"tools.close": "到了要说再见的时候了吗"
|
||||
},
|
||||
"click": {
|
||||
"tools.photo": "照好了嘛,是不是很可爱呢?",
|
||||
"tools.close": "我们还能再见面的吧…",
|
||||
"tools.eye": "你会做眼保健操吗?"
|
||||
}
|
||||
}
|
||||
@ -19,6 +19,7 @@
|
||||
@import "./aside";
|
||||
@import "./tooltip";
|
||||
@import "./footer";
|
||||
@import "./waifu";
|
||||
@media screen and (max-width: 800px) {
|
||||
@import "./mobile";
|
||||
@import "./mobile-slider";
|
||||
|
||||
@ -2,13 +2,13 @@
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
.page-number{
|
||||
width: 20px;
|
||||
height: 25px;
|
||||
width: 25px;
|
||||
height: 30px;
|
||||
background: #4d4d4d;
|
||||
display: inline-block;
|
||||
color: #fff;
|
||||
line-height: 25px;
|
||||
font-size: 12px;
|
||||
line-height: 30px;
|
||||
font-size: 14px;
|
||||
margin: 0 5px 30px;
|
||||
border-radius: 2px;
|
||||
&:hover{
|
||||
|
||||
305
themes/yilia/source-src/css/waifu.scss
Normal file
305
themes/yilia/source-src/css/waifu.scss
Normal file
@ -0,0 +1,305 @@
|
||||
.waifu {
|
||||
display: none;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
font-size: 0;
|
||||
&:hover {
|
||||
transform: translateY(0);
|
||||
.waifu-tool {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
.waifu-tips {
|
||||
opacity: 0;
|
||||
width: 250px;
|
||||
height: 70px;
|
||||
top: -30px;
|
||||
left: 10px;
|
||||
padding: 5px 10px;
|
||||
border: 1px solid rgba(107, 107, 107, 0.7);
|
||||
border-radius: 8px;
|
||||
background-color: #fff;
|
||||
font-size: 13px;
|
||||
text-overflow: ellipsis;
|
||||
position: absolute;
|
||||
transition: opacity .6s;
|
||||
animation-duration: 50s;
|
||||
animation-iteration-count: infinite;
|
||||
animation-name: shake;
|
||||
animation-timing-function: ease-in-out;
|
||||
&::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 68px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
left: 20px;
|
||||
border-top: 10px rgba(107, 107, 107, 0.7) solid;
|
||||
border-left: 7px transparent solid;
|
||||
border-right: 7px rgba(107, 107, 107, 0.7) solid;
|
||||
border-bottom: 10px transparent solid;
|
||||
}
|
||||
&::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 66px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
left: 20px;
|
||||
border-top: 10px white solid;
|
||||
border-left: 7px transparent solid;
|
||||
border-right: 6px white solid;
|
||||
border-bottom: 10px transparent solid;
|
||||
}
|
||||
}
|
||||
.waifu-tool {
|
||||
color: #aaa;
|
||||
top: 100px;
|
||||
right: 10px;
|
||||
font-size: 14px;
|
||||
position: absolute;
|
||||
span {
|
||||
display: block;
|
||||
cursor: pointer;
|
||||
color: rgb(57, 57, 57);
|
||||
background-color: #fff;
|
||||
border: 1px solid rgb(57, 57, 57);
|
||||
border-radius: 5px;
|
||||
padding: 0 4px;
|
||||
margin-bottom: 4px;
|
||||
line-height: 20px;
|
||||
transition: 0.2s;
|
||||
animation-duration: 30s;
|
||||
animation-iteration-count: infinite;
|
||||
animation-name: shake;
|
||||
animation-timing-function: ease-in-out;
|
||||
&:hover {
|
||||
z-index: 1;
|
||||
transform: scale(1.5);
|
||||
animation: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
#live2d{
|
||||
position: relative;
|
||||
cursor: grab;
|
||||
&:active {
|
||||
cursor: grabbing;
|
||||
}
|
||||
}
|
||||
}
|
||||
/*
|
||||
body.night .waifu {
|
||||
color: #34495e;
|
||||
filter: brightness(30%);
|
||||
}
|
||||
*/
|
||||
@media (max-width: 768px) {
|
||||
.waifu {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes shake {
|
||||
2% {
|
||||
transform: translate(0.5px, -1.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
4% {
|
||||
transform: translate(0.5px, 1.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
6% {
|
||||
transform: translate(1.5px, 1.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
8% {
|
||||
transform: translate(2.5px, 1.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
10% {
|
||||
transform: translate(0.5px, 2.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
12% {
|
||||
transform: translate(1.5px, 1.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
14% {
|
||||
transform: translate(0.5px, 0.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
16% {
|
||||
transform: translate(-1.5px, -0.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
18% {
|
||||
transform: translate(0.5px, 0.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
20% {
|
||||
transform: translate(2.5px, 2.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
22% {
|
||||
transform: translate(0.5px, -1.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
24% {
|
||||
transform: translate(-1.5px, 1.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
26% {
|
||||
transform: translate(1.5px, 0.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
28% {
|
||||
transform: translate(-0.5px, -0.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
30% {
|
||||
transform: translate(1.5px, -0.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
32% {
|
||||
transform: translate(2.5px, -1.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
34% {
|
||||
transform: translate(2.5px, 2.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
36% {
|
||||
transform: translate(0.5px, -1.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
38% {
|
||||
transform: translate(2.5px, -0.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
40% {
|
||||
transform: translate(-0.5px, 2.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
42% {
|
||||
transform: translate(-1.5px, 2.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
44% {
|
||||
transform: translate(-1.5px, 1.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
46% {
|
||||
transform: translate(1.5px, -0.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
48% {
|
||||
transform: translate(2.5px, -0.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: translate(-1.5px, 1.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
52% {
|
||||
transform: translate(-0.5px, 1.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
54% {
|
||||
transform: translate(-1.5px, 1.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
56% {
|
||||
transform: translate(0.5px, 2.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
58% {
|
||||
transform: translate(2.5px, 2.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
60% {
|
||||
transform: translate(2.5px, -1.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
62% {
|
||||
transform: translate(-1.5px, 0.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
64% {
|
||||
transform: translate(-1.5px, 1.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
66% {
|
||||
transform: translate(0.5px, 2.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
68% {
|
||||
transform: translate(2.5px, -1.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
70% {
|
||||
transform: translate(2.5px, 2.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
72% {
|
||||
transform: translate(-0.5px, -1.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
74% {
|
||||
transform: translate(-1.5px, 2.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
76% {
|
||||
transform: translate(-1.5px, 2.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
78% {
|
||||
transform: translate(-1.5px, 2.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
80% {
|
||||
transform: translate(-1.5px, 0.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
82% {
|
||||
transform: translate(-1.5px, 0.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
84% {
|
||||
transform: translate(-0.5px, 0.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
86% {
|
||||
transform: translate(2.5px, 1.5px) rotate(0.5deg);
|
||||
}
|
||||
|
||||
88% {
|
||||
transform: translate(-1.5px, 0.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
90% {
|
||||
transform: translate(-1.5px, -0.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
92% {
|
||||
transform: translate(-1.5px, -1.5px) rotate(1.5deg);
|
||||
}
|
||||
|
||||
94% {
|
||||
transform: translate(0.5px, 0.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
96% {
|
||||
transform: translate(2.5px, -0.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
98% {
|
||||
transform: translate(-1.5px, -1.5px) rotate(-0.5deg);
|
||||
}
|
||||
|
||||
0%, 100% {
|
||||
transform: translate(0, 0) rotate(0);
|
||||
}
|
||||
}
|
||||
@ -5,114 +5,191 @@ import Browser from './browser'
|
||||
|
||||
import axios from 'axios'
|
||||
import Vue from '../lib/vue/vue.min'
|
||||
|
||||
import waifuTips from '../config/waifu-tip.json'
|
||||
const isMobile = (Browser.versions.mobile && window.screen.width < 800)
|
||||
|
||||
function setScrollZero() {
|
||||
let $sct = document.querySelectorAll('.tools-section')
|
||||
Array.prototype.forEach.call($sct, (em) => {
|
||||
em.scrollTop = 0
|
||||
})
|
||||
let $sct = document.querySelectorAll('.tools-section')
|
||||
Array.prototype.forEach.call($sct, (em) => {
|
||||
em.scrollTop = 0
|
||||
})
|
||||
}
|
||||
var waifuTipTimer = null
|
||||
new Vue({
|
||||
el: '#container',
|
||||
data: {
|
||||
isCtnShow: false,
|
||||
isShow: false,
|
||||
items: [],
|
||||
innerArchive: false,
|
||||
friends: false,
|
||||
aboutme: false,
|
||||
jsonFail: false,
|
||||
showTags: false,
|
||||
showCategories: false,
|
||||
search: null
|
||||
},
|
||||
methods: {
|
||||
stop (event) {
|
||||
event.stopPropagation()
|
||||
},
|
||||
chose (name, prefix) {
|
||||
this.search = prefix + name
|
||||
},
|
||||
clearChose () {
|
||||
this.search = null
|
||||
},
|
||||
openSlider (event, type) {
|
||||
event.stopPropagation()
|
||||
this.innerArchive = false
|
||||
this.friends = false
|
||||
this.aboutme = false
|
||||
this[type] = true
|
||||
this.isShow = true
|
||||
this.isCtnShow = true
|
||||
setScrollZero()
|
||||
},
|
||||
hideSlider () {
|
||||
if (this.isShow) {
|
||||
this.isShow = false
|
||||
setTimeout(() => {
|
||||
this.isCtnShow = false
|
||||
}, 300)
|
||||
}
|
||||
}
|
||||
},
|
||||
filters: {
|
||||
urlformat: (str) => {
|
||||
return (window.yiliaConfig && window.yiliaConfig.root) ? window.yiliaConfig.root + str : '/' + str;
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
search (newVal, oldVal) {
|
||||
if(newVal) {
|
||||
handleSearch.call(this, newVal.toLowerCase())
|
||||
} else {
|
||||
this.items.forEach(function(item){
|
||||
item.isHide = false
|
||||
})
|
||||
}
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
axios.get(window.yiliaConfig.root + 'content.json?t=' + (+ new Date()))
|
||||
.then((res)=>{
|
||||
this.items = res.data
|
||||
}).catch((err) => {
|
||||
this.jsonFail = true
|
||||
})
|
||||
}
|
||||
el: '#container',
|
||||
data: {
|
||||
isCtnShow: false,
|
||||
isShow: false,
|
||||
items: [],
|
||||
innerArchive: false,
|
||||
friends: false,
|
||||
aboutme: false,
|
||||
jsonFail: false,
|
||||
showTags: false,
|
||||
showCategories: false,
|
||||
search: null,
|
||||
waifu: {
|
||||
tip: null, // 提示语文字
|
||||
tipOpacity: 0, // 提示语框透明度
|
||||
showTools: false // 显示工具栏
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
stop (event) {
|
||||
event.stopPropagation()
|
||||
},
|
||||
chose (name, prefix) {
|
||||
this.search = prefix + name
|
||||
},
|
||||
clearChose () {
|
||||
this.search = null
|
||||
},
|
||||
openSlider (event, type) {
|
||||
event.stopPropagation()
|
||||
this.innerArchive = false
|
||||
this.friends = false
|
||||
this.aboutme = false
|
||||
this[type] = true
|
||||
this.isShow = true
|
||||
this.isCtnShow = true
|
||||
setScrollZero()
|
||||
},
|
||||
hideSlider () {
|
||||
if (this.isShow) {
|
||||
this.isShow = false
|
||||
setTimeout(() => {this.isCtnShow = false}, 300)
|
||||
}
|
||||
},
|
||||
linkMouseover(name) {
|
||||
this.showMessage(waifuTips.mouseover[name], 3000)
|
||||
},
|
||||
toolsClick(name) {
|
||||
this.showMessage(waifuTips.click[name])
|
||||
if(name in waifuTools) {
|
||||
waifuTools[name].call(this)
|
||||
}
|
||||
},
|
||||
showMessage (text, time) {
|
||||
if(!text) return
|
||||
if(Array.isArray(text)) text = text[Math.floor(Math.random() * text.length + 1)-1]
|
||||
this.waifu.tip = text
|
||||
this.waifu.tipOpacity = 1
|
||||
if(waifuTipTimer) {
|
||||
clearTimeout(waifuTipTimer)
|
||||
waifuTipTimer = null
|
||||
}
|
||||
waifuTipTimer = setTimeout(()=>{
|
||||
this.waifu.tipOpacity = 0
|
||||
waifuTipTimer = null
|
||||
}, time || 5000)
|
||||
}
|
||||
},
|
||||
filters: {
|
||||
urlformat: (str) => {
|
||||
return (window.yiliaConfig && window.yiliaConfig.root) ? window.yiliaConfig.root + str : '/' + str;
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
search (newVal, oldVal) {
|
||||
if(newVal) {
|
||||
handleSearch.call(this, newVal.toLowerCase())
|
||||
} else {
|
||||
this.items.forEach(function(item){
|
||||
item.isHide = false
|
||||
})
|
||||
}
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
axios.get(window.yiliaConfig.root + 'content.json?t=' + (+ new Date()))
|
||||
.then((res)=>{
|
||||
this.items = res.data
|
||||
}).catch((err) => {
|
||||
this.jsonFail = true
|
||||
})
|
||||
this.showMessage(welcomeMessage(), 6000)
|
||||
document.addEventListener('copy', () => {
|
||||
this.showMessage('你都复制了些什么呀,转载要记得加上出处哦');
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
function handleSearch(val) {
|
||||
var type
|
||||
if (val.startsWith('#')) {
|
||||
val = val.substr(1, val.length)
|
||||
type = 'tag'
|
||||
} else if (val.startsWith('$')) {
|
||||
val = val.substr(1, val.length)
|
||||
type = 'category'
|
||||
} else {
|
||||
type = 'title'
|
||||
}
|
||||
this.items.forEach((item) => {
|
||||
switch(type) {
|
||||
case 'title' :
|
||||
item.isHide = item.title.toLowerCase().indexOf(val) < 0
|
||||
break
|
||||
case 'tag' :
|
||||
item.isHide = Array.prototype.every.call(item.tags, function(tag){
|
||||
return tag.name.toLowerCase() !== val
|
||||
})
|
||||
break
|
||||
case 'category' :
|
||||
item.isHide = Array.prototype.every.call(item.categories, function(category){
|
||||
return category.name.toLowerCase() !== val
|
||||
})
|
||||
break
|
||||
}
|
||||
})
|
||||
var type
|
||||
if (val.startsWith('#')) {
|
||||
val = val.substr(1, val.length)
|
||||
type = 'tag'
|
||||
} else if (val.startsWith('$')) {
|
||||
val = val.substr(1, val.length)
|
||||
type = 'category'
|
||||
} else {
|
||||
type = 'title'
|
||||
}
|
||||
this.items.forEach((item) => {
|
||||
switch(type) {
|
||||
case 'title' :
|
||||
item.isHide = item.title.toLowerCase().indexOf(val) < 0
|
||||
break
|
||||
case 'tag' :
|
||||
item.isHide = Array.prototype.every.call(item.tags, function(tag){
|
||||
return tag.name.toLowerCase() !== val
|
||||
})
|
||||
break
|
||||
case 'category' :
|
||||
item.isHide = Array.prototype.every.call(item.categories, function(category){
|
||||
return category.name.toLowerCase() !== val
|
||||
})
|
||||
break
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
function welcomeMessage() {
|
||||
let now = new Date().getHours()
|
||||
let text
|
||||
if (now > 23 || now <= 5) {
|
||||
text = '你是夜猫子呀?这么晚还不睡觉,明天起的来嘛'
|
||||
} else if (now > 5 && now <= 7) {
|
||||
text = '早上好!一日之计在于晨,美好的一天就要开始了'
|
||||
} else if (now > 7 && now <= 11) {
|
||||
text = '上午好!工作顺利嘛,不要久坐,多起来走动走动哦!'
|
||||
} else if (now > 11 && now <= 14) {
|
||||
text = '中午了,工作了一个上午,现在是午餐时间!'
|
||||
} else if (now > 14 && now <= 17) {
|
||||
text = '午后很容易犯困呢,今天的运动目标完成了吗?'
|
||||
} else if (now > 17 && now <= 19) {
|
||||
text = '傍晚了!窗外夕阳的景色很美丽呢,最美不过夕阳红~'
|
||||
} else if (now > 19 && now <= 21) {
|
||||
text = '晚上好,今天过得怎么样?'
|
||||
} else if (now > 21 && now <= 23) {
|
||||
text = '已经这么晚了呀,早点休息吧,晚安~'
|
||||
} else {
|
||||
text = '嗨~ 快来逗我玩吧!'
|
||||
}
|
||||
return text
|
||||
}
|
||||
|
||||
const waifuTools = {
|
||||
"tools.photo"() {
|
||||
window.Live2D.captureName = 'Kesshouban.png'
|
||||
window.Live2D.captureFrame = true
|
||||
},
|
||||
"tools.close"() {
|
||||
setTimeout(function() {
|
||||
document.querySelector('.waifu').style.display = 'none';
|
||||
}, 1300);
|
||||
},
|
||||
"tools.eye"() {
|
||||
//TODO 切换到夜间模式
|
||||
},
|
||||
"tools.chart"() {
|
||||
// 一言
|
||||
axios.get('https://api.imjad.cn/hitokoto/?cat=&charset=utf-8&length=55&encode=json').then(res => {
|
||||
this.showMessage(`${res.data.hitokoto} --${res.data.source}`)
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
if (!isMobile) {
|
||||
Anm.init()
|
||||
Anm.init()
|
||||
}
|
||||
|
||||
20
themes/yilia/source-src/js/waifu.js
Normal file
20
themes/yilia/source-src/js/waifu.js
Normal file
@ -0,0 +1,20 @@
|
||||
import '../lib/live2d'
|
||||
// 浏览器判断
|
||||
import Browser from './browser'
|
||||
const isMobile = (Browser.versions.mobile && window.screen.width < 800)
|
||||
// 加载live2d模型
|
||||
if(!isMobile) {
|
||||
loadlive2d('live2d', '/model/model.json')
|
||||
document.querySelector('.waifu').style.display = 'block'
|
||||
}
|
||||
|
||||
|
||||
// 控制台
|
||||
console.log(
|
||||
'\n %c Silence %c https://www.colorfulsweet.site \n',
|
||||
'color:#FFFFFB;background:#ffa628;padding:5px 0;border-radius:.5rem 0 0 .5rem;',
|
||||
'background: #efefef;padding:5px 0;border-radius:0 .5rem .5rem 0;'
|
||||
)
|
||||
console.log(`页面加载消耗了 ${(Math.round(performance.now()*100)/100/1000).toFixed(2)}s`)
|
||||
|
||||
|
||||
2
themes/yilia/source-src/lib/live2d.js
Executable file
2
themes/yilia/source-src/lib/live2d.js
Executable file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
themes/yilia/source/js/mobile.20f43113c8272156b4bc.js
Normal file
1
themes/yilia/source/js/mobile.20f43113c8272156b4bc.js
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
themes/yilia/source/js/waifu.0fd1dce4d3ba6f0ae31d.js
Normal file
1
themes/yilia/source/js/waifu.0fd1dce4d3ba6f0ae31d.js
Normal file
File diff suppressed because one or more lines are too long
33
themes/yilia/source/model/model.json
Executable file
33
themes/yilia/source/model/model.json
Executable file
@ -0,0 +1,33 @@
|
||||
{
|
||||
"type": "Live2D Model Setting",
|
||||
"name": "model",
|
||||
"model": "model.moc",
|
||||
"textures": [
|
||||
"texture_00.png"
|
||||
],
|
||||
"layout":{
|
||||
"center_x":-0.3,
|
||||
"center_y":-0.08,
|
||||
"width":1.9
|
||||
},
|
||||
"hit_areas_custom":{
|
||||
"head_x":[-0.80, 0.85],
|
||||
"head_y":[-0.45, 0.45],
|
||||
"body_x":[-0.75, 0.45],
|
||||
"body_y":[-0.50, 0]
|
||||
},
|
||||
"motions":{
|
||||
"idle":[
|
||||
{"file":"motions/Idle.mtn"}
|
||||
],
|
||||
"sleepy":[
|
||||
{"file":"motions/Nemui.mtn"}
|
||||
],
|
||||
"flick_head":[
|
||||
{"file":"motions/Anone_Synced.mtn"}
|
||||
],
|
||||
"tap_body":[
|
||||
{"file":"motions/Dance.mtn"}
|
||||
]
|
||||
}
|
||||
}
|
||||
BIN
themes/yilia/source/model/model.moc
Executable file
BIN
themes/yilia/source/model/model.moc
Executable file
Binary file not shown.
38
themes/yilia/source/model/motions/Anone_Synced.mtn
Executable file
38
themes/yilia/source/model/motions/Anone_Synced.mtn
Executable file
File diff suppressed because one or more lines are too long
26
themes/yilia/source/model/motions/Dance.mtn
Executable file
26
themes/yilia/source/model/motions/Dance.mtn
Executable file
@ -0,0 +1,26 @@
|
||||
# Live2D Animator Motion Data
|
||||
$fps=60.0
|
||||
|
||||
$fadein=500
|
||||
|
||||
$fadeout=500
|
||||
|
||||
PARAM_ANGLE_X=-30,-29.89,-29.568,-29.033,-28.317,-27.422,-26.359,-25.141,-23.749,-22.248,-20.625,-18.89,-17.055,-15.091,-13.087,-11.016,-8.888,-6.717,-4.468,-2.239,0,2.239,4.468,6.717,8.888,11.016,13.087,15.091,17.055,18.89,20.625,22.248,23.749,25.141,26.359,27.422,28.317,29.033,29.568,29.89,30,29.89,29.568,29.033,28.317,27.422,26.359,25.141,23.749,22.248,20.625,18.89,17.055,15.091,13.087,11.016,8.888,6.717,4.468,2.239,0,-2.239,-4.468,-6.717,-8.888,-11.016,-13.087,-15.091,-17.055,-18.89,-20.625,-22.248,-23.749,-25.141,-26.359,-27.422,-28.317,-29.033,-29.568,-29.89,-30,-29.886,-29.543,-28.984,-28.237,-27.286,-26.178,-24.884,-23.465,-21.877,-20.193,-18.36,-16.46,-14.431,-12.363,-10.187,-7.999,-5.725,-3.465,-1.142,1.142,3.465,5.725,7.999,10.187,12.363,14.431,16.46,18.36,20.193,21.877,23.465,24.884,26.178,27.286,28.237,28.984,29.543,29.886,30,29.89,29.568,29.033,28.317,27.422,26.359,25.141,23.749,22.248,20.625,18.89,17.055,15.091,13.087,11.016,8.888,6.717,4.468,2.239,0,-2.239,-4.468,-6.717,-8.888,-11.016,-13.087,-15.091,-17.055,-18.89,-20.625,-22.248,-23.749,-25.141,-26.359,-27.422,-28.317,-29.033,-29.568,-29.89,-30,-29.894,-29.585,-29.082,-28.395,-27.536,-26.515,-25.342,-24.028,-22.583,-21.017,-19.377,-17.604,-15.743,-13.803,-11.794,-9.729,-7.616,-5.466,-3.29,-1.098,1.098,3.29,5.466,7.616,9.729,11.794,13.803,15.743,17.604,19.377,21.017,22.583,24.028,25.342,26.515,27.536,28.395,29.082,29.585,29.894,30,29.89,29.568,29.033,28.317,27.422,26.359,25.141,23.749,22.248,20.625,18.89,17.055,15.091,13.087,11.016,8.888,6.717,4.468,2.239,0,-2.239,-4.468,-6.717,-8.888,-11.016,-13.087,-15.091,-17.055,-18.89,-20.625,-22.248,-23.749,-25.141,-26.359,-27.422,-28.317,-29.033,-29.568,-29.89,-30,-29.89,-29.568,-29.033,-28.317,-27.422,-26.359,-25.141,-23.749,-22.248,-20.625,-18.89,-17.055,-15.091,-13.087,-11.016,-8.888,-6.717,-4.468,-2.239,0,2.239,4.468,6.717,8.888,11.016,13.087,15.091,17.055,18.89,20.625,22.248,23.749,25.141,26.359,27.422,28.317,29.033,29.568,29.89,30,29.89,29.568,29.033,28.317,27.422,26.359,25.141,23.749,22.248,20.625,18.89,17.055,15.091,13.087,11.016,8.888,6.717,4.468,2.239,0,-2.239,-4.468,-6.717,-8.888,-11.016,-13.087,-15.091,-17.055,-18.89,-20.625,-22.248,-23.749,-25.141,-26.359,-27.422,-28.317,-29.033,-29.568,-29.89,-30,-29.886,-29.543,-28.984,-28.237,-27.286,-26.178,-24.884,-23.465,-21.877,-20.193,-18.36,-16.46,-14.431,-12.363,-10.187,-7.999,-5.725,-3.465,-1.142,1.142,3.465,5.725,7.999,10.187,12.363,14.431,16.46,18.36,20.193,21.877,23.465,24.884,26.178,27.286,28.237,28.984,29.543,29.886,30,29.89,29.568,29.033,28.317,27.422,26.359,25.141,23.749,22.248,20.625,18.89,17.055,15.091,13.087,11.016,8.888,6.717,4.468,2.239,0,-2.239,-4.468,-6.717,-8.888,-11.016,-13.087,-15.091,-17.055,-18.89,-20.625,-22.248,-23.749,-25.141,-26.359,-27.422,-28.317,-29.033,-29.568,-29.89,-30,-29.894,-29.585,-29.082,-28.395,-27.536,-26.515,-25.342,-24.028,-22.583,-21.017,-19.377,-17.604,-15.743,-13.803,-11.794,-9.729,-7.616,-5.466,-3.29,-1.098,1.098,3.29,5.466,7.616,9.729,11.794,13.803,15.743,17.604,19.377,21.017,22.583,24.028,25.342,26.515,27.536,28.395,29.082,29.585,29.894,30,29.89,29.568,29.033,28.317,27.422,26.359,25.141,23.749,22.248,20.625,18.89,17.055,15.091,13.087,11.016,8.888,6.717,4.468,2.239,0,-2.239,-4.468,-6.717,-8.888,-11.016,-13.087,-15.091,-17.055,-18.89,-20.625,-22.248,-23.749,-25.141,-26.359,-27.422,-28.317,-29.033,-29.568,-29.89,-30
|
||||
PARAM_ANGLE_Y=-20,-19.781,-19.151,-18.179,-16.866,-15.272,-13.441,-11.459,-9.286,-7.005,-4.659,-2.341,0.005,2.286,4.459,6.441,8.272,9.866,11.179,12.151,12.781,13,12.734,11.976,10.784,9.214,7.327,5.221,2.875,0.383,-2.196,-4.804,-7.383,-9.875,-12.221,-14.327,-16.214,-17.784,-18.976,-19.734,-20,-19.714,-18.894,-17.627,-15.916,-13.839,-11.453,-8.871,-6.039,-3.067,-0.011,3.011,6.067,9.039,11.871,14.453,16.839,18.916,20.627,21.894,22.714,23,22.654,21.666,20.112,18.067,15.608,12.864,9.806,6.559,3.199,-0.199,-3.559,-6.806,-9.864,-12.608,-15.067,-17.112,-18.666,-19.654,-20,-19.763,-19.083,-17.985,-16.562,-14.844,-12.88,-10.72,-8.365,-5.957,-3.5,-1.043,1.365,3.72,5.88,7.844,9.562,10.985,12.083,12.763,13,12.734,11.976,10.784,9.214,7.327,5.221,2.875,0.383,-2.196,-4.804,-7.383,-9.875,-12.221,-14.327,-16.214,-17.784,-18.976,-19.734,-20,-19.714,-18.894,-17.627,-15.916,-13.839,-11.453,-8.871,-6.039,-3.067,-0.011,3.011,6.067,9.039,11.871,14.453,16.839,18.916,20.627,21.894,22.714,23,22.654,21.666,20.112,18.067,15.608,12.864,9.806,6.559,3.199,-0.199,-3.559,-6.806,-9.864,-12.608,-15.067,-17.112,-18.666,-19.654,-20,-19.798,-19.233,-18.318,-17.129,-15.652,-13.986,-12.096,-10.099,-7.946,-5.766,-3.5,-1.234,0.946,3.099,5.096,6.986,8.652,10.129,11.318,12.233,12.798,13,12.734,11.976,10.784,9.214,7.327,5.221,2.875,0.383,-2.196,-4.804,-7.383,-9.875,-12.221,-14.327,-16.214,-17.784,-18.976,-19.734,-20,-19.714,-18.894,-17.627,-15.916,-13.839,-11.453,-8.871,-6.039,-3.067,-0.011,3.011,6.067,9.039,11.871,14.453,16.839,18.916,20.627,21.894,22.714,23,22.654,21.666,20.112,18.067,15.608,12.864,9.806,6.559,3.199,-0.199,-3.559,-6.806,-9.864,-12.608,-15.067,-17.112,-18.666,-19.654,-20,-19.781,-19.151,-18.179,-16.866,-15.272,-13.441,-11.459,-9.286,-7.005,-4.659,-2.341,0.005,2.286,4.459,6.441,8.272,9.866,11.179,12.151,12.781,13,12.734,11.976,10.784,9.214,7.327,5.221,2.875,0.383,-2.196,-4.804,-7.383,-9.875,-12.221,-14.327,-16.214,-17.784,-18.976,-19.734,-20,-19.714,-18.894,-17.627,-15.916,-13.839,-11.453,-8.871,-6.039,-3.067,-0.011,3.011,6.067,9.039,11.871,14.453,16.839,18.916,20.627,21.894,22.714,23,22.654,21.666,20.112,18.067,15.608,12.864,9.806,6.559,3.199,-0.199,-3.559,-6.806,-9.864,-12.608,-15.067,-17.112,-18.666,-19.654,-20,-19.763,-19.083,-17.985,-16.562,-14.844,-12.88,-10.72,-8.365,-5.957,-3.5,-1.043,1.365,3.72,5.88,7.844,9.562,10.985,12.083,12.763,13,12.734,11.976,10.784,9.214,7.327,5.221,2.875,0.383,-2.196,-4.804,-7.383,-9.875,-12.221,-14.327,-16.214,-17.784,-18.976,-19.734,-20,-19.714,-18.894,-17.627,-15.916,-13.839,-11.453,-8.871,-6.039,-3.067,-0.011,3.011,6.067,9.039,11.871,14.453,16.839,18.916,20.627,21.894,22.714,23,22.654,21.666,20.112,18.067,15.608,12.864,9.806,6.559,3.199,-0.199,-3.559,-6.806,-9.864,-12.608,-15.067,-17.112,-18.666,-19.654,-20,-19.798,-19.233,-18.318,-17.129,-15.652,-13.986,-12.096,-10.099,-7.946,-5.766,-3.5,-1.234,0.946,3.099,5.096,6.986,8.652,10.129,11.318,12.233,12.798,13,12.734,11.976,10.784,9.214,7.327,5.221,2.875,0.383,-2.196,-4.804,-7.383,-9.875,-12.221,-14.327,-16.214,-17.784,-18.976,-19.734,-20,-19.714,-18.894,-17.627,-15.916,-13.839,-11.453,-8.871,-6.039,-3.067,-0.011,3.011,6.067,9.039,11.871,14.453,16.839,18.916,20.627,21.894,22.714,23,22.654,21.666,20.112,18.067,15.608,12.864,9.806,6.559,3.199,-0.199,-3.559,-6.806,-9.864,-12.608,-15.067,-17.112,-18.666,-19.654,-20
|
||||
PARAM_ANGLE_Z=-30,-29.89,-29.568,-29.033,-28.317,-27.422,-26.359,-25.141,-23.749,-22.248,-20.625,-18.89,-17.055,-15.091,-13.087,-11.016,-8.888,-6.717,-4.468,-2.239,0,2.239,4.468,6.717,8.888,11.016,13.087,15.091,17.055,18.89,20.625,22.248,23.749,25.141,26.359,27.422,28.317,29.033,29.568,29.89,30,29.89,29.568,29.033,28.317,27.422,26.359,25.141,23.749,22.248,20.625,18.89,17.055,15.091,13.087,11.016,8.888,6.717,4.468,2.239,0,-2.239,-4.468,-6.717,-8.888,-11.016,-13.087,-15.091,-17.055,-18.89,-20.625,-22.248,-23.749,-25.141,-26.359,-27.422,-28.317,-29.033,-29.568,-29.89,-30,-29.886,-29.543,-28.984,-28.237,-27.286,-26.178,-24.884,-23.465,-21.877,-20.193,-18.36,-16.46,-14.431,-12.363,-10.187,-7.999,-5.725,-3.465,-1.142,1.142,3.465,5.725,7.999,10.187,12.363,14.431,16.46,18.36,20.193,21.877,23.465,24.884,26.178,27.286,28.237,28.984,29.543,29.886,30,29.89,29.568,29.033,28.317,27.422,26.359,25.141,23.749,22.248,20.625,18.89,17.055,15.091,13.087,11.016,8.888,6.717,4.468,2.239,0,-2.239,-4.468,-6.717,-8.888,-11.016,-13.087,-15.091,-17.055,-18.89,-20.625,-22.248,-23.749,-25.141,-26.359,-27.422,-28.317,-29.033,-29.568,-29.89,-30,-29.894,-29.585,-29.082,-28.395,-27.536,-26.515,-25.342,-24.028,-22.583,-21.017,-19.377,-17.604,-15.743,-13.803,-11.794,-9.729,-7.616,-5.466,-3.29,-1.098,1.098,3.29,5.466,7.616,9.729,11.794,13.803,15.743,17.604,19.377,21.017,22.583,24.028,25.342,26.515,27.536,28.395,29.082,29.585,29.894,30,29.89,29.568,29.033,28.317,27.422,26.359,25.141,23.749,22.248,20.625,18.89,17.055,15.091,13.087,11.016,8.888,6.717,4.468,2.239,0,-2.239,-4.468,-6.717,-8.888,-11.016,-13.087,-15.091,-17.055,-18.89,-20.625,-22.248,-23.749,-25.141,-26.359,-27.422,-28.317,-29.033,-29.568,-29.89,-30,-29.89,-29.568,-29.033,-28.317,-27.422,-26.359,-25.141,-23.749,-22.248,-20.625,-18.89,-17.055,-15.091,-13.087,-11.016,-8.888,-6.717,-4.468,-2.239,0,2.239,4.468,6.717,8.888,11.016,13.087,15.091,17.055,18.89,20.625,22.248,23.749,25.141,26.359,27.422,28.317,29.033,29.568,29.89,30,29.89,29.568,29.033,28.317,27.422,26.359,25.141,23.749,22.248,20.625,18.89,17.055,15.091,13.087,11.016,8.888,6.717,4.468,2.239,0,-2.239,-4.468,-6.717,-8.888,-11.016,-13.087,-15.091,-17.055,-18.89,-20.625,-22.248,-23.749,-25.141,-26.359,-27.422,-28.317,-29.033,-29.568,-29.89,-30,-29.886,-29.543,-28.984,-28.237,-27.286,-26.178,-24.884,-23.465,-21.877,-20.193,-18.36,-16.46,-14.431,-12.363,-10.187,-7.999,-5.725,-3.465,-1.142,1.142,3.465,5.725,7.999,10.187,12.363,14.431,16.46,18.36,20.193,21.877,23.465,24.884,26.178,27.286,28.237,28.984,29.543,29.886,30,29.89,29.568,29.033,28.317,27.422,26.359,25.141,23.749,22.248,20.625,18.89,17.055,15.091,13.087,11.016,8.888,6.717,4.468,2.239,0,-2.239,-4.468,-6.717,-8.888,-11.016,-13.087,-15.091,-17.055,-18.89,-20.625,-22.248,-23.749,-25.141,-26.359,-27.422,-28.317,-29.033,-29.568,-29.89,-30,-29.894,-29.585,-29.082,-28.395,-27.536,-26.515,-25.342,-24.028,-22.583,-21.017,-19.377,-17.604,-15.743,-13.803,-11.794,-9.729,-7.616,-5.466,-3.29,-1.098,1.098,3.29,5.466,7.616,9.729,11.794,13.803,15.743,17.604,19.377,21.017,22.583,24.028,25.342,26.515,27.536,28.395,29.082,29.585,29.894,30,29.89,29.568,29.033,28.317,27.422,26.359,25.141,23.749,22.248,20.625,18.89,17.055,15.091,13.087,11.016,8.888,6.717,4.468,2.239,0,-2.239,-4.468,-6.717,-8.888,-11.016,-13.087,-15.091,-17.055,-18.89,-20.625,-22.248,-23.749,-25.141,-26.359,-27.422,-28.317,-29.033,-29.568,-29.89,-30
|
||||
PARAM_BODY_ANGLE_X=-10,-9.962,-9.848,-9.661,-9.412,-9.095,-8.726,-8.295,-7.822,-7.292,-6.731,-6.12,-5.487,-4.81,-4.121,-3.396,-2.666,-1.908,-1.155,-0.381,0.381,1.155,1.908,2.666,3.396,4.121,4.81,5.487,6.12,6.731,7.292,7.822,8.295,8.726,9.095,9.412,9.661,9.848,9.962,10,7,6.15,5.322,4.501,3.718,2.958,2.22,1.504,0.798,0.127,-0.522,-1.149,-1.754,-2.348,-2.909,-3.448,-3.965,-4.46,-4.943,-5.395,-5.825,-6.234,-6.622,-6.995,-7.339,-7.662,-7.964,-8.245,-8.51,-8.748,-8.966,-9.162,-9.338,-9.496,-9.63,-9.743,-9.835,-9.907,-9.959,-9.99,-10,-9.959,-9.839,-9.644,-9.38,-9.049,-8.664,-8.216,-7.715,-7.166,-6.573,-5.941,-5.273,-4.575,-3.863,-3.117,-2.353,-1.576,-0.79,0,0.79,1.576,2.353,3.117,3.863,4.575,5.273,5.941,6.573,7.166,7.715,8.216,8.664,9.049,9.38,9.644,9.839,9.959,10,7,6.15,5.322,4.501,3.718,2.958,2.22,1.504,0.798,0.127,-0.522,-1.149,-1.754,-2.348,-2.909,-3.448,-3.965,-4.46,-4.943,-5.395,-5.825,-6.234,-6.622,-6.995,-7.339,-7.662,-7.964,-8.245,-8.51,-8.748,-8.966,-9.162,-9.338,-9.496,-9.63,-9.743,-9.835,-9.907,-9.959,-9.99,-10,-9.963,-9.856,-9.678,-9.439,-9.141,-8.786,-8.38,-7.916,-7.416,-6.875,-6.297,-5.685,-5.03,-4.362,-3.672,-2.963,-2.239,-1.489,-0.746,0,0.746,1.489,2.239,2.963,3.672,4.362,5.03,5.685,6.297,6.875,7.416,7.916,8.38,8.786,9.141,9.439,9.678,9.856,9.963,10,7,6.15,5.322,4.501,3.718,2.958,2.22,1.504,0.798,0.127,-0.522,-1.149,-1.754,-2.348,-2.909,-3.448,-3.965,-4.46,-4.943,-5.395,-5.825,-6.234,-6.622,-6.995,-7.339,-7.662,-7.964,-8.245,-8.51,-8.748,-8.966,-9.162,-9.338,-9.496,-9.63,-9.743,-9.835,-9.907,-9.959,-9.99,-10,-9.962,-9.848,-9.661,-9.412,-9.095,-8.726,-8.295,-7.822,-7.292,-6.731,-6.12,-5.487,-4.81,-4.121,-3.396,-2.666,-1.908,-1.155,-0.381,0.381,1.155,1.908,2.666,3.396,4.121,4.81,5.487,6.12,6.731,7.292,7.822,8.295,8.726,9.095,9.412,9.661,9.848,9.962,10,7,6.15,5.322,4.501,3.718,2.958,2.22,1.504,0.798,0.127,-0.522,-1.149,-1.754,-2.348,-2.909,-3.448,-3.965,-4.46,-4.943,-5.395,-5.825,-6.234,-6.622,-6.995,-7.339,-7.662,-7.964,-8.245,-8.51,-8.748,-8.966,-9.162,-9.338,-9.496,-9.63,-9.743,-9.835,-9.907,-9.959,-9.99,-10,-9.959,-9.839,-9.644,-9.38,-9.049,-8.664,-8.216,-7.715,-7.166,-6.573,-5.941,-5.273,-4.575,-3.863,-3.117,-2.353,-1.576,-0.79,0,0.79,1.576,2.353,3.117,3.863,4.575,5.273,5.941,6.573,7.166,7.715,8.216,8.664,9.049,9.38,9.644,9.839,9.959,10,7,6.15,5.322,4.501,3.718,2.958,2.22,1.504,0.798,0.127,-0.522,-1.149,-1.754,-2.348,-2.909,-3.448,-3.965,-4.46,-4.943,-5.395,-5.825,-6.234,-6.622,-6.995,-7.339,-7.662,-7.964,-8.245,-8.51,-8.748,-8.966,-9.162,-9.338,-9.496,-9.63,-9.743,-9.835,-9.907,-9.959,-9.99,-10,-9.963,-9.856,-9.678,-9.439,-9.141,-8.786,-8.38,-7.916,-7.416,-6.875,-6.297,-5.685,-5.03,-4.362,-3.672,-2.963,-2.239,-1.489,-0.746,0,0.746,1.489,2.239,2.963,3.672,4.362,5.03,5.685,6.297,6.875,7.416,7.916,8.38,8.786,9.141,9.439,9.678,9.856,9.963,10,7,6.15,5.322,4.501,3.718,2.958,2.22,1.504,0.798,0.127,-0.522,-1.149,-1.754,-2.348,-2.909,-3.448,-3.965,-4.46,-4.943,-5.395,-5.825,-6.234,-6.622,-6.995,-7.339,-7.662,-7.964,-8.245,-8.51,-8.748,-8.966,-9.162,-9.338,-9.496,-9.63,-9.743,-9.835,-9.907,-9.959,-9.99,-10
|
||||
PARAM_BODY_ANGLE_Y=-10,-9.867,-9.486,-8.896,-8.1,-7.134,-6.025,-4.823,-3.507,-2.124,-0.703,0.703,2.124,3.507,4.823,6.025,7.134,8.1,8.896,9.486,9.867,10,9.864,9.475,8.858,8.042,7.052,5.937,4.683,3.335,1.92,0.465,-1.003,-2.457,-3.871,-5.194,-6.449,-7.584,-8.572,-9.386,-10,-9.182,-8.233,-7.151,-5.995,-4.766,-3.48,-2.157,-0.789,0.552,1.875,3.161,4.391,5.568,6.629,7.578,8.397,9.067,9.578,9.891,10,9.881,9.539,8.983,8.256,7.372,6.352,5.219,3.968,2.671,1.325,-0.046,-1.422,-2.808,-4.126,-5.384,-6.558,-7.628,-8.588,-9.379,-10,-9.839,-9.288,-8.278,-6.742,-4.745,-2.496,-0.264,1.75,3.479,4.901,6.108,7.092,7.879,8.513,9.015,9.396,9.674,9.862,9.966,10,9.864,9.475,8.858,8.042,7.052,5.937,4.683,3.335,1.92,0.465,-1.003,-2.457,-3.871,-5.194,-6.449,-7.584,-8.572,-9.386,-10,-9.182,-8.233,-7.151,-5.995,-4.766,-3.48,-2.157,-0.789,0.552,1.875,3.161,4.391,5.568,6.629,7.578,8.397,9.067,9.578,9.891,10,9.881,9.539,8.983,8.256,7.372,6.352,5.219,3.968,2.671,1.325,-0.046,-1.422,-2.808,-4.126,-5.384,-6.558,-7.628,-8.588,-9.379,-10,-9.877,-9.535,-8.981,-8.26,-7.365,-6.355,-5.21,-3.999,-2.695,-1.373,0,1.373,2.695,3.999,5.21,6.355,7.365,8.26,8.981,9.535,9.877,10,9.864,9.475,8.858,8.042,7.052,5.937,4.683,3.335,1.92,0.465,-1.003,-2.457,-3.871,-5.194,-6.449,-7.584,-8.572,-9.386,-10,-9.182,-8.233,-7.151,-5.995,-4.766,-3.48,-2.157,-0.789,0.552,1.875,3.161,4.391,5.568,6.629,7.578,8.397,9.067,9.578,9.891,10,9.881,9.539,8.983,8.256,7.372,6.352,5.219,3.968,2.671,1.325,-0.046,-1.422,-2.808,-4.126,-5.384,-6.558,-7.628,-8.588,-9.379,-10,-9.867,-9.475,-8.838,-7.991,-6.941,-5.734,-4.402,-2.977,-1.489,0,1.489,2.921,4.296,5.537,6.675,7.667,8.497,9.141,9.618,9.904,10,9.864,9.475,8.858,8.042,7.052,5.937,4.683,3.335,1.92,0.465,-1.003,-2.457,-3.871,-5.194,-6.449,-7.584,-8.572,-9.386,-10,-9.182,-8.233,-7.151,-5.995,-4.766,-3.48,-2.157,-0.789,0.552,1.875,3.161,4.391,5.568,6.629,7.578,8.397,9.067,9.578,9.891,10,9.881,9.539,8.983,8.256,7.372,6.352,5.219,3.968,2.671,1.325,-0.046,-1.422,-2.808,-4.126,-5.384,-6.558,-7.628,-8.588,-9.379,-10,-9.856,-9.444,-8.779,-7.916,-6.875,-5.685,-4.376,-2.949,-1.489,0,1.489,2.949,4.376,5.685,6.875,7.916,8.779,9.444,9.856,10,9.864,9.475,8.858,8.042,7.052,5.937,4.683,3.335,1.92,0.465,-1.003,-2.457,-3.871,-5.194,-6.449,-7.584,-8.572,-9.386,-10,-9.182,-8.233,-7.151,-5.995,-4.766,-3.48,-2.157,-0.789,0.552,1.875,3.161,4.391,5.568,6.629,7.578,8.397,9.067,9.578,9.891,10,9.881,9.539,8.983,8.256,7.372,6.352,5.219,3.968,2.671,1.325,-0.046,-1.422,-2.808,-4.126,-5.384,-6.558,-7.628,-8.588,-9.379,-10,-9.877,-9.535,-8.981,-8.26,-7.365,-6.355,-5.21,-3.999,-2.695,-1.373,0,1.373,2.695,3.999,5.21,6.355,7.365,8.26,8.981,9.535,9.877,10,9.864,9.475,8.858,8.042,7.052,5.937,4.683,3.335,1.92,0.465,-1.003,-2.457,-3.871,-5.194,-6.449,-7.584,-8.572,-9.386,-10,-9.182,-8.233,-7.151,-5.995,-4.766,-3.48,-2.157,-0.789,0.552,1.875,3.161,4.391,5.568,6.629,7.578,8.397,9.067,9.578,9.891,10,9.881,9.539,8.983,8.256,7.372,6.352,5.219,3.968,2.671,1.325,-0.046,-1.422,-2.808,-4.126,-5.384,-6.558,-7.628,-8.588,-9.379,-10
|
||||
BODY_STRETCH=-10,-9.963,-9.856,-9.678,-9.439,-9.141,-8.786,-8.38,-7.916,-7.416,-6.875,-6.297,-5.685,-5.03,-4.362,-3.672,-2.963,-2.239,-1.489,-0.746,0,0.746,1.489,2.239,2.963,3.672,4.362,5.03,5.685,6.297,6.875,7.416,7.916,8.38,8.786,9.141,9.439,9.678,9.856,9.963,10,9.963,9.856,9.678,9.439,9.141,8.786,8.38,7.916,7.416,6.875,6.297,5.685,5.03,4.362,3.672,2.963,2.239,1.489,0.746,0,-0.746,-1.489,-2.239,-2.963,-3.672,-4.362,-5.03,-5.685,-6.297,-6.875,-7.416,-7.916,-8.38,-8.786,-9.141,-9.439,-9.678,-9.856,-9.963,-10,-9.962,-9.848,-9.661,-9.412,-9.095,-8.726,-8.295,-7.822,-7.292,-6.731,-6.12,-5.487,-4.81,-4.121,-3.396,-2.666,-1.908,-1.155,-0.381,0.381,1.155,1.908,2.666,3.396,4.121,4.81,5.487,6.12,6.731,7.292,7.822,8.295,8.726,9.095,9.412,9.661,9.848,9.962,10,9.963,9.856,9.678,9.439,9.141,8.786,8.38,7.916,7.416,6.875,6.297,5.685,5.03,4.362,3.672,2.963,2.239,1.489,0.746,0,-0.746,-1.489,-2.239,-2.963,-3.672,-4.362,-5.03,-5.685,-6.297,-6.875,-7.416,-7.916,-8.38,-8.786,-9.141,-9.439,-9.678,-9.856,-9.963,-10,-9.965,-9.862,-9.694,-9.465,-9.179,-8.838,-8.447,-8.009,-7.528,-7.006,-6.459,-5.868,-5.248,-4.601,-3.931,-3.243,-2.539,-1.822,-1.097,-0.366,0.366,1.097,1.822,2.539,3.243,3.931,4.601,5.248,5.868,6.459,7.006,7.528,8.009,8.447,8.838,9.179,9.465,9.694,9.862,9.965,10,9.963,9.856,9.678,9.439,9.141,8.786,8.38,7.916,7.416,6.875,6.297,5.685,5.03,4.362,3.672,2.963,2.239,1.489,0.746,0,-0.746,-1.489,-2.239,-2.963,-3.672,-4.362,-5.03,-5.685,-6.297,-6.875,-7.416,-7.916,-8.38,-8.786,-9.141,-9.439,-9.678,-9.856,-9.963,-10,-9.963,-9.856,-9.678,-9.439,-9.141,-8.786,-8.38,-7.916,-7.416,-6.875,-6.297,-5.685,-5.03,-4.362,-3.672,-2.963,-2.239,-1.489,-0.746,0,0.746,1.489,2.239,2.963,3.672,4.362,5.03,5.685,6.297,6.875,7.416,7.916,8.38,8.786,9.141,9.439,9.678,9.856,9.963,10,9.963,9.856,9.678,9.439,9.141,8.786,8.38,7.916,7.416,6.875,6.297,5.685,5.03,4.362,3.672,2.963,2.239,1.489,0.746,0,-0.746,-1.489,-2.239,-2.963,-3.672,-4.362,-5.03,-5.685,-6.297,-6.875,-7.416,-7.916,-8.38,-8.786,-9.141,-9.439,-9.678,-9.856,-9.963,-10,-9.962,-9.848,-9.661,-9.412,-9.095,-8.726,-8.295,-7.822,-7.292,-6.731,-6.12,-5.487,-4.81,-4.121,-3.396,-2.666,-1.908,-1.155,-0.381,0.381,1.155,1.908,2.666,3.396,4.121,4.81,5.487,6.12,6.731,7.292,7.822,8.295,8.726,9.095,9.412,9.661,9.848,9.962,10,9.963,9.856,9.678,9.439,9.141,8.786,8.38,7.916,7.416,6.875,6.297,5.685,5.03,4.362,3.672,2.963,2.239,1.489,0.746,0,-0.746,-1.489,-2.239,-2.963,-3.672,-4.362,-5.03,-5.685,-6.297,-6.875,-7.416,-7.916,-8.38,-8.786,-9.141,-9.439,-9.678,-9.856,-9.963,-10,-9.965,-9.862,-9.694,-9.465,-9.179,-8.838,-8.447,-8.009,-7.528,-7.006,-6.459,-5.868,-5.248,-4.601,-3.931,-3.243,-2.539,-1.822,-1.097,-0.366,0.366,1.097,1.822,2.539,3.243,3.931,4.601,5.248,5.868,6.459,7.006,7.528,8.009,8.447,8.838,9.179,9.465,9.694,9.862,9.965,10,9.963,9.856,9.678,9.439,9.141,8.786,8.38,7.916,7.416,6.875,6.297,5.685,5.03,4.362,3.672,2.963,2.239,1.489,0.746,0,-0.746,-1.489,-2.239,-2.963,-3.672,-4.362,-5.03,-5.685,-6.297,-6.875,-7.416,-7.916,-8.38,-8.786,-9.141,-9.439,-9.678,-9.856,-9.963,-10
|
||||
PARAM_BREATH=0,0.002,0.007,0.016,0.028,0.043,0.061,0.081,0.104,0.129,0.156,0.185,0.216,0.248,0.282,0.316,0.352,0.388,0.426,0.463,0.5,0.537,0.574,0.612,0.648,0.684,0.718,0.752,0.784,0.815,0.844,0.871,0.896,0.919,0.939,0.957,0.972,0.984,0.993,0.998,1,0.998,0.993,0.984,0.972,0.957,0.939,0.919,0.896,0.871,0.844,0.815,0.784,0.752,0.718,0.684,0.648,0.612,0.574,0.537,0.5,0.463,0.426,0.388,0.352,0.316,0.282,0.248,0.216,0.185,0.156,0.129,0.104,0.081,0.061,0.043,0.028,0.016,0.007,0.002,0,0.002,0.008,0.017,0.029,0.045,0.064,0.085,0.109,0.135,0.163,0.194,0.226,0.259,0.294,0.33,0.367,0.405,0.442,0.481,0.519,0.558,0.595,0.633,0.67,0.706,0.741,0.774,0.806,0.837,0.865,0.891,0.915,0.936,0.955,0.971,0.983,0.992,0.998,1,0.998,0.993,0.984,0.972,0.957,0.939,0.919,0.896,0.871,0.844,0.815,0.784,0.752,0.718,0.684,0.648,0.612,0.574,0.537,0.5,0.463,0.426,0.388,0.352,0.316,0.282,0.248,0.216,0.185,0.156,0.129,0.104,0.081,0.061,0.043,0.028,0.016,0.007,0.002,0,0.002,0.007,0.015,0.027,0.041,0.058,0.078,0.1,0.124,0.15,0.177,0.207,0.238,0.27,0.303,0.338,0.373,0.409,0.445,0.482,0.518,0.555,0.591,0.627,0.662,0.697,0.73,0.762,0.793,0.823,0.85,0.876,0.9,0.922,0.942,0.959,0.973,0.985,0.993,0.998,1,0.998,0.993,0.984,0.972,0.957,0.939,0.919,0.896,0.871,0.844,0.815,0.784,0.752,0.718,0.684,0.648,0.612,0.574,0.537,0.5,0.463,0.426,0.388,0.352,0.316,0.282,0.248,0.216,0.185,0.156,0.129,0.104,0.081,0.061,0.043,0.028,0.016,0.007,0.002,0,0.002,0.007,0.016,0.028,0.043,0.061,0.081,0.104,0.129,0.156,0.185,0.216,0.248,0.282,0.316,0.352,0.388,0.426,0.463,0.5,0.537,0.574,0.612,0.648,0.684,0.718,0.752,0.784,0.815,0.844,0.871,0.896,0.919,0.939,0.957,0.972,0.984,0.993,0.998,1,0.998,0.993,0.984,0.972,0.957,0.939,0.919,0.896,0.871,0.844,0.815,0.784,0.752,0.718,0.684,0.648,0.612,0.574,0.537,0.5,0.463,0.426,0.388,0.352,0.316,0.282,0.248,0.216,0.185,0.156,0.129,0.104,0.081,0.061,0.043,0.028,0.016,0.007,0.002,0,0.002,0.008,0.017,0.029,0.045,0.064,0.085,0.109,0.135,0.163,0.194,0.226,0.259,0.294,0.33,0.367,0.405,0.442,0.481,0.519,0.558,0.595,0.633,0.67,0.706,0.741,0.774,0.806,0.837,0.865,0.891,0.915,0.936,0.955,0.971,0.983,0.992,0.998,1,0.998,0.993,0.984,0.972,0.957,0.939,0.919,0.896,0.871,0.844,0.815,0.784,0.752,0.718,0.684,0.648,0.612,0.574,0.537,0.5,0.463,0.426,0.388,0.352,0.316,0.282,0.248,0.216,0.185,0.156,0.129,0.104,0.081,0.061,0.043,0.028,0.016,0.007,0.002,0,0.002,0.007,0.015,0.027,0.041,0.058,0.078,0.1,0.124,0.15,0.177,0.207,0.238,0.27,0.303,0.338,0.373,0.409,0.445,0.482,0.518,0.555,0.591,0.627,0.662,0.697,0.73,0.762,0.793,0.823,0.85,0.876,0.9,0.922,0.942,0.959,0.973,0.985,0.993,0.998,1,0.998,0.993,0.984,0.972,0.957,0.939,0.919,0.896,0.871,0.844,0.815,0.784,0.752,0.718,0.684,0.648,0.612,0.574,0.537,0.5,0.463,0.426,0.388,0.352,0.316,0.282,0.248,0.216,0.185,0.156,0.129,0.104,0.081,0.061,0.043,0.028,0.016,0.007,0.002,0
|
||||
PARAM_EYE_L_OPEN=1,1,1,1,1,1,1,0.999,0.999,0.999,0.999,0.998,0.998,0.998,0.997,0.997,0.996,0.996,0.995,0.995,0.994,0.993,0.993,0.992,0.991,0.99,0.99,0.989,0.988,0.987,0.986,0.985,0.984,0.983,0.981,0.98,0.979,0.978,0.976,0.975,0.973,0.972,0.97,0.969,0.967,0.966,0.964,0.962,0.96,0.958,0.956,0.954,0.952,0.95,0.948,0.946,0.944,0.941,0.939,0.937,0.934,0.932,0.929,0.926,0.924,0.921,0.918,0.915,0.912,0.909,0.906,0.903,0.9,0.891,0.873,0.848,0.816,0.782,0.745,0.709,0.675,0.645,0.621,0.606,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.601,0.601,0.601,0.601,0.601,0.601,0.601,0.601,0.601,0.601,0.601,0.601,0.601,0.601,0.601,0.601,0.602,0.602,0.602,0.602,0.602,0.602,0.602,0.602,0.602,0.602,0.603,0.603,0.603,0.603,0.603,0.603,0.603,0.603,0.604,0.604,0.604,0.604,0.604,0.604,0.604,0.605,0.605,0.605,0.605,0.605,0.605,0.606,0.606,0.606,0.606,0.606,0.607,0.607,0.607,0.607,0.607,0.608,0.608,0.608,0.608,0.608,0.609,0.609,0.609,0.609,0.61,0.61,0.61,0.61,0.611,0.611,0.611,0.611,0.612,0.612,0.612,0.613,0.613,0.613,0.613,0.614,0.614,0.614,0.615,0.615,0.615,0.616,0.616,0.616,0.617,0.617,0.617,0.618,0.618,0.618,0.619,0.619,0.62,0.62,0.62,0.621,0.621,0.621,0.622,0.622,0.623,0.623,0.624,0.624,0.624,0.625,0.625,0.626,0.626,0.627,0.627,0.628,0.628,0.629,0.629,0.63,0.63,0.632,0.636,0.642,0.651,0.661,0.673,0.686,0.701,0.717,0.734,0.751,0.77,0.788,0.807,0.826,0.845,0.864,0.882,0.9,0.916,0.932,0.946,0.959,0.971,0.981,0.989,0.995,0.999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.983,0.936,0.865,0.774,0.67,0.558,0.442,0.33,0.226,0.135,0.064,0.017,0,0,0,0,0,0,0.043,0.156,0.316,0.5,0.684,0.844,0.957,1,0.995,0.982,0.961,0.935,0.904,0.87,0.833,0.797,0.76,0.726,0.695,0.669,0.648,0.635,0.63,0.63,0.63,0.631,0.631,0.632,0.632,0.633,0.634,0.635,0.636,0.638,0.639,0.641,0.642,0.644,0.646,0.648,0.65,0.652,0.654,0.656,0.659,0.661,0.664,0.666,0.669,0.672,0.675,0.678,0.681,0.684,0.687,0.69,0.694,0.697,0.7,0.704,0.707,0.711,0.715,0.718,0.722,0.726,0.73,0.734,0.738,0.742,0.746,0.75,0.754,0.758,0.762,0.766,0.77,0.774,0.779,0.783,0.787,0.791,0.796,0.8,0.804,0.809,0.813,0.817,0.821,0.826,0.83,0.834,0.839,0.843,0.847,0.851,0.856,0.86,0.864,0.868,0.872,0.876,0.88,0.884,0.888,0.892,0.896,0.9,0.904,0.908,0.912,0.915,0.919,0.923,0.926,0.93,0.933,0.936,0.94,0.943,0.946,0.949,0.952,0.955,0.958,0.961,0.964,0.966,0.969,0.971,0.974,0.976,0.978,0.98,0.982,0.984,0.986,0.988,0.989,0.991,0.992,0.994,0.995,0.996,0.997,0.998,0.998,0.999,0.999,1,1,1
|
||||
PARAM_EYE_R_OPEN=1,1,1,1,1,1,1,0.999,0.999,0.999,0.999,0.998,0.998,0.998,0.997,0.997,0.996,0.996,0.995,0.995,0.994,0.993,0.993,0.992,0.991,0.99,0.99,0.989,0.988,0.987,0.986,0.985,0.984,0.983,0.981,0.98,0.979,0.978,0.976,0.975,0.973,0.972,0.97,0.969,0.967,0.966,0.964,0.962,0.96,0.958,0.956,0.954,0.952,0.95,0.948,0.946,0.944,0.941,0.939,0.937,0.934,0.932,0.929,0.926,0.924,0.921,0.918,0.915,0.912,0.909,0.906,0.903,0.9,0.891,0.873,0.848,0.816,0.782,0.745,0.709,0.675,0.645,0.621,0.606,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.601,0.601,0.601,0.601,0.601,0.601,0.601,0.601,0.601,0.601,0.601,0.601,0.601,0.601,0.601,0.601,0.602,0.602,0.602,0.602,0.602,0.602,0.602,0.602,0.602,0.602,0.603,0.603,0.603,0.603,0.603,0.603,0.603,0.603,0.604,0.604,0.604,0.604,0.604,0.604,0.604,0.605,0.605,0.605,0.605,0.605,0.605,0.606,0.606,0.606,0.606,0.606,0.607,0.607,0.607,0.607,0.607,0.608,0.608,0.608,0.608,0.608,0.609,0.609,0.609,0.609,0.61,0.61,0.61,0.61,0.611,0.611,0.611,0.611,0.612,0.612,0.612,0.613,0.613,0.613,0.613,0.614,0.614,0.614,0.615,0.615,0.615,0.616,0.616,0.616,0.617,0.617,0.617,0.618,0.618,0.618,0.619,0.619,0.62,0.62,0.62,0.621,0.621,0.621,0.622,0.622,0.623,0.623,0.624,0.624,0.624,0.625,0.625,0.626,0.626,0.627,0.627,0.628,0.628,0.629,0.629,0.63,0.63,0.632,0.636,0.642,0.651,0.661,0.673,0.686,0.701,0.717,0.734,0.751,0.77,0.788,0.807,0.826,0.845,0.864,0.882,0.9,0.916,0.932,0.946,0.959,0.971,0.981,0.989,0.995,0.999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.976,0.913,0.817,0.7,0.567,0.433,0.3,0.183,0.087,0.024,0,0,0,0,0,0,0.043,0.156,0.316,0.5,0.684,0.844,0.957,1,0.995,0.982,0.961,0.935,0.904,0.87,0.833,0.797,0.76,0.726,0.695,0.669,0.648,0.635,0.63,0.63,0.63,0.631,0.631,0.632,0.632,0.633,0.634,0.635,0.636,0.638,0.639,0.641,0.642,0.644,0.646,0.648,0.65,0.652,0.654,0.656,0.659,0.661,0.664,0.666,0.669,0.672,0.675,0.678,0.681,0.684,0.687,0.69,0.694,0.697,0.7,0.704,0.707,0.711,0.715,0.718,0.722,0.726,0.73,0.734,0.738,0.742,0.746,0.75,0.754,0.758,0.762,0.766,0.77,0.774,0.779,0.783,0.787,0.791,0.796,0.8,0.804,0.809,0.813,0.817,0.821,0.826,0.83,0.834,0.839,0.843,0.847,0.851,0.856,0.86,0.864,0.868,0.872,0.876,0.88,0.884,0.888,0.892,0.896,0.9,0.904,0.908,0.912,0.915,0.919,0.923,0.926,0.93,0.933,0.936,0.94,0.943,0.946,0.949,0.952,0.955,0.958,0.961,0.964,0.966,0.969,0.971,0.974,0.976,0.978,0.98,0.982,0.984,0.986,0.988,0.989,0.991,0.992,0.994,0.995,0.996,0.997,0.998,0.998,0.999,0.999,1,1,1
|
||||
PARAM_EYE_L_SMILE=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.087,0.183,0.3,0.433,0.567,0.7,0.817,0.913,0.976,1,0.983,0.936,0.865,0.774,0.67,0.558,0.442,0.33,0.226,0.135,0.064,0.017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_EYE_R_SMILE=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.087,0.183,0.3,0.433,0.567,0.7,0.817,0.913,0.976,1,0.983,0.936,0.865,0.774,0.67,0.558,0.442,0.33,0.226,0.135,0.064,0.017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_EYE_BALL_X=0.5,0.499,0.495,0.488,0.479,0.468,0.455,0.44,0.424,0.405,0.386,0.364,0.342,0.318,0.294,0.269,0.243,0.217,0.19,0.163,0.137,0.11,0.083,0.057,0.031,0.006,-0.018,-0.042,-0.064,-0.086,-0.105,-0.124,-0.14,-0.155,-0.168,-0.179,-0.188,-0.195,-0.199,-0.2,-0.199,-0.195,-0.189,-0.181,-0.171,-0.159,-0.146,-0.13,-0.113,-0.095,-0.076,-0.055,-0.034,-0.011,0.012,0.037,0.061,0.086,0.112,0.137,0.163,0.188,0.214,0.239,0.263,0.288,0.311,0.334,0.355,0.376,0.395,0.413,0.43,0.446,0.459,0.471,0.481,0.489,0.495,0.499,0.5,0.499,0.494,0.488,0.478,0.467,0.453,0.438,0.42,0.401,0.38,0.358,0.335,0.31,0.285,0.259,0.232,0.205,0.178,0.15,0.122,0.095,0.068,0.041,0.015,-0.01,-0.035,-0.058,-0.08,-0.101,-0.12,-0.138,-0.153,-0.167,-0.178,-0.188,-0.194,-0.199,-0.2,-0.199,-0.195,-0.189,-0.181,-0.171,-0.159,-0.146,-0.13,-0.113,-0.095,-0.076,-0.055,-0.034,-0.011,0.012,0.037,0.061,0.086,0.112,0.137,0.163,0.188,0.214,0.239,0.263,0.288,0.311,0.334,0.355,0.376,0.395,0.413,0.43,0.446,0.459,0.471,0.481,0.489,0.495,0.499,0.5,0.499,0.495,0.489,0.48,0.47,0.458,0.443,0.427,0.41,0.391,0.37,0.349,0.326,0.303,0.279,0.254,0.228,0.202,0.176,0.15,0.124,0.098,0.072,0.046,0.021,-0.003,-0.026,-0.049,-0.07,-0.091,-0.11,-0.127,-0.143,-0.158,-0.17,-0.18,-0.189,-0.195,-0.199,-0.2,-0.199,-0.195,-0.189,-0.181,-0.171,-0.159,-0.146,-0.13,-0.113,-0.095,-0.076,-0.055,-0.034,-0.011,0.012,0.037,0.061,0.086,0.112,0.137,0.163,0.188,0.214,0.239,0.263,0.288,0.311,0.334,0.355,0.376,0.395,0.413,0.43,0.446,0.459,0.471,0.481,0.489,0.495,0.499,0.5,0.499,0.495,0.488,0.479,0.468,0.455,0.44,0.424,0.405,0.386,0.364,0.342,0.318,0.294,0.269,0.243,0.217,0.19,0.163,0.137,0.11,0.083,0.057,0.031,0.006,-0.018,-0.042,-0.064,-0.086,-0.105,-0.124,-0.14,-0.155,-0.168,-0.179,-0.188,-0.195,-0.199,-0.2,-0.199,-0.195,-0.189,-0.181,-0.171,-0.159,-0.146,-0.13,-0.113,-0.095,-0.076,-0.055,-0.034,-0.011,0.012,0.037,0.061,0.086,0.112,0.137,0.163,0.188,0.214,0.239,0.263,0.288,0.311,0.334,0.355,0.376,0.395,0.413,0.43,0.446,0.459,0.471,0.481,0.489,0.495,0.499,0.5,0.499,0.494,0.488,0.478,0.467,0.453,0.438,0.42,0.401,0.38,0.358,0.335,0.31,0.285,0.259,0.232,0.205,0.178,0.15,0.122,0.095,0.068,0.041,0.015,-0.01,-0.035,-0.058,-0.08,-0.101,-0.12,-0.138,-0.153,-0.167,-0.178,-0.188,-0.194,-0.199,-0.2,-0.199,-0.195,-0.189,-0.181,-0.171,-0.159,-0.146,-0.13,-0.113,-0.095,-0.076,-0.055,-0.034,-0.011,0.012,0.037,0.061,0.086,0.112,0.137,0.163,0.188,0.214,0.239,0.263,0.288,0.311,0.334,0.355,0.376,0.395,0.413,0.43,0.446,0.459,0.471,0.481,0.489,0.495,0.499,0.5,0.499,0.495,0.489,0.48,0.47,0.458,0.443,0.427,0.41,0.391,0.37,0.349,0.326,0.303,0.279,0.254,0.228,0.202,0.176,0.15,0.124,0.098,0.072,0.046,0.021,-0.003,-0.026,-0.049,-0.07,-0.091,-0.11,-0.127,-0.143,-0.158,-0.17,-0.18,-0.189,-0.195,-0.199,-0.2,-0.199,-0.195,-0.189,-0.181,-0.171,-0.159,-0.146,-0.13,-0.113,-0.095,-0.076,-0.055,-0.034,-0.011,0.012,0.037,0.061,0.086,0.112,0.137,0.163,0.188,0.214,0.239,0.263,0.288,0.311,0.334,0.355,0.376,0.395,0.413,0.43,0.446,0.459,0.471,0.481,0.489,0.495,0.499,0.5
|
||||
PARAM_EYE_BALL_Y=-0,-0,-0.001,-0.002,-0.003,-0.005,-0.006,-0.009,-0.011,-0.014,-0.016,-0.019,-0.023,-0.026,-0.029,-0.033,-0.037,-0.04,-0.044,-0.048,-0.052,-0.056,-0.06,-0.063,-0.067,-0.071,-0.074,-0.077,-0.081,-0.084,-0.086,-0.089,-0.091,-0.094,-0.095,-0.097,-0.098,-0.099,-0.1,-0.1,-0.1,-0.099,-0.098,-0.097,-0.096,-0.094,-0.092,-0.09,-0.088,-0.085,-0.082,-0.079,-0.076,-0.073,-0.07,-0.066,-0.063,-0.059,-0.055,-0.052,-0.048,-0.045,-0.041,-0.037,-0.034,-0.03,-0.027,-0.024,-0.021,-0.018,-0.015,-0.012,-0.01,-0.008,-0.006,-0.004,-0.003,-0.002,-0.001,-0,0,-0,-0.001,-0.002,-0.003,-0.005,-0.007,-0.009,-0.011,-0.014,-0.017,-0.02,-0.024,-0.027,-0.031,-0.034,-0.038,-0.042,-0.046,-0.05,-0.054,-0.058,-0.062,-0.066,-0.069,-0.073,-0.076,-0.08,-0.083,-0.086,-0.089,-0.091,-0.093,-0.095,-0.097,-0.098,-0.099,-0.1,-0.1,-0.1,-0.099,-0.098,-0.097,-0.096,-0.094,-0.092,-0.09,-0.088,-0.085,-0.082,-0.079,-0.076,-0.073,-0.07,-0.066,-0.063,-0.059,-0.055,-0.052,-0.048,-0.045,-0.041,-0.037,-0.034,-0.03,-0.027,-0.024,-0.021,-0.018,-0.015,-0.012,-0.01,-0.008,-0.006,-0.004,-0.003,-0.002,-0.001,-0,0,-0,-0.001,-0.002,-0.003,-0.004,-0.006,-0.008,-0.01,-0.013,-0.016,-0.019,-0.022,-0.025,-0.028,-0.032,-0.035,-0.039,-0.043,-0.046,-0.05,-0.054,-0.057,-0.061,-0.065,-0.068,-0.072,-0.075,-0.078,-0.081,-0.084,-0.087,-0.09,-0.092,-0.094,-0.096,-0.097,-0.098,-0.099,-0.1,-0.1,-0.1,-0.099,-0.098,-0.097,-0.096,-0.094,-0.092,-0.09,-0.088,-0.085,-0.082,-0.079,-0.076,-0.073,-0.07,-0.066,-0.063,-0.059,-0.055,-0.052,-0.048,-0.045,-0.041,-0.037,-0.034,-0.03,-0.027,-0.024,-0.021,-0.018,-0.015,-0.012,-0.01,-0.008,-0.006,-0.004,-0.003,-0.002,-0.001,-0,0,-0,-0.001,-0.002,-0.003,-0.005,-0.006,-0.009,-0.011,-0.014,-0.016,-0.019,-0.023,-0.026,-0.029,-0.033,-0.037,-0.04,-0.044,-0.048,-0.052,-0.056,-0.06,-0.063,-0.067,-0.071,-0.074,-0.077,-0.081,-0.084,-0.086,-0.089,-0.091,-0.094,-0.095,-0.097,-0.098,-0.099,-0.1,-0.1,-0.1,-0.099,-0.098,-0.097,-0.096,-0.094,-0.092,-0.09,-0.088,-0.085,-0.082,-0.079,-0.076,-0.073,-0.07,-0.066,-0.063,-0.059,-0.055,-0.052,-0.048,-0.045,-0.041,-0.037,-0.034,-0.03,-0.027,-0.024,-0.021,-0.018,-0.015,-0.012,-0.01,-0.008,-0.006,-0.004,-0.003,-0.002,-0.001,-0,0,-0,-0.001,-0.002,-0.003,-0.005,-0.007,-0.009,-0.011,-0.014,-0.017,-0.02,-0.024,-0.027,-0.031,-0.034,-0.038,-0.042,-0.046,-0.05,-0.054,-0.058,-0.062,-0.066,-0.069,-0.073,-0.076,-0.08,-0.083,-0.086,-0.089,-0.091,-0.093,-0.095,-0.097,-0.098,-0.099,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.1,-0.099,-0.099,-0.099,-0.099,-0.099,-0.098,-0.098,-0.098,-0.097,-0.097,-0.096,-0.096,-0.095,-0.094,-0.094,-0.093,-0.092,-0.091,-0.09,-0.089,-0.088,-0.087,-0.086,-0.084,-0.083,-0.081,-0.08,-0.078,-0.076,-0.074,-0.072,-0.07,-0.068,-0.066,-0.064,-0.062,-0.059,-0.057,-0.054,-0.052,-0.05,-0.047,-0.045,-0.042,-0.04,-0.037,-0.035,-0.032,-0.03,-0.028,-0.025,-0.023,-0.021,-0.019,-0.017,-0.015,-0.013,-0.011,-0.01,-0.008,-0.007,-0.005,-0.004,-0.003,-0.002,-0.001,-0.001,-0,-0,0
|
||||
PARAM_MOUTH_FORM=1,1,0.999,0.997,0.995,0.992,0.989,0.985,0.98,0.975,0.97,0.964,0.958,0.951,0.945,0.937,0.93,0.922,0.914,0.906,0.898,0.889,0.881,0.872,0.863,0.854,0.846,0.837,0.828,0.819,0.811,0.802,0.794,0.786,0.778,0.77,0.763,0.755,0.749,0.742,0.736,0.73,0.725,0.72,0.715,0.711,0.708,0.705,0.703,0.701,0.7,0.7,0.702,0.707,0.715,0.726,0.74,0.755,0.772,0.79,0.81,0.829,0.85,0.871,0.89,0.91,0.928,0.945,0.96,0.974,0.985,0.993,0.998,1,0.999,0.995,0.99,0.982,0.972,0.961,0.947,0.931,0.914,0.895,0.874,0.852,0.828,0.803,0.776,0.748,0.718,0.688,0.656,0.623,0.589,0.554,0.518,0.482,0.444,0.406,0.367,0.328,0.288,0.247,0.207,0.166,0.125,0.083,0.042,0,-0.042,-0.083,-0.125,-0.166,-0.207,-0.247,-0.288,-0.328,-0.367,-0.406,-0.444,-0.482,-0.518,-0.554,-0.589,-0.623,-0.656,-0.688,-0.718,-0.748,-0.776,-0.803,-0.828,-0.852,-0.874,-0.895,-0.914,-0.931,-0.947,-0.961,-0.972,-0.982,-0.99,-0.995,-0.999,-1,-0.999,-0.998,-0.995,-0.992,-0.987,-0.982,-0.976,-0.969,-0.961,-0.953,-0.944,-0.935,-0.925,-0.915,-0.905,-0.894,-0.884,-0.872,-0.861,-0.85,-0.839,-0.828,-0.816,-0.806,-0.795,-0.785,-0.775,-0.765,-0.756,-0.747,-0.739,-0.731,-0.724,-0.718,-0.713,-0.708,-0.705,-0.702,-0.701,-0.7,-0.708,-0.731,-0.765,-0.806,-0.85,-0.894,-0.935,-0.969,-0.992,-1,-1,-0.999,-0.999,-0.997,-0.996,-0.994,-0.992,-0.99,-0.987,-0.984,-0.98,-0.976,-0.972,-0.967,-0.962,-0.957,-0.951,-0.945,-0.939,-0.932,-0.924,-0.916,-0.908,-0.9,-0.891,-0.881,-0.871,-0.861,-0.85,-0.839,-0.827,-0.815,-0.802,-0.789,-0.776,-0.762,-0.747,-0.732,-0.717,-0.701,-0.684,-0.667,-0.65,-0.632,-0.613,-0.594,-0.575,-0.555,-0.534,-0.513,-0.491,-0.469,-0.446,-0.422,-0.398,-0.374,-0.348,-0.323,-0.297,-0.269,-0.242,-0.214,-0.185,-0.156,-0.126,-0.095,-0.064,-0.032,0,0.051,0.131,0.235,0.353,0.482,0.608,0.73,0.836,0.923,0.979,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
|
||||
PARAM_MOUTH_OPEN_Y=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006,0.023,0.051,0.087,0.132,0.182,0.24,0.3,0.365,0.431,0.5,0.569,0.635,0.7,0.76,0.818,0.868,0.913,0.949,0.977,0.994,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.999,0.999,0.998,0.997,0.996,0.995,0.993,0.991,0.99,0.987,0.985,0.982,0.979,0.976,0.973,0.969,0.965,0.961,0.956,0.951,0.946,0.94,0.934,0.928,0.921,0.914,0.907,0.899,0.891,0.883,0.874,0.865,0.855,0.845,0.834,0.823,0.812,0.8,0.779,0.743,0.695,0.642,0.585,0.529,0.479,0.437,0.41,0.4,0.4,0.4,0.401,0.401,0.402,0.402,0.403,0.404,0.405,0.406,0.407,0.408,0.409,0.411,0.412,0.414,0.415,0.417,0.419,0.42,0.422,0.424,0.426,0.428,0.43,0.432,0.434,0.436,0.438,0.44,0.442,0.445,0.447,0.449,0.451,0.453,0.455,0.458,0.46,0.462,0.464,0.466,0.468,0.47,0.472,0.474,0.476,0.478,0.48,0.481,0.483,0.485,0.486,0.488,0.489,0.491,0.492,0.493,0.494,0.495,0.496,0.497,0.498,0.498,0.499,0.499,0.5,0.5,0.5,0.488,0.457,0.408,0.35,0.284,0.216,0.15,0.092,0.043,0.012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_BROW_L_Y=0,-0.001,-0.002,-0.005,-0.009,-0.013,-0.019,-0.026,-0.033,-0.042,-0.051,-0.061,-0.072,-0.084,-0.096,-0.109,-0.123,-0.137,-0.152,-0.168,-0.184,-0.201,-0.218,-0.235,-0.253,-0.272,-0.29,-0.309,-0.328,-0.348,-0.368,-0.388,-0.408,-0.428,-0.449,-0.469,-0.49,-0.51,-0.531,-0.551,-0.572,-0.592,-0.612,-0.632,-0.652,-0.672,-0.691,-0.71,-0.728,-0.747,-0.765,-0.782,-0.799,-0.816,-0.832,-0.848,-0.863,-0.877,-0.891,-0.904,-0.916,-0.928,-0.939,-0.949,-0.958,-0.967,-0.974,-0.981,-0.987,-0.991,-0.995,-0.998,-0.999,-1,-1,-0.999,-0.997,-0.995,-0.992,-0.988,-0.984,-0.979,-0.974,-0.968,-0.961,-0.954,-0.947,-0.939,-0.931,-0.922,-0.913,-0.903,-0.893,-0.882,-0.872,-0.861,-0.849,-0.838,-0.826,-0.814,-0.801,-0.789,-0.775,-0.762,-0.749,-0.736,-0.722,-0.709,-0.695,-0.681,-0.667,-0.653,-0.639,-0.625,-0.611,-0.597,-0.583,-0.569,-0.556,-0.542,-0.528,-0.515,-0.501,-0.488,-0.475,-0.463,-0.45,-0.438,-0.426,-0.414,-0.402,-0.391,-0.38,-0.37,-0.36,-0.35,-0.34,-0.331,-0.323,-0.315,-0.307,-0.3,-0.293,-0.286,-0.28,-0.273,-0.267,-0.261,-0.254,-0.248,-0.242,-0.236,-0.23,-0.225,-0.219,-0.213,-0.208,-0.203,-0.197,-0.192,-0.187,-0.182,-0.177,-0.172,-0.168,-0.163,-0.159,-0.154,-0.15,-0.145,-0.141,-0.137,-0.133,-0.129,-0.125,-0.121,-0.117,-0.114,-0.11,-0.107,-0.103,-0.1,-0.097,-0.093,-0.09,-0.087,-0.084,-0.081,-0.078,-0.075,-0.073,-0.07,-0.067,-0.065,-0.062,-0.06,-0.058,-0.055,-0.053,-0.051,-0.049,-0.047,-0.045,-0.043,-0.041,-0.039,-0.037,-0.036,-0.034,-0.032,-0.031,-0.029,-0.028,-0.026,-0.025,-0.024,-0.022,-0.021,-0.02,-0.019,-0.018,-0.017,-0.016,-0.015,-0.014,-0.013,-0.012,-0.011,-0.01,-0.01,-0.009,-0.008,-0.008,-0.007,-0.006,-0.006,-0.005,-0.005,-0.004,-0.004,-0.003,-0.003,-0.003,-0.002,-0.002,-0.002,-0.002,-0.001,-0.001,-0.001,-0.001,-0.001,-0.001,-0,-0,-0,-0,-0,-0,-0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.006,-0.021,-0.047,-0.08,-0.122,-0.169,-0.222,-0.279,-0.34,-0.402,-0.468,-0.532,-0.598,-0.66,-0.721,-0.778,-0.831,-0.878,-0.92,-0.953,-0.979,-0.994,-1,-0.966,-0.875,-0.747,-0.6,-0.453,-0.325,-0.234,-0.2,-0.2,-0.202,-0.204,-0.207,-0.211,-0.215,-0.221,-0.227,-0.233,-0.241,-0.249,-0.258,-0.267,-0.277,-0.288,-0.298,-0.31,-0.322,-0.334,-0.347,-0.36,-0.374,-0.388,-0.403,-0.417,-0.432,-0.447,-0.463,-0.478,-0.494,-0.51,-0.527,-0.543,-0.559,-0.575,-0.592,-0.608,-0.625,-0.641,-0.657,-0.673,-0.69,-0.706,-0.722,-0.737,-0.753,-0.768,-0.783,-0.797,-0.812,-0.826,-0.84,-0.853,-0.866,-0.878,-0.89,-0.902,-0.912,-0.923,-0.933,-0.942,-0.951,-0.959,-0.967,-0.973,-0.979,-0.985,-0.989,-0.993,-0.996,-0.998,-1,-1,-0.999,-0.997,-0.994,-0.99,-0.985,-0.978,-0.97,-0.962,-0.952,-0.942,-0.93,-0.918,-0.904,-0.89,-0.875,-0.86,-0.844,-0.827,-0.81,-0.791,-0.773,-0.754,-0.734,-0.714,-0.694,-0.673,-0.652,-0.631,-0.609,-0.588,-0.566,-0.544,-0.522,-0.5,-0.478,-0.456,-0.434,-0.412,-0.391,-0.369,-0.348,-0.327,-0.306,-0.286,-0.266,-0.246,-0.227,-0.209,-0.19,-0.173,-0.156,-0.14,-0.125,-0.11,-0.096,-0.082,-0.07,-0.058,-0.048,-0.038,-0.03,-0.022,-0.015,-0.01,-0.006,-0.003,-0.001,0
|
||||
PARAM_BROW_R_Y=0,-0.001,-0.002,-0.005,-0.009,-0.013,-0.019,-0.026,-0.033,-0.042,-0.051,-0.061,-0.072,-0.084,-0.096,-0.109,-0.123,-0.137,-0.152,-0.168,-0.184,-0.201,-0.218,-0.235,-0.253,-0.272,-0.29,-0.309,-0.328,-0.348,-0.368,-0.388,-0.408,-0.428,-0.449,-0.469,-0.49,-0.51,-0.531,-0.551,-0.572,-0.592,-0.612,-0.632,-0.652,-0.672,-0.691,-0.71,-0.728,-0.747,-0.765,-0.782,-0.799,-0.816,-0.832,-0.848,-0.863,-0.877,-0.891,-0.904,-0.916,-0.928,-0.939,-0.949,-0.958,-0.967,-0.974,-0.981,-0.987,-0.991,-0.995,-0.998,-0.999,-1,-1,-0.999,-0.997,-0.995,-0.992,-0.988,-0.984,-0.979,-0.974,-0.968,-0.961,-0.954,-0.947,-0.939,-0.931,-0.922,-0.913,-0.903,-0.893,-0.882,-0.872,-0.861,-0.849,-0.838,-0.826,-0.814,-0.801,-0.789,-0.775,-0.762,-0.749,-0.736,-0.722,-0.709,-0.695,-0.681,-0.667,-0.653,-0.639,-0.625,-0.611,-0.597,-0.583,-0.569,-0.556,-0.542,-0.528,-0.515,-0.501,-0.488,-0.475,-0.463,-0.45,-0.438,-0.426,-0.414,-0.402,-0.391,-0.38,-0.37,-0.36,-0.35,-0.34,-0.331,-0.323,-0.315,-0.307,-0.3,-0.293,-0.286,-0.28,-0.273,-0.267,-0.261,-0.254,-0.248,-0.242,-0.236,-0.23,-0.225,-0.219,-0.213,-0.208,-0.203,-0.197,-0.192,-0.187,-0.182,-0.177,-0.172,-0.168,-0.163,-0.159,-0.154,-0.15,-0.145,-0.141,-0.137,-0.133,-0.129,-0.125,-0.121,-0.117,-0.114,-0.11,-0.107,-0.103,-0.1,-0.097,-0.093,-0.09,-0.087,-0.084,-0.081,-0.078,-0.075,-0.073,-0.07,-0.067,-0.065,-0.062,-0.06,-0.058,-0.055,-0.053,-0.051,-0.049,-0.047,-0.045,-0.043,-0.041,-0.039,-0.037,-0.036,-0.034,-0.032,-0.031,-0.029,-0.028,-0.026,-0.025,-0.024,-0.022,-0.021,-0.02,-0.019,-0.018,-0.017,-0.016,-0.015,-0.014,-0.013,-0.012,-0.011,-0.01,-0.01,-0.009,-0.008,-0.008,-0.007,-0.006,-0.006,-0.005,-0.005,-0.004,-0.004,-0.003,-0.003,-0.003,-0.002,-0.002,-0.002,-0.002,-0.001,-0.001,-0.001,-0.001,-0.001,-0.001,-0,-0,-0,-0,-0,-0,-0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.003,-0.011,-0.023,-0.04,-0.061,-0.084,-0.111,-0.139,-0.17,-0.201,-0.234,-0.266,-0.299,-0.33,-0.361,-0.389,-0.416,-0.439,-0.46,-0.477,-0.489,-0.497,-0.5,-0.487,-0.453,-0.405,-0.35,-0.295,-0.247,-0.213,-0.2,-0.2,-0.202,-0.204,-0.207,-0.211,-0.215,-0.221,-0.227,-0.233,-0.241,-0.249,-0.258,-0.267,-0.277,-0.288,-0.298,-0.31,-0.322,-0.334,-0.347,-0.36,-0.374,-0.388,-0.403,-0.417,-0.432,-0.447,-0.463,-0.478,-0.494,-0.51,-0.527,-0.543,-0.559,-0.575,-0.592,-0.608,-0.625,-0.641,-0.657,-0.673,-0.69,-0.706,-0.722,-0.737,-0.753,-0.768,-0.783,-0.797,-0.812,-0.826,-0.84,-0.853,-0.866,-0.878,-0.89,-0.902,-0.912,-0.923,-0.933,-0.942,-0.951,-0.959,-0.967,-0.973,-0.979,-0.985,-0.989,-0.993,-0.996,-0.998,-1,-1,-0.999,-0.997,-0.994,-0.99,-0.985,-0.978,-0.97,-0.962,-0.952,-0.942,-0.93,-0.918,-0.904,-0.89,-0.875,-0.86,-0.844,-0.827,-0.81,-0.791,-0.773,-0.754,-0.734,-0.714,-0.694,-0.673,-0.652,-0.631,-0.609,-0.588,-0.566,-0.544,-0.522,-0.5,-0.478,-0.456,-0.434,-0.412,-0.391,-0.369,-0.348,-0.327,-0.306,-0.286,-0.266,-0.246,-0.227,-0.209,-0.19,-0.173,-0.156,-0.14,-0.125,-0.11,-0.096,-0.082,-0.07,-0.058,-0.048,-0.038,-0.03,-0.022,-0.015,-0.01,-0.006,-0.003,-0.001,0
|
||||
PARAM_BROW_R_FORM=0,0,0.001,0.002,0.003,0.005,0.008,0.01,0.013,0.017,0.02,0.024,0.029,0.034,0.039,0.044,0.049,0.055,0.061,0.067,0.074,0.08,0.087,0.094,0.101,0.109,0.116,0.124,0.131,0.139,0.147,0.155,0.163,0.171,0.18,0.188,0.196,0.204,0.212,0.22,0.229,0.237,0.245,0.253,0.261,0.269,0.276,0.284,0.291,0.299,0.306,0.313,0.32,0.326,0.333,0.339,0.345,0.351,0.356,0.361,0.366,0.371,0.376,0.38,0.383,0.387,0.39,0.392,0.395,0.397,0.398,0.399,0.4,0.4,0.392,0.37,0.334,0.288,0.23,0.164,0.089,0.01,-0.076,-0.163,-0.255,-0.345,-0.437,-0.524,-0.61,-0.689,-0.764,-0.83,-0.888,-0.934,-0.97,-0.992,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.981,-0.928,-0.843,-0.734,-0.604,-0.456,-0.298,-0.133,0.033,0.198,0.356,0.504,0.634,0.743,0.828,0.881,0.9,0.9,0.899,0.898,0.897,0.895,0.893,0.89,0.887,0.884,0.88,0.876,0.872,0.867,0.862,0.857,0.851,0.846,0.839,0.833,0.826,0.819,0.811,0.804,0.796,0.788,0.78,0.771,0.762,0.753,0.744,0.734,0.725,0.715,0.705,0.694,0.684,0.673,0.663,0.652,0.641,0.63,0.618,0.607,0.595,0.584,0.572,0.56,0.548,0.536,0.524,0.512,0.499,0.487,0.475,0.462,0.45,0.438,0.425,0.412,0.4,0.388,0.375,0.362,0.35,0.338,0.325,0.313,0.301,0.288,0.276,0.264,0.252,0.24,0.228,0.216,0.205,0.193,0.182,0.17,0.159,0.148,0.137,0.127,0.116,0.106,0.095,0.085,0.075,0.066,0.056,0.047,0.038,0.029,0.02,0.012,0.004,-0.004,-0.011,-0.019,-0.026,-0.033,-0.039,-0.046,-0.051,-0.057,-0.062,-0.067,-0.072,-0.076,-0.08,-0.084,-0.087,-0.09,-0.093,-0.095,-0.097,-0.098,-0.099,-0.1,-0.1,-0.1,-0.099,-0.099,-0.098,-0.097,-0.096,-0.094,-0.092,-0.09,-0.088,-0.086,-0.084,-0.081,-0.079,-0.076,-0.073,-0.07,-0.067,-0.064,-0.061,-0.058,-0.055,-0.052,-0.048,-0.045,-0.042,-0.039,-0.036,-0.033,-0.03,-0.027,-0.024,-0.021,-0.019,-0.016,-0.014,-0.012,-0.01,-0.008,-0.006,-0.004,-0.003,-0.002,-0.001,-0.001,-0,0,-0.006,-0.021,-0.047,-0.08,-0.122,-0.169,-0.222,-0.279,-0.34,-0.402,-0.468,-0.532,-0.598,-0.66,-0.721,-0.778,-0.831,-0.878,-0.92,-0.953,-0.979,-0.994,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.999,-0.997,-0.994,-0.99,-0.985,-0.978,-0.97,-0.962,-0.952,-0.942,-0.93,-0.918,-0.904,-0.89,-0.875,-0.86,-0.844,-0.827,-0.81,-0.791,-0.773,-0.754,-0.734,-0.714,-0.694,-0.673,-0.652,-0.631,-0.609,-0.588,-0.566,-0.544,-0.522,-0.5,-0.478,-0.456,-0.434,-0.412,-0.391,-0.369,-0.348,-0.327,-0.306,-0.286,-0.266,-0.246,-0.227,-0.209,-0.19,-0.173,-0.156,-0.14,-0.125,-0.11,-0.096,-0.082,-0.07,-0.058,-0.048,-0.038,-0.03,-0.022,-0.015,-0.01,-0.006,-0.003,-0.001,0
|
||||
PARAM_BROW_L_FORM=0,0,0.001,0.002,0.003,0.005,0.008,0.01,0.013,0.017,0.02,0.024,0.029,0.034,0.039,0.044,0.049,0.055,0.061,0.067,0.074,0.08,0.087,0.094,0.101,0.109,0.116,0.124,0.131,0.139,0.147,0.155,0.163,0.171,0.18,0.188,0.196,0.204,0.212,0.22,0.229,0.237,0.245,0.253,0.261,0.269,0.276,0.284,0.291,0.299,0.306,0.313,0.32,0.326,0.333,0.339,0.345,0.351,0.356,0.361,0.366,0.371,0.376,0.38,0.383,0.387,0.39,0.392,0.395,0.397,0.398,0.399,0.4,0.4,0.392,0.37,0.334,0.288,0.23,0.164,0.089,0.01,-0.076,-0.163,-0.255,-0.345,-0.437,-0.524,-0.61,-0.689,-0.764,-0.83,-0.888,-0.934,-0.97,-0.992,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.981,-0.928,-0.843,-0.734,-0.604,-0.456,-0.298,-0.133,0.033,0.198,0.356,0.504,0.634,0.743,0.828,0.881,0.9,0.9,0.899,0.898,0.897,0.895,0.893,0.89,0.887,0.884,0.88,0.876,0.872,0.867,0.862,0.857,0.851,0.846,0.839,0.833,0.826,0.819,0.811,0.804,0.796,0.788,0.78,0.771,0.762,0.753,0.744,0.734,0.725,0.715,0.705,0.694,0.684,0.673,0.663,0.652,0.641,0.63,0.618,0.607,0.595,0.584,0.572,0.56,0.548,0.536,0.524,0.512,0.499,0.487,0.475,0.462,0.45,0.438,0.425,0.412,0.4,0.388,0.375,0.362,0.35,0.338,0.325,0.313,0.301,0.288,0.276,0.264,0.252,0.24,0.228,0.216,0.205,0.193,0.182,0.17,0.159,0.148,0.137,0.127,0.116,0.106,0.095,0.085,0.075,0.066,0.056,0.047,0.038,0.029,0.02,0.012,0.004,-0.004,-0.011,-0.019,-0.026,-0.033,-0.039,-0.046,-0.051,-0.057,-0.062,-0.067,-0.072,-0.076,-0.08,-0.084,-0.087,-0.09,-0.093,-0.095,-0.097,-0.098,-0.099,-0.1,-0.1,-0.1,-0.099,-0.099,-0.098,-0.097,-0.096,-0.094,-0.092,-0.09,-0.088,-0.086,-0.084,-0.081,-0.079,-0.076,-0.073,-0.07,-0.067,-0.064,-0.061,-0.058,-0.055,-0.052,-0.048,-0.045,-0.042,-0.039,-0.036,-0.033,-0.03,-0.027,-0.024,-0.021,-0.019,-0.016,-0.014,-0.012,-0.01,-0.008,-0.006,-0.004,-0.003,-0.002,-0.001,-0.001,-0,0,-0.006,-0.021,-0.047,-0.08,-0.122,-0.169,-0.222,-0.279,-0.34,-0.402,-0.468,-0.532,-0.598,-0.66,-0.721,-0.778,-0.831,-0.878,-0.92,-0.953,-0.979,-0.994,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.999,-0.997,-0.994,-0.99,-0.985,-0.978,-0.97,-0.962,-0.952,-0.942,-0.93,-0.918,-0.904,-0.89,-0.875,-0.86,-0.844,-0.827,-0.81,-0.791,-0.773,-0.754,-0.734,-0.714,-0.694,-0.673,-0.652,-0.631,-0.609,-0.588,-0.566,-0.544,-0.522,-0.5,-0.478,-0.456,-0.434,-0.412,-0.391,-0.369,-0.348,-0.327,-0.306,-0.286,-0.266,-0.246,-0.227,-0.209,-0.19,-0.173,-0.156,-0.14,-0.125,-0.11,-0.096,-0.082,-0.07,-0.058,-0.048,-0.038,-0.03,-0.022,-0.015,-0.01,-0.006,-0.003,-0.001,0
|
||||
39
themes/yilia/source/model/motions/Idle.mtn
Executable file
39
themes/yilia/source/model/motions/Idle.mtn
Executable file
File diff suppressed because one or more lines are too long
38
themes/yilia/source/model/motions/Nemui.mtn
Executable file
38
themes/yilia/source/model/motions/Nemui.mtn
Executable file
@ -0,0 +1,38 @@
|
||||
# Live2D Animator Motion Data
|
||||
$fps=60.0
|
||||
|
||||
$fadein=500
|
||||
|
||||
$fadeout=500
|
||||
|
||||
SIGN=0
|
||||
STONES=0
|
||||
PARAM_CHEEK=0.6
|
||||
PARAM_ANGLE_X=-12,-11.997,-11.987,-11.972,-11.95,-11.923,-11.889,-11.849,-11.804,-11.753,-11.696,-11.634,-11.567,-11.494,-11.417,-11.334,-11.246,-11.153,-11.055,-10.952,-10.844,-10.732,-10.615,-10.497,-10.371,-10.241,-10.108,-9.97,-9.828,-9.682,-9.532,-9.379,-9.225,-9.064,-8.9,-8.733,-8.562,-8.389,-8.212,-8.032,-7.849,-7.667,-7.478,-7.287,-7.094,-6.897,-6.699,-6.498,-6.295,-6.09,-5.886,-5.677,-5.466,-5.254,-5.039,-4.823,-4.605,-4.386,-4.166,-3.949,-3.726,-3.502,-3.277,-3.052,-2.825,-2.598,-2.37,-2.142,-1.918,-1.688,-1.459,-1.23,-1,-0.77,-0.541,-0.312,-0.082,0.142,0.37,0.598,0.825,1.052,1.277,1.502,1.726,1.949,2.166,2.386,2.605,2.823,3.039,3.254,3.466,3.677,3.886,4.09,4.295,4.498,4.699,4.897,5.094,5.287,5.478,5.667,5.849,6.032,6.212,6.389,6.562,6.733,6.9,7.064,7.225,7.379,7.532,7.682,7.828,7.97,8.108,8.241,8.371,8.497,8.615,8.732,8.844,8.952,9.055,9.153,9.246,9.334,9.417,9.494,9.567,9.634,9.696,9.753,9.804,9.849,9.889,9.923,9.95,9.972,9.987,9.997,10,9.991,9.964,9.92,9.859,9.782,9.691,9.583,9.464,9.329,9.182,9.025,8.852,8.673,8.484,8.28,8.073,7.854,7.628,7.398,7.156,6.914,6.664,6.409,6.154,5.889,5.628,5.366,5.095,4.831,4.563,4.296,4.034,3.767,3.51,3.252,2.998,2.752,2.505,2.269,2.04,1.813,1.599,1.39,1.191,1.003,0.821,0.655,0.498,0.353,0.223,0.103,0,-0.097,-0.193,-0.287,-0.381,-0.475,-0.569,-0.661,-0.752,-0.845,-0.935,-1.025,-1.115,-1.203,-1.292,-1.379,-1.466,-1.553,-1.637,-1.724,-1.808,-1.892,-1.975,-2.057,-2.141,-2.221,-2.302,-2.383,-2.463,-2.542,-2.62,-2.698,-2.776,-2.853,-2.929,-3.004,-3.08,-3.154,-3.228,-3.302,-3.374,-3.447,-3.518,-3.589,-3.66,-3.729,-3.8,-3.868,-3.936,-4.004,-4.071,-4.139,-4.204,-4.27,-4.335,-4.399,-4.464,-4.526,-4.59,-4.652,-4.714,-4.775,-4.836,-4.896,-4.956,-5.015,-5.074,-5.131,-5.19,-5.246,-5.303,-5.359,-5.414,-5.47,-5.524,-5.578,-5.632,-5.684,-5.738,-5.789,-5.841,-5.892,-5.942,-5.993,-6.042,-6.091,-6.14,-6.187,-6.236,-6.282,-6.329,-6.376,-6.421,-6.467,-6.511,-6.555,-6.599,-6.643,-6.686,-6.728,-6.77,-6.812,-6.853,-6.893,-6.933,-6.973,-7.012,-7.051,-7.09,-7.127,-7.165,-7.202,-7.239,-7.275,-7.31,-7.346,-7.381,-7.415,-7.449,-7.482,-7.516,-7.548,-7.581,-7.613,-7.644,-7.675,-7.706,-7.736,-7.766,-7.795,-7.825,-7.853,-7.881,-7.909,-7.936,-7.964,-7.99,-8.017,-8.042,-8.068,-8.093,-8.117,-8.142,-8.165,-8.189,-8.212,-8.235,-8.257,-8.279,-8.301,-8.322,-8.343,-8.364,-8.384,-8.404,-8.423,-8.442,-8.461,-8.479,-8.497,-8.515,-8.532,-8.549,-8.566,-8.582,-8.598,-8.614,-8.629,-8.644,-8.659,-8.673,-8.687,-8.7,-8.713,-8.726,-8.739,-8.751,-8.763,-8.775,-8.786,-8.797,-8.808,-8.818,-8.828,-8.838,-8.848,-8.857,-8.866,-8.874,-8.882,-8.89,-8.898,-8.905,-8.913,-8.919,-8.926,-8.932,-8.938,-8.944,-8.949,-8.954,-8.959,-8.963,-8.968,-8.972,-8.975,-8.979,-8.982,-8.985,-8.988,-8.99,-8.992,-8.994,-8.996,-8.997,-8.998,-8.999,-9,-9,-9,-8.998,-8.992,-8.982,-8.969,-8.951,-8.93,-8.906,-8.877,-8.846,-8.811,-8.772,-8.731,-8.686,-8.639,-8.587,-8.534,-8.477,-8.417,-8.355,-8.29,-8.222,-8.151,-8.079,-8.004,-7.926,-7.846,-7.764,-7.679,-7.594,-7.506,-7.416,-7.323,-7.23,-7.134,-7.036,-6.938,-6.837,-6.735,-6.632,-6.527,-6.421,-6.315,-6.208,-6.097,-5.987,-5.877,-5.765,-5.652,-5.54,-5.425,-5.31,-5.196,-5.08,-4.964,-4.849,-4.732,-4.615,-4.5,-4.385,-4.268,-4.151,-4.036,-3.92,-3.804,-3.69,-3.575,-3.46,-3.348,-3.235,-3.123,-3.013,-2.903,-2.792,-2.685,-2.579,-2.473,-2.368,-2.265,-2.163,-2.062,-1.964,-1.866,-1.77,-1.677,-1.584,-1.494,-1.406,-1.321,-1.236,-1.154,-1.074,-0.996,-0.921,-0.849,-0.778,-0.71,-0.645,-0.583,-0.523,-0.466,-0.413,-0.361,-0.314,-0.269,-0.228,-0.189,-0.154,-0.123,-0.094,-0.07,-0.049,-0.031,-0.018,-0.008,-0.002,0,-0.002,-0.007,-0.015,-0.026,-0.041,-0.059,-0.08,-0.104,-0.131,-0.161,-0.194,-0.23,-0.268,-0.31,-0.354,-0.401,-0.45,-0.502,-0.557,-0.614,-0.673,-0.735,-0.799,-0.867,-0.935,-1.006,-1.079,-1.155,-1.232,-1.311,-1.393,-1.477,-1.563,-1.65,-1.738,-1.829,-1.921,-2.015,-2.111,-2.208,-2.307,-2.409,-2.51,-2.613,-2.717,-2.823,-2.93,-3.038,-3.147,-3.259,-3.371,-3.483,-3.596,-3.711,-3.826,-3.942,-4.058,-4.176,-4.294,-4.415,-4.535,-4.655,-4.775,-4.896,-5.017,-5.139,-5.261,-5.386,-5.508,-5.631,-5.754,-5.877,-6,-6.123,-6.246,-6.369,-6.492,-6.614,-6.739,-6.861,-6.983,-7.104,-7.225,-7.345,-7.465,-7.585,-7.706,-7.824,-7.942,-8.058,-8.174,-8.289,-8.404,-8.517,-8.629,-8.741,-8.853,-8.962,-9.07,-9.177,-9.283,-9.387,-9.49,-9.591,-9.693,-9.792,-9.889,-9.985,-10.079,-10.171,-10.262,-10.35,-10.437,-10.523,-10.607,-10.689,-10.768,-10.845,-10.921,-10.994,-11.065,-11.133,-11.201,-11.265,-11.327,-11.386,-11.443,-11.498,-11.55,-11.599,-11.646,-11.69,-11.732,-11.77,-11.806,-11.839,-11.869,-11.896,-11.92,-11.941,-11.959,-11.974,-11.985,-11.993,-11.998,-12
|
||||
PARAM_ANGLE_Y=0,0.005,0.019,0.041,0.072,0.112,0.161,0.216,0.28,0.352,0.431,0.516,0.609,0.709,0.816,0.926,1.045,1.169,1.3,1.432,1.573,1.719,1.869,2.024,2.18,2.343,2.51,2.68,2.851,3.028,3.208,3.39,3.571,3.759,3.948,4.139,4.328,4.522,4.717,4.913,5.106,5.303,5.5,5.697,5.894,6.087,6.283,6.478,6.672,6.861,7.052,7.241,7.429,7.61,7.792,7.972,8.149,8.32,8.49,8.657,8.82,8.976,9.131,9.281,9.427,9.568,9.7,9.831,9.955,10.074,10.184,10.291,10.391,10.484,10.569,10.648,10.72,10.784,10.839,10.888,10.928,10.959,10.981,10.995,11,10.991,10.963,10.918,10.856,10.776,10.681,10.568,10.442,10.298,10.142,9.969,9.781,9.584,9.369,9.147,8.907,8.661,8.397,8.129,7.844,7.555,7.25,6.936,6.619,6.287,5.954,5.606,5.259,4.897,4.537,4.163,3.791,3.406,3.017,2.631,2.234,1.841,1.437,1.039,0.63,0.229,-0.183,-0.587,-1,-1.413,-1.817,-2.229,-2.63,-3.039,-3.437,-3.841,-4.234,-4.631,-5.017,-5.406,-5.791,-6.163,-6.537,-6.897,-7.259,-7.606,-7.954,-8.287,-8.619,-8.936,-9.25,-9.555,-9.844,-10.129,-10.397,-10.661,-10.907,-11.147,-11.369,-11.584,-11.781,-11.969,-12.142,-12.298,-12.442,-12.568,-12.681,-12.776,-12.856,-12.918,-12.963,-12.991,-13,-12.992,-12.969,-12.93,-12.876,-12.807,-12.724,-12.628,-12.518,-12.395,-12.259,-12.11,-11.949,-11.775,-11.588,-11.393,-11.186,-10.969,-10.742,-10.505,-10.259,-10,-9.735,-9.459,-9.177,-8.888,-8.591,-8.287,-7.976,-7.659,-7.331,-6.998,-6.663,-6.323,-5.978,-5.628,-5.274,-4.917,-4.555,-4.187,-3.815,-3.446,-3.074,-2.7,-2.325,-1.948,-1.571,-1.189,-0.811,-0.429,-0.052,0.325,0.7,1.074,1.446,1.815,2.187,2.555,2.917,3.274,3.628,3.978,4.323,4.663,4.998,5.331,5.659,5.976,6.287,6.591,6.888,7.177,7.459,7.735,8,8.259,8.505,8.742,8.969,9.186,9.393,9.588,9.775,9.949,10.11,10.259,10.395,10.518,10.628,10.724,10.807,10.876,10.93,10.969,10.992,11,10.991,10.963,10.918,10.856,10.776,10.681,10.568,10.442,10.298,10.142,9.969,9.781,9.584,9.369,9.147,8.907,8.661,8.397,8.129,7.844,7.555,7.25,6.936,6.619,6.287,5.954,5.606,5.259,4.897,4.537,4.163,3.791,3.406,3.017,2.631,2.234,1.841,1.437,1.039,0.63,0.229,-0.183,-0.587,-1,-1.413,-1.817,-2.229,-2.63,-3.039,-3.437,-3.841,-4.234,-4.631,-5.017,-5.406,-5.791,-6.163,-6.537,-6.897,-7.259,-7.606,-7.954,-8.287,-8.619,-8.936,-9.25,-9.555,-9.844,-10.129,-10.397,-10.661,-10.907,-11.147,-11.369,-11.584,-11.781,-11.969,-12.142,-12.298,-12.442,-12.568,-12.681,-12.776,-12.856,-12.918,-12.963,-12.991,-13,-12.99,-12.962,-12.914,-12.849,-12.766,-12.665,-12.55,-12.416,-12.265,-12.103,-11.922,-11.727,-11.521,-11.298,-11.066,-10.817,-10.556,-10.288,-10.003,-9.707,-9.407,-9.091,-8.771,-8.436,-8.093,-7.748,-7.388,-7.021,-6.655,-6.275,-5.897,-5.505,-5.108,-4.715,-4.31,-3.901,-3.497,-3.082,-2.669,-2.255,-1.834,-1.422,-1,-0.578,-0.166,0.255,0.669,1.082,1.497,1.901,2.31,2.715,3.108,3.505,3.897,4.275,4.655,5.021,5.388,5.748,6.093,6.436,6.771,7.091,7.407,7.707,8.003,8.288,8.556,8.817,9.066,9.298,9.521,9.727,9.922,10.103,10.265,10.416,10.55,10.665,10.766,10.849,10.914,10.962,10.99,11,10.991,10.963,10.918,10.856,10.776,10.681,10.568,10.442,10.298,10.142,9.969,9.781,9.584,9.369,9.147,8.907,8.661,8.397,8.129,7.844,7.555,7.25,6.936,6.619,6.287,5.954,5.606,5.259,4.897,4.537,4.163,3.791,3.406,3.017,2.631,2.234,1.841,1.437,1.039,0.63,0.229,-0.183,-0.587,-1,-1.413,-1.817,-2.229,-2.63,-3.039,-3.437,-3.841,-4.234,-4.631,-5.017,-5.406,-5.791,-6.163,-6.537,-6.897,-7.259,-7.606,-7.954,-8.287,-8.619,-8.936,-9.25,-9.555,-9.844,-10.129,-10.397,-10.661,-10.907,-11.147,-11.369,-11.584,-11.781,-11.969,-12.142,-12.298,-12.442,-12.568,-12.681,-12.776,-12.856,-12.918,-12.963,-12.991,-13,-12.99,-12.959,-12.908,-12.839,-12.749,-12.642,-12.518,-12.373,-12.215,-12.039,-11.846,-11.641,-11.416,-11.181,-10.933,-10.666,-10.392,-10.105,-9.801,-9.491,-9.171,-8.833,-8.493,-8.143,-7.778,-7.411,-7.037,-6.647,-6.259,-5.864,-5.456,-5.05,-4.631,-4.217,-3.798,-3.368,-2.944,-2.517,-2.08,-1.65,-1.22,-0.78,-0.35,0.08,0.517,0.944,1.368,1.798,2.217,2.631,3.05,3.456,3.864,4.259,4.647,5.037,5.411,5.778,6.143,6.493,6.833,7.171,7.491,7.801,8.105,8.392,8.666,8.933,9.181,9.416,9.641,9.846,10.039,10.215,10.373,10.518,10.642,10.749,10.839,10.908,10.959,10.99,11,10.992,10.969,10.932,10.88,10.815,10.736,10.645,10.541,10.426,10.299,10.162,10.014,9.857,9.69,9.514,9.329,9.137,8.937,8.731,8.518,8.299,8.074,7.844,7.61,7.368,7.13,6.881,6.637,6.383,6.135,5.878,5.629,5.371,5.122,4.865,4.617,4.363,4.119,3.87,3.632,3.39,3.156,2.926,2.701,2.482,2.269,2.063,1.863,1.671,1.486,1.31,1.143,0.986,0.838,0.701,0.574,0.459,0.355,0.264,0.185,0.12,0.068,0.031,0.008,0
|
||||
PARAM_ANGLE_Z=8,7.998,7.993,7.984,7.971,7.955,7.935,7.912,7.885,7.856,7.822,7.786,7.746,7.703,7.658,7.609,7.556,7.502,7.444,7.382,7.319,7.253,7.183,7.111,7.037,6.959,6.88,6.798,6.712,6.625,6.536,6.443,6.349,6.251,6.152,6.052,5.947,5.843,5.736,5.625,5.514,5.402,5.285,5.169,5.051,4.929,4.807,4.684,4.557,4.431,4.303,4.172,4.041,3.906,3.773,3.639,3.5,3.363,3.225,3.083,2.943,2.801,2.656,2.513,2.369,2.221,2.075,1.929,1.778,1.631,1.482,1.33,1.18,1.029,0.877,0.726,0.571,0.42,0.268,0.113,-0.04,-0.192,-0.347,-0.5,-0.653,-0.808,-0.96,-1.113,-1.268,-1.42,-1.571,-1.726,-1.877,-2.029,-2.18,-2.33,-2.482,-2.631,-2.778,-2.929,-3.075,-3.221,-3.369,-3.513,-3.656,-3.801,-3.943,-4.083,-4.225,-4.363,-4.5,-4.639,-4.773,-4.906,-5.041,-5.172,-5.303,-5.431,-5.557,-5.684,-5.807,-5.929,-6.051,-6.169,-6.285,-6.402,-6.514,-6.625,-6.736,-6.843,-6.947,-7.052,-7.152,-7.251,-7.349,-7.443,-7.536,-7.625,-7.712,-7.798,-7.88,-7.959,-8.037,-8.111,-8.183,-8.253,-8.319,-8.382,-8.444,-8.502,-8.556,-8.609,-8.658,-8.703,-8.746,-8.786,-8.822,-8.856,-8.885,-8.912,-8.935,-8.955,-8.971,-8.984,-8.993,-8.998,-9,-8.998,-8.992,-8.981,-8.967,-8.948,-8.926,-8.9,-8.869,-8.836,-8.798,-8.756,-8.711,-8.662,-8.61,-8.554,-8.494,-8.432,-8.366,-8.295,-8.223,-8.147,-8.067,-7.985,-7.901,-7.811,-7.72,-7.625,-7.527,-7.428,-7.324,-7.219,-7.111,-6.998,-6.885,-6.77,-6.65,-6.529,-6.407,-6.279,-6.151,-6.022,-5.887,-5.753,-5.616,-5.476,-5.336,-5.191,-5.047,-4.901,-4.75,-4.601,-4.45,-4.294,-4.139,-3.983,-3.822,-3.663,-3.503,-3.338,-3.175,-3.009,-2.841,-2.674,-2.503,-2.334,-2.164,-1.989,-1.817,-1.644,-1.467,-1.292,-1.117,-0.937,-0.761,-0.583,-0.402,-0.223,-0.043,0.138,0.318,0.502,0.682,0.862,1.046,1.227,1.408,1.592,1.773,1.954,2.138,2.318,2.498,2.682,2.862,3.043,3.223,3.402,3.583,3.761,3.937,4.117,4.292,4.467,4.644,4.817,4.989,5.164,5.334,5.503,5.674,5.841,6.009,6.175,6.338,6.503,6.663,6.822,6.983,7.139,7.294,7.45,7.601,7.75,7.901,8.047,8.191,8.336,8.476,8.616,8.753,8.887,9.022,9.151,9.279,9.407,9.529,9.65,9.77,9.885,9.998,10.111,10.219,10.324,10.428,10.527,10.625,10.72,10.811,10.901,10.985,11.067,11.147,11.223,11.295,11.366,11.432,11.494,11.554,11.61,11.662,11.711,11.756,11.798,11.836,11.869,11.9,11.926,11.948,11.967,11.981,11.992,11.998,12,11.999,11.994,11.987,11.976,11.963,11.947,11.928,11.906,11.881,11.853,11.823,11.791,11.755,11.717,11.676,11.633,11.587,11.539,11.488,11.435,11.379,11.32,11.26,11.197,11.133,11.066,10.995,10.923,10.849,10.773,10.695,10.615,10.532,10.447,10.361,10.273,10.183,10.091,9.997,9.9,9.802,9.703,9.602,9.5,9.394,9.287,9.18,9.07,8.96,8.847,8.732,8.616,8.499,8.381,8.262,8.141,8.017,7.892,7.768,7.642,7.515,7.386,7.256,7.123,6.992,6.859,6.726,6.591,6.454,6.316,6.178,6.04,5.901,5.761,5.619,5.475,5.333,5.191,5.047,4.903,4.757,4.61,4.464,4.318,4.171,4.024,3.874,3.724,3.576,3.428,3.279,3.129,2.978,2.829,2.677,2.527,2.377,2.227,2.075,1.925,1.773,1.623,1.473,1.323,1.173,1.022,0.871,0.721,0.572,0.424,0.276,0.126,-0.024,-0.171,-0.318,-0.464,-0.61,-0.757,-0.903,-1.047,-1.191,-1.333,-1.475,-1.619,-1.761,-1.901,-2.04,-2.178,-2.316,-2.454,-2.591,-2.726,-2.859,-2.992,-3.123,-3.256,-3.386,-3.515,-3.642,-3.768,-3.892,-4.017,-4.141,-4.262,-4.381,-4.499,-4.616,-4.732,-4.847,-4.96,-5.07,-5.18,-5.287,-5.394,-5.5,-5.602,-5.703,-5.802,-5.9,-5.997,-6.091,-6.183,-6.273,-6.361,-6.447,-6.532,-6.615,-6.695,-6.773,-6.849,-6.923,-6.995,-7.066,-7.133,-7.197,-7.26,-7.32,-7.379,-7.435,-7.488,-7.539,-7.587,-7.633,-7.676,-7.717,-7.755,-7.791,-7.823,-7.853,-7.881,-7.906,-7.928,-7.947,-7.963,-7.976,-7.987,-7.994,-7.999,-8,-7.998,-7.99,-7.978,-7.961,-7.939,-7.913,-7.883,-7.847,-7.808,-7.764,-7.715,-7.663,-7.606,-7.546,-7.481,-7.413,-7.34,-7.264,-7.185,-7.101,-7.014,-6.925,-6.83,-6.734,-6.634,-6.531,-6.424,-6.314,-6.202,-6.086,-5.968,-5.846,-5.722,-5.596,-5.467,-5.335,-5.202,-5.065,-4.929,-4.789,-4.646,-4.501,-4.354,-4.206,-4.055,-3.903,-3.749,-3.594,-3.436,-3.278,-3.118,-2.957,-2.794,-2.633,-2.466,-2.303,-2.136,-1.968,-1.8,-1.63,-1.46,-1.29,-1.119,-0.947,-0.775,-0.603,-0.43,-0.258,-0.088,0.088,0.258,0.43,0.603,0.775,0.947,1.119,1.29,1.46,1.63,1.8,1.968,2.136,2.303,2.466,2.633,2.794,2.957,3.118,3.278,3.436,3.594,3.749,3.903,4.055,4.206,4.354,4.501,4.646,4.789,4.929,5.065,5.202,5.335,5.467,5.596,5.722,5.846,5.968,6.086,6.202,6.314,6.424,6.531,6.634,6.734,6.83,6.925,7.014,7.101,7.185,7.264,7.34,7.413,7.481,7.546,7.606,7.663,7.715,7.764,7.808,7.847,7.883,7.913,7.939,7.961,7.978,7.99,7.998,8
|
||||
PARAM_BODY_ANGLE_X=0
|
||||
PARAM_BODY_ANGLE_Y=-4,-3.998,-3.992,-3.983,-3.97,-3.954,-3.934,-3.911,-3.885,-3.856,-3.824,-3.789,-3.751,-3.711,-3.668,-3.622,-3.574,-3.524,-3.472,-3.417,-3.361,-3.302,-3.242,-3.181,-3.117,-3.052,-2.985,-2.918,-2.848,-2.778,-2.708,-2.636,-2.563,-2.489,-2.415,-2.34,-2.264,-2.19,-2.114,-2.038,-1.962,-1.886,-1.81,-1.736,-1.66,-1.585,-1.511,-1.437,-1.364,-1.292,-1.222,-1.152,-1.082,-1.015,-0.948,-0.883,-0.819,-0.758,-0.698,-0.639,-0.583,-0.528,-0.476,-0.426,-0.378,-0.332,-0.289,-0.249,-0.211,-0.176,-0.144,-0.115,-0.089,-0.066,-0.046,-0.03,-0.017,-0.008,-0.002,0,-0,-0,-0.001,-0.002,-0.002,-0.004,-0.005,-0.006,-0.008,-0.01,-0.012,-0.014,-0.016,-0.019,-0.021,-0.024,-0.027,-0.03,-0.034,-0.037,-0.041,-0.044,-0.048,-0.052,-0.057,-0.061,-0.065,-0.07,-0.075,-0.08,-0.085,-0.09,-0.095,-0.101,-0.106,-0.112,-0.118,-0.123,-0.13,-0.136,-0.142,-0.148,-0.155,-0.161,-0.168,-0.174,-0.181,-0.188,-0.195,-0.202,-0.209,-0.217,-0.224,-0.231,-0.239,-0.247,-0.254,-0.262,-0.27,-0.277,-0.285,-0.293,-0.301,-0.309,-0.317,-0.326,-0.334,-0.342,-0.35,-0.359,-0.367,-0.375,-0.384,-0.392,-0.401,-0.409,-0.418,-0.427,-0.435,-0.444,-0.452,-0.461,-0.47,-0.478,-0.487,-0.496,-0.504,-0.513,-0.522,-0.53,-0.539,-0.548,-0.556,-0.565,-0.573,-0.582,-0.591,-0.599,-0.608,-0.616,-0.625,-0.633,-0.641,-0.65,-0.658,-0.666,-0.674,-0.683,-0.691,-0.699,-0.707,-0.715,-0.723,-0.73,-0.738,-0.746,-0.753,-0.761,-0.769,-0.776,-0.783,-0.791,-0.798,-0.805,-0.812,-0.819,-0.826,-0.832,-0.839,-0.845,-0.852,-0.858,-0.864,-0.87,-0.877,-0.882,-0.888,-0.894,-0.899,-0.905,-0.91,-0.915,-0.92,-0.925,-0.93,-0.935,-0.939,-0.943,-0.948,-0.952,-0.956,-0.959,-0.963,-0.966,-0.97,-0.973,-0.976,-0.979,-0.981,-0.984,-0.986,-0.988,-0.99,-0.992,-0.994,-0.995,-0.996,-0.998,-0.998,-0.999,-1,-1,-1,-1,-1,-1,-0.999,-0.999,-0.999,-0.998,-0.998,-0.997,-0.996,-0.996,-0.995,-0.994,-0.993,-0.992,-0.991,-0.989,-0.988,-0.987,-0.986,-0.984,-0.983,-0.981,-0.979,-0.978,-0.976,-0.974,-0.972,-0.97,-0.968,-0.966,-0.964,-0.962,-0.96,-0.957,-0.955,-0.953,-0.95,-0.948,-0.945,-0.942,-0.94,-0.937,-0.934,-0.931,-0.928,-0.925,-0.922,-0.919,-0.916,-0.913,-0.91,-0.907,-0.903,-0.9,-0.897,-0.893,-0.89,-0.886,-0.883,-0.879,-0.875,-0.872,-0.868,-0.864,-0.86,-0.857,-0.853,-0.849,-0.845,-0.841,-0.837,-0.833,-0.828,-0.824,-0.82,-0.816,-0.812,-0.807,-0.803,-0.799,-0.794,-0.79,-0.785,-0.781,-0.776,-0.772,-0.767,-0.763,-0.758,-0.753,-0.749,-0.744,-0.739,-0.734,-0.73,-0.725,-0.72,-0.715,-0.71,-0.705,-0.7,-0.695,-0.69,-0.685,-0.681,-0.675,-0.67,-0.665,-0.66,-0.655,-0.65,-0.645,-0.64,-0.635,-0.629,-0.624,-0.619,-0.614,-0.609,-0.603,-0.598,-0.593,-0.588,-0.582,-0.577,-0.572,-0.567,-0.561,-0.556,-0.551,-0.545,-0.54,-0.535,-0.529,-0.524,-0.519,-0.513,-0.508,-0.503,-0.497,-0.492,-0.487,-0.481,-0.476,-0.471,-0.465,-0.46,-0.455,-0.449,-0.444,-0.439,-0.433,-0.428,-0.423,-0.418,-0.412,-0.407,-0.402,-0.397,-0.391,-0.386,-0.381,-0.376,-0.371,-0.365,-0.36,-0.355,-0.35,-0.345,-0.34,-0.335,-0.33,-0.325,-0.319,-0.315,-0.31,-0.305,-0.3,-0.295,-0.29,-0.285,-0.28,-0.275,-0.27,-0.266,-0.261,-0.256,-0.251,-0.247,-0.242,-0.237,-0.233,-0.228,-0.224,-0.219,-0.215,-0.21,-0.206,-0.201,-0.197,-0.193,-0.188,-0.184,-0.18,-0.176,-0.172,-0.167,-0.163,-0.159,-0.155,-0.151,-0.147,-0.143,-0.14,-0.136,-0.132,-0.128,-0.125,-0.121,-0.117,-0.114,-0.11,-0.107,-0.103,-0.1,-0.097,-0.093,-0.09,-0.087,-0.084,-0.081,-0.078,-0.075,-0.072,-0.069,-0.066,-0.063,-0.06,-0.058,-0.055,-0.052,-0.05,-0.047,-0.045,-0.043,-0.04,-0.038,-0.036,-0.034,-0.032,-0.03,-0.028,-0.026,-0.024,-0.022,-0.021,-0.019,-0.017,-0.016,-0.014,-0.013,-0.012,-0.011,-0.009,-0.008,-0.007,-0.006,-0.005,-0.004,-0.004,-0.003,-0.002,-0.002,-0.001,-0.001,-0.001,-0,-0,-0,0,-0,-0,-0,-0,-0.001,-0.001,-0.002,-0.003,-0.003,-0.005,-0.006,-0.008,-0.01,-0.012,-0.015,-0.018,-0.021,-0.025,-0.029,-0.033,-0.038,-0.044,-0.05,-0.056,-0.063,-0.071,-0.079,-0.088,-0.098,-0.108,-0.119,-0.13,-0.142,-0.155,-0.169,-0.184,-0.199,-0.215,-0.232,-0.25,-0.269,-0.289,-0.309,-0.331,-0.354,-0.377,-0.402,-0.428,-0.454,-0.482,-0.511,-0.542,-0.573,-0.605,-0.639,-0.674,-0.71,-0.747,-0.786,-0.826,-0.868,-0.91,-0.954,-1,-1.046,-1.093,-1.141,-1.189,-1.237,-1.285,-1.334,-1.384,-1.433,-1.483,-1.533,-1.583,-1.634,-1.684,-1.735,-1.785,-1.836,-1.887,-1.938,-1.989,-2.039,-2.09,-2.141,-2.192,-2.242,-2.292,-2.342,-2.392,-2.442,-2.491,-2.54,-2.588,-2.637,-2.685,-2.732,-2.779,-2.825,-2.872,-2.917,-2.962,-3.006,-3.05,-3.094,-3.136,-3.178,-3.219,-3.259,-3.299,-3.338,-3.376,-3.413,-3.449,-3.485,-3.519,-3.552,-3.585,-3.616,-3.647,-3.676,-3.705,-3.732,-3.758,-3.783,-3.806,-3.829,-3.85,-3.87,-3.889,-3.906,-3.922,-3.936,-3.949,-3.961,-3.971,-3.98,-3.987,-3.993,-3.997,-3.999,-4
|
||||
BODY_STRETCH=0,0,0.002,0.004,0.007,0.011,0.016,0.021,0.028,0.035,0.043,0.051,0.061,0.071,0.082,0.093,0.105,0.118,0.132,0.146,0.16,0.176,0.192,0.208,0.225,0.242,0.26,0.279,0.298,0.317,0.337,0.358,0.379,0.4,0.421,0.443,0.465,0.488,0.511,0.534,0.558,0.581,0.605,0.63,0.654,0.679,0.704,0.729,0.754,0.78,0.806,0.831,0.857,0.883,0.909,0.935,0.961,0.987,1.013,1.039,1.065,1.091,1.117,1.143,1.169,1.194,1.22,1.246,1.271,1.296,1.321,1.346,1.37,1.395,1.419,1.442,1.466,1.489,1.512,1.535,1.557,1.579,1.6,1.621,1.642,1.663,1.683,1.702,1.721,1.74,1.758,1.775,1.792,1.808,1.824,1.84,1.854,1.868,1.882,1.895,1.907,1.918,1.929,1.939,1.949,1.957,1.965,1.972,1.979,1.984,1.989,1.993,1.996,1.998,2,2,2,1.999,1.997,1.995,1.992,1.989,1.985,1.981,1.976,1.97,1.964,1.957,1.95,1.942,1.934,1.925,1.916,1.906,1.896,1.885,1.873,1.861,1.849,1.836,1.823,1.809,1.795,1.781,1.765,1.75,1.734,1.718,1.701,1.684,1.666,1.648,1.63,1.611,1.592,1.572,1.552,1.532,1.512,1.49,1.469,1.447,1.426,1.403,1.38,1.358,1.334,1.311,1.287,1.263,1.239,1.214,1.189,1.164,1.139,1.113,1.087,1.061,1.034,1.008,0.981,0.954,0.927,0.899,0.872,0.844,0.816,0.788,0.759,0.731,0.702,0.674,0.644,0.615,0.586,0.557,0.528,0.498,0.468,0.438,0.408,0.379,0.349,0.319,0.288,0.258,0.228,0.197,0.168,0.137,0.107,0.076,0.045,0.015,-0.015,-0.045,-0.076,-0.107,-0.137,-0.168,-0.197,-0.228,-0.258,-0.288,-0.319,-0.349,-0.379,-0.408,-0.438,-0.468,-0.498,-0.528,-0.557,-0.586,-0.615,-0.644,-0.674,-0.702,-0.731,-0.759,-0.788,-0.816,-0.844,-0.872,-0.899,-0.927,-0.954,-0.981,-1.008,-1.034,-1.061,-1.087,-1.113,-1.139,-1.164,-1.189,-1.214,-1.239,-1.263,-1.287,-1.311,-1.334,-1.358,-1.38,-1.403,-1.426,-1.447,-1.469,-1.49,-1.512,-1.532,-1.552,-1.572,-1.592,-1.611,-1.63,-1.648,-1.666,-1.684,-1.701,-1.718,-1.734,-1.75,-1.765,-1.781,-1.795,-1.809,-1.823,-1.836,-1.849,-1.861,-1.873,-1.885,-1.896,-1.906,-1.916,-1.925,-1.934,-1.942,-1.95,-1.957,-1.964,-1.97,-1.976,-1.981,-1.985,-1.989,-1.992,-1.995,-1.997,-1.999,-2,-2,-2,-1.999,-1.998,-1.996,-1.994,-1.991,-1.988,-1.984,-1.98,-1.976,-1.971,-1.965,-1.959,-1.953,-1.946,-1.939,-1.931,-1.923,-1.915,-1.906,-1.897,-1.887,-1.877,-1.866,-1.856,-1.844,-1.833,-1.821,-1.808,-1.795,-1.782,-1.769,-1.755,-1.741,-1.726,-1.711,-1.696,-1.68,-1.665,-1.649,-1.632,-1.615,-1.598,-1.58,-1.563,-1.545,-1.526,-1.508,-1.489,-1.47,-1.45,-1.431,-1.411,-1.39,-1.37,-1.349,-1.328,-1.307,-1.285,-1.264,-1.242,-1.22,-1.197,-1.175,-1.152,-1.129,-1.106,-1.082,-1.059,-1.035,-1.011,-0.987,-0.963,-0.939,-0.914,-0.889,-0.864,-0.839,-0.814,-0.789,-0.763,-0.738,-0.712,-0.686,-0.66,-0.634,-0.608,-0.581,-0.555,-0.529,-0.502,-0.475,-0.448,-0.422,-0.395,-0.368,-0.341,-0.314,-0.287,-0.259,-0.232,-0.205,-0.178,-0.151,-0.123,-0.096,-0.068,-0.041,-0.014,0.014,0.041,0.068,0.096,0.123,0.151,0.178,0.205,0.232,0.259,0.287,0.314,0.341,0.368,0.395,0.422,0.448,0.475,0.502,0.529,0.555,0.581,0.608,0.634,0.66,0.686,0.712,0.738,0.763,0.789,0.814,0.839,0.864,0.889,0.914,0.939,0.963,0.987,1.011,1.035,1.059,1.082,1.106,1.129,1.152,1.175,1.197,1.22,1.242,1.264,1.285,1.307,1.328,1.349,1.37,1.39,1.411,1.431,1.45,1.47,1.489,1.508,1.526,1.545,1.563,1.58,1.598,1.615,1.632,1.649,1.665,1.68,1.696,1.711,1.726,1.741,1.755,1.769,1.782,1.795,1.808,1.821,1.833,1.844,1.856,1.866,1.877,1.887,1.897,1.906,1.915,1.923,1.931,1.939,1.946,1.953,1.959,1.965,1.971,1.976,1.98,1.984,1.988,1.991,1.994,1.996,1.998,1.999,2,2,2,1.999,1.998,1.996,1.993,1.99,1.987,1.983,1.978,1.973,1.968,1.962,1.955,1.948,1.941,1.933,1.925,1.916,1.907,1.898,1.888,1.878,1.867,1.856,1.844,1.832,1.82,1.808,1.795,1.781,1.768,1.754,1.74,1.725,1.71,1.695,1.68,1.664,1.648,1.632,1.616,1.599,1.582,1.564,1.547,1.53,1.512,1.494,1.476,1.457,1.438,1.42,1.401,1.382,1.362,1.343,1.324,1.304,1.284,1.264,1.244,1.224,1.204,1.184,1.164,1.143,1.123,1.102,1.082,1.061,1.041,1.021,1,0.979,0.959,0.939,0.918,0.898,0.877,0.857,0.836,0.816,0.796,0.776,0.756,0.736,0.716,0.696,0.676,0.657,0.638,0.618,0.599,0.58,0.562,0.543,0.524,0.506,0.488,0.47,0.453,0.436,0.418,0.401,0.384,0.368,0.352,0.336,0.32,0.305,0.29,0.275,0.26,0.246,0.232,0.219,0.205,0.192,0.18,0.168,0.156,0.144,0.133,0.122,0.112,0.102,0.093,0.084,0.075,0.067,0.059,0.052,0.045,0.038,0.032,0.027,0.022,0.017,0.013,0.01,0.007,0.004,0.002,0.001,0,0
|
||||
PARAM_BREATH=0,0,0.002,0.004,0.007,0.011,0.015,0.021,0.027,0.034,0.041,0.049,0.058,0.067,0.077,0.088,0.099,0.111,0.123,0.136,0.149,0.163,0.177,0.192,0.207,0.222,0.238,0.254,0.27,0.287,0.304,0.321,0.338,0.355,0.373,0.391,0.409,0.427,0.445,0.463,0.482,0.5,0.518,0.537,0.555,0.573,0.591,0.609,0.627,0.645,0.662,0.679,0.696,0.713,0.73,0.746,0.762,0.778,0.793,0.808,0.823,0.837,0.851,0.864,0.877,0.889,0.901,0.912,0.923,0.933,0.942,0.951,0.959,0.966,0.973,0.979,0.985,0.989,0.993,0.996,0.998,1,1,1,0.999,0.997,0.995,0.993,0.989,0.986,0.982,0.977,0.972,0.966,0.96,0.953,0.946,0.938,0.931,0.922,0.914,0.905,0.895,0.885,0.875,0.865,0.854,0.843,0.832,0.82,0.808,0.796,0.784,0.771,0.758,0.745,0.732,0.719,0.705,0.692,0.678,0.664,0.65,0.636,0.622,0.607,0.593,0.579,0.564,0.55,0.536,0.521,0.507,0.493,0.478,0.464,0.45,0.436,0.422,0.408,0.395,0.381,0.368,0.355,0.342,0.329,0.316,0.304,0.292,0.28,0.268,0.257,0.246,0.235,0.225,0.215,0.205,0.195,0.186,0.178,0.169,0.162,0.154,0.147,0.14,0.134,0.128,0.123,0.118,0.114,0.111,0.107,0.105,0.103,0.101,0.1,0.1,0.1,0.101,0.103,0.105,0.107,0.111,0.114,0.118,0.123,0.128,0.134,0.14,0.147,0.154,0.162,0.169,0.178,0.186,0.195,0.205,0.215,0.225,0.235,0.246,0.257,0.268,0.28,0.292,0.304,0.316,0.329,0.342,0.355,0.368,0.381,0.395,0.408,0.422,0.436,0.45,0.464,0.478,0.493,0.507,0.521,0.536,0.55,0.564,0.579,0.593,0.607,0.622,0.636,0.65,0.664,0.678,0.692,0.705,0.719,0.732,0.745,0.758,0.771,0.784,0.796,0.808,0.82,0.832,0.843,0.854,0.865,0.875,0.885,0.895,0.905,0.914,0.922,0.931,0.938,0.946,0.953,0.96,0.966,0.972,0.977,0.982,0.986,0.989,0.993,0.995,0.997,0.999,1,1,1,0.998,0.996,0.993,0.99,0.985,0.98,0.975,0.968,0.961,0.953,0.945,0.936,0.926,0.916,0.905,0.894,0.882,0.87,0.857,0.844,0.83,0.816,0.802,0.787,0.772,0.756,0.741,0.725,0.708,0.692,0.675,0.658,0.641,0.624,0.607,0.589,0.571,0.553,0.536,0.518,0.5,0.482,0.464,0.447,0.429,0.411,0.393,0.376,0.359,0.342,0.325,0.308,0.292,0.275,0.259,0.244,0.228,0.213,0.198,0.184,0.17,0.156,0.143,0.13,0.118,0.106,0.095,0.084,0.074,0.064,0.055,0.047,0.039,0.032,0.025,0.02,0.015,0.01,0.007,0.004,0.002,0,0,0,0.002,0.003,0.006,0.009,0.013,0.018,0.023,0.029,0.035,0.042,0.05,0.058,0.067,0.076,0.085,0.096,0.106,0.117,0.129,0.141,0.153,0.166,0.178,0.192,0.205,0.219,0.233,0.248,0.262,0.277,0.292,0.308,0.323,0.339,0.354,0.37,0.386,0.402,0.418,0.434,0.45,0.466,0.482,0.498,0.514,0.53,0.546,0.561,0.577,0.592,0.608,0.623,0.638,0.652,0.667,0.681,0.695,0.708,0.722,0.734,0.747,0.759,0.771,0.783,0.794,0.804,0.815,0.824,0.833,0.842,0.85,0.858,0.865,0.871,0.877,0.882,0.887,0.891,0.894,0.897,0.898,0.9,0.9,0.9,0.899,0.897,0.895,0.893,0.89,0.886,0.882,0.877,0.872,0.867,0.861,0.854,0.847,0.84,0.832,0.824,0.815,0.806,0.797,0.787,0.778,0.767,0.757,0.746,0.735,0.723,0.712,0.7,0.687,0.675,0.662,0.65,0.637,0.624,0.61,0.597,0.583,0.57,0.556,0.542,0.528,0.514,0.5,0.486,0.471,0.457,0.443,0.429,0.414,0.4,0.386,0.372,0.358,0.344,0.33,0.317,0.303,0.29,0.276,0.263,0.25,0.238,0.225,0.213,0.2,0.188,0.177,0.165,0.154,0.143,0.133,0.122,0.113,0.103,0.094,0.085,0.076,0.068,0.06,0.053,0.046,0.039,0.033,0.028,0.023,0.018,0.014,0.01,0.007,0.005,0.003,0.001,0,0,0,0.002,0.004,0.007,0.011,0.015,0.021,0.027,0.034,0.041,0.049,0.058,0.067,0.077,0.088,0.099,0.111,0.123,0.136,0.149,0.163,0.177,0.192,0.207,0.222,0.238,0.254,0.27,0.287,0.304,0.321,0.338,0.355,0.373,0.391,0.409,0.427,0.445,0.463,0.482,0.5,0.518,0.537,0.555,0.573,0.591,0.609,0.627,0.645,0.662,0.679,0.696,0.713,0.73,0.746,0.762,0.778,0.793,0.808,0.823,0.837,0.851,0.864,0.877,0.889,0.901,0.912,0.923,0.933,0.942,0.951,0.959,0.966,0.973,0.979,0.985,0.989,0.993,0.996,0.998,1,1,0.999,0.997,0.993,0.988,0.982,0.974,0.965,0.954,0.943,0.93,0.917,0.902,0.887,0.87,0.853,0.835,0.816,0.796,0.776,0.755,0.733,0.711,0.689,0.666,0.643,0.62,0.596,0.572,0.548,0.524,0.5,0.476,0.452,0.428,0.404,0.38,0.357,0.334,0.311,0.289,0.267,0.245,0.224,0.204,0.184,0.165,0.147,0.13,0.113,0.098,0.083,0.07,0.057,0.046,0.035,0.026,0.018,0.012,0.007,0.003,0.001,0
|
||||
CHAR_POS_X=0
|
||||
FLAG2=1
|
||||
ARM_LEFT=1
|
||||
ARM_RIGHT=1
|
||||
ARM_2_LEFT=0
|
||||
ARM_2_RIGHT=0
|
||||
ARM_3_LEFT=0
|
||||
ARM_3_RIGHT=0
|
||||
STAR_EYE=0
|
||||
PARAM_EYE_L_OPEN=0
|
||||
PARAM_EYE_R_OPEN=0
|
||||
PARAM_EYE_L_SMILE=0
|
||||
PARAM_EYE_R_SMILE=0
|
||||
PARAM_EYE_BALL_X=0,0,0.002,0.004,0.006,0.01,0.013,0.018,0.023,0.028,0.033,0.039,0.044,0.05,0.056,0.061,0.067,0.072,0.077,0.082,0.087,0.09,0.094,0.096,0.098,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.099,0.099,0.099,0.099,0.099,0.099,0.099,0.099,0.099,0.099,0.099,0.099,0.099,0.099,0.099,0.099,0.099,0.099,0.098,0.098,0.098,0.098,0.098,0.098,0.098,0.098,0.098,0.098,0.098,0.098,0.098,0.098,0.097,0.097,0.097,0.097,0.097,0.097,0.097,0.097,0.097,0.097,0.096,0.096,0.096,0.096,0.096,0.096,0.096,0.096,0.096,0.096,0.095,0.095,0.095,0.095,0.095,0.095,0.095,0.095,0.095,0.094,0.094,0.094,0.094,0.094,0.094,0.094,0.094,0.093,0.093,0.093,0.093,0.093,0.093,0.093,0.092,0.092,0.092,0.092,0.092,0.092,0.092,0.091,0.091,0.091,0.091,0.091,0.091,0.091,0.09,0.09,0.09,0.09,0.09,0.09,0.089,0.089,0.089,0.089,0.089,0.089,0.088,0.088,0.088,0.088,0.088,0.088,0.087,0.087,0.087,0.087,0.087,0.087,0.086,0.086,0.086,0.086,0.086,0.086,0.085,0.085,0.085,0.085,0.085,0.084,0.084,0.084,0.084,0.084,0.083,0.083,0.083,0.083,0.083,0.083,0.082,0.082,0.082,0.082,0.082,0.081,0.081,0.081,0.081,0.081,0.08,0.08,0.08,0.08,0.08,0.079,0.079,0.079,0.079,0.079,0.078,0.078,0.078,0.078,0.077,0.077,0.077,0.077,0.077,0.076,0.076,0.076,0.076,0.076,0.075,0.075,0.075,0.075,0.074,0.074,0.074,0.074,0.074,0.073,0.073,0.073,0.073,0.072,0.072,0.072,0.072,0.072,0.071,0.071,0.071,0.071,0.07,0.07,0.07,0.07,0.069,0.069,0.069,0.069,0.069,0.068,0.068,0.068,0.068,0.067,0.067,0.067,0.067,0.066,0.066,0.066,0.066,0.066,0.065,0.065,0.065,0.065,0.064,0.064,0.064,0.064,0.063,0.063,0.063,0.063,0.062,0.062,0.062,0.062,0.061,0.061,0.061,0.061,0.06,0.06,0.06,0.06,0.059,0.059,0.059,0.059,0.059,0.058,0.058,0.058,0.058,0.057,0.057,0.057,0.057,0.056,0.056,0.056,0.056,0.055,0.055,0.055,0.055,0.054,0.054,0.054,0.054,0.053,0.053,0.053,0.053,0.052,0.052,0.052,0.052,0.051,0.051,0.051,0.051,0.05,0.05,0.05,0.05,0.049,0.049,0.049,0.049,0.048,0.048,0.048,0.048,0.047,0.047,0.047,0.047,0.046,0.046,0.046,0.046,0.045,0.045,0.045,0.045,0.044,0.044,0.044,0.044,0.043,0.043,0.043,0.043,0.042,0.042,0.042,0.042,0.041,0.041,0.041,0.041,0.041,0.04,0.04,0.04,0.04,0.039,0.039,0.039,0.039,0.038,0.038,0.038,0.038,0.037,0.037,0.037,0.037,0.036,0.036,0.036,0.036,0.035,0.035,0.035,0.035,0.034,0.034,0.034,0.034,0.034,0.033,0.033,0.033,0.033,0.032,0.032,0.032,0.032,0.031,0.031,0.031,0.031,0.031,0.03,0.03,0.03,0.03,0.029,0.029,0.029,0.029,0.028,0.028,0.028,0.028,0.028,0.027,0.027,0.027,0.027,0.026,0.026,0.026,0.026,0.026,0.025,0.025,0.025,0.025,0.024,0.024,0.024,0.024,0.024,0.023,0.023,0.023,0.023,0.023,0.022,0.022,0.022,0.022,0.021,0.021,0.021,0.021,0.021,0.02,0.02,0.02,0.02,0.02,0.019,0.019,0.019,0.019,0.019,0.018,0.018,0.018,0.018,0.018,0.017,0.017,0.017,0.017,0.017,0.017,0.016,0.016,0.016,0.016,0.016,0.015,0.015,0.015,0.015,0.015,0.014,0.014,0.014,0.014,0.014,0.014,0.013,0.013,0.013,0.013,0.013,0.013,0.012,0.012,0.012,0.012,0.012,0.012,0.011,0.011,0.011,0.011,0.011,0.011,0.01,0.01,0.01,0.01,0.01,0.01,0.009,0.009,0.009,0.009,0.009,0.009,0.009,0.008,0.008,0.008,0.008,0.008,0.008,0.008,0.007,0.007,0.007,0.007,0.007,0.007,0.007,0.006,0.006,0.006,0.006,0.006,0.006,0.006,0.006,0.005,0.005,0.005,0.005,0.005,0.005,0.005,0.005,0.005,0.004,0.004,0.004,0.004,0.004,0.004,0.004,0.004,0.004,0.004,0.003,0.003,0.003,0.003,0.003,0.003,0.003,0.003,0.003,0.003,0.002,0.002,0.002,0.002,0.002,0.002,0.002,0.002,0.002,0.002,0.002,0.002,0.002,0.002,0.001,0.001,0.001,0.001,0.001,0.001,0.001,0.001,0.001,0.001,0.001,0.001,0.001,0.001,0.001,0.001,0.001,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_EYE_BALL_Y=0,0.004,0.017,0.037,0.064,0.097,0.135,0.179,0.226,0.277,0.33,0.385,0.443,0.5,0.557,0.615,0.67,0.723,0.774,0.821,0.865,0.903,0.936,0.963,0.983,0.996,1,1,1,1,1,1,1,1,0.999,0.999,0.999,0.999,0.999,0.999,0.998,0.998,0.998,0.998,0.997,0.997,0.997,0.996,0.996,0.996,0.995,0.995,0.995,0.994,0.994,0.993,0.993,0.992,0.992,0.991,0.991,0.99,0.99,0.989,0.989,0.988,0.987,0.987,0.986,0.986,0.985,0.984,0.984,0.983,0.982,0.981,0.981,0.98,0.979,0.978,0.978,0.977,0.976,0.975,0.974,0.973,0.972,0.972,0.971,0.97,0.969,0.968,0.967,0.966,0.965,0.964,0.963,0.962,0.961,0.96,0.959,0.958,0.957,0.956,0.954,0.953,0.952,0.951,0.95,0.949,0.948,0.946,0.945,0.944,0.943,0.941,0.94,0.939,0.938,0.936,0.935,0.934,0.932,0.931,0.93,0.928,0.927,0.926,0.924,0.923,0.922,0.92,0.919,0.917,0.916,0.914,0.913,0.911,0.91,0.908,0.907,0.905,0.904,0.902,0.901,0.899,0.898,0.896,0.894,0.893,0.891,0.89,0.888,0.886,0.885,0.883,0.881,0.88,0.878,0.876,0.875,0.873,0.871,0.869,0.868,0.866,0.864,0.862,0.861,0.859,0.857,0.855,0.853,0.852,0.85,0.848,0.846,0.844,0.842,0.84,0.839,0.837,0.835,0.833,0.831,0.829,0.827,0.825,0.823,0.821,0.819,0.817,0.815,0.813,0.812,0.81,0.807,0.805,0.803,0.801,0.799,0.797,0.795,0.793,0.791,0.789,0.787,0.785,0.783,0.781,0.779,0.777,0.775,0.772,0.77,0.768,0.766,0.764,0.762,0.76,0.757,0.755,0.753,0.751,0.749,0.747,0.744,0.742,0.74,0.738,0.736,0.733,0.731,0.729,0.727,0.724,0.722,0.72,0.718,0.715,0.713,0.711,0.709,0.706,0.704,0.702,0.699,0.697,0.695,0.693,0.69,0.688,0.686,0.683,0.681,0.679,0.676,0.674,0.672,0.669,0.667,0.665,0.662,0.66,0.657,0.655,0.653,0.65,0.648,0.646,0.643,0.641,0.638,0.636,0.634,0.631,0.629,0.626,0.624,0.622,0.619,0.617,0.614,0.612,0.61,0.607,0.605,0.602,0.6,0.597,0.595,0.592,0.59,0.588,0.585,0.583,0.58,0.578,0.575,0.573,0.57,0.568,0.566,0.563,0.561,0.558,0.556,0.553,0.551,0.548,0.546,0.543,0.541,0.538,0.536,0.533,0.531,0.529,0.526,0.524,0.521,0.519,0.516,0.514,0.511,0.509,0.506,0.504,0.501,0.499,0.496,0.494,0.491,0.489,0.486,0.484,0.481,0.479,0.476,0.474,0.471,0.469,0.467,0.464,0.462,0.459,0.457,0.454,0.452,0.449,0.447,0.444,0.442,0.439,0.437,0.434,0.432,0.43,0.427,0.425,0.422,0.42,0.417,0.415,0.412,0.41,0.408,0.405,0.403,0.4,0.398,0.395,0.393,0.39,0.388,0.386,0.383,0.381,0.378,0.376,0.374,0.371,0.369,0.366,0.364,0.362,0.359,0.357,0.354,0.352,0.35,0.347,0.345,0.343,0.34,0.338,0.335,0.333,0.331,0.328,0.326,0.324,0.321,0.319,0.317,0.314,0.312,0.31,0.307,0.305,0.303,0.301,0.298,0.296,0.294,0.291,0.289,0.287,0.285,0.282,0.28,0.278,0.276,0.273,0.271,0.269,0.267,0.264,0.262,0.26,0.258,0.256,0.253,0.251,0.249,0.247,0.245,0.243,0.24,0.238,0.236,0.234,0.232,0.23,0.228,0.225,0.223,0.221,0.219,0.217,0.215,0.213,0.211,0.209,0.207,0.205,0.203,0.201,0.199,0.197,0.195,0.193,0.19,0.188,0.187,0.185,0.183,0.181,0.179,0.177,0.175,0.173,0.171,0.169,0.167,0.165,0.163,0.161,0.16,0.158,0.156,0.154,0.152,0.15,0.148,0.147,0.145,0.143,0.141,0.139,0.138,0.136,0.134,0.132,0.131,0.129,0.127,0.125,0.124,0.122,0.12,0.119,0.117,0.115,0.114,0.112,0.11,0.109,0.107,0.106,0.104,0.102,0.101,0.099,0.098,0.096,0.095,0.093,0.092,0.09,0.089,0.087,0.086,0.084,0.083,0.081,0.08,0.078,0.077,0.076,0.074,0.073,0.072,0.07,0.069,0.068,0.066,0.065,0.064,0.062,0.061,0.06,0.059,0.057,0.056,0.055,0.054,0.052,0.051,0.05,0.049,0.048,0.047,0.046,0.044,0.043,0.042,0.041,0.04,0.039,0.038,0.037,0.036,0.035,0.034,0.033,0.032,0.031,0.03,0.029,0.028,0.028,0.027,0.026,0.025,0.024,0.023,0.022,0.022,0.021,0.02,0.019,0.019,0.018,0.017,0.016,0.016,0.015,0.014,0.014,0.013,0.013,0.012,0.011,0.011,0.01,0.01,0.009,0.009,0.008,0.008,0.007,0.007,0.006,0.006,0.005,0.005,0.005,0.004,0.004,0.004,0.003,0.003,0.003,0.002,0.002,0.002,0.002,0.001,0.001,0.001,0.001,0.001,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
PARAM_MOUTH_FORM=-1,-1,-0.999,-0.999,-0.998,-0.997,-0.995,-0.994,-0.992,-0.99,-0.987,-0.985,-0.982,-0.979,-0.976,-0.973,-0.97,-0.966,-0.962,-0.958,-0.954,-0.95,-0.946,-0.941,-0.937,-0.932,-0.927,-0.922,-0.917,-0.912,-0.907,-0.902,-0.897,-0.891,-0.886,-0.88,-0.875,-0.869,-0.864,-0.858,-0.853,-0.847,-0.842,-0.836,-0.831,-0.825,-0.82,-0.814,-0.809,-0.803,-0.798,-0.793,-0.788,-0.783,-0.778,-0.773,-0.768,-0.763,-0.759,-0.754,-0.75,-0.746,-0.742,-0.738,-0.734,-0.73,-0.727,-0.724,-0.721,-0.718,-0.715,-0.713,-0.71,-0.708,-0.706,-0.705,-0.703,-0.702,-0.701,-0.701,-0.7,-0.7,-0.7,-0.7,-0.701,-0.701,-0.702,-0.703,-0.704,-0.706,-0.707,-0.709,-0.711,-0.713,-0.715,-0.717,-0.719,-0.722,-0.724,-0.727,-0.73,-0.733,-0.736,-0.739,-0.743,-0.746,-0.75,-0.753,-0.757,-0.761,-0.764,-0.768,-0.772,-0.776,-0.781,-0.785,-0.789,-0.793,-0.798,-0.802,-0.807,-0.811,-0.815,-0.82,-0.825,-0.829,-0.834,-0.838,-0.843,-0.848,-0.852,-0.857,-0.862,-0.866,-0.871,-0.875,-0.88,-0.885,-0.889,-0.893,-0.898,-0.902,-0.907,-0.911,-0.915,-0.919,-0.924,-0.928,-0.932,-0.936,-0.939,-0.943,-0.947,-0.95,-0.954,-0.957,-0.961,-0.964,-0.967,-0.97,-0.973,-0.976,-0.978,-0.981,-0.983,-0.985,-0.987,-0.989,-0.991,-0.993,-0.994,-0.996,-0.997,-0.998,-0.999,-0.999,-1,-1,-1,-1,-0.999,-0.998,-0.996,-0.994,-0.991,-0.988,-0.985,-0.981,-0.977,-0.972,-0.967,-0.962,-0.956,-0.95,-0.944,-0.937,-0.93,-0.923,-0.915,-0.907,-0.899,-0.891,-0.882,-0.873,-0.864,-0.855,-0.845,-0.835,-0.825,-0.815,-0.805,-0.794,-0.784,-0.773,-0.762,-0.751,-0.74,-0.729,-0.718,-0.707,-0.696,-0.684,-0.673,-0.661,-0.65,-0.639,-0.627,-0.616,-0.604,-0.593,-0.582,-0.571,-0.56,-0.549,-0.538,-0.527,-0.516,-0.506,-0.495,-0.485,-0.475,-0.465,-0.455,-0.445,-0.436,-0.427,-0.418,-0.409,-0.401,-0.393,-0.385,-0.377,-0.37,-0.363,-0.356,-0.35,-0.344,-0.338,-0.333,-0.328,-0.323,-0.319,-0.315,-0.312,-0.309,-0.306,-0.304,-0.302,-0.301,-0.3,-0.3,-0.3,-0.301,-0.303,-0.305,-0.308,-0.311,-0.315,-0.319,-0.324,-0.329,-0.335,-0.342,-0.348,-0.356,-0.363,-0.371,-0.38,-0.388,-0.398,-0.407,-0.417,-0.427,-0.437,-0.448,-0.459,-0.47,-0.481,-0.493,-0.505,-0.517,-0.529,-0.541,-0.554,-0.566,-0.579,-0.592,-0.605,-0.618,-0.631,-0.644,-0.656,-0.669,-0.682,-0.695,-0.708,-0.721,-0.734,-0.746,-0.759,-0.771,-0.783,-0.795,-0.807,-0.819,-0.83,-0.841,-0.852,-0.863,-0.873,-0.883,-0.893,-0.902,-0.912,-0.92,-0.929,-0.937,-0.944,-0.952,-0.958,-0.965,-0.971,-0.976,-0.981,-0.985,-0.989,-0.992,-0.995,-0.997,-0.999,-1,-1,-1,-0.999,-0.999,-0.998,-0.996,-0.995,-0.993,-0.991,-0.989,-0.986,-0.984,-0.981,-0.977,-0.974,-0.97,-0.967,-0.963,-0.958,-0.954,-0.95,-0.945,-0.94,-0.935,-0.93,-0.925,-0.919,-0.914,-0.908,-0.902,-0.896,-0.89,-0.884,-0.878,-0.872,-0.866,-0.859,-0.853,-0.846,-0.84,-0.833,-0.827,-0.82,-0.813,-0.807,-0.8,-0.793,-0.787,-0.78,-0.773,-0.767,-0.76,-0.754,-0.747,-0.741,-0.734,-0.728,-0.722,-0.716,-0.71,-0.704,-0.698,-0.692,-0.686,-0.681,-0.675,-0.67,-0.665,-0.66,-0.655,-0.65,-0.646,-0.642,-0.637,-0.633,-0.63,-0.626,-0.623,-0.619,-0.616,-0.614,-0.611,-0.609,-0.607,-0.605,-0.604,-0.602,-0.601,-0.601,-0.6,-0.6,-0.6,-0.6,-0.601,-0.601,-0.602,-0.603,-0.604,-0.605,-0.607,-0.608,-0.61,-0.612,-0.614,-0.616,-0.618,-0.62,-0.623,-0.625,-0.628,-0.631,-0.633,-0.636,-0.639,-0.642,-0.645,-0.649,-0.652,-0.655,-0.659,-0.662,-0.665,-0.669,-0.673,-0.676,-0.68,-0.683,-0.687,-0.691,-0.694,-0.698,-0.702,-0.706,-0.709,-0.713,-0.717,-0.72,-0.724,-0.727,-0.731,-0.735,-0.738,-0.741,-0.745,-0.748,-0.751,-0.755,-0.758,-0.761,-0.764,-0.767,-0.769,-0.772,-0.775,-0.777,-0.78,-0.782,-0.784,-0.786,-0.788,-0.79,-0.792,-0.793,-0.795,-0.796,-0.797,-0.798,-0.799,-0.799,-0.8,-0.8,-0.8,-0.8,-0.799,-0.798,-0.797,-0.796,-0.794,-0.792,-0.79,-0.787,-0.784,-0.781,-0.777,-0.773,-0.769,-0.765,-0.761,-0.756,-0.751,-0.746,-0.741,-0.735,-0.729,-0.723,-0.717,-0.711,-0.705,-0.698,-0.691,-0.685,-0.678,-0.67,-0.663,-0.656,-0.648,-0.641,-0.633,-0.625,-0.618,-0.61,-0.602,-0.594,-0.586,-0.578,-0.57,-0.562,-0.554,-0.546,-0.538,-0.53,-0.522,-0.514,-0.506,-0.498,-0.49,-0.482,-0.475,-0.467,-0.459,-0.452,-0.444,-0.437,-0.43,-0.422,-0.415,-0.409,-0.402,-0.395,-0.389,-0.383,-0.377,-0.371,-0.365,-0.359,-0.354,-0.349,-0.344,-0.339,-0.335,-0.331,-0.327,-0.323,-0.319,-0.316,-0.313,-0.31,-0.308,-0.306,-0.304,-0.303,-0.302,-0.301,-0.3,-0.3,-0.301,-0.302,-0.305,-0.308,-0.313,-0.318,-0.325,-0.332,-0.34,-0.349,-0.358,-0.369,-0.379,-0.391,-0.403,-0.416,-0.429,-0.443,-0.457,-0.471,-0.487,-0.502,-0.518,-0.534,-0.55,-0.566,-0.583,-0.599,-0.616,-0.633,-0.65,-0.667,-0.684,-0.701,-0.717,-0.734,-0.75,-0.766,-0.782,-0.798,-0.813,-0.829,-0.843,-0.857,-0.871,-0.884,-0.897,-0.909,-0.921,-0.931,-0.942,-0.951,-0.96,-0.968,-0.975,-0.982,-0.987,-0.992,-0.995,-0.998,-0.999,-1
|
||||
PARAM_MOUTH_OPEN_Y=0.2,0.2,0.201,0.201,0.202,0.203,0.205,0.206,0.208,0.21,0.213,0.215,0.218,0.221,0.224,0.227,0.23,0.234,0.238,0.242,0.246,0.25,0.254,0.259,0.263,0.268,0.273,0.278,0.283,0.288,0.293,0.298,0.303,0.309,0.314,0.32,0.325,0.331,0.336,0.342,0.347,0.353,0.358,0.364,0.369,0.375,0.38,0.386,0.391,0.397,0.402,0.407,0.412,0.417,0.422,0.427,0.432,0.437,0.441,0.446,0.45,0.454,0.458,0.462,0.466,0.47,0.473,0.476,0.479,0.482,0.485,0.487,0.49,0.492,0.494,0.495,0.497,0.498,0.499,0.499,0.5,0.5,0.5,0.499,0.499,0.498,0.496,0.495,0.493,0.49,0.488,0.485,0.482,0.479,0.475,0.472,0.468,0.464,0.459,0.455,0.45,0.445,0.44,0.435,0.429,0.423,0.417,0.411,0.405,0.399,0.393,0.386,0.379,0.373,0.366,0.359,0.352,0.345,0.337,0.33,0.322,0.315,0.308,0.3,0.292,0.285,0.277,0.269,0.262,0.254,0.246,0.238,0.231,0.223,0.215,0.208,0.2,0.192,0.185,0.178,0.17,0.163,0.155,0.148,0.141,0.134,0.127,0.121,0.114,0.107,0.101,0.095,0.089,0.083,0.077,0.071,0.065,0.06,0.055,0.05,0.045,0.041,0.036,0.032,0.028,0.025,0.021,0.018,0.015,0.012,0.01,0.007,0.005,0.004,0.002,0.001,0.001,0,0,0,0.001,0.002,0.003,0.004,0.006,0.008,0.011,0.013,0.016,0.02,0.023,0.027,0.031,0.036,0.04,0.045,0.05,0.055,0.061,0.066,0.072,0.078,0.084,0.091,0.097,0.104,0.111,0.118,0.125,0.132,0.139,0.147,0.154,0.162,0.17,0.178,0.185,0.193,0.201,0.209,0.217,0.225,0.234,0.242,0.25,0.258,0.266,0.275,0.283,0.291,0.299,0.307,0.315,0.322,0.33,0.338,0.346,0.353,0.361,0.368,0.375,0.382,0.389,0.396,0.403,0.409,0.416,0.422,0.428,0.434,0.439,0.445,0.45,0.455,0.46,0.464,0.469,0.473,0.477,0.48,0.484,0.487,0.489,0.492,0.494,0.496,0.497,0.498,0.499,0.5,0.5,0.5,0.499,0.499,0.498,0.497,0.495,0.494,0.492,0.49,0.487,0.485,0.482,0.479,0.476,0.473,0.47,0.466,0.462,0.458,0.454,0.45,0.446,0.441,0.437,0.432,0.427,0.422,0.417,0.412,0.407,0.402,0.397,0.391,0.386,0.38,0.375,0.369,0.364,0.358,0.353,0.347,0.342,0.336,0.331,0.325,0.32,0.314,0.309,0.303,0.298,0.293,0.288,0.283,0.278,0.273,0.268,0.263,0.259,0.254,0.25,0.246,0.242,0.238,0.234,0.23,0.227,0.224,0.221,0.218,0.215,0.213,0.21,0.208,0.206,0.205,0.203,0.202,0.201,0.201,0.2,0.2,0.2,0.2,0.201,0.202,0.203,0.204,0.205,0.207,0.208,0.21,0.212,0.215,0.217,0.22,0.222,0.225,0.228,0.231,0.234,0.238,0.241,0.245,0.249,0.253,0.257,0.261,0.265,0.269,0.273,0.278,0.282,0.287,0.291,0.296,0.301,0.306,0.31,0.315,0.32,0.325,0.33,0.335,0.34,0.345,0.35,0.355,0.36,0.365,0.37,0.375,0.38,0.385,0.39,0.394,0.399,0.404,0.409,0.413,0.418,0.422,0.427,0.431,0.435,0.439,0.443,0.447,0.451,0.455,0.459,0.462,0.466,0.469,0.472,0.475,0.478,0.48,0.483,0.485,0.488,0.49,0.492,0.493,0.495,0.496,0.497,0.498,0.499,0.5,0.5,0.5,0.5,0.499,0.499,0.498,0.497,0.495,0.494,0.492,0.49,0.487,0.485,0.482,0.479,0.476,0.473,0.47,0.466,0.462,0.458,0.454,0.45,0.446,0.441,0.437,0.432,0.427,0.422,0.417,0.412,0.407,0.402,0.397,0.391,0.386,0.38,0.375,0.369,0.364,0.358,0.353,0.347,0.342,0.336,0.331,0.325,0.32,0.314,0.309,0.303,0.298,0.293,0.288,0.283,0.278,0.273,0.268,0.263,0.259,0.254,0.25,0.246,0.242,0.238,0.234,0.23,0.227,0.224,0.221,0.218,0.215,0.213,0.21,0.208,0.206,0.205,0.203,0.202,0.201,0.201,0.2,0.2,0.2,0.2,0.201,0.202,0.203,0.204,0.205,0.206,0.208,0.21,0.212,0.214,0.216,0.218,0.221,0.224,0.226,0.229,0.232,0.236,0.239,0.242,0.246,0.25,0.253,0.257,0.261,0.265,0.269,0.273,0.278,0.282,0.286,0.291,0.295,0.3,0.305,0.309,0.314,0.319,0.324,0.328,0.333,0.338,0.343,0.348,0.352,0.357,0.362,0.367,0.372,0.376,0.381,0.386,0.391,0.395,0.4,0.405,0.409,0.414,0.418,0.422,0.427,0.431,0.435,0.439,0.443,0.447,0.45,0.454,0.458,0.461,0.464,0.468,0.471,0.474,0.476,0.479,0.482,0.484,0.486,0.488,0.49,0.492,0.494,0.495,0.496,0.497,0.498,0.499,0.5,0.5,0.5,0.5,0.499,0.498,0.496,0.494,0.492,0.489,0.486,0.483,0.479,0.475,0.471,0.466,0.461,0.456,0.45,0.445,0.439,0.433,0.427,0.42,0.413,0.407,0.4,0.393,0.386,0.379,0.372,0.364,0.357,0.35,0.343,0.336,0.328,0.321,0.314,0.307,0.3,0.293,0.287,0.28,0.273,0.267,0.261,0.255,0.25,0.244,0.239,0.234,0.229,0.225,0.221,0.217,0.214,0.211,0.208,0.206,0.204,0.202,0.201,0.2,0.2
|
||||
PARAM_BROW_L_Y=-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.999,-0.999,-0.999,-0.999,-0.999,-0.999,-0.999,-0.999,-0.999,-0.999,-0.999,-0.999,-0.998,-0.998,-0.998,-0.998,-0.998,-0.998,-0.998,-0.998,-0.997,-0.997,-0.997,-0.997,-0.997,-0.997,-0.997,-0.996,-0.996,-0.996,-0.996,-0.996,-0.996,-0.995,-0.995,-0.995,-0.995,-0.995,-0.994,-0.994,-0.994,-0.994,-0.994,-0.993,-0.993,-0.993,-0.993,-0.992,-0.992,-0.992,-0.992,-0.991,-0.991,-0.991,-0.991,-0.99,-0.99,-0.99,-0.99,-0.989,-0.989,-0.989,-0.989,-0.988,-0.988,-0.988,-0.987,-0.987,-0.987,-0.987,-0.986,-0.986,-0.986,-0.985,-0.985,-0.985,-0.984,-0.984,-0.984,-0.983,-0.983,-0.983,-0.982,-0.982,-0.982,-0.981,-0.981,-0.981,-0.98,-0.98,-0.98,-0.979,-0.979,-0.978,-0.978,-0.978,-0.977,-0.977,-0.977,-0.976,-0.976,-0.975,-0.975,-0.975,-0.974,-0.974,-0.973,-0.973,-0.973,-0.972,-0.972,-0.971,-0.971,-0.97,-0.97,-0.97,-0.969,-0.969,-0.968,-0.968,-0.967,-0.967,-0.967,-0.966,-0.966,-0.965,-0.965,-0.964,-0.964,-0.963,-0.963,-0.962,-0.962,-0.961,-0.961,-0.961,-0.96,-0.96,-0.959,-0.959,-0.958,-0.958,-0.957,-0.957,-0.956,-0.956,-0.955,-0.955,-0.954,-0.954,-0.953,-0.953,-0.952,-0.952,-0.951,-0.951,-0.95,-0.95,-0.949,-0.948,-0.948,-0.947,-0.947,-0.946,-0.946,-0.945,-0.945,-0.944,-0.944,-0.943,-0.943,-0.942,-0.941,-0.941,-0.94,-0.94,-0.939,-0.939,-0.938,-0.938,-0.937,-0.936,-0.936,-0.935,-0.935,-0.934,-0.934,-0.933,-0.932,-0.932,-0.931,-0.931,-0.93,-0.93,-0.929,-0.928,-0.928,-0.927,-0.927,-0.926,-0.925,-0.925,-0.924,-0.924,-0.923,-0.922,-0.922,-0.921,-0.921,-0.92,-0.919,-0.919,-0.918,-0.918,-0.917,-0.916,-0.916,-0.915,-0.914,-0.914,-0.913,-0.913,-0.912,-0.911,-0.911,-0.91,-0.909,-0.909,-0.908,-0.908,-0.907,-0.906,-0.906,-0.905,-0.904,-0.904,-0.903,-0.903,-0.902,-0.901,-0.901,-0.9,-0.899,-0.899,-0.898,-0.897,-0.897,-0.896,-0.895,-0.895,-0.894,-0.893,-0.893,-0.892,-0.892,-0.891,-0.89,-0.89,-0.889,-0.888,-0.888,-0.887,-0.886,-0.886,-0.885,-0.884,-0.884,-0.883,-0.882,-0.882,-0.881,-0.88,-0.88,-0.879,-0.878,-0.878,-0.877,-0.876,-0.876,-0.875,-0.874,-0.874,-0.873,-0.872,-0.872,-0.871,-0.87,-0.87,-0.869,-0.868,-0.868,-0.867,-0.866,-0.866,-0.865,-0.864,-0.864,-0.863,-0.862,-0.862,-0.861,-0.86,-0.859,-0.859,-0.858,-0.857,-0.857,-0.856,-0.855,-0.855,-0.854,-0.853,-0.853,-0.852,-0.851,-0.851,-0.85,-0.849,-0.849,-0.848,-0.847,-0.847,-0.846,-0.845,-0.845,-0.844,-0.843,-0.843,-0.842,-0.841,-0.841,-0.84,-0.839,-0.838,-0.838,-0.837,-0.836,-0.836,-0.835,-0.834,-0.834,-0.833,-0.832,-0.832,-0.831,-0.83,-0.83,-0.829,-0.828,-0.828,-0.827,-0.826,-0.826,-0.825,-0.824,-0.824,-0.823,-0.822,-0.822,-0.821,-0.82,-0.82,-0.819,-0.818,-0.818,-0.817,-0.816,-0.816,-0.815,-0.814,-0.814,-0.813,-0.812,-0.812,-0.811,-0.81,-0.81,-0.809,-0.808,-0.808,-0.807,-0.807,-0.806,-0.805,-0.805,-0.804,-0.803,-0.803,-0.802,-0.801,-0.801,-0.8,-0.799,-0.799,-0.798,-0.797,-0.797,-0.796,-0.796,-0.795,-0.794,-0.794,-0.793,-0.792,-0.792,-0.791,-0.791,-0.79,-0.789,-0.789,-0.788,-0.787,-0.787,-0.786,-0.786,-0.785,-0.784,-0.784,-0.783,-0.782,-0.782,-0.781,-0.781,-0.78,-0.779,-0.779,-0.778,-0.778,-0.777,-0.776,-0.776,-0.775,-0.775,-0.774,-0.773,-0.773,-0.772,-0.772,-0.771,-0.77,-0.77,-0.769,-0.769,-0.768,-0.768,-0.767,-0.766,-0.766,-0.765,-0.765,-0.764,-0.764,-0.763,-0.762,-0.762,-0.761,-0.761,-0.76,-0.76,-0.759,-0.759,-0.758,-0.757,-0.757,-0.756,-0.756,-0.755,-0.755,-0.754,-0.754,-0.753,-0.753,-0.752,-0.752,-0.751,-0.75,-0.75,-0.749,-0.749,-0.748,-0.748,-0.747,-0.747,-0.746,-0.746,-0.745,-0.745,-0.744,-0.744,-0.743,-0.743,-0.742,-0.742,-0.741,-0.741,-0.74,-0.74,-0.739,-0.739,-0.739,-0.738,-0.738,-0.737,-0.737,-0.736,-0.736,-0.735,-0.735,-0.734,-0.734,-0.733,-0.733,-0.733,-0.732,-0.732,-0.731,-0.731,-0.73,-0.73,-0.73,-0.729,-0.729,-0.728,-0.728,-0.727,-0.727,-0.727,-0.726,-0.726,-0.725,-0.725,-0.725,-0.724,-0.724,-0.723,-0.723,-0.723,-0.722,-0.722,-0.722,-0.721,-0.721,-0.72,-0.72,-0.72,-0.719,-0.719,-0.719,-0.718,-0.718,-0.718,-0.717,-0.717,-0.717,-0.716,-0.716,-0.716,-0.715,-0.715,-0.715,-0.714,-0.714,-0.714,-0.713,-0.713,-0.713,-0.713,-0.712,-0.712,-0.712,-0.711,-0.711,-0.711,-0.711,-0.71,-0.71,-0.71,-0.71,-0.709,-0.709,-0.709,-0.709,-0.708,-0.708,-0.708,-0.708,-0.707,-0.707,-0.707,-0.707,-0.706,-0.706,-0.706,-0.706,-0.706,-0.705,-0.705,-0.705,-0.705,-0.705,-0.704,-0.704,-0.704,-0.704,-0.704,-0.704,-0.703,-0.703,-0.703,-0.703,-0.703,-0.703,-0.703,-0.702,-0.702,-0.702,-0.702,-0.702,-0.702,-0.702,-0.702,-0.701,-0.701,-0.701,-0.701,-0.701,-0.701,-0.701,-0.701,-0.701,-0.701,-0.701,-0.701,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.705,-0.719,-0.74,-0.768,-0.799,-0.832,-0.868,-0.901,-0.932,-0.96,-0.981,-0.995,-1
|
||||
PARAM_BROW_R_Y=-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.999,-0.999,-0.999,-0.999,-0.999,-0.999,-0.999,-0.999,-0.999,-0.999,-0.999,-0.999,-0.998,-0.998,-0.998,-0.998,-0.998,-0.998,-0.998,-0.998,-0.997,-0.997,-0.997,-0.997,-0.997,-0.997,-0.997,-0.996,-0.996,-0.996,-0.996,-0.996,-0.996,-0.995,-0.995,-0.995,-0.995,-0.995,-0.994,-0.994,-0.994,-0.994,-0.994,-0.993,-0.993,-0.993,-0.993,-0.992,-0.992,-0.992,-0.992,-0.991,-0.991,-0.991,-0.991,-0.99,-0.99,-0.99,-0.99,-0.989,-0.989,-0.989,-0.989,-0.988,-0.988,-0.988,-0.987,-0.987,-0.987,-0.987,-0.986,-0.986,-0.986,-0.985,-0.985,-0.985,-0.984,-0.984,-0.984,-0.983,-0.983,-0.983,-0.982,-0.982,-0.982,-0.981,-0.981,-0.981,-0.98,-0.98,-0.98,-0.979,-0.979,-0.978,-0.978,-0.978,-0.977,-0.977,-0.977,-0.976,-0.976,-0.975,-0.975,-0.975,-0.974,-0.974,-0.973,-0.973,-0.973,-0.972,-0.972,-0.971,-0.971,-0.97,-0.97,-0.97,-0.969,-0.969,-0.968,-0.968,-0.967,-0.967,-0.967,-0.966,-0.966,-0.965,-0.965,-0.964,-0.964,-0.963,-0.963,-0.962,-0.962,-0.961,-0.961,-0.961,-0.96,-0.96,-0.959,-0.959,-0.958,-0.958,-0.957,-0.957,-0.956,-0.956,-0.955,-0.955,-0.954,-0.954,-0.953,-0.953,-0.952,-0.952,-0.951,-0.951,-0.95,-0.95,-0.949,-0.948,-0.948,-0.947,-0.947,-0.946,-0.946,-0.945,-0.945,-0.944,-0.944,-0.943,-0.943,-0.942,-0.941,-0.941,-0.94,-0.94,-0.939,-0.939,-0.938,-0.938,-0.937,-0.936,-0.936,-0.935,-0.935,-0.934,-0.934,-0.933,-0.932,-0.932,-0.931,-0.931,-0.93,-0.93,-0.929,-0.928,-0.928,-0.927,-0.927,-0.926,-0.925,-0.925,-0.924,-0.924,-0.923,-0.922,-0.922,-0.921,-0.921,-0.92,-0.919,-0.919,-0.918,-0.918,-0.917,-0.916,-0.916,-0.915,-0.914,-0.914,-0.913,-0.913,-0.912,-0.911,-0.911,-0.91,-0.909,-0.909,-0.908,-0.908,-0.907,-0.906,-0.906,-0.905,-0.904,-0.904,-0.903,-0.903,-0.902,-0.901,-0.901,-0.9,-0.899,-0.899,-0.898,-0.897,-0.897,-0.896,-0.895,-0.895,-0.894,-0.893,-0.893,-0.892,-0.892,-0.891,-0.89,-0.89,-0.889,-0.888,-0.888,-0.887,-0.886,-0.886,-0.885,-0.884,-0.884,-0.883,-0.882,-0.882,-0.881,-0.88,-0.88,-0.879,-0.878,-0.878,-0.877,-0.876,-0.876,-0.875,-0.874,-0.874,-0.873,-0.872,-0.872,-0.871,-0.87,-0.87,-0.869,-0.868,-0.868,-0.867,-0.866,-0.866,-0.865,-0.864,-0.864,-0.863,-0.862,-0.862,-0.861,-0.86,-0.859,-0.859,-0.858,-0.857,-0.857,-0.856,-0.855,-0.855,-0.854,-0.853,-0.853,-0.852,-0.851,-0.851,-0.85,-0.849,-0.849,-0.848,-0.847,-0.847,-0.846,-0.845,-0.845,-0.844,-0.843,-0.843,-0.842,-0.841,-0.841,-0.84,-0.839,-0.838,-0.838,-0.837,-0.836,-0.836,-0.835,-0.834,-0.834,-0.833,-0.832,-0.832,-0.831,-0.83,-0.83,-0.829,-0.828,-0.828,-0.827,-0.826,-0.826,-0.825,-0.824,-0.824,-0.823,-0.822,-0.822,-0.821,-0.82,-0.82,-0.819,-0.818,-0.818,-0.817,-0.816,-0.816,-0.815,-0.814,-0.814,-0.813,-0.812,-0.812,-0.811,-0.81,-0.81,-0.809,-0.808,-0.808,-0.807,-0.807,-0.806,-0.805,-0.805,-0.804,-0.803,-0.803,-0.802,-0.801,-0.801,-0.8,-0.799,-0.799,-0.798,-0.797,-0.797,-0.796,-0.796,-0.795,-0.794,-0.794,-0.793,-0.792,-0.792,-0.791,-0.791,-0.79,-0.789,-0.789,-0.788,-0.787,-0.787,-0.786,-0.786,-0.785,-0.784,-0.784,-0.783,-0.782,-0.782,-0.781,-0.781,-0.78,-0.779,-0.779,-0.778,-0.778,-0.777,-0.776,-0.776,-0.775,-0.775,-0.774,-0.773,-0.773,-0.772,-0.772,-0.771,-0.77,-0.77,-0.769,-0.769,-0.768,-0.768,-0.767,-0.766,-0.766,-0.765,-0.765,-0.764,-0.764,-0.763,-0.762,-0.762,-0.761,-0.761,-0.76,-0.76,-0.759,-0.759,-0.758,-0.757,-0.757,-0.756,-0.756,-0.755,-0.755,-0.754,-0.754,-0.753,-0.753,-0.752,-0.752,-0.751,-0.75,-0.75,-0.749,-0.749,-0.748,-0.748,-0.747,-0.747,-0.746,-0.746,-0.745,-0.745,-0.744,-0.744,-0.743,-0.743,-0.742,-0.742,-0.741,-0.741,-0.74,-0.74,-0.739,-0.739,-0.739,-0.738,-0.738,-0.737,-0.737,-0.736,-0.736,-0.735,-0.735,-0.734,-0.734,-0.733,-0.733,-0.733,-0.732,-0.732,-0.731,-0.731,-0.73,-0.73,-0.73,-0.729,-0.729,-0.728,-0.728,-0.727,-0.727,-0.727,-0.726,-0.726,-0.725,-0.725,-0.725,-0.724,-0.724,-0.723,-0.723,-0.723,-0.722,-0.722,-0.722,-0.721,-0.721,-0.72,-0.72,-0.72,-0.719,-0.719,-0.719,-0.718,-0.718,-0.718,-0.717,-0.717,-0.717,-0.716,-0.716,-0.716,-0.715,-0.715,-0.715,-0.714,-0.714,-0.714,-0.713,-0.713,-0.713,-0.713,-0.712,-0.712,-0.712,-0.711,-0.711,-0.711,-0.711,-0.71,-0.71,-0.71,-0.71,-0.709,-0.709,-0.709,-0.709,-0.708,-0.708,-0.708,-0.708,-0.707,-0.707,-0.707,-0.707,-0.706,-0.706,-0.706,-0.706,-0.706,-0.705,-0.705,-0.705,-0.705,-0.705,-0.704,-0.704,-0.704,-0.704,-0.704,-0.704,-0.703,-0.703,-0.703,-0.703,-0.703,-0.703,-0.703,-0.702,-0.702,-0.702,-0.702,-0.702,-0.702,-0.702,-0.702,-0.701,-0.701,-0.701,-0.701,-0.701,-0.701,-0.701,-0.701,-0.701,-0.701,-0.701,-0.701,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.7,-0.705,-0.719,-0.74,-0.768,-0.799,-0.832,-0.868,-0.901,-0.932,-0.96,-0.981,-0.995,-1
|
||||
PARAM_BROW_R_FORM=0.6,0.6,0.6,0.599,0.598,0.597,0.596,0.595,0.593,0.592,0.59,0.588,0.585,0.583,0.58,0.577,0.574,0.571,0.568,0.564,0.561,0.557,0.553,0.548,0.544,0.54,0.535,0.53,0.525,0.52,0.515,0.509,0.504,0.498,0.492,0.486,0.48,0.474,0.468,0.461,0.455,0.448,0.441,0.434,0.427,0.42,0.413,0.405,0.398,0.39,0.382,0.374,0.367,0.359,0.351,0.342,0.334,0.326,0.318,0.309,0.3,0.292,0.283,0.274,0.266,0.257,0.248,0.239,0.229,0.22,0.211,0.202,0.192,0.183,0.174,0.164,0.155,0.145,0.136,0.126,0.117,0.107,0.097,0.088,0.078,0.068,0.059,0.049,0.039,0.029,0.02,0.01,0,-0.01,-0.02,-0.029,-0.039,-0.049,-0.059,-0.068,-0.078,-0.088,-0.097,-0.107,-0.117,-0.126,-0.136,-0.145,-0.155,-0.164,-0.174,-0.183,-0.192,-0.202,-0.211,-0.22,-0.229,-0.239,-0.248,-0.257,-0.266,-0.274,-0.283,-0.292,-0.3,-0.309,-0.318,-0.326,-0.334,-0.342,-0.351,-0.359,-0.367,-0.374,-0.382,-0.39,-0.398,-0.405,-0.413,-0.42,-0.427,-0.434,-0.441,-0.448,-0.455,-0.461,-0.468,-0.474,-0.48,-0.486,-0.492,-0.498,-0.504,-0.509,-0.515,-0.52,-0.525,-0.53,-0.535,-0.54,-0.544,-0.548,-0.553,-0.557,-0.561,-0.564,-0.568,-0.571,-0.574,-0.577,-0.58,-0.583,-0.585,-0.588,-0.59,-0.592,-0.593,-0.595,-0.596,-0.597,-0.598,-0.599,-0.6,-0.6,-0.6,-0.6,-0.599,-0.598,-0.597,-0.595,-0.593,-0.591,-0.588,-0.585,-0.581,-0.577,-0.573,-0.569,-0.564,-0.559,-0.554,-0.548,-0.542,-0.536,-0.53,-0.524,-0.517,-0.51,-0.503,-0.495,-0.488,-0.48,-0.472,-0.464,-0.456,-0.447,-0.439,-0.43,-0.421,-0.412,-0.403,-0.394,-0.385,-0.376,-0.367,-0.357,-0.348,-0.338,-0.329,-0.319,-0.31,-0.3,-0.29,-0.281,-0.271,-0.262,-0.252,-0.243,-0.233,-0.224,-0.215,-0.206,-0.197,-0.188,-0.179,-0.17,-0.161,-0.153,-0.144,-0.136,-0.128,-0.12,-0.112,-0.105,-0.097,-0.09,-0.083,-0.076,-0.07,-0.064,-0.058,-0.052,-0.046,-0.041,-0.036,-0.031,-0.027,-0.023,-0.019,-0.015,-0.012,-0.009,-0.007,-0.005,-0.003,-0.002,-0.001,-0,0,-0,-0,-0,-0,-0,-0,-0.001,-0.001,-0.001,-0.001,-0.002,-0.002,-0.002,-0.003,-0.003,-0.003,-0.004,-0.004,-0.005,-0.005,-0.006,-0.006,-0.007,-0.007,-0.008,-0.008,-0.009,-0.01,-0.01,-0.011,-0.012,-0.013,-0.013,-0.014,-0.015,-0.016,-0.017,-0.017,-0.018,-0.019,-0.02,-0.021,-0.022,-0.023,-0.024,-0.025,-0.026,-0.027,-0.028,-0.029,-0.03,-0.031,-0.032,-0.033,-0.035,-0.036,-0.037,-0.038,-0.039,-0.041,-0.042,-0.043,-0.044,-0.046,-0.047,-0.048,-0.049,-0.051,-0.052,-0.054,-0.055,-0.056,-0.058,-0.059,-0.06,-0.062,-0.063,-0.065,-0.066,-0.068,-0.069,-0.071,-0.072,-0.074,-0.075,-0.077,-0.078,-0.08,-0.081,-0.083,-0.085,-0.086,-0.088,-0.089,-0.091,-0.093,-0.094,-0.096,-0.097,-0.099,-0.101,-0.102,-0.104,-0.106,-0.107,-0.109,-0.111,-0.112,-0.114,-0.116,-0.117,-0.119,-0.121,-0.122,-0.124,-0.126,-0.128,-0.129,-0.131,-0.133,-0.134,-0.136,-0.138,-0.14,-0.141,-0.143,-0.145,-0.147,-0.148,-0.15,-0.152,-0.153,-0.155,-0.157,-0.159,-0.16,-0.162,-0.164,-0.166,-0.167,-0.169,-0.171,-0.172,-0.174,-0.176,-0.178,-0.179,-0.181,-0.183,-0.184,-0.186,-0.188,-0.189,-0.191,-0.193,-0.194,-0.196,-0.198,-0.199,-0.201,-0.203,-0.204,-0.206,-0.207,-0.209,-0.211,-0.212,-0.214,-0.215,-0.217,-0.219,-0.22,-0.222,-0.223,-0.225,-0.226,-0.228,-0.229,-0.231,-0.232,-0.234,-0.235,-0.237,-0.238,-0.24,-0.241,-0.242,-0.244,-0.245,-0.246,-0.248,-0.249,-0.251,-0.252,-0.253,-0.254,-0.256,-0.257,-0.258,-0.259,-0.261,-0.262,-0.263,-0.264,-0.265,-0.267,-0.268,-0.269,-0.27,-0.271,-0.272,-0.273,-0.274,-0.275,-0.276,-0.277,-0.278,-0.279,-0.28,-0.281,-0.282,-0.283,-0.283,-0.284,-0.285,-0.286,-0.287,-0.287,-0.288,-0.289,-0.29,-0.29,-0.291,-0.292,-0.292,-0.293,-0.293,-0.294,-0.294,-0.295,-0.295,-0.296,-0.296,-0.297,-0.297,-0.297,-0.298,-0.298,-0.298,-0.299,-0.299,-0.299,-0.299,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.299,-0.299,-0.299,-0.298,-0.298,-0.298,-0.297,-0.297,-0.296,-0.296,-0.295,-0.294,-0.293,-0.293,-0.292,-0.291,-0.29,-0.288,-0.287,-0.286,-0.285,-0.283,-0.282,-0.28,-0.278,-0.277,-0.275,-0.273,-0.271,-0.269,-0.266,-0.264,-0.262,-0.259,-0.256,-0.253,-0.251,-0.248,-0.244,-0.241,-0.238,-0.234,-0.231,-0.227,-0.223,-0.219,-0.215,-0.211,-0.206,-0.202,-0.197,-0.192,-0.187,-0.182,-0.177,-0.172,-0.166,-0.16,-0.154,-0.148,-0.142,-0.136,-0.129,-0.122,-0.116,-0.108,-0.101,-0.094,-0.086,-0.079,-0.071,-0.062,-0.054,-0.046,-0.037,-0.028,-0.019,-0.009,0,0.01,0.02,0.031,0.042,0.054,0.066,0.079,0.091,0.104,0.118,0.131,0.145,0.16,0.174,0.188,0.203,0.218,0.233,0.247,0.262,0.277,0.292,0.307,0.321,0.336,0.35,0.365,0.379,0.393,0.407,0.42,0.434,0.446,0.459,0.471,0.483,0.494,0.505,0.516,0.526,0.535,0.544,0.553,0.56,0.568,0.574,0.58,0.585,0.59,0.593,0.596,0.598,0.6,0.6
|
||||
PARAM_BROW_L_FORM=0.6,0.6,0.6,0.599,0.598,0.597,0.596,0.595,0.593,0.592,0.59,0.588,0.585,0.583,0.58,0.577,0.574,0.571,0.568,0.564,0.561,0.557,0.553,0.548,0.544,0.54,0.535,0.53,0.525,0.52,0.515,0.509,0.504,0.498,0.492,0.486,0.48,0.474,0.468,0.461,0.455,0.448,0.441,0.434,0.427,0.42,0.413,0.405,0.398,0.39,0.382,0.374,0.367,0.359,0.351,0.342,0.334,0.326,0.318,0.309,0.3,0.292,0.283,0.274,0.266,0.257,0.248,0.239,0.229,0.22,0.211,0.202,0.192,0.183,0.174,0.164,0.155,0.145,0.136,0.126,0.117,0.107,0.097,0.088,0.078,0.068,0.059,0.049,0.039,0.029,0.02,0.01,0,-0.01,-0.02,-0.029,-0.039,-0.049,-0.059,-0.068,-0.078,-0.088,-0.097,-0.107,-0.117,-0.126,-0.136,-0.145,-0.155,-0.164,-0.174,-0.183,-0.192,-0.202,-0.211,-0.22,-0.229,-0.239,-0.248,-0.257,-0.266,-0.274,-0.283,-0.292,-0.3,-0.309,-0.318,-0.326,-0.334,-0.342,-0.351,-0.359,-0.367,-0.374,-0.382,-0.39,-0.398,-0.405,-0.413,-0.42,-0.427,-0.434,-0.441,-0.448,-0.455,-0.461,-0.468,-0.474,-0.48,-0.486,-0.492,-0.498,-0.504,-0.509,-0.515,-0.52,-0.525,-0.53,-0.535,-0.54,-0.544,-0.548,-0.553,-0.557,-0.561,-0.564,-0.568,-0.571,-0.574,-0.577,-0.58,-0.583,-0.585,-0.588,-0.59,-0.592,-0.593,-0.595,-0.596,-0.597,-0.598,-0.599,-0.6,-0.6,-0.6,-0.6,-0.599,-0.598,-0.597,-0.595,-0.593,-0.591,-0.588,-0.585,-0.581,-0.577,-0.573,-0.569,-0.564,-0.559,-0.554,-0.548,-0.542,-0.536,-0.53,-0.524,-0.517,-0.51,-0.503,-0.495,-0.488,-0.48,-0.472,-0.464,-0.456,-0.447,-0.439,-0.43,-0.421,-0.412,-0.403,-0.394,-0.385,-0.376,-0.367,-0.357,-0.348,-0.338,-0.329,-0.319,-0.31,-0.3,-0.29,-0.281,-0.271,-0.262,-0.252,-0.243,-0.233,-0.224,-0.215,-0.206,-0.197,-0.188,-0.179,-0.17,-0.161,-0.153,-0.144,-0.136,-0.128,-0.12,-0.112,-0.105,-0.097,-0.09,-0.083,-0.076,-0.07,-0.064,-0.058,-0.052,-0.046,-0.041,-0.036,-0.031,-0.027,-0.023,-0.019,-0.015,-0.012,-0.009,-0.007,-0.005,-0.003,-0.002,-0.001,-0,0,-0,-0,-0,-0,-0,-0,-0.001,-0.001,-0.001,-0.001,-0.002,-0.002,-0.002,-0.003,-0.003,-0.003,-0.004,-0.004,-0.005,-0.005,-0.006,-0.006,-0.007,-0.007,-0.008,-0.008,-0.009,-0.01,-0.01,-0.011,-0.012,-0.013,-0.013,-0.014,-0.015,-0.016,-0.017,-0.017,-0.018,-0.019,-0.02,-0.021,-0.022,-0.023,-0.024,-0.025,-0.026,-0.027,-0.028,-0.029,-0.03,-0.031,-0.032,-0.033,-0.035,-0.036,-0.037,-0.038,-0.039,-0.041,-0.042,-0.043,-0.044,-0.046,-0.047,-0.048,-0.049,-0.051,-0.052,-0.054,-0.055,-0.056,-0.058,-0.059,-0.06,-0.062,-0.063,-0.065,-0.066,-0.068,-0.069,-0.071,-0.072,-0.074,-0.075,-0.077,-0.078,-0.08,-0.081,-0.083,-0.085,-0.086,-0.088,-0.089,-0.091,-0.093,-0.094,-0.096,-0.097,-0.099,-0.101,-0.102,-0.104,-0.106,-0.107,-0.109,-0.111,-0.112,-0.114,-0.116,-0.117,-0.119,-0.121,-0.122,-0.124,-0.126,-0.128,-0.129,-0.131,-0.133,-0.134,-0.136,-0.138,-0.14,-0.141,-0.143,-0.145,-0.147,-0.148,-0.15,-0.152,-0.153,-0.155,-0.157,-0.159,-0.16,-0.162,-0.164,-0.166,-0.167,-0.169,-0.171,-0.172,-0.174,-0.176,-0.178,-0.179,-0.181,-0.183,-0.184,-0.186,-0.188,-0.189,-0.191,-0.193,-0.194,-0.196,-0.198,-0.199,-0.201,-0.203,-0.204,-0.206,-0.207,-0.209,-0.211,-0.212,-0.214,-0.215,-0.217,-0.219,-0.22,-0.222,-0.223,-0.225,-0.226,-0.228,-0.229,-0.231,-0.232,-0.234,-0.235,-0.237,-0.238,-0.24,-0.241,-0.242,-0.244,-0.245,-0.246,-0.248,-0.249,-0.251,-0.252,-0.253,-0.254,-0.256,-0.257,-0.258,-0.259,-0.261,-0.262,-0.263,-0.264,-0.265,-0.267,-0.268,-0.269,-0.27,-0.271,-0.272,-0.273,-0.274,-0.275,-0.276,-0.277,-0.278,-0.279,-0.28,-0.281,-0.282,-0.283,-0.283,-0.284,-0.285,-0.286,-0.287,-0.287,-0.288,-0.289,-0.29,-0.29,-0.291,-0.292,-0.292,-0.293,-0.293,-0.294,-0.294,-0.295,-0.295,-0.296,-0.296,-0.297,-0.297,-0.297,-0.298,-0.298,-0.298,-0.299,-0.299,-0.299,-0.299,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.3,-0.299,-0.299,-0.299,-0.298,-0.298,-0.298,-0.297,-0.297,-0.296,-0.296,-0.295,-0.294,-0.293,-0.293,-0.292,-0.291,-0.29,-0.288,-0.287,-0.286,-0.285,-0.283,-0.282,-0.28,-0.278,-0.277,-0.275,-0.273,-0.271,-0.269,-0.266,-0.264,-0.262,-0.259,-0.256,-0.253,-0.251,-0.248,-0.244,-0.241,-0.238,-0.234,-0.231,-0.227,-0.223,-0.219,-0.215,-0.211,-0.206,-0.202,-0.197,-0.192,-0.187,-0.182,-0.177,-0.172,-0.166,-0.16,-0.154,-0.148,-0.142,-0.136,-0.129,-0.122,-0.116,-0.108,-0.101,-0.094,-0.086,-0.079,-0.071,-0.062,-0.054,-0.046,-0.037,-0.028,-0.019,-0.009,0,0.01,0.02,0.031,0.042,0.054,0.066,0.079,0.091,0.104,0.118,0.131,0.145,0.16,0.174,0.188,0.203,0.218,0.233,0.247,0.262,0.277,0.292,0.307,0.321,0.336,0.35,0.365,0.379,0.393,0.407,0.42,0.434,0.446,0.459,0.471,0.483,0.494,0.505,0.516,0.526,0.535,0.544,0.553,0.56,0.568,0.574,0.58,0.585,0.59,0.593,0.596,0.598,0.6,0.6
|
||||
BIN
themes/yilia/source/model/texture_00.png
Executable file
BIN
themes/yilia/source/model/texture_00.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 276 KiB |
@ -21,7 +21,8 @@ module.exports = {
|
||||
main: "./source-src/js/main.js",
|
||||
slider: "./source-src/js/slider.js",
|
||||
mobile: ["babel-polyfill", "./source-src/js/mobile.js"],
|
||||
comment: "./source-src/js/comment.js"
|
||||
comment: "./source-src/js/comment.js",
|
||||
waifu: "./source-src/js/waifu.js"
|
||||
},
|
||||
output: {
|
||||
path: __dirname+"/source",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user