export const easeInOutQuart = defEasing((x) => [
    ret(
        ternary(
            lt(x, FLOAT05),
            mul(float(8), pow(x, float(4))),