@zappar/zappar-cv 0.4.0-beta.7 → 2.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +2 -2
  3. package/lib/additional.d.ts +2 -1
  4. package/lib/additional.js +1 -2
  5. package/lib/camera-source-map.js +16 -24
  6. package/lib/camera-source.js +17 -21
  7. package/lib/cameramodel.js +18 -23
  8. package/lib/compatibility.js +1 -3
  9. package/lib/deserializer.js +1 -5
  10. package/lib/direct.js +12 -16
  11. package/lib/drawcamera.js +26 -31
  12. package/lib/drawface.js +5 -9
  13. package/lib/drawfaceproject.js +5 -9
  14. package/lib/drawplane.js +6 -11
  15. package/lib/event.js +5 -13
  16. package/lib/facelandmark.d.ts +1 -2
  17. package/lib/facelandmark.js +11 -18
  18. package/lib/facelandmarkdata.js +1 -4
  19. package/lib/facelandmarkinterface.js +1 -2
  20. package/lib/facemesh.js +10 -17
  21. package/lib/gen/zappar-client.js +5 -24
  22. package/lib/gen/zappar-cwrap.js +1 -12
  23. package/lib/gen/zappar-native.d.ts +0 -1
  24. package/lib/gen/zappar-native.js +10 -13
  25. package/lib/gen/zappar-server.js +5 -13
  26. package/lib/gen/zappar.d.ts +7 -2
  27. package/lib/gen/zappar.js +5 -13
  28. package/lib/gfx.js +1 -4
  29. package/lib/gl-state-manager.d.ts +9 -0
  30. package/lib/gl-state-manager.js +31 -0
  31. package/lib/html-element-source.js +23 -27
  32. package/lib/image-process-gl.js +73 -32
  33. package/lib/imagebitmap-camera-source.js +30 -34
  34. package/lib/imagetracker.d.ts +28 -0
  35. package/lib/imagetracker.js +115 -0
  36. package/lib/index-standalone.d.ts +3 -0
  37. package/lib/index-standalone.js +5 -0
  38. package/lib/index.d.ts +2 -1
  39. package/lib/index.js +6 -27
  40. package/lib/landmarkdatagenerate.js +25 -30
  41. package/lib/loglevel.js +9 -16
  42. package/lib/messages.js +4 -8
  43. package/lib/mstp-camera-source.js +22 -26
  44. package/lib/native.d.ts +2 -1
  45. package/lib/native.js +194 -132
  46. package/lib/options.d.ts +3 -0
  47. package/lib/options.js +1 -0
  48. package/lib/permission.js +13 -27
  49. package/lib/pipeline.d.ts +1 -2
  50. package/lib/pipeline.js +34 -39
  51. package/lib/profile.js +40 -45
  52. package/lib/riff-reader.d.ts +18 -0
  53. package/lib/riff-reader.js +52 -0
  54. package/lib/sequencerecorder.js +7 -12
  55. package/lib/sequencesource.js +20 -24
  56. package/lib/serializer.js +1 -5
  57. package/lib/shader.js +2 -7
  58. package/lib/source.js +1 -5
  59. package/lib/version.d.ts +1 -1
  60. package/lib/version.js +1 -4
  61. package/lib/worker-client.d.ts +1 -1
  62. package/lib/worker-client.js +9 -21
  63. package/lib/worker-imagebitmap.js +9 -13
  64. package/lib/worker-server.js +33 -37
  65. package/lib/worker.js +6 -10
  66. package/lib/workerinterface.js +1 -2
  67. package/lib/zcv.js +124 -132
  68. package/lib/zcv.wasm +0 -0
  69. package/package.json +14 -16
  70. package/umd/169.zappar-cv.js +1 -0
  71. package/umd/{482727c0e7dd40d73f5aae47f238ad61.zbin → 482727c0e7dd40d73f5a.zbin} +0 -0
  72. package/umd/752.zappar-cv.js +1 -0
  73. package/umd/{b4f46e148a3b3b5aef90717d8d60e3fc.zbin → b4f46e148a3b3b5aef90.zbin} +0 -0
  74. package/umd/e486cd197ef362198043.wasm +0 -0
  75. package/umd/{f7b62a3a53b5c9b3222ba8dc53cb8b11.zbin → f7b62a3a53b5c9b3222b.zbin} +0 -0
  76. package/umd/zappar-cv.js +1 -1
  77. package/umd/zappar-cv.worker.js +1 -1
  78. package/umd/9d9c4b542b40c41e3ef7587fb91e5d38.wasm +0 -0
@@ -1,30 +1,24 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FaceLandmark = exports.getFaceLandmark = exports.destroyFaceLandmark = exports.createFaceLandmark = void 0;
4
- const gl_matrix_1 = require("gl-matrix");
5
- const facelandmarkdata_1 = require("./facelandmarkdata");
6
- const loglevel_1 = require("./loglevel");
1
+ import { mat4 } from "gl-matrix";
2
+ import { landmarkData } from "./facelandmarkdata";
3
+ import { zcout } from "./loglevel";
7
4
  let latestFaceLandmark = 1;
8
5
  let faceLandmarkById = new Map();
9
- function createFaceLandmark(n) {
6
+ export function createFaceLandmark(n) {
10
7
  let ret = (latestFaceLandmark++);
11
8
  faceLandmarkById.set(ret, new FaceLandmark(n));
12
- loglevel_1.zcout("face_landmark_t initialized");
9
+ zcout("face_landmark_t initialized");
13
10
  return ret;
14
11
  }
15
- exports.createFaceLandmark = createFaceLandmark;
16
- function destroyFaceLandmark(m) {
12
+ export function destroyFaceLandmark(m) {
17
13
  faceLandmarkById.delete(m);
18
14
  }
19
- exports.destroyFaceLandmark = destroyFaceLandmark;
20
- function getFaceLandmark(m) {
15
+ export function getFaceLandmark(m) {
21
16
  return faceLandmarkById.get(m);
22
17
  }
23
- exports.getFaceLandmark = getFaceLandmark;
24
- class FaceLandmark {
18
+ export class FaceLandmark {
25
19
  constructor(_name) {
26
20
  this._name = _name;
27
- this.anchor_pose = gl_matrix_1.mat4.create();
21
+ this.anchor_pose = mat4.create();
28
22
  }
29
23
  _getVertex(identity, expression, data) {
30
24
  let vert = data.mean.slice();
@@ -42,7 +36,7 @@ class FaceLandmark {
42
36
  }
43
37
  update(identity, expression, mirrored) {
44
38
  let vert;
45
- let data = facelandmarkdata_1.landmarkData[this._name.toString()];
39
+ let data = landmarkData[this._name.toString()];
46
40
  if (!data)
47
41
  return;
48
42
  if (Array.isArray(data)) {
@@ -57,7 +51,6 @@ class FaceLandmark {
57
51
  }
58
52
  if (mirrored)
59
53
  vert[0] *= -1;
60
- gl_matrix_1.mat4.fromTranslation(this.anchor_pose, vert);
54
+ mat4.fromTranslation(this.anchor_pose, vert);
61
55
  }
62
56
  }
63
- exports.FaceLandmark = FaceLandmark;
@@ -1,4 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.landmarkData = void 0;
4
- exports.landmarkData = { 0: [{ mean: [0.235, 0.2344, 0.7305], identity: [0.008, 0.0087, 0.0024, -0.0026, 0.0006, -0.0022, 0.0005, 0.0033, 0.0026, 0.0017, -0.0055, -0.0008, 0.0011, 0.0059, 0, 0.0002, 0.001, -0.001, -0.0044, -0.0011, -0.0001, 0.0024, 0.0019, -0.0009, 0.0004, -0.0015, 0, 0.0038, 0.0013, 0.0003, 0.002, -0.0021, 0.0018, 0.0023, 0.0011, 0.0012, -0.0011, -0.0017, 0.0009, -0.0012, -0.0008, 0.0007, -0.0017, 0.0029, -0.0029, 0.0008, -0.0027, 0.0008, -0.0017, 0.0004, 0.0009, -0.001, -0.0003, 0.0008, -0.0016, -0.0003, -0.0007, 0.0016, -0.0009, 0.0021, -0.0005, 0.0011, -0.0024, -0.0001, 0.0006, 0.0001, -0.0026, -0.0004, -0.0003, -0.0009, 0.0005, 0.0003, -0.0008, -0.001, -0.0004, -0.0008, 0.0022, -0.0014, -0.0001, -0.0023, 0, -0.0018, 0.0007, -0.0036, 0.0017, 0.0017, -0.0018, -0.0002, -0.0004, -0.0009, -0.0008, 0.0003, 0.0012, 0.0009, -0.0004, -0.0016, 0.0005, -0.0013, 0.0011, 0.0023, 0.0029, 0.0024, 0.0017, -0.0027, -0.0004, -0.001, -0.0018, -0.0015, -0.001, 0.001, -0.0013, -0.0001, -0.0002, 0.0007, 0.0003, 0.0003, -0.0016, 0.0009, -0.0021, 0.0004, 0.0014, 0.002, -0.0007, -0.0004, 0.0002, -0.0004, -0.0006, -0.0009, 0.0015, 0.0004, -0.0004, 0.0005, -0.0015, 0.0009, 0.0003, 0.0003, -0.0002, -0.0008, -0.0009, 0.0023, 0.0004, 0.0001, -0.0004, -0.0001, 0.0007, 0.0002, 0.001, 0.0001, -0.0029, -0.0005], expression: [0, 0.0003, 0.0052, -0.0007, -0.0051, -0.0103, 0, 0.0019, 0.0027, -0.0054, 0.0135, 0.035, -0.0005, -0.0006, 0.0025, -0.0045, -0.0557, -0.003, -0.0191, -0.1199, 0.0548, -0.0036, -0.0682, -0.0167, 0.0002, -0.0085, -0.0085, 0.0044, 0.0041, -0.0568, 0.0044, 0.179, 0.0065, -0.0017, -0.1006, 0.0036, -0.0267, -0.3279, 0.0301, -0.0011, -0.0173, -0.001, 0.0046, 0.2808, 0.0207, 0.0162, 0.238, -0.0225, 0.0017, 0.1041, 0.0203, 0.0005, 0.0161, 0.0031, -0.0436, 0.6504, 0.0873, -0.0099, 0.1039, 0.0048, -0.0254, 0.2534, -0.0042, 0.003, -0.0106, -0.0153, -0.0118, 0.0252, 0.0009, -0.0071, 0.0099, 0.007, -0.0724, 0.0461, -0.0235, 0.0833, 0.004, 0.0141, -0.0219, 0.0132, -0.0042, -0.0179, 0.0045, -0.0215, 0.3638, 0.0054, -0.0445] }, { mean: [0.2358, 0.1466, 0.7183], identity: [0.0077, 0.0093, 0.0001, -0.0022, 0, -0.0041, 0.0005, 0.0022, 0.0028, 0.0018, -0.0038, -0.0013, 0.001, 0.0044, -0.0002, 0, 0.0017, -0.0016, -0.0043, -0.0002, -0.0001, 0.0023, 0.0009, 0.0005, -0.0007, -0.0004, -0.0017, 0.003, 0.0007, 0.0006, 0.0011, -0.0018, 0.0005, 0.0018, -0.0008, 0.0004, -0.0023, -0.0006, -0.0003, -0.0015, -0.0014, -0.0001, -0.0018, 0.0027, -0.0026, 0.0003, -0.0031, 0.0011, -0.0026, -0.0011, 0.0012, -0.0013, -0.0002, 0.0007, -0.0021, 0.0021, 0.0004, 0.0012, -0.001, 0.002, -0.0003, 0.0002, -0.0026, -0.0003, 0.001, 0.0001, -0.0018, -0.001, 0.0009, -0.0011, 0.001, 0.0004, -0.0008, -0.0007, -0.001, -0.0003, 0.0007, -0.0005, -0.0006, -0.0019, -0.0005, -0.002, 0.0007, -0.0027, 0.0014, 0.0013, 0.0006, -0.0005, -0.0003, -0.0003, -0.001, 0, 0.0019, 0.0001, 0.0006, -0.0012, 0.0004, -0.0009, 0.0004, 0.0025, 0.0003, 0.0024, 0.0017, -0.0009, -0.0015, -0.0015, -0.001, -0.0023, -0.001, -0.0005, -0.0004, 0.0008, 0.0009, 0.0007, 0.0002, 0.0007, -0.0009, 0.0009, -0.0013, 0.0001, 0.0009, 0.0002, 0.0006, -0.0006, -0.0008, -0.0004, -0.0007, 0.0008, 0.0019, 0.0003, 0.0015, 0.0002, -0.0015, -0.0003, 0, 0.0006, 0.0003, 0.0006, -0.0006, 0.0002, 0.0005, -0.0004, 0.0012, -0.0004, 0.0002, -0.0008, 0.0006, -0.0004, 0.0002, -0.0021], expression: [-0.0034, 0.0054, 0.0069, 0.004, 0.0006, -0.0104, -0.0003, 0.0036, 0.0025, 0.0065, 0.0296, 0.0208, -0.0009, 0.0154, 0.0029, -0.0167, 0.0124, 0.004, -0.0102, 0.0351, 0.028, -0.019, 0.0146, -0.0035, -0.0023, -0.0069, -0.0051, -0.01, 0.0262, -0.028, 0.0112, 0.082, 0.023, -0.0019, -0.066, -0.0104, -0.0408, 0.0164, 0.0075, -0.0074, 0.0367, 0.0041, 0.0517, -0.0207, 0.0045, 0.0291, -0.0672, -0.0129, 0.0345, -0.1558, -0.0106, 0.0037, -0.0437, -0.0021, 0.0854, -0.1121, 0.0187, 0.0041, 0.0072, 0.0011, 0.0193, -0.0143, -0.0119, 0.005, -0.02, -0.0122, -0.008, 0.0527, 0.0036, -0.006, 0.0222, 0.007, -0.0429, 0.046, -0.0046, 0.0226, -0.0059, 0.0202, -0.0173, 0.0087, 0, -0.0067, -0.0095, -0.0153, 0.1506, -0.0017, 0.0021] }], 1: [{ mean: [-0.2271, 0.2323, 0.7319], identity: [-0.0084, 0.0097, 0.0018, 0.0041, 0.0002, -0.002, -0.0012, 0.0036, 0.0019, -0.0009, -0.0063, -0.001, -0.0003, 0.0053, 0.0006, 0.0001, 0.0005, -0.0015, 0.0044, -0.0025, -0.0015, -0.002, 0.0016, -0.0006, 0.0002, -0.0013, 0, -0.0022, 0.0002, 0.0002, -0.0025, -0.0014, 0.0015, 0.0008, 0.0002, 0.0012, 0.0006, -0.0006, 0.0017, 0, 0.0003, -0.0001, 0.0024, 0.0025, -0.0029, -0.0015, -0.0015, 0.0001, 0.0031, -0.0016, 0.0007, 0.0019, 0.0006, 0.002, 0.0009, 0.001, -0.0014, -0.002, -0.0015, 0.0029, 0.0001, 0.0005, -0.0023, 0.0008, -0.0011, 0.0019, 0.0017, -0.0003, -0.0011, -0.0003, 0.0011, -0.0008, 0.0019, -0.0022, 0.0001, 0.0015, 0.0017, -0.0008, -0.0011, -0.0022, 0.0003, 0.0022, 0.0006, -0.003, -0.0002, 0, -0.0017, -0.0002, 0, 0.0001, 0.0004, 0.0012, 0.0019, -0.0014, 0.0004, -0.0017, -0.0012, -0.0011, 0.0021, -0.0029, 0.0026, 0.0018, -0.0023, -0.0029, 0.0001, 0.0014, -0.0019, -0.0004, -0.0004, 0.0023, -0.0016, 0, -0.0009, 0.0014, -0.0015, 0.0015, -0.0016, -0.0011, -0.0022, 0.0001, -0.0018, 0.0027, -0.0013, 0.0004, -0.0001, -0.0005, 0.0011, -0.0002, 0.0015, 0.0005, -0.0009, -0.0001, 0.0029, 0.0006, 0, -0.0003, 0.0007, -0.0008, -0.0005, 0.0025, 0.0003, 0.0002, -0.0008, -0.0001, 0.0003, 0, 0.0014, 0.0002, -0.0024, 0.0001], expression: [-0.0025, -0.0009, 0.006, 0.004, -0.0027, -0.0113, -0.0008, 0.001, 0.0031, -0.0016, 0.0144, 0.0382, -0.0003, -0.0005, 0.0035, -0.0044, -0.0511, -0.0014, -0.0007, -0.1007, 0.0582, -0.0006, -0.0606, -0.0165, 0.0005, -0.0087, -0.0093, 0.0036, 0.0057, -0.0576, -0.0039, 0.1488, 0.0127, 0.0016, -0.0666, -0.0009, -0.0153, 0.3162, -0.0445, -0.0021, 0.0023, 0.0043, -0.0033, 0.2382, 0.0063, -0.0217, 0.167, -0.039, 0.0097, -0.1144, -0.0189, -0.0145, 0.6831, 0.0632, -0.0012, -0.1959, -0.0133, 0.0004, 0.1108, -0.0003, 0.0062, 0.2593, -0.0161, -0.0018, -0.0051, -0.012, 0.0162, 0.016, -0.0022, -0.0052, -0.0201, 0.0101, 0.0115, 0.0365, -0.024, -0.0059, 0.0188, -0.0336, 0.0352, 0.0224, -0.0229, 0.0146, 0.0086, -0.0273, -0.0032, 0.0103, -0.0112] }, { mean: [-0.2288, 0.1541, 0.7202], identity: [-0.0082, 0.0101, 0.0002, 0.0036, -0.0007, -0.0037, -0.0008, 0.0024, 0.0022, -0.0013, -0.0045, -0.0013, -0.0006, 0.0045, -0.0004, 0.0004, 0.0012, -0.0014, 0.0042, -0.001, -0.0007, -0.0019, 0.0003, -0.0002, 0.0012, -0.0004, -0.0012, -0.0018, -0.0004, -0.0001, -0.0014, -0.0012, 0.0001, 0.0001, -0.0017, 0.001, 0.0015, -0.0001, 0.0006, 0.0001, 0, -0.0006, 0.0028, 0.0021, -0.0025, -0.002, -0.0015, 0.0007, 0.0028, -0.0023, 0.0009, 0.0013, 0.0001, 0.0016, 0.0012, 0.0032, -0.0006, -0.0013, -0.0011, 0.0021, 0.0003, -0.0005, -0.0024, 0.0004, -0.0004, 0.0014, 0.0015, -0.0008, -0.0003, 0.0003, 0.0017, -0.0006, 0.002, -0.0018, -0.0003, 0.0009, 0.0001, 0.0002, -0.0006, -0.0015, -0.0004, 0.0022, 0.0007, -0.0023, 0, -0.0002, -0.0002, -0.0003, -0.0001, 0.0006, -0.0002, 0.0006, 0.0022, -0.0003, 0.0013, -0.0014, -0.0005, -0.0003, 0.0013, -0.0027, 0.0006, 0.0025, -0.0023, -0.0008, -0.0013, 0.0017, -0.0009, -0.0019, 0.0001, 0.0008, -0.0007, -0.0004, 0, 0.001, -0.001, 0.0019, -0.0008, -0.0015, -0.0006, -0.0002, -0.0011, 0.0008, 0.0001, 0.0009, -0.0008, -0.0004, 0.0006, 0.0007, 0.0021, -0.0004, 0.0007, -0.0005, 0.0021, -0.0007, -0.0004, -0.0009, 0.0008, 0.0003, 0.0001, 0.0003, 0.0001, 0.0009, 0.001, -0.0005, 0.0005, -0.001, 0.001, 0.0004, -0.0005, -0.0012], expression: [0.0008, 0.0037, 0.0078, -0.0004, 0.0005, -0.012, -0.0002, -0.0046, 0.0033, -0.0089, 0.0295, 0.0221, -0.0024, -0.0084, 0.0013, 0.0057, 0.0125, 0.0049, -0.0036, 0.0373, 0.0285, 0.0115, 0.0135, -0.0035, 0.0048, 0.0108, -0.0033, 0.0106, 0.0281, -0.0301, -0.0082, 0.0803, 0.0244, -0.0007, -0.0725, -0.0105, -0.0247, -0.0036, -0.0143, -0.0045, -0.029, 0.0002, -0.0303, 0.0093, -0.0021, -0.0196, -0.0754, -0.0211, 0.0326, 0.1246, 0.006, -0.0804, -0.1499, 0.0109, 0.0182, -0.0029, -0.0014, -0.0035, 0.0072, -0.0008, -0.0152, -0.0108, -0.0166, -0.0073, -0.0144, -0.0095, 0.0101, 0.047, -0.0018, -0.004, -0.0189, 0.0027, 0.0104, 0.0298, -0.0042, -0.0096, 0.0191, -0.0217, 0.0228, 0.0226, -0.0105, 0.0047, -0.0048, -0.0172, 0.0061, -0.0043, -0.0016] }], 2: { mean: [0.5396, 0.2028, 0.2496], identity: [0.0204, 0.0146, -0.0182, -0.0052, 0.0158, -0.0038, -0.0025, -0.0108, -0.006, 0.0085, -0.0044, 0.0029, 0.0042, 0.001, 0.0095, 0.0015, -0.0034, -0.0064, -0.0057, 0.0007, 0.0026, 0.0007, 0.0037, -0.0006, 0.0037, 0.0026, 0.0024, 0.0005, -0.0019, -0.0013, 0.003, -0.0028, 0.0018, -0.0009, 0.002, -0.0047, 0.004, -0.003, 0.0031, -0.0027, -0.0026, -0.0017, 0.0016, 0.0014, -0.0004, 0.0021, -0.002, 0, 0.0017, 0.0007, -0.0004, -0.0007, -0.0018, -0.0009, 0.0002, -0.0012, 0.0001, -0.0005, -0.0011, 0.0004, 0.0002, 0.0011, 0.0001, 0.0008, 0.0017, -0.0013, 0.0025, 0.0017, 0.001, 0.0002, 0.0003, 0.0005, -0.0004, -0.0001, -0.0005, 0.0007, -0.0022, -0.0029, 0.0006, -0.0008, -0.0006, 0.0006, -0.0005, 0.0005, 0.0013, 0.0003, -0.0005, -0.003, 0.0007, 0.0002, 0.0016, -0.0004, 0, 0, 0.0004, 0.0001, 0.0014, 0.0012, 0.0001, 0.0004, -0.0001, 0.0008, 0.0009, 0.0004, -0.0004, 0.0009, -0.0002, 0.001, 0.0009, 0.0004, 0.0001, 0.0007, 0.0007, 0.001, -0.0017, -0.0008, 0.0002, 0.0017, -0.0003, -0.0001, 0.0004, 0.0005, 0.0007, 0.0005, -0.0001, -0.0006, -0.0001, 0.0001, -0.0003, -0.0007, -0.0002, -0.0005, 0, -0.0003, 0.0003, 0.0008, -0.0002, -0.0003, 0.0005, 0.0001, -0.0007, -0.001, -0.0002, 0.0003, 0.0004, -0.0001, 0.0007, 0, 0.0004, 0.0004], expression: [0.0001, -0.0004, 0.0001, 0, 0.0005, 0.0002, 0, 0, 0.0003, -0.0002, 0.0003, 0.0005, -0.0001, 0.0002, 0.0008, 0.0001, -0.0002, -0.0005, -0.0003, 0.0006, 0.0005, 0, 0.0001, 0.0002, 0.0001, -0.0001, -0.0006, -0.0002, 0.0005, 0, -0.0004, 0.0004, 0.0016, 0.0004, -0.0004, -0.0015, 0, 0.0001, 0.0001, -0.0003, 0.0003, 0.0019, -0.0002, 0.0007, 0.0004, 0.0004, -0.0008, -0.0015, 0.0013, -0.0016, -0.0069, 0.0004, -0.0006, -0.0019, 0, -0.0001, 0.0005, -0.0003, 0.0002, 0.0014, -0.0003, 0.0006, 0.0011, 0.0004, -0.0003, -0.0032, -0.0006, 0.0008, 0.0025, -0.0003, 0.0003, 0.0015, -0.0001, 0.0001, 0.0003, -0.0001, 0, 0, -0.0003, 0.0004, 0.0019, 0.0001, 0, -0.0008, -0.0001, 0.0001, 0.0005] }, 3: { mean: [-0.5464, 0.2141, 0.26], identity: [-0.0207, 0.0172, -0.0176, 0.0068, 0.0148, -0.0051, 0.0042, -0.0101, -0.0058, -0.0087, -0.0059, 0.0045, -0.0056, 0.0017, 0.0097, -0.0048, -0.004, -0.0044, 0.0019, 0.0002, 0.0041, -0.0052, 0.0041, 0.0002, -0.0027, 0.0006, 0.002, -0.0027, -0.0033, -0.0006, -0.004, 0.0009, -0.0012, -0.0001, -0.0026, 0.0021, -0.003, -0.0025, 0.0052, 0.0025, 0.0022, -0.0001, -0.0008, 0.0013, 0.001, 0.0004, 0.0018, 0.0014, 0.0006, -0.0005, -0.0015, -0.0039, 0.0014, -0.0001, 0.0008, -0.0002, 0.0006, -0.0005, -0.0038, -0.0012, -0.0018, -0.0003, 0.001, 0.0009, 0.0012, 0.0024, -0.0024, -0.0007, -0.0016, -0.0016, 0.0003, -0.001, -0.0014, -0.0014, 0.001, -0.0003, -0.0007, -0.0012, 0.0003, 0.0006, 0.0003, -0.0005, 0.0003, 0.0012, 0.0006, -0.0008, 0.0004, 0.0004, 0.0008, -0.0002, -0.0014, 0.0003, 0, 0.0023, -0.0003, -0.0012, -0.0013, 0.0011, -0.0002, -0.0014, -0.0001, 0.0014, 0, 0.0003, 0.0003, -0.0008, -0.0005, -0.0007, -0.0007, -0.0002, 0.0003, 0.0005, 0.0002, -0.0001, 0.0011, -0.0014, 0.0001, -0.0015, -0.0001, -0.0003, 0, -0.001, -0.0001, -0.0008, 0.0008, -0.0008, -0.0002, -0.0011, -0.0003, -0.0004, 0.0001, -0.0002, 0.0003, -0.0007, 0, 0.0003, 0.0001, -0.0008, 0.0005, 0.0001, 0.0004, 0.0014, -0.0006, -0.001, -0.0003, -0.0002, 0.0001, -0.0001, -0.0001, 0.0007], expression: [-0.0003, -0.0001, 0.0006, 0.0004, 0, -0.0007, 0, -0.0003, -0.0002, -0.0004, 0.0012, 0.0008, 0.0001, -0.0005, -0.0007, -0.0004, 0, 0.0001, -0.0004, 0.0017, 0.0007, 0, 0.0001, 0.0003, 0, 0.0004, 0.0004, 0.0005, 0.0001, -0.001, -0.0007, 0.0022, 0.0026, 0.0005, -0.0024, -0.0023, 0, 0.0001, 0.0003, 0, -0.0013, -0.0015, 0.0006, 0.0014, 0.0008, -0.0002, -0.0025, -0.0023, -0.0003, 0.0049, 0.006, -0.0002, -0.0007, -0.0002, 0, -0.0019, -0.0018, -0.0002, 0.0017, 0.0017, 0.0003, 0.0015, 0.0007, 0.0001, -0.0023, -0.0036, 0.0002, 0.0023, 0.0017, 0, -0.0005, -0.0003, -0.0003, 0.0004, 0.0002, -0.0001, -0.0003, -0.0005, 0.0001, 0.0018, 0.0025, 0.0001, -0.0006, -0.0011, 0, 0.0001, 0.0001] }, 4: { mean: [0.0018, 0.1864, 0.853], identity: [-0.0011, 0.0134, 0.0085, 0.0009, -0.0025, -0.0007, -0.0003, 0.0033, 0.0004, -0.0005, -0.0047, -0.002, 0.0007, 0.0026, -0.0069, -0.0001, 0.0036, 0.0072, 0.0005, -0.0008, -0.0047, 0.0004, -0.0008, -0.001, 0, 0.0002, -0.0036, -0.0002, -0.001, -0.0048, -0.0001, 0.0018, 0.0044, -0.0007, -0.0002, 0.0043, 0.0003, 0.002, -0.0031, 0, -0.0007, 0.0013, 0, 0.0037, 0.0033, -0.0016, -0.0012, 0.002, -0.0001, -0.0027, 0.0051, 0.0005, 0.0008, 0.0007, -0.0017, 0.0054, 0.0023, -0.0003, 0.0032, 0.0001, 0, 0.0007, -0.0005, -0.0011, 0.0002, 0.0008, 0, -0.0033, -0.0008, -0.0007, 0.0007, 0.0033, 0.0005, -0.0003, 0.0029, -0.0001, -0.0024, -0.0011, -0.002, -0.0015, -0.0019, 0.0002, 0.0007, 0.0031, 0.0006, 0.0012, 0, 0, -0.0021, 0, -0.0009, -0.0011, -0.0011, -0.0002, 0.0015, 0.001, 0.0013, 0.0008, 0.001, -0.0003, 0.0009, 0.0027, -0.0002, -0.0011, -0.0011, 0.0006, 0.0007, 0.0002, 0.0001, -0.0005, -0.0022, 0.0011, -0.0014, 0.0009, 0.0003, 0.0002, 0, -0.0006, -0.0004, -0.0011, -0.0007, 0.001, -0.0012, 0.0006, -0.0012, -0.0015, 0.0003, -0.0009, -0.0013, -0.0013, 0.0007, 0.001, -0.0011, -0.0013, 0.0015, 0.0004, 0.0001, 0.0004, -0.0001, -0.0016, -0.0016, 0.0009, -0.0007, -0.0024, 0.0005, -0.0001, -0.0017, -0.0002, 0.0003, -0.0009], expression: [-0.0017, 0.0019, 0.0097, 0.003, -0.0103, -0.0093, 0.0009, 0.0006, 0.0023, -0.0017, -0.0204, 0.0376, 0.0033, -0.0034, 0.0033, -0.0026, -0.0322, 0.0396, -0.0032, -0.0947, 0.0942, -0.0007, -0.0175, 0.0266, -0.001, -0.0006, 0.0016, 0.0025, 0.0157, -0.0142, -0.0022, 0.037, 0.015, 0.0021, -0.0102, -0.0107, 0.0036, 0.0055, -0.0051, 0.0021, 0.0003, -0.0003, 0.0004, -0.0177, 0.0074, -0.0006, -0.0357, 0.0149, -0.0066, 0.0009, 0.0013, -0.0031, 0.0016, 0.0095, 0.002, 0.0052, 0.0035, -0.0003, 0.0053, -0.0082, 0.002, 0.0022, -0.0071, -0.0011, 0.0005, 0.0055, 0.0011, 0.0003, -0.0126, -0.0004, 0.0003, -0.0023, -0.0015, 0.0059, 0.0063, -0.0042, -0.0023, 0.0055, 0.0019, 0.0017, -0.0075, 0.0006, -0.0008, 0.0018, 0.0012, 0.0012, -0.0005] }, 5: { mean: [-0.002, -0.0469, 1.0039], identity: [-0.0017, 0.0018, 0.0156, 0.0006, -0.0038, 0.0005, 0.0004, 0.0013, 0.002, -0.0004, -0.0015, -0.0051, 0.0005, -0.0007, -0.0055, -0.0001, -0.0009, 0.008, -0.0002, 0.0036, -0.0053, 0.0004, -0.0026, -0.0016, 0.0007, 0.0009, -0.009, -0.0003, 0.0007, -0.0084, 0.0015, 0.0021, 0.0032, -0.0015, 0.0018, 0.0046, -0.0003, -0.0004, -0.0001, 0.0008, -0.0044, -0.0007, -0.0008, 0.0007, 0.0048, -0.0024, -0.0003, 0.0024, 0.0002, -0.0051, 0.0058, -0.0006, 0.0028, 0.0018, -0.0021, 0.0035, 0.0057, 0.0011, 0.0065, 0, -0.0002, 0.0011, 0.003, -0.0027, 0.0008, 0.0007, 0.0003, -0.0039, -0.002, -0.0002, -0.0015, 0.0034, 0.0012, -0.0025, 0.0024, -0.0002, 0.0004, -0.0042, -0.0024, -0.001, -0.0023, 0.0016, -0.0007, 0.0039, 0.0001, -0.0005, 0.0018, 0.0003, -0.0002, -0.0009, -0.0015, 0.0003, -0.0007, -0.0001, -0.0002, 0.0023, 0.0032, 0.002, -0.0013, 0.0013, -0.0038, 0.0045, 0.0001, -0.0031, 0.0001, 0.0019, -0.0001, 0.0016, 0.0013, 0, -0.002, 0.0023, 0.0002, 0.0011, 0.0018, -0.0024, 0.0006, -0.0017, 0.002, -0.0008, -0.0021, 0.0007, 0.0011, 0.0008, 0.0004, -0.001, 0.0012, 0.0002, -0.0006, -0.0027, -0.0005, 0.001, -0.0009, 0.0001, -0.0001, 0.0008, -0.0011, 0.0022, -0.001, -0.0005, -0.0011, 0.0016, -0.0015, 0.0008, -0.0003, 0.0009, 0.0013, -0.0007, -0.0007, -0.0002], expression: [-0.0018, -0.0168, 0.0088, 0.0389, 0.1026, 0.0414, 0.2201, -0.0262, -0.0016, -0.0017, 0.0612, -0.0298, -0.0323, 0.0093, 0.0013, -0.005, 0.2207, 0.1315, -0.0004, 0.0858, -0.0303, -0.0133, 0.015, -0.008, 0.1454, 0.0114, 0.0177, -0.0077, 0.1022, 0.0356, -0.0023, 0.1088, 0.0232, 0.003, -0.0706, 0.0347, -0.0001, 0.004, -0.0011, 0.0397, -0.0096, -0.0033, 0.0029, -0.01, -0.0083, -0.0006, -0.0135, 0.0016, -0.0087, -0.0019, 0.0022, -0.004, -0.0087, 0.0105, 0.0008, -0.005, 0.0069, 0.0028, 0.0409, -0.0391, 0.003, 0.0103, 0.0051, 0.0026, 0.0776, -0.0083, -0.0062, -0.0567, 0.0268, 0.0175, 0.0017, 0.0156, -0.0043, 0.0299, -0.0395, -0.0015, 0.0051, -0.0148, 0.0125, 0.0035, 0.0603, 0.0109, -0.0645, -0.0257, 0.002, 0.0006, -0.0008] }, 6: { mean: [-0.0006, -0.1542, 0.8789], identity: [-0.0007, -0.0032, 0.01, 0, -0.0027, 0.0031, 0.0006, 0.0005, -0.0006, -0.0003, 0.0013, -0.0049, -0.0002, -0.002, -0.0046, 0.0008, -0.0011, 0.0054, 0.0002, 0.0043, -0.0027, 0.0003, -0.0022, -0.0019, 0.0008, 0.0032, -0.0069, 0, 0.0004, -0.0071, 0.0016, 0.0027, 0.0039, -0.0017, 0.0009, 0.0031, -0.0001, -0.0005, -0.0004, 0.0007, -0.0026, -0.0012, -0.0005, 0.0006, 0.0002, -0.0014, -0.0013, 0.0019, -0.0002, -0.0053, 0.0031, -0.0006, 0.0016, 0.0023, -0.0013, 0.0021, 0.0029, 0.0008, 0.0052, 0, 0.0004, 0, 0.0037, -0.0026, 0.0003, 0.002, -0.0002, -0.0024, 0.0004, -0.0004, -0.0012, 0.0008, 0.0007, -0.0023, 0.0005, 0, 0.0014, -0.0022, -0.0016, 0, -0.0012, 0.0008, -0.0007, 0.0014, -0.0006, -0.0012, -0.0003, 0.0002, 0.0012, -0.0003, -0.002, -0.0001, 0.0001, -0.0002, -0.0016, 0.0009, 0.002, 0.0019, 0, 0.0006, -0.0022, 0.0016, 0.0001, -0.0017, -0.0013, 0.001, 0.0009, -0.0001, 0.0011, 0.0003, -0.0007, 0.0014, 0.0008, 0.0013, 0.0011, -0.002, 0, -0.0015, 0.0014, 0.001, -0.0015, 0.0007, 0.0003, 0.001, -0.0001, 0.0012, 0.0007, 0.0006, -0.0004, -0.0013, -0.0012, -0.0009, -0.0011, 0.0002, -0.0005, 0.0005, 0.0004, 0.0002, 0.0001, 0, 0.0005, 0.0005, -0.0014, 0.0015, -0.0009, 0.0005, 0.0014, -0.0008, -0.0008, 0.0012], expression: [0.0008, 0.0481, 0.1653, 0.0784, 0.1008, -0.3992, 0.5088, -0.02, 0.0542, 0.001, 0.3723, -0.0151, -0.0986, 0.0283, -0.0033, -0.0121, 0.2634, 0.1202, 0.0036, -0.0529, -0.0245, -0.0297, -0.1085, 0.0495, 0.3264, 0.0083, 0.0004, -0.0314, 0.1459, -0.1142, -0.003, 0.0001, 0.1154, -0.0035, -0.0285, -0.0184, -0.0001, 0.0012, 0.0035, 0.079, -0.0103, 0.0043, 0.011, -0.004, -0.0774, -0.0047, -0.023, 0.0284, -0.0048, -0.001, 0.0149, -0.0039, 0.0046, 0.0528, -0.0006, 0.0063, 0.0376, 0.0096, 0.0558, -0.0295, 0, -0.0311, -0.0634, 0.0062, 0.0176, -0.0154, -0.0109, -0.1149, 0.0192, 0.0326, 0.0121, 0.0237, 0.0034, 0.0262, -0.0778, 0.0014, -0.0045, -0.0203, 0.0077, 0.0588, 0.0575, 0.008, -0.0557, -0.0095, 0.0032, 0.0054, -0.0042] }, 7: { mean: [0.0038, -0.2927, 0.833], identity: [0.0006, -0.0109, 0.0073, -0.0006, -0.0044, 0.0017, -0.0001, -0.0022, -0.0006, -0.0003, 0.0065, -0.0014, -0.0006, -0.0051, -0.0046, 0.0003, -0.0029, 0.003, 0.0002, 0.0038, -0.0006, 0, -0.0012, 0.0006, -0.0004, 0.0053, -0.0075, -0.0002, -0.0007, -0.0063, 0.0014, 0.0026, 0.0019, -0.0022, 0.0018, 0.0028, -0.0001, -0.0012, 0.0011, 0.0009, 0.0019, -0.0019, -0.0001, 0.0012, -0.0022, -0.0003, -0.0012, 0.0004, -0.0008, 0.0003, -0.0003, 0, 0.0017, 0.0021, -0.0004, 0.0012, 0.0022, -0.0003, 0.0026, -0.0003, 0.0004, -0.0026, 0.0032, -0.0019, 0.0003, 0.0015, 0.0001, -0.0015, 0.0013, -0.0001, 0.0001, -0.0029, 0, -0.0002, -0.0028, -0.0007, 0.0019, -0.0003, -0.0002, 0.0012, 0.0009, 0.0004, -0.001, -0.002, -0.0016, 0.0011, -0.0001, 0.0003, 0.0021, 0.0002, -0.0014, -0.0009, -0.0001, 0, -0.0002, -0.001, 0.0015, 0.0018, 0.0001, 0.0007, 0.0008, 0.0017, 0.001, -0.0009, 0.0001, 0.0004, 0.0023, -0.0001, 0.0012, 0.0001, -0.0008, 0.0002, 0.0018, 0.0006, 0.0003, 0.0001, 0.0012, -0.0003, 0.002, -0.0006, 0, -0.0001, -0.0022, 0.0004, 0.0005, 0.0011, 0.0002, -0.0013, -0.0023, 0.0006, 0.0006, -0.0005, -0.0005, 0.0009, 0.0002, 0.0002, 0.0011, -0.0003, 0.0011, 0.0015, 0.0011, 0.0003, 0.0002, 0.0008, -0.0004, -0.0008, 0.0003, 0, 0.0012, -0.0001], expression: [0.026, 0.1107, 0.3257, 0.1917, 0.3206, -1.1348, 1.0791, -0.035, 0.1549, -0.0103, 0.6953, 0.0001, -0.3262, 0.068, 0.0219, -0.0044, 0.3643, 0.2178, 0.0168, -0.2478, -0.1321, -0.0414, -0.3782, -0.0617, 0.5088, -0.0031, -0.0311, -0.0497, 0.0948, -0.385, 0.0148, -0.2224, -0.1415, -0.0074, 0.0863, -0.203, 0.0003, -0.0081, 0.0057, 0.1164, -0.0039, 0.0015, -0.0024, 0.0505, 0.1532, 0.0039, -0.0148, -0.0753, 0.0163, 0.0058, -0.0339, 0.0036, 0.0252, -0.0569, -0.0041, 0.0163, -0.0361, 0.0035, -0.018, 0.1266, 0, -0.0163, -0.0046, 0.0133, -0.1656, 0.2134, 0.0191, 0.0057, 0.0734, 0.0681, 0.0039, -0.0144, 0.029, -0.074, -0.046, 0.0122, 0.0072, -0.0162, -0.0349, -0.1234, 0.0212, -0.0355, 0.0535, 0.1218, 0.0043, -0.024, 0.0016] }, 8: { mean: [-0.0018, -0.3037, 0.8491], identity: [0.0002, -0.0112, 0.0077, -0.0004, -0.0044, 0.0024, 0.0001, -0.0021, -0.0004, -0.0004, 0.0066, -0.002, -0.0004, -0.0052, -0.0044, 0.0003, -0.0032, 0.0039, 0.0004, 0.0042, -0.0003, 0.0002, -0.0012, -0.0002, -0.0002, 0.0052, -0.0083, -0.0001, -0.0008, -0.0056, 0.0017, 0.0024, 0.0019, -0.0023, 0.002, 0.0027, -0.0002, -0.0013, 0.002, 0.0009, 0.0017, -0.0028, -0.0002, 0.0012, -0.0026, 0, -0.0016, 0.0002, -0.0005, 0.0003, -0.001, -0.0001, 0.0016, 0.0016, -0.0003, 0.0012, 0.0012, -0.0003, 0.0027, -0.0003, 0.0003, -0.0026, 0.0037, -0.0017, 0.0001, 0.0016, 0.0001, -0.0015, 0.0024, 0.0001, 0.0002, -0.0039, 0, -0.0003, -0.0033, -0.0006, 0.0017, -0.0004, -0.0004, 0.0012, 0.0018, 0.0002, -0.0012, -0.002, -0.0017, 0.0013, -0.001, 0.0003, 0.0021, 0.0004, -0.0012, -0.0006, -0.0002, 0, -0.0004, -0.0009, 0.0016, 0.0017, 0.0004, 0.0007, 0.0007, 0.001, 0.0009, -0.0008, 0.0005, 0.0005, 0.0023, 0.001, 0.0013, 0.0002, -0.0004, 0.0002, 0.0017, 0.0008, 0.0003, -0.0001, 0.0009, -0.0004, 0.0019, -0.0005, 0.0003, 0, -0.0025, 0.0003, 0.0003, 0.0011, 0.0001, -0.0015, -0.001, 0.0007, 0.0007, -0.0007, -0.0007, 0.0008, 0, 0.0001, 0.0013, -0.0004, 0.0012, 0.0014, 0.0017, 0.0004, 0.0002, 0.0003, -0.0003, -0.0009, 0.0001, 0, 0.001, -0.0004], expression: [-0.0092, 2.8809, 1.416, 0.2018, 1.1982, -0.9351, 1.4492, -0.1902, 0.1749, 0.0305, -0.167, -0.1572, -0.7354, -0.0492, 0.0115, 0.0608, 0.2971, 0.1179, 0.0046, -0.0997, -0.0041, -0.0104, 0.3379, -0.1854, 0.009, 0.0366, -0.0583, 0.0269, -0.0029, -0.4175, -0.0008, 0.1794, 0.0752, -0.0135, 0.1158, 0.1234, 0.0005, 0.003, -0.0032, 0.1034, -0.0504, -0.0055, -0.0076, -0.0772, 0.224, 0.0047, 0.0229, -0.1044, 0.0162, -0.0161, -0.0241, -0.0083, -0.1388, -0.0434, -0.0125, -0.0997, -0.0327, -0.0111, 0.1576, -0.3911, 0.0199, 0.2522, 0.142, 0.0059, -0.0721, -0.0045, 0.031, -0.1136, -0.1685, 0.0641, 0.0142, 0.0312, 0.0426, -0.1366, 0.1011, 0.0101, -0.0157, 0.0018, -0.0103, -0.0344, 0.0907, 0.0016, 0.1168, -0.0806, 0.0104, -0.0057, 0.0111] }, 9: [{ mean: [0.0038, -0.2927, 0.833], identity: [0.0006, -0.0109, 0.0073, -0.0006, -0.0044, 0.0017, -0.0001, -0.0022, -0.0006, -0.0003, 0.0065, -0.0014, -0.0006, -0.0051, -0.0046, 0.0003, -0.0029, 0.003, 0.0002, 0.0038, -0.0006, 0, -0.0012, 0.0006, -0.0004, 0.0053, -0.0075, -0.0002, -0.0007, -0.0063, 0.0014, 0.0026, 0.0019, -0.0022, 0.0018, 0.0028, -0.0001, -0.0012, 0.0011, 0.0009, 0.0019, -0.0019, -0.0001, 0.0012, -0.0022, -0.0003, -0.0012, 0.0004, -0.0008, 0.0003, -0.0003, 0, 0.0017, 0.0021, -0.0004, 0.0012, 0.0022, -0.0003, 0.0026, -0.0003, 0.0004, -0.0026, 0.0032, -0.0019, 0.0003, 0.0015, 0.0001, -0.0015, 0.0013, -0.0001, 0.0001, -0.0029, 0, -0.0002, -0.0028, -0.0007, 0.0019, -0.0003, -0.0002, 0.0012, 0.0009, 0.0004, -0.001, -0.002, -0.0016, 0.0011, -0.0001, 0.0003, 0.0021, 0.0002, -0.0014, -0.0009, -0.0001, 0, -0.0002, -0.001, 0.0015, 0.0018, 0.0001, 0.0007, 0.0008, 0.0017, 0.001, -0.0009, 0.0001, 0.0004, 0.0023, -0.0001, 0.0012, 0.0001, -0.0008, 0.0002, 0.0018, 0.0006, 0.0003, 0.0001, 0.0012, -0.0003, 0.002, -0.0006, 0, -0.0001, -0.0022, 0.0004, 0.0005, 0.0011, 0.0002, -0.0013, -0.0023, 0.0006, 0.0006, -0.0005, -0.0005, 0.0009, 0.0002, 0.0002, 0.0011, -0.0003, 0.0011, 0.0015, 0.0011, 0.0003, 0.0002, 0.0008, -0.0004, -0.0008, 0.0003, 0, 0.0012, -0.0001], expression: [0.026, 0.1107, 0.3257, 0.1917, 0.3206, -1.1348, 1.0791, -0.035, 0.1549, -0.0103, 0.6953, 0.0001, -0.3262, 0.068, 0.0219, -0.0044, 0.3643, 0.2178, 0.0168, -0.2478, -0.1321, -0.0414, -0.3782, -0.0617, 0.5088, -0.0031, -0.0311, -0.0497, 0.0948, -0.385, 0.0148, -0.2224, -0.1415, -0.0074, 0.0863, -0.203, 0.0003, -0.0081, 0.0057, 0.1164, -0.0039, 0.0015, -0.0024, 0.0505, 0.1532, 0.0039, -0.0148, -0.0753, 0.0163, 0.0058, -0.0339, 0.0036, 0.0252, -0.0569, -0.0041, 0.0163, -0.0361, 0.0035, -0.018, 0.1266, 0, -0.0163, -0.0046, 0.0133, -0.1656, 0.2134, 0.0191, 0.0057, 0.0734, 0.0681, 0.0039, -0.0144, 0.029, -0.074, -0.046, 0.0122, 0.0072, -0.0162, -0.0349, -0.1234, 0.0212, -0.0355, 0.0535, 0.1218, 0.0043, -0.024, 0.0016] }, { mean: [-0.0018, -0.3037, 0.8491], identity: [0.0002, -0.0112, 0.0077, -0.0004, -0.0044, 0.0024, 0.0001, -0.0021, -0.0004, -0.0004, 0.0066, -0.002, -0.0004, -0.0052, -0.0044, 0.0003, -0.0032, 0.0039, 0.0004, 0.0042, -0.0003, 0.0002, -0.0012, -0.0002, -0.0002, 0.0052, -0.0083, -0.0001, -0.0008, -0.0056, 0.0017, 0.0024, 0.0019, -0.0023, 0.002, 0.0027, -0.0002, -0.0013, 0.002, 0.0009, 0.0017, -0.0028, -0.0002, 0.0012, -0.0026, 0, -0.0016, 0.0002, -0.0005, 0.0003, -0.001, -0.0001, 0.0016, 0.0016, -0.0003, 0.0012, 0.0012, -0.0003, 0.0027, -0.0003, 0.0003, -0.0026, 0.0037, -0.0017, 0.0001, 0.0016, 0.0001, -0.0015, 0.0024, 0.0001, 0.0002, -0.0039, 0, -0.0003, -0.0033, -0.0006, 0.0017, -0.0004, -0.0004, 0.0012, 0.0018, 0.0002, -0.0012, -0.002, -0.0017, 0.0013, -0.001, 0.0003, 0.0021, 0.0004, -0.0012, -0.0006, -0.0002, 0, -0.0004, -0.0009, 0.0016, 0.0017, 0.0004, 0.0007, 0.0007, 0.001, 0.0009, -0.0008, 0.0005, 0.0005, 0.0023, 0.001, 0.0013, 0.0002, -0.0004, 0.0002, 0.0017, 0.0008, 0.0003, -0.0001, 0.0009, -0.0004, 0.0019, -0.0005, 0.0003, 0, -0.0025, 0.0003, 0.0003, 0.0011, 0.0001, -0.0015, -0.001, 0.0007, 0.0007, -0.0007, -0.0007, 0.0008, 0, 0.0001, 0.0013, -0.0004, 0.0012, 0.0014, 0.0017, 0.0004, 0.0002, 0.0003, -0.0003, -0.0009, 0.0001, 0, 0.001, -0.0004], expression: [-0.0092, 2.8809, 1.416, 0.2018, 1.1982, -0.9351, 1.4492, -0.1902, 0.1749, 0.0305, -0.167, -0.1572, -0.7354, -0.0492, 0.0115, 0.0608, 0.2971, 0.1179, 0.0046, -0.0997, -0.0041, -0.0104, 0.3379, -0.1854, 0.009, 0.0366, -0.0583, 0.0269, -0.0029, -0.4175, -0.0008, 0.1794, 0.0752, -0.0135, 0.1158, 0.1234, 0.0005, 0.003, -0.0032, 0.1034, -0.0504, -0.0055, -0.0076, -0.0772, 0.224, 0.0047, 0.0229, -0.1044, 0.0162, -0.0161, -0.0241, -0.0083, -0.1388, -0.0434, -0.0125, -0.0997, -0.0327, -0.0111, 0.1576, -0.3911, 0.0199, 0.2522, 0.142, 0.0059, -0.0721, -0.0045, 0.031, -0.1136, -0.1685, 0.0641, 0.0142, 0.0312, 0.0426, -0.1366, 0.1011, 0.0101, -0.0157, 0.0018, -0.0103, -0.0344, 0.0907, 0.0016, 0.1168, -0.0806, 0.0104, -0.0057, 0.0111] }], 10: { mean: [-0.007, -0.6338, 0.7695], identity: [0.0001, -0.0296, 0.0089, -0.0006, -0.0073, -0.0065, -0.0001, -0.0029, -0.0031, -0.0002, 0.0128, 0.0065, 0, -0.0116, -0.014, -0.0001, -0.0037, -0.0052, -0.0005, 0.0028, 0.003, -0.0004, 0.0041, 0.0015, 0.0006, 0.0088, -0.0076, -0.0011, -0.0015, -0.0073, 0.0007, -0.0011, 0.0019, -0.0011, -0.0005, 0.0031, -0.0001, -0.0018, 0.0009, 0.0018, 0.0038, 0.0068, -0.0004, -0.0001, 0.0061, 0.0024, 0.0024, -0.0066, -0.0006, 0.0051, 0.0014, 0.002, 0.005, -0.0035, 0.0001, -0.0034, -0.004, -0.0007, 0.001, -0.0008, 0.0001, -0.0005, -0.0021, 0.0002, 0.0045, -0.0043, -0.0012, -0.0024, -0.0014, 0.0006, 0.0034, 0.0027, -0.0008, -0.0053, 0.0014, 0.0001, 0.0013, -0.0018, 0.0006, -0.0015, 0.0029, -0.0002, -0.0035, 0.0001, -0.002, 0.0012, 0.0048, 0.0011, 0.0001, -0.0002, -0.0003, -0.0012, 0.0033, 0.0006, 0.002, -0.0033, 0.0004, 0.0028, 0.0002, 0.0008, -0.0001, -0.0018, 0.0008, 0.0017, 0.0001, 0.0009, 0.0008, 0.0003, 0.0019, -0.001, 0.001, -0.0007, -0.0013, 0, 0.0001, 0.0032, -0.0001, 0.0001, 0.0011, -0.0004, 0.0005, -0.0007, 0.0018, -0.0003, 0.0002, 0.0007, 0.0008, -0.0014, 0.0007, 0.0015, -0.0006, -0.0001, -0.0004, 0.0019, -0.0009, -0.0006, -0.0006, -0.0012, 0.0002, -0.0012, -0.0008, 0.0004, 0.0006, -0.0011, 0.0003, 0.0009, -0.0004, 0.0006, -0.0007, -0.0004], expression: [-0.0603, 2.0527, 1.9014, 0.1025, 0.6143, 0.3804, 0.7881, -0.1023, -0.0764, 0.0454, -0.2487, -0.5073, -0.6704, -0.031, -0.0181, 0.0466, 0.0651, -0.0726, -0.0033, -0.0022, 0.2944, 0.0101, 0.1669, -0.5225, -0.4685, 0.0236, 0.0079, 0.011, 0.2173, 0.4529, 0.0121, -0.2104, -0.0673, 0.0225, -0.4023, 0.0317, -0.0009, 0.0076, -0.0032, 0.0333, 0.0523, 0.0129, -0.001, -0.0319, -0.0139, 0.0015, -0.0044, 0.0247, -0.0005, 0.0161, 0.0061, 0.0074, 0.0776, -0.0176, 0.007, 0.055, -0.017, 0.0052, -0.1819, 0.0294, -0.0161, -0.0337, 0.0226, -0.008, -0.0297, 0.1967, -0.0095, 0.0383, 0.2039, 0.0434, 0.0271, -0.0064, -0.0037, -0.0294, -0.024, 0.0024, -0.0137, -0.0209, -0.0031, 0.0628, 0.1003, -0.0126, -0.056, -0.0097, -0.0012, -0.0041, 0.0162] }, 11: { mean: [0.2505, 0.3833, 0.7793], identity: [0.0098, 0.012, 0.0077, -0.0006, -0.0003, 0, 0.0001, 0.0082, -0.0007, 0.0019, -0.0036, -0.0012, 0.0002, 0.0119, -0.0039, 0.001, 0.0001, 0.0031, -0.0036, -0.0059, -0.0007, 0.0026, 0.0028, -0.0011, 0.0009, -0.0032, 0.0008, 0.0029, 0.0043, 0.0003, 0.0025, -0.0009, 0.0047, 0.0016, 0.0022, 0.0018, -0.001, 0.0025, -0.003, -0.001, 0.0033, 0.0034, 0.0004, -0.0052, 0.0024, -0.0002, 0.001, -0.0014, -0.0006, 0.0038, -0.0015, -0.0006, -0.001, -0.0011, -0.0004, -0.001, 0.0004, -0.0007, 0.0036, -0.0008, -0.0002, -0.0019, 0.0005, 0.0003, -0.0006, -0.0024, -0.0017, -0.0014, 0.0006, -0.0004, -0.0031, -0.0013, -0.0006, 0.0042, 0.0002, -0.0002, -0.002, -0.0003, 0.0008, 0.0018, -0.0005, -0.0006, -0.0002, -0.0006, 0.0025, 0.0019, 0.001, 0.0008, -0.0015, -0.0012, -0.0001, -0.0006, -0.0004, 0.0023, -0.001, 0.0006, -0.0002, -0.001, 0, -0.0009, -0.002, -0.0011, 0.0001, 0, -0.0001, 0.0005, 0.0006, 0.0009, -0.0006, 0.0005, 0.0008, -0.0001, -0.0002, -0.0017, -0.0006, -0.0004, 0.0004, -0.0006, 0.0012, 0.0004, 0.0003, -0.0007, 0.0003, -0.0002, 0.0006, 0.0001, 0.0005, -0.0019, -0.0006, 0.0004, 0.0007, -0.0001, 0.0001, 0.0005, 0.001, -0.0006, -0.002, -0.0007, -0.0005, 0.0005, 0.0003, 0.0007, 0.0014, 0, 0.0005, -0.0005, -0.0002, 0.0003, -0.0006, -0.0001], expression: [-0.0009, -0.0003, 0.0032, -0.003, -0.0034, -0.0031, 0.0014, 0, 0.0004, -0.0139, -0.0764, 0.0275, -0.002, -0.0089, 0.0031, -0.0503, -0.0771, 0.038, -0.1323, -0.3523, 0.1368, -0.0474, -0.0564, 0.0296, -0.0045, 0.007, -0.0013, 0.0153, 0.1259, -0.0464, 0.0866, 0.2175, -0.0786, -0.0413, -0.1248, 0.0448, -0.1777, -0.4607, 0.1782, -0.0005, -0.005, 0.0016, 0.0629, 0.1506, -0.0624, 0.0545, 0.2576, -0.0864, -0.0231, -0.0552, 0.0244, -0.0136, -0.0359, 0.0169, -0.1158, -0.2996, 0.1214, -0.0235, -0.0354, 0.0165, -0.0745, -0.1079, 0.0475, -0.0116, -0.0039, 0.0012, 0.0013, -0.0108, -0.0008, 0.0044, -0.0027, -0.0001, -0.0694, 0.0363, 0.0071, 0.1462, -0.136, 0.0047, 0.009, -0.0177, 0.0038, -0.0271, 0.0118, 0.0011, -0.0399, -0.0111, 0.0123] }, 12: { mean: [-0.2981, 0.3828, 0.7563], identity: [-0.0116, 0.014, 0.0054, 0.0018, 0.0005, 0, -0.0004, 0.0068, -0.0013, -0.0019, -0.0048, -0.0005, 0.0005, 0.0108, -0.0036, -0.0029, -0.0018, 0.0029, 0.0043, -0.0077, 0.0006, -0.0017, 0.002, -0.0011, -0.0014, -0.0035, 0.0015, -0.0024, 0.0011, 0.0004, -0.0048, 0.0002, 0.0029, -0.0001, -0.0001, 0.003, 0.0019, 0.0035, -0.0016, -0.0004, 0.0039, 0.0019, 0.0001, -0.0064, 0.004, 0.0003, 0.002, -0.0021, 0.0017, 0.0011, -0.001, 0.0026, 0.0025, -0.0005, 0.0002, -0.0003, -0.0005, -0.0007, 0.0009, -0.0004, -0.001, -0.0022, 0.001, 0.0009, -0.0014, 0.0007, 0.0011, -0.001, -0.0005, -0.0008, -0.0017, -0.0021, 0.0009, 0.0036, 0.0005, 0.0004, -0.0031, 0.0006, -0.0015, 0.0027, 0.0002, 0.0001, -0.0011, 0.0002, -0.0011, -0.0018, 0.0004, -0.0013, -0.0002, 0.0007, 0.0009, -0.0003, 0.001, -0.0021, 0.0008, 0.0006, -0.0009, 0.0004, -0.0007, 0.0008, -0.002, -0.0013, 0, 0.0007, -0.0012, -0.0001, 0.0014, 0.0014, -0.0001, 0.0013, 0.0006, 0.0006, -0.0014, -0.0015, -0.0009, 0.0001, 0.0001, 0.0009, 0.0007, 0, 0.0001, -0.001, -0.0004, 0, -0.0005, 0.0001, -0.0003, 0.0004, -0.0005, -0.0001, -0.0011, 0.0002, 0, 0.0001, 0.0008, 0.0008, 0, -0.0007, -0.0008, 0, 0.0002, -0.0001, 0.001, 0.0003, 0.0004, -0.0002, 0, 0.0005, 0.0018, -0.0001], expression: [0, -0.0004, 0.0028, 0.0036, -0.0008, -0.0026, -0.0015, -0.0008, 0.0003, 0.0075, -0.0608, 0.025, 0.0019, -0.0076, 0.0033, 0.0379, -0.0437, 0.0335, 0.0964, -0.2452, 0.1233, 0.0368, -0.0251, 0.0253, 0.0033, 0.0097, -0.0021, -0.0095, 0.1171, -0.0475, -0.064, 0.1548, -0.0718, 0.0228, -0.0831, 0.0343, -0.1924, 0.6206, -0.2771, 0.0021, -0.0143, 0.0056, -0.0705, 0.2522, -0.1116, -0.0692, 0.4229, -0.1592, -0.0093, 0.05, -0.0185, 0.0948, -0.3196, 0.1437, -0.0184, 0.0194, -0.0131, 0.0205, -0.0353, 0.0201, 0.0676, -0.135, 0.0672, 0.0137, -0.0311, 0.0118, 0.0003, -0.0077, -0.0002, -0.0151, 0.0004, -0.0058, 0.029, -0.0139, 0.0163, 0.1324, 0.1819, -0.0039, 0.0406, 0.0501, 0.0017, 0.0331, 0.0161, 0.0062, -0.0235, -0.0446, 0.0047] } };
1
+ export const landmarkData = { 0: [{ mean: [0.235, 0.2344, 0.7305], identity: [0.008, 0.0087, 0.0024, -0.0026, 0.0006, -0.0022, 0.0005, 0.0033, 0.0026, 0.0017, -0.0055, -0.0008, 0.0011, 0.0059, 0, 0.0002, 0.001, -0.001, -0.0044, -0.0011, -0.0001, 0.0024, 0.0019, -0.0009, 0.0004, -0.0015, 0, 0.0038, 0.0013, 0.0003, 0.002, -0.0021, 0.0018, 0.0023, 0.0011, 0.0012, -0.0011, -0.0017, 0.0009, -0.0012, -0.0008, 0.0007, -0.0017, 0.0029, -0.0029, 0.0008, -0.0027, 0.0008, -0.0017, 0.0004, 0.0009, -0.001, -0.0003, 0.0008, -0.0016, -0.0003, -0.0007, 0.0016, -0.0009, 0.0021, -0.0005, 0.0011, -0.0024, -0.0001, 0.0006, 0.0001, -0.0026, -0.0004, -0.0003, -0.0009, 0.0005, 0.0003, -0.0008, -0.001, -0.0004, -0.0008, 0.0022, -0.0014, -0.0001, -0.0023, 0, -0.0018, 0.0007, -0.0036, 0.0017, 0.0017, -0.0018, -0.0002, -0.0004, -0.0009, -0.0008, 0.0003, 0.0012, 0.0009, -0.0004, -0.0016, 0.0005, -0.0013, 0.0011, 0.0023, 0.0029, 0.0024, 0.0017, -0.0027, -0.0004, -0.001, -0.0018, -0.0015, -0.001, 0.001, -0.0013, -0.0001, -0.0002, 0.0007, 0.0003, 0.0003, -0.0016, 0.0009, -0.0021, 0.0004, 0.0014, 0.002, -0.0007, -0.0004, 0.0002, -0.0004, -0.0006, -0.0009, 0.0015, 0.0004, -0.0004, 0.0005, -0.0015, 0.0009, 0.0003, 0.0003, -0.0002, -0.0008, -0.0009, 0.0023, 0.0004, 0.0001, -0.0004, -0.0001, 0.0007, 0.0002, 0.001, 0.0001, -0.0029, -0.0005], expression: [0, 0.0003, 0.0052, -0.0007, -0.0051, -0.0103, 0, 0.0019, 0.0027, -0.0054, 0.0135, 0.035, -0.0005, -0.0006, 0.0025, -0.0045, -0.0557, -0.003, -0.0191, -0.1199, 0.0548, -0.0036, -0.0682, -0.0167, 0.0002, -0.0085, -0.0085, 0.0044, 0.0041, -0.0568, 0.0044, 0.179, 0.0065, -0.0017, -0.1006, 0.0036, -0.0267, -0.3279, 0.0301, -0.0011, -0.0173, -0.001, 0.0046, 0.2808, 0.0207, 0.0162, 0.238, -0.0225, 0.0017, 0.1041, 0.0203, 0.0005, 0.0161, 0.0031, -0.0436, 0.6504, 0.0873, -0.0099, 0.1039, 0.0048, -0.0254, 0.2534, -0.0042, 0.003, -0.0106, -0.0153, -0.0118, 0.0252, 0.0009, -0.0071, 0.0099, 0.007, -0.0724, 0.0461, -0.0235, 0.0833, 0.004, 0.0141, -0.0219, 0.0132, -0.0042, -0.0179, 0.0045, -0.0215, 0.3638, 0.0054, -0.0445] }, { mean: [0.2358, 0.1466, 0.7183], identity: [0.0077, 0.0093, 0.0001, -0.0022, 0, -0.0041, 0.0005, 0.0022, 0.0028, 0.0018, -0.0038, -0.0013, 0.001, 0.0044, -0.0002, 0, 0.0017, -0.0016, -0.0043, -0.0002, -0.0001, 0.0023, 0.0009, 0.0005, -0.0007, -0.0004, -0.0017, 0.003, 0.0007, 0.0006, 0.0011, -0.0018, 0.0005, 0.0018, -0.0008, 0.0004, -0.0023, -0.0006, -0.0003, -0.0015, -0.0014, -0.0001, -0.0018, 0.0027, -0.0026, 0.0003, -0.0031, 0.0011, -0.0026, -0.0011, 0.0012, -0.0013, -0.0002, 0.0007, -0.0021, 0.0021, 0.0004, 0.0012, -0.001, 0.002, -0.0003, 0.0002, -0.0026, -0.0003, 0.001, 0.0001, -0.0018, -0.001, 0.0009, -0.0011, 0.001, 0.0004, -0.0008, -0.0007, -0.001, -0.0003, 0.0007, -0.0005, -0.0006, -0.0019, -0.0005, -0.002, 0.0007, -0.0027, 0.0014, 0.0013, 0.0006, -0.0005, -0.0003, -0.0003, -0.001, 0, 0.0019, 0.0001, 0.0006, -0.0012, 0.0004, -0.0009, 0.0004, 0.0025, 0.0003, 0.0024, 0.0017, -0.0009, -0.0015, -0.0015, -0.001, -0.0023, -0.001, -0.0005, -0.0004, 0.0008, 0.0009, 0.0007, 0.0002, 0.0007, -0.0009, 0.0009, -0.0013, 0.0001, 0.0009, 0.0002, 0.0006, -0.0006, -0.0008, -0.0004, -0.0007, 0.0008, 0.0019, 0.0003, 0.0015, 0.0002, -0.0015, -0.0003, 0, 0.0006, 0.0003, 0.0006, -0.0006, 0.0002, 0.0005, -0.0004, 0.0012, -0.0004, 0.0002, -0.0008, 0.0006, -0.0004, 0.0002, -0.0021], expression: [-0.0034, 0.0054, 0.0069, 0.004, 0.0006, -0.0104, -0.0003, 0.0036, 0.0025, 0.0065, 0.0296, 0.0208, -0.0009, 0.0154, 0.0029, -0.0167, 0.0124, 0.004, -0.0102, 0.0351, 0.028, -0.019, 0.0146, -0.0035, -0.0023, -0.0069, -0.0051, -0.01, 0.0262, -0.028, 0.0112, 0.082, 0.023, -0.0019, -0.066, -0.0104, -0.0408, 0.0164, 0.0075, -0.0074, 0.0367, 0.0041, 0.0517, -0.0207, 0.0045, 0.0291, -0.0672, -0.0129, 0.0345, -0.1558, -0.0106, 0.0037, -0.0437, -0.0021, 0.0854, -0.1121, 0.0187, 0.0041, 0.0072, 0.0011, 0.0193, -0.0143, -0.0119, 0.005, -0.02, -0.0122, -0.008, 0.0527, 0.0036, -0.006, 0.0222, 0.007, -0.0429, 0.046, -0.0046, 0.0226, -0.0059, 0.0202, -0.0173, 0.0087, 0, -0.0067, -0.0095, -0.0153, 0.1506, -0.0017, 0.0021] }], 1: [{ mean: [-0.2271, 0.2323, 0.7319], identity: [-0.0084, 0.0097, 0.0018, 0.0041, 0.0002, -0.002, -0.0012, 0.0036, 0.0019, -0.0009, -0.0063, -0.001, -0.0003, 0.0053, 0.0006, 0.0001, 0.0005, -0.0015, 0.0044, -0.0025, -0.0015, -0.002, 0.0016, -0.0006, 0.0002, -0.0013, 0, -0.0022, 0.0002, 0.0002, -0.0025, -0.0014, 0.0015, 0.0008, 0.0002, 0.0012, 0.0006, -0.0006, 0.0017, 0, 0.0003, -0.0001, 0.0024, 0.0025, -0.0029, -0.0015, -0.0015, 0.0001, 0.0031, -0.0016, 0.0007, 0.0019, 0.0006, 0.002, 0.0009, 0.001, -0.0014, -0.002, -0.0015, 0.0029, 0.0001, 0.0005, -0.0023, 0.0008, -0.0011, 0.0019, 0.0017, -0.0003, -0.0011, -0.0003, 0.0011, -0.0008, 0.0019, -0.0022, 0.0001, 0.0015, 0.0017, -0.0008, -0.0011, -0.0022, 0.0003, 0.0022, 0.0006, -0.003, -0.0002, 0, -0.0017, -0.0002, 0, 0.0001, 0.0004, 0.0012, 0.0019, -0.0014, 0.0004, -0.0017, -0.0012, -0.0011, 0.0021, -0.0029, 0.0026, 0.0018, -0.0023, -0.0029, 0.0001, 0.0014, -0.0019, -0.0004, -0.0004, 0.0023, -0.0016, 0, -0.0009, 0.0014, -0.0015, 0.0015, -0.0016, -0.0011, -0.0022, 0.0001, -0.0018, 0.0027, -0.0013, 0.0004, -0.0001, -0.0005, 0.0011, -0.0002, 0.0015, 0.0005, -0.0009, -0.0001, 0.0029, 0.0006, 0, -0.0003, 0.0007, -0.0008, -0.0005, 0.0025, 0.0003, 0.0002, -0.0008, -0.0001, 0.0003, 0, 0.0014, 0.0002, -0.0024, 0.0001], expression: [-0.0025, -0.0009, 0.006, 0.004, -0.0027, -0.0113, -0.0008, 0.001, 0.0031, -0.0016, 0.0144, 0.0382, -0.0003, -0.0005, 0.0035, -0.0044, -0.0511, -0.0014, -0.0007, -0.1007, 0.0582, -0.0006, -0.0606, -0.0165, 0.0005, -0.0087, -0.0093, 0.0036, 0.0057, -0.0576, -0.0039, 0.1488, 0.0127, 0.0016, -0.0666, -0.0009, -0.0153, 0.3162, -0.0445, -0.0021, 0.0023, 0.0043, -0.0033, 0.2382, 0.0063, -0.0217, 0.167, -0.039, 0.0097, -0.1144, -0.0189, -0.0145, 0.6831, 0.0632, -0.0012, -0.1959, -0.0133, 0.0004, 0.1108, -0.0003, 0.0062, 0.2593, -0.0161, -0.0018, -0.0051, -0.012, 0.0162, 0.016, -0.0022, -0.0052, -0.0201, 0.0101, 0.0115, 0.0365, -0.024, -0.0059, 0.0188, -0.0336, 0.0352, 0.0224, -0.0229, 0.0146, 0.0086, -0.0273, -0.0032, 0.0103, -0.0112] }, { mean: [-0.2288, 0.1541, 0.7202], identity: [-0.0082, 0.0101, 0.0002, 0.0036, -0.0007, -0.0037, -0.0008, 0.0024, 0.0022, -0.0013, -0.0045, -0.0013, -0.0006, 0.0045, -0.0004, 0.0004, 0.0012, -0.0014, 0.0042, -0.001, -0.0007, -0.0019, 0.0003, -0.0002, 0.0012, -0.0004, -0.0012, -0.0018, -0.0004, -0.0001, -0.0014, -0.0012, 0.0001, 0.0001, -0.0017, 0.001, 0.0015, -0.0001, 0.0006, 0.0001, 0, -0.0006, 0.0028, 0.0021, -0.0025, -0.002, -0.0015, 0.0007, 0.0028, -0.0023, 0.0009, 0.0013, 0.0001, 0.0016, 0.0012, 0.0032, -0.0006, -0.0013, -0.0011, 0.0021, 0.0003, -0.0005, -0.0024, 0.0004, -0.0004, 0.0014, 0.0015, -0.0008, -0.0003, 0.0003, 0.0017, -0.0006, 0.002, -0.0018, -0.0003, 0.0009, 0.0001, 0.0002, -0.0006, -0.0015, -0.0004, 0.0022, 0.0007, -0.0023, 0, -0.0002, -0.0002, -0.0003, -0.0001, 0.0006, -0.0002, 0.0006, 0.0022, -0.0003, 0.0013, -0.0014, -0.0005, -0.0003, 0.0013, -0.0027, 0.0006, 0.0025, -0.0023, -0.0008, -0.0013, 0.0017, -0.0009, -0.0019, 0.0001, 0.0008, -0.0007, -0.0004, 0, 0.001, -0.001, 0.0019, -0.0008, -0.0015, -0.0006, -0.0002, -0.0011, 0.0008, 0.0001, 0.0009, -0.0008, -0.0004, 0.0006, 0.0007, 0.0021, -0.0004, 0.0007, -0.0005, 0.0021, -0.0007, -0.0004, -0.0009, 0.0008, 0.0003, 0.0001, 0.0003, 0.0001, 0.0009, 0.001, -0.0005, 0.0005, -0.001, 0.001, 0.0004, -0.0005, -0.0012], expression: [0.0008, 0.0037, 0.0078, -0.0004, 0.0005, -0.012, -0.0002, -0.0046, 0.0033, -0.0089, 0.0295, 0.0221, -0.0024, -0.0084, 0.0013, 0.0057, 0.0125, 0.0049, -0.0036, 0.0373, 0.0285, 0.0115, 0.0135, -0.0035, 0.0048, 0.0108, -0.0033, 0.0106, 0.0281, -0.0301, -0.0082, 0.0803, 0.0244, -0.0007, -0.0725, -0.0105, -0.0247, -0.0036, -0.0143, -0.0045, -0.029, 0.0002, -0.0303, 0.0093, -0.0021, -0.0196, -0.0754, -0.0211, 0.0326, 0.1246, 0.006, -0.0804, -0.1499, 0.0109, 0.0182, -0.0029, -0.0014, -0.0035, 0.0072, -0.0008, -0.0152, -0.0108, -0.0166, -0.0073, -0.0144, -0.0095, 0.0101, 0.047, -0.0018, -0.004, -0.0189, 0.0027, 0.0104, 0.0298, -0.0042, -0.0096, 0.0191, -0.0217, 0.0228, 0.0226, -0.0105, 0.0047, -0.0048, -0.0172, 0.0061, -0.0043, -0.0016] }], 2: { mean: [0.5396, 0.2028, 0.2496], identity: [0.0204, 0.0146, -0.0182, -0.0052, 0.0158, -0.0038, -0.0025, -0.0108, -0.006, 0.0085, -0.0044, 0.0029, 0.0042, 0.001, 0.0095, 0.0015, -0.0034, -0.0064, -0.0057, 0.0007, 0.0026, 0.0007, 0.0037, -0.0006, 0.0037, 0.0026, 0.0024, 0.0005, -0.0019, -0.0013, 0.003, -0.0028, 0.0018, -0.0009, 0.002, -0.0047, 0.004, -0.003, 0.0031, -0.0027, -0.0026, -0.0017, 0.0016, 0.0014, -0.0004, 0.0021, -0.002, 0, 0.0017, 0.0007, -0.0004, -0.0007, -0.0018, -0.0009, 0.0002, -0.0012, 0.0001, -0.0005, -0.0011, 0.0004, 0.0002, 0.0011, 0.0001, 0.0008, 0.0017, -0.0013, 0.0025, 0.0017, 0.001, 0.0002, 0.0003, 0.0005, -0.0004, -0.0001, -0.0005, 0.0007, -0.0022, -0.0029, 0.0006, -0.0008, -0.0006, 0.0006, -0.0005, 0.0005, 0.0013, 0.0003, -0.0005, -0.003, 0.0007, 0.0002, 0.0016, -0.0004, 0, 0, 0.0004, 0.0001, 0.0014, 0.0012, 0.0001, 0.0004, -0.0001, 0.0008, 0.0009, 0.0004, -0.0004, 0.0009, -0.0002, 0.001, 0.0009, 0.0004, 0.0001, 0.0007, 0.0007, 0.001, -0.0017, -0.0008, 0.0002, 0.0017, -0.0003, -0.0001, 0.0004, 0.0005, 0.0007, 0.0005, -0.0001, -0.0006, -0.0001, 0.0001, -0.0003, -0.0007, -0.0002, -0.0005, 0, -0.0003, 0.0003, 0.0008, -0.0002, -0.0003, 0.0005, 0.0001, -0.0007, -0.001, -0.0002, 0.0003, 0.0004, -0.0001, 0.0007, 0, 0.0004, 0.0004], expression: [0.0001, -0.0004, 0.0001, 0, 0.0005, 0.0002, 0, 0, 0.0003, -0.0002, 0.0003, 0.0005, -0.0001, 0.0002, 0.0008, 0.0001, -0.0002, -0.0005, -0.0003, 0.0006, 0.0005, 0, 0.0001, 0.0002, 0.0001, -0.0001, -0.0006, -0.0002, 0.0005, 0, -0.0004, 0.0004, 0.0016, 0.0004, -0.0004, -0.0015, 0, 0.0001, 0.0001, -0.0003, 0.0003, 0.0019, -0.0002, 0.0007, 0.0004, 0.0004, -0.0008, -0.0015, 0.0013, -0.0016, -0.0069, 0.0004, -0.0006, -0.0019, 0, -0.0001, 0.0005, -0.0003, 0.0002, 0.0014, -0.0003, 0.0006, 0.0011, 0.0004, -0.0003, -0.0032, -0.0006, 0.0008, 0.0025, -0.0003, 0.0003, 0.0015, -0.0001, 0.0001, 0.0003, -0.0001, 0, 0, -0.0003, 0.0004, 0.0019, 0.0001, 0, -0.0008, -0.0001, 0.0001, 0.0005] }, 3: { mean: [-0.5464, 0.2141, 0.26], identity: [-0.0207, 0.0172, -0.0176, 0.0068, 0.0148, -0.0051, 0.0042, -0.0101, -0.0058, -0.0087, -0.0059, 0.0045, -0.0056, 0.0017, 0.0097, -0.0048, -0.004, -0.0044, 0.0019, 0.0002, 0.0041, -0.0052, 0.0041, 0.0002, -0.0027, 0.0006, 0.002, -0.0027, -0.0033, -0.0006, -0.004, 0.0009, -0.0012, -0.0001, -0.0026, 0.0021, -0.003, -0.0025, 0.0052, 0.0025, 0.0022, -0.0001, -0.0008, 0.0013, 0.001, 0.0004, 0.0018, 0.0014, 0.0006, -0.0005, -0.0015, -0.0039, 0.0014, -0.0001, 0.0008, -0.0002, 0.0006, -0.0005, -0.0038, -0.0012, -0.0018, -0.0003, 0.001, 0.0009, 0.0012, 0.0024, -0.0024, -0.0007, -0.0016, -0.0016, 0.0003, -0.001, -0.0014, -0.0014, 0.001, -0.0003, -0.0007, -0.0012, 0.0003, 0.0006, 0.0003, -0.0005, 0.0003, 0.0012, 0.0006, -0.0008, 0.0004, 0.0004, 0.0008, -0.0002, -0.0014, 0.0003, 0, 0.0023, -0.0003, -0.0012, -0.0013, 0.0011, -0.0002, -0.0014, -0.0001, 0.0014, 0, 0.0003, 0.0003, -0.0008, -0.0005, -0.0007, -0.0007, -0.0002, 0.0003, 0.0005, 0.0002, -0.0001, 0.0011, -0.0014, 0.0001, -0.0015, -0.0001, -0.0003, 0, -0.001, -0.0001, -0.0008, 0.0008, -0.0008, -0.0002, -0.0011, -0.0003, -0.0004, 0.0001, -0.0002, 0.0003, -0.0007, 0, 0.0003, 0.0001, -0.0008, 0.0005, 0.0001, 0.0004, 0.0014, -0.0006, -0.001, -0.0003, -0.0002, 0.0001, -0.0001, -0.0001, 0.0007], expression: [-0.0003, -0.0001, 0.0006, 0.0004, 0, -0.0007, 0, -0.0003, -0.0002, -0.0004, 0.0012, 0.0008, 0.0001, -0.0005, -0.0007, -0.0004, 0, 0.0001, -0.0004, 0.0017, 0.0007, 0, 0.0001, 0.0003, 0, 0.0004, 0.0004, 0.0005, 0.0001, -0.001, -0.0007, 0.0022, 0.0026, 0.0005, -0.0024, -0.0023, 0, 0.0001, 0.0003, 0, -0.0013, -0.0015, 0.0006, 0.0014, 0.0008, -0.0002, -0.0025, -0.0023, -0.0003, 0.0049, 0.006, -0.0002, -0.0007, -0.0002, 0, -0.0019, -0.0018, -0.0002, 0.0017, 0.0017, 0.0003, 0.0015, 0.0007, 0.0001, -0.0023, -0.0036, 0.0002, 0.0023, 0.0017, 0, -0.0005, -0.0003, -0.0003, 0.0004, 0.0002, -0.0001, -0.0003, -0.0005, 0.0001, 0.0018, 0.0025, 0.0001, -0.0006, -0.0011, 0, 0.0001, 0.0001] }, 4: { mean: [0.0018, 0.1864, 0.853], identity: [-0.0011, 0.0134, 0.0085, 0.0009, -0.0025, -0.0007, -0.0003, 0.0033, 0.0004, -0.0005, -0.0047, -0.002, 0.0007, 0.0026, -0.0069, -0.0001, 0.0036, 0.0072, 0.0005, -0.0008, -0.0047, 0.0004, -0.0008, -0.001, 0, 0.0002, -0.0036, -0.0002, -0.001, -0.0048, -0.0001, 0.0018, 0.0044, -0.0007, -0.0002, 0.0043, 0.0003, 0.002, -0.0031, 0, -0.0007, 0.0013, 0, 0.0037, 0.0033, -0.0016, -0.0012, 0.002, -0.0001, -0.0027, 0.0051, 0.0005, 0.0008, 0.0007, -0.0017, 0.0054, 0.0023, -0.0003, 0.0032, 0.0001, 0, 0.0007, -0.0005, -0.0011, 0.0002, 0.0008, 0, -0.0033, -0.0008, -0.0007, 0.0007, 0.0033, 0.0005, -0.0003, 0.0029, -0.0001, -0.0024, -0.0011, -0.002, -0.0015, -0.0019, 0.0002, 0.0007, 0.0031, 0.0006, 0.0012, 0, 0, -0.0021, 0, -0.0009, -0.0011, -0.0011, -0.0002, 0.0015, 0.001, 0.0013, 0.0008, 0.001, -0.0003, 0.0009, 0.0027, -0.0002, -0.0011, -0.0011, 0.0006, 0.0007, 0.0002, 0.0001, -0.0005, -0.0022, 0.0011, -0.0014, 0.0009, 0.0003, 0.0002, 0, -0.0006, -0.0004, -0.0011, -0.0007, 0.001, -0.0012, 0.0006, -0.0012, -0.0015, 0.0003, -0.0009, -0.0013, -0.0013, 0.0007, 0.001, -0.0011, -0.0013, 0.0015, 0.0004, 0.0001, 0.0004, -0.0001, -0.0016, -0.0016, 0.0009, -0.0007, -0.0024, 0.0005, -0.0001, -0.0017, -0.0002, 0.0003, -0.0009], expression: [-0.0017, 0.0019, 0.0097, 0.003, -0.0103, -0.0093, 0.0009, 0.0006, 0.0023, -0.0017, -0.0204, 0.0376, 0.0033, -0.0034, 0.0033, -0.0026, -0.0322, 0.0396, -0.0032, -0.0947, 0.0942, -0.0007, -0.0175, 0.0266, -0.001, -0.0006, 0.0016, 0.0025, 0.0157, -0.0142, -0.0022, 0.037, 0.015, 0.0021, -0.0102, -0.0107, 0.0036, 0.0055, -0.0051, 0.0021, 0.0003, -0.0003, 0.0004, -0.0177, 0.0074, -0.0006, -0.0357, 0.0149, -0.0066, 0.0009, 0.0013, -0.0031, 0.0016, 0.0095, 0.002, 0.0052, 0.0035, -0.0003, 0.0053, -0.0082, 0.002, 0.0022, -0.0071, -0.0011, 0.0005, 0.0055, 0.0011, 0.0003, -0.0126, -0.0004, 0.0003, -0.0023, -0.0015, 0.0059, 0.0063, -0.0042, -0.0023, 0.0055, 0.0019, 0.0017, -0.0075, 0.0006, -0.0008, 0.0018, 0.0012, 0.0012, -0.0005] }, 5: { mean: [-0.002, -0.0469, 1.0039], identity: [-0.0017, 0.0018, 0.0156, 0.0006, -0.0038, 0.0005, 0.0004, 0.0013, 0.002, -0.0004, -0.0015, -0.0051, 0.0005, -0.0007, -0.0055, -0.0001, -0.0009, 0.008, -0.0002, 0.0036, -0.0053, 0.0004, -0.0026, -0.0016, 0.0007, 0.0009, -0.009, -0.0003, 0.0007, -0.0084, 0.0015, 0.0021, 0.0032, -0.0015, 0.0018, 0.0046, -0.0003, -0.0004, -0.0001, 0.0008, -0.0044, -0.0007, -0.0008, 0.0007, 0.0048, -0.0024, -0.0003, 0.0024, 0.0002, -0.0051, 0.0058, -0.0006, 0.0028, 0.0018, -0.0021, 0.0035, 0.0057, 0.0011, 0.0065, 0, -0.0002, 0.0011, 0.003, -0.0027, 0.0008, 0.0007, 0.0003, -0.0039, -0.002, -0.0002, -0.0015, 0.0034, 0.0012, -0.0025, 0.0024, -0.0002, 0.0004, -0.0042, -0.0024, -0.001, -0.0023, 0.0016, -0.0007, 0.0039, 0.0001, -0.0005, 0.0018, 0.0003, -0.0002, -0.0009, -0.0015, 0.0003, -0.0007, -0.0001, -0.0002, 0.0023, 0.0032, 0.002, -0.0013, 0.0013, -0.0038, 0.0045, 0.0001, -0.0031, 0.0001, 0.0019, -0.0001, 0.0016, 0.0013, 0, -0.002, 0.0023, 0.0002, 0.0011, 0.0018, -0.0024, 0.0006, -0.0017, 0.002, -0.0008, -0.0021, 0.0007, 0.0011, 0.0008, 0.0004, -0.001, 0.0012, 0.0002, -0.0006, -0.0027, -0.0005, 0.001, -0.0009, 0.0001, -0.0001, 0.0008, -0.0011, 0.0022, -0.001, -0.0005, -0.0011, 0.0016, -0.0015, 0.0008, -0.0003, 0.0009, 0.0013, -0.0007, -0.0007, -0.0002], expression: [-0.0018, -0.0168, 0.0088, 0.0389, 0.1026, 0.0414, 0.2201, -0.0262, -0.0016, -0.0017, 0.0612, -0.0298, -0.0323, 0.0093, 0.0013, -0.005, 0.2207, 0.1315, -0.0004, 0.0858, -0.0303, -0.0133, 0.015, -0.008, 0.1454, 0.0114, 0.0177, -0.0077, 0.1022, 0.0356, -0.0023, 0.1088, 0.0232, 0.003, -0.0706, 0.0347, -0.0001, 0.004, -0.0011, 0.0397, -0.0096, -0.0033, 0.0029, -0.01, -0.0083, -0.0006, -0.0135, 0.0016, -0.0087, -0.0019, 0.0022, -0.004, -0.0087, 0.0105, 0.0008, -0.005, 0.0069, 0.0028, 0.0409, -0.0391, 0.003, 0.0103, 0.0051, 0.0026, 0.0776, -0.0083, -0.0062, -0.0567, 0.0268, 0.0175, 0.0017, 0.0156, -0.0043, 0.0299, -0.0395, -0.0015, 0.0051, -0.0148, 0.0125, 0.0035, 0.0603, 0.0109, -0.0645, -0.0257, 0.002, 0.0006, -0.0008] }, 6: { mean: [-0.0006, -0.1542, 0.8789], identity: [-0.0007, -0.0032, 0.01, 0, -0.0027, 0.0031, 0.0006, 0.0005, -0.0006, -0.0003, 0.0013, -0.0049, -0.0002, -0.002, -0.0046, 0.0008, -0.0011, 0.0054, 0.0002, 0.0043, -0.0027, 0.0003, -0.0022, -0.0019, 0.0008, 0.0032, -0.0069, 0, 0.0004, -0.0071, 0.0016, 0.0027, 0.0039, -0.0017, 0.0009, 0.0031, -0.0001, -0.0005, -0.0004, 0.0007, -0.0026, -0.0012, -0.0005, 0.0006, 0.0002, -0.0014, -0.0013, 0.0019, -0.0002, -0.0053, 0.0031, -0.0006, 0.0016, 0.0023, -0.0013, 0.0021, 0.0029, 0.0008, 0.0052, 0, 0.0004, 0, 0.0037, -0.0026, 0.0003, 0.002, -0.0002, -0.0024, 0.0004, -0.0004, -0.0012, 0.0008, 0.0007, -0.0023, 0.0005, 0, 0.0014, -0.0022, -0.0016, 0, -0.0012, 0.0008, -0.0007, 0.0014, -0.0006, -0.0012, -0.0003, 0.0002, 0.0012, -0.0003, -0.002, -0.0001, 0.0001, -0.0002, -0.0016, 0.0009, 0.002, 0.0019, 0, 0.0006, -0.0022, 0.0016, 0.0001, -0.0017, -0.0013, 0.001, 0.0009, -0.0001, 0.0011, 0.0003, -0.0007, 0.0014, 0.0008, 0.0013, 0.0011, -0.002, 0, -0.0015, 0.0014, 0.001, -0.0015, 0.0007, 0.0003, 0.001, -0.0001, 0.0012, 0.0007, 0.0006, -0.0004, -0.0013, -0.0012, -0.0009, -0.0011, 0.0002, -0.0005, 0.0005, 0.0004, 0.0002, 0.0001, 0, 0.0005, 0.0005, -0.0014, 0.0015, -0.0009, 0.0005, 0.0014, -0.0008, -0.0008, 0.0012], expression: [0.0008, 0.0481, 0.1653, 0.0784, 0.1008, -0.3992, 0.5088, -0.02, 0.0542, 0.001, 0.3723, -0.0151, -0.0986, 0.0283, -0.0033, -0.0121, 0.2634, 0.1202, 0.0036, -0.0529, -0.0245, -0.0297, -0.1085, 0.0495, 0.3264, 0.0083, 0.0004, -0.0314, 0.1459, -0.1142, -0.003, 0.0001, 0.1154, -0.0035, -0.0285, -0.0184, -0.0001, 0.0012, 0.0035, 0.079, -0.0103, 0.0043, 0.011, -0.004, -0.0774, -0.0047, -0.023, 0.0284, -0.0048, -0.001, 0.0149, -0.0039, 0.0046, 0.0528, -0.0006, 0.0063, 0.0376, 0.0096, 0.0558, -0.0295, 0, -0.0311, -0.0634, 0.0062, 0.0176, -0.0154, -0.0109, -0.1149, 0.0192, 0.0326, 0.0121, 0.0237, 0.0034, 0.0262, -0.0778, 0.0014, -0.0045, -0.0203, 0.0077, 0.0588, 0.0575, 0.008, -0.0557, -0.0095, 0.0032, 0.0054, -0.0042] }, 7: { mean: [0.0038, -0.2927, 0.833], identity: [0.0006, -0.0109, 0.0073, -0.0006, -0.0044, 0.0017, -0.0001, -0.0022, -0.0006, -0.0003, 0.0065, -0.0014, -0.0006, -0.0051, -0.0046, 0.0003, -0.0029, 0.003, 0.0002, 0.0038, -0.0006, 0, -0.0012, 0.0006, -0.0004, 0.0053, -0.0075, -0.0002, -0.0007, -0.0063, 0.0014, 0.0026, 0.0019, -0.0022, 0.0018, 0.0028, -0.0001, -0.0012, 0.0011, 0.0009, 0.0019, -0.0019, -0.0001, 0.0012, -0.0022, -0.0003, -0.0012, 0.0004, -0.0008, 0.0003, -0.0003, 0, 0.0017, 0.0021, -0.0004, 0.0012, 0.0022, -0.0003, 0.0026, -0.0003, 0.0004, -0.0026, 0.0032, -0.0019, 0.0003, 0.0015, 0.0001, -0.0015, 0.0013, -0.0001, 0.0001, -0.0029, 0, -0.0002, -0.0028, -0.0007, 0.0019, -0.0003, -0.0002, 0.0012, 0.0009, 0.0004, -0.001, -0.002, -0.0016, 0.0011, -0.0001, 0.0003, 0.0021, 0.0002, -0.0014, -0.0009, -0.0001, 0, -0.0002, -0.001, 0.0015, 0.0018, 0.0001, 0.0007, 0.0008, 0.0017, 0.001, -0.0009, 0.0001, 0.0004, 0.0023, -0.0001, 0.0012, 0.0001, -0.0008, 0.0002, 0.0018, 0.0006, 0.0003, 0.0001, 0.0012, -0.0003, 0.002, -0.0006, 0, -0.0001, -0.0022, 0.0004, 0.0005, 0.0011, 0.0002, -0.0013, -0.0023, 0.0006, 0.0006, -0.0005, -0.0005, 0.0009, 0.0002, 0.0002, 0.0011, -0.0003, 0.0011, 0.0015, 0.0011, 0.0003, 0.0002, 0.0008, -0.0004, -0.0008, 0.0003, 0, 0.0012, -0.0001], expression: [0.026, 0.1107, 0.3257, 0.1917, 0.3206, -1.1348, 1.0791, -0.035, 0.1549, -0.0103, 0.6953, 0.0001, -0.3262, 0.068, 0.0219, -0.0044, 0.3643, 0.2178, 0.0168, -0.2478, -0.1321, -0.0414, -0.3782, -0.0617, 0.5088, -0.0031, -0.0311, -0.0497, 0.0948, -0.385, 0.0148, -0.2224, -0.1415, -0.0074, 0.0863, -0.203, 0.0003, -0.0081, 0.0057, 0.1164, -0.0039, 0.0015, -0.0024, 0.0505, 0.1532, 0.0039, -0.0148, -0.0753, 0.0163, 0.0058, -0.0339, 0.0036, 0.0252, -0.0569, -0.0041, 0.0163, -0.0361, 0.0035, -0.018, 0.1266, 0, -0.0163, -0.0046, 0.0133, -0.1656, 0.2134, 0.0191, 0.0057, 0.0734, 0.0681, 0.0039, -0.0144, 0.029, -0.074, -0.046, 0.0122, 0.0072, -0.0162, -0.0349, -0.1234, 0.0212, -0.0355, 0.0535, 0.1218, 0.0043, -0.024, 0.0016] }, 8: { mean: [-0.0018, -0.3037, 0.8491], identity: [0.0002, -0.0112, 0.0077, -0.0004, -0.0044, 0.0024, 0.0001, -0.0021, -0.0004, -0.0004, 0.0066, -0.002, -0.0004, -0.0052, -0.0044, 0.0003, -0.0032, 0.0039, 0.0004, 0.0042, -0.0003, 0.0002, -0.0012, -0.0002, -0.0002, 0.0052, -0.0083, -0.0001, -0.0008, -0.0056, 0.0017, 0.0024, 0.0019, -0.0023, 0.002, 0.0027, -0.0002, -0.0013, 0.002, 0.0009, 0.0017, -0.0028, -0.0002, 0.0012, -0.0026, 0, -0.0016, 0.0002, -0.0005, 0.0003, -0.001, -0.0001, 0.0016, 0.0016, -0.0003, 0.0012, 0.0012, -0.0003, 0.0027, -0.0003, 0.0003, -0.0026, 0.0037, -0.0017, 0.0001, 0.0016, 0.0001, -0.0015, 0.0024, 0.0001, 0.0002, -0.0039, 0, -0.0003, -0.0033, -0.0006, 0.0017, -0.0004, -0.0004, 0.0012, 0.0018, 0.0002, -0.0012, -0.002, -0.0017, 0.0013, -0.001, 0.0003, 0.0021, 0.0004, -0.0012, -0.0006, -0.0002, 0, -0.0004, -0.0009, 0.0016, 0.0017, 0.0004, 0.0007, 0.0007, 0.001, 0.0009, -0.0008, 0.0005, 0.0005, 0.0023, 0.001, 0.0013, 0.0002, -0.0004, 0.0002, 0.0017, 0.0008, 0.0003, -0.0001, 0.0009, -0.0004, 0.0019, -0.0005, 0.0003, 0, -0.0025, 0.0003, 0.0003, 0.0011, 0.0001, -0.0015, -0.001, 0.0007, 0.0007, -0.0007, -0.0007, 0.0008, 0, 0.0001, 0.0013, -0.0004, 0.0012, 0.0014, 0.0017, 0.0004, 0.0002, 0.0003, -0.0003, -0.0009, 0.0001, 0, 0.001, -0.0004], expression: [-0.0092, 2.8809, 1.416, 0.2018, 1.1982, -0.9351, 1.4492, -0.1902, 0.1749, 0.0305, -0.167, -0.1572, -0.7354, -0.0492, 0.0115, 0.0608, 0.2971, 0.1179, 0.0046, -0.0997, -0.0041, -0.0104, 0.3379, -0.1854, 0.009, 0.0366, -0.0583, 0.0269, -0.0029, -0.4175, -0.0008, 0.1794, 0.0752, -0.0135, 0.1158, 0.1234, 0.0005, 0.003, -0.0032, 0.1034, -0.0504, -0.0055, -0.0076, -0.0772, 0.224, 0.0047, 0.0229, -0.1044, 0.0162, -0.0161, -0.0241, -0.0083, -0.1388, -0.0434, -0.0125, -0.0997, -0.0327, -0.0111, 0.1576, -0.3911, 0.0199, 0.2522, 0.142, 0.0059, -0.0721, -0.0045, 0.031, -0.1136, -0.1685, 0.0641, 0.0142, 0.0312, 0.0426, -0.1366, 0.1011, 0.0101, -0.0157, 0.0018, -0.0103, -0.0344, 0.0907, 0.0016, 0.1168, -0.0806, 0.0104, -0.0057, 0.0111] }, 9: [{ mean: [0.0038, -0.2927, 0.833], identity: [0.0006, -0.0109, 0.0073, -0.0006, -0.0044, 0.0017, -0.0001, -0.0022, -0.0006, -0.0003, 0.0065, -0.0014, -0.0006, -0.0051, -0.0046, 0.0003, -0.0029, 0.003, 0.0002, 0.0038, -0.0006, 0, -0.0012, 0.0006, -0.0004, 0.0053, -0.0075, -0.0002, -0.0007, -0.0063, 0.0014, 0.0026, 0.0019, -0.0022, 0.0018, 0.0028, -0.0001, -0.0012, 0.0011, 0.0009, 0.0019, -0.0019, -0.0001, 0.0012, -0.0022, -0.0003, -0.0012, 0.0004, -0.0008, 0.0003, -0.0003, 0, 0.0017, 0.0021, -0.0004, 0.0012, 0.0022, -0.0003, 0.0026, -0.0003, 0.0004, -0.0026, 0.0032, -0.0019, 0.0003, 0.0015, 0.0001, -0.0015, 0.0013, -0.0001, 0.0001, -0.0029, 0, -0.0002, -0.0028, -0.0007, 0.0019, -0.0003, -0.0002, 0.0012, 0.0009, 0.0004, -0.001, -0.002, -0.0016, 0.0011, -0.0001, 0.0003, 0.0021, 0.0002, -0.0014, -0.0009, -0.0001, 0, -0.0002, -0.001, 0.0015, 0.0018, 0.0001, 0.0007, 0.0008, 0.0017, 0.001, -0.0009, 0.0001, 0.0004, 0.0023, -0.0001, 0.0012, 0.0001, -0.0008, 0.0002, 0.0018, 0.0006, 0.0003, 0.0001, 0.0012, -0.0003, 0.002, -0.0006, 0, -0.0001, -0.0022, 0.0004, 0.0005, 0.0011, 0.0002, -0.0013, -0.0023, 0.0006, 0.0006, -0.0005, -0.0005, 0.0009, 0.0002, 0.0002, 0.0011, -0.0003, 0.0011, 0.0015, 0.0011, 0.0003, 0.0002, 0.0008, -0.0004, -0.0008, 0.0003, 0, 0.0012, -0.0001], expression: [0.026, 0.1107, 0.3257, 0.1917, 0.3206, -1.1348, 1.0791, -0.035, 0.1549, -0.0103, 0.6953, 0.0001, -0.3262, 0.068, 0.0219, -0.0044, 0.3643, 0.2178, 0.0168, -0.2478, -0.1321, -0.0414, -0.3782, -0.0617, 0.5088, -0.0031, -0.0311, -0.0497, 0.0948, -0.385, 0.0148, -0.2224, -0.1415, -0.0074, 0.0863, -0.203, 0.0003, -0.0081, 0.0057, 0.1164, -0.0039, 0.0015, -0.0024, 0.0505, 0.1532, 0.0039, -0.0148, -0.0753, 0.0163, 0.0058, -0.0339, 0.0036, 0.0252, -0.0569, -0.0041, 0.0163, -0.0361, 0.0035, -0.018, 0.1266, 0, -0.0163, -0.0046, 0.0133, -0.1656, 0.2134, 0.0191, 0.0057, 0.0734, 0.0681, 0.0039, -0.0144, 0.029, -0.074, -0.046, 0.0122, 0.0072, -0.0162, -0.0349, -0.1234, 0.0212, -0.0355, 0.0535, 0.1218, 0.0043, -0.024, 0.0016] }, { mean: [-0.0018, -0.3037, 0.8491], identity: [0.0002, -0.0112, 0.0077, -0.0004, -0.0044, 0.0024, 0.0001, -0.0021, -0.0004, -0.0004, 0.0066, -0.002, -0.0004, -0.0052, -0.0044, 0.0003, -0.0032, 0.0039, 0.0004, 0.0042, -0.0003, 0.0002, -0.0012, -0.0002, -0.0002, 0.0052, -0.0083, -0.0001, -0.0008, -0.0056, 0.0017, 0.0024, 0.0019, -0.0023, 0.002, 0.0027, -0.0002, -0.0013, 0.002, 0.0009, 0.0017, -0.0028, -0.0002, 0.0012, -0.0026, 0, -0.0016, 0.0002, -0.0005, 0.0003, -0.001, -0.0001, 0.0016, 0.0016, -0.0003, 0.0012, 0.0012, -0.0003, 0.0027, -0.0003, 0.0003, -0.0026, 0.0037, -0.0017, 0.0001, 0.0016, 0.0001, -0.0015, 0.0024, 0.0001, 0.0002, -0.0039, 0, -0.0003, -0.0033, -0.0006, 0.0017, -0.0004, -0.0004, 0.0012, 0.0018, 0.0002, -0.0012, -0.002, -0.0017, 0.0013, -0.001, 0.0003, 0.0021, 0.0004, -0.0012, -0.0006, -0.0002, 0, -0.0004, -0.0009, 0.0016, 0.0017, 0.0004, 0.0007, 0.0007, 0.001, 0.0009, -0.0008, 0.0005, 0.0005, 0.0023, 0.001, 0.0013, 0.0002, -0.0004, 0.0002, 0.0017, 0.0008, 0.0003, -0.0001, 0.0009, -0.0004, 0.0019, -0.0005, 0.0003, 0, -0.0025, 0.0003, 0.0003, 0.0011, 0.0001, -0.0015, -0.001, 0.0007, 0.0007, -0.0007, -0.0007, 0.0008, 0, 0.0001, 0.0013, -0.0004, 0.0012, 0.0014, 0.0017, 0.0004, 0.0002, 0.0003, -0.0003, -0.0009, 0.0001, 0, 0.001, -0.0004], expression: [-0.0092, 2.8809, 1.416, 0.2018, 1.1982, -0.9351, 1.4492, -0.1902, 0.1749, 0.0305, -0.167, -0.1572, -0.7354, -0.0492, 0.0115, 0.0608, 0.2971, 0.1179, 0.0046, -0.0997, -0.0041, -0.0104, 0.3379, -0.1854, 0.009, 0.0366, -0.0583, 0.0269, -0.0029, -0.4175, -0.0008, 0.1794, 0.0752, -0.0135, 0.1158, 0.1234, 0.0005, 0.003, -0.0032, 0.1034, -0.0504, -0.0055, -0.0076, -0.0772, 0.224, 0.0047, 0.0229, -0.1044, 0.0162, -0.0161, -0.0241, -0.0083, -0.1388, -0.0434, -0.0125, -0.0997, -0.0327, -0.0111, 0.1576, -0.3911, 0.0199, 0.2522, 0.142, 0.0059, -0.0721, -0.0045, 0.031, -0.1136, -0.1685, 0.0641, 0.0142, 0.0312, 0.0426, -0.1366, 0.1011, 0.0101, -0.0157, 0.0018, -0.0103, -0.0344, 0.0907, 0.0016, 0.1168, -0.0806, 0.0104, -0.0057, 0.0111] }], 10: { mean: [-0.007, -0.6338, 0.7695], identity: [0.0001, -0.0296, 0.0089, -0.0006, -0.0073, -0.0065, -0.0001, -0.0029, -0.0031, -0.0002, 0.0128, 0.0065, 0, -0.0116, -0.014, -0.0001, -0.0037, -0.0052, -0.0005, 0.0028, 0.003, -0.0004, 0.0041, 0.0015, 0.0006, 0.0088, -0.0076, -0.0011, -0.0015, -0.0073, 0.0007, -0.0011, 0.0019, -0.0011, -0.0005, 0.0031, -0.0001, -0.0018, 0.0009, 0.0018, 0.0038, 0.0068, -0.0004, -0.0001, 0.0061, 0.0024, 0.0024, -0.0066, -0.0006, 0.0051, 0.0014, 0.002, 0.005, -0.0035, 0.0001, -0.0034, -0.004, -0.0007, 0.001, -0.0008, 0.0001, -0.0005, -0.0021, 0.0002, 0.0045, -0.0043, -0.0012, -0.0024, -0.0014, 0.0006, 0.0034, 0.0027, -0.0008, -0.0053, 0.0014, 0.0001, 0.0013, -0.0018, 0.0006, -0.0015, 0.0029, -0.0002, -0.0035, 0.0001, -0.002, 0.0012, 0.0048, 0.0011, 0.0001, -0.0002, -0.0003, -0.0012, 0.0033, 0.0006, 0.002, -0.0033, 0.0004, 0.0028, 0.0002, 0.0008, -0.0001, -0.0018, 0.0008, 0.0017, 0.0001, 0.0009, 0.0008, 0.0003, 0.0019, -0.001, 0.001, -0.0007, -0.0013, 0, 0.0001, 0.0032, -0.0001, 0.0001, 0.0011, -0.0004, 0.0005, -0.0007, 0.0018, -0.0003, 0.0002, 0.0007, 0.0008, -0.0014, 0.0007, 0.0015, -0.0006, -0.0001, -0.0004, 0.0019, -0.0009, -0.0006, -0.0006, -0.0012, 0.0002, -0.0012, -0.0008, 0.0004, 0.0006, -0.0011, 0.0003, 0.0009, -0.0004, 0.0006, -0.0007, -0.0004], expression: [-0.0603, 2.0527, 1.9014, 0.1025, 0.6143, 0.3804, 0.7881, -0.1023, -0.0764, 0.0454, -0.2487, -0.5073, -0.6704, -0.031, -0.0181, 0.0466, 0.0651, -0.0726, -0.0033, -0.0022, 0.2944, 0.0101, 0.1669, -0.5225, -0.4685, 0.0236, 0.0079, 0.011, 0.2173, 0.4529, 0.0121, -0.2104, -0.0673, 0.0225, -0.4023, 0.0317, -0.0009, 0.0076, -0.0032, 0.0333, 0.0523, 0.0129, -0.001, -0.0319, -0.0139, 0.0015, -0.0044, 0.0247, -0.0005, 0.0161, 0.0061, 0.0074, 0.0776, -0.0176, 0.007, 0.055, -0.017, 0.0052, -0.1819, 0.0294, -0.0161, -0.0337, 0.0226, -0.008, -0.0297, 0.1967, -0.0095, 0.0383, 0.2039, 0.0434, 0.0271, -0.0064, -0.0037, -0.0294, -0.024, 0.0024, -0.0137, -0.0209, -0.0031, 0.0628, 0.1003, -0.0126, -0.056, -0.0097, -0.0012, -0.0041, 0.0162] }, 11: { mean: [0.2505, 0.3833, 0.7793], identity: [0.0098, 0.012, 0.0077, -0.0006, -0.0003, 0, 0.0001, 0.0082, -0.0007, 0.0019, -0.0036, -0.0012, 0.0002, 0.0119, -0.0039, 0.001, 0.0001, 0.0031, -0.0036, -0.0059, -0.0007, 0.0026, 0.0028, -0.0011, 0.0009, -0.0032, 0.0008, 0.0029, 0.0043, 0.0003, 0.0025, -0.0009, 0.0047, 0.0016, 0.0022, 0.0018, -0.001, 0.0025, -0.003, -0.001, 0.0033, 0.0034, 0.0004, -0.0052, 0.0024, -0.0002, 0.001, -0.0014, -0.0006, 0.0038, -0.0015, -0.0006, -0.001, -0.0011, -0.0004, -0.001, 0.0004, -0.0007, 0.0036, -0.0008, -0.0002, -0.0019, 0.0005, 0.0003, -0.0006, -0.0024, -0.0017, -0.0014, 0.0006, -0.0004, -0.0031, -0.0013, -0.0006, 0.0042, 0.0002, -0.0002, -0.002, -0.0003, 0.0008, 0.0018, -0.0005, -0.0006, -0.0002, -0.0006, 0.0025, 0.0019, 0.001, 0.0008, -0.0015, -0.0012, -0.0001, -0.0006, -0.0004, 0.0023, -0.001, 0.0006, -0.0002, -0.001, 0, -0.0009, -0.002, -0.0011, 0.0001, 0, -0.0001, 0.0005, 0.0006, 0.0009, -0.0006, 0.0005, 0.0008, -0.0001, -0.0002, -0.0017, -0.0006, -0.0004, 0.0004, -0.0006, 0.0012, 0.0004, 0.0003, -0.0007, 0.0003, -0.0002, 0.0006, 0.0001, 0.0005, -0.0019, -0.0006, 0.0004, 0.0007, -0.0001, 0.0001, 0.0005, 0.001, -0.0006, -0.002, -0.0007, -0.0005, 0.0005, 0.0003, 0.0007, 0.0014, 0, 0.0005, -0.0005, -0.0002, 0.0003, -0.0006, -0.0001], expression: [-0.0009, -0.0003, 0.0032, -0.003, -0.0034, -0.0031, 0.0014, 0, 0.0004, -0.0139, -0.0764, 0.0275, -0.002, -0.0089, 0.0031, -0.0503, -0.0771, 0.038, -0.1323, -0.3523, 0.1368, -0.0474, -0.0564, 0.0296, -0.0045, 0.007, -0.0013, 0.0153, 0.1259, -0.0464, 0.0866, 0.2175, -0.0786, -0.0413, -0.1248, 0.0448, -0.1777, -0.4607, 0.1782, -0.0005, -0.005, 0.0016, 0.0629, 0.1506, -0.0624, 0.0545, 0.2576, -0.0864, -0.0231, -0.0552, 0.0244, -0.0136, -0.0359, 0.0169, -0.1158, -0.2996, 0.1214, -0.0235, -0.0354, 0.0165, -0.0745, -0.1079, 0.0475, -0.0116, -0.0039, 0.0012, 0.0013, -0.0108, -0.0008, 0.0044, -0.0027, -0.0001, -0.0694, 0.0363, 0.0071, 0.1462, -0.136, 0.0047, 0.009, -0.0177, 0.0038, -0.0271, 0.0118, 0.0011, -0.0399, -0.0111, 0.0123] }, 12: { mean: [-0.2981, 0.3828, 0.7563], identity: [-0.0116, 0.014, 0.0054, 0.0018, 0.0005, 0, -0.0004, 0.0068, -0.0013, -0.0019, -0.0048, -0.0005, 0.0005, 0.0108, -0.0036, -0.0029, -0.0018, 0.0029, 0.0043, -0.0077, 0.0006, -0.0017, 0.002, -0.0011, -0.0014, -0.0035, 0.0015, -0.0024, 0.0011, 0.0004, -0.0048, 0.0002, 0.0029, -0.0001, -0.0001, 0.003, 0.0019, 0.0035, -0.0016, -0.0004, 0.0039, 0.0019, 0.0001, -0.0064, 0.004, 0.0003, 0.002, -0.0021, 0.0017, 0.0011, -0.001, 0.0026, 0.0025, -0.0005, 0.0002, -0.0003, -0.0005, -0.0007, 0.0009, -0.0004, -0.001, -0.0022, 0.001, 0.0009, -0.0014, 0.0007, 0.0011, -0.001, -0.0005, -0.0008, -0.0017, -0.0021, 0.0009, 0.0036, 0.0005, 0.0004, -0.0031, 0.0006, -0.0015, 0.0027, 0.0002, 0.0001, -0.0011, 0.0002, -0.0011, -0.0018, 0.0004, -0.0013, -0.0002, 0.0007, 0.0009, -0.0003, 0.001, -0.0021, 0.0008, 0.0006, -0.0009, 0.0004, -0.0007, 0.0008, -0.002, -0.0013, 0, 0.0007, -0.0012, -0.0001, 0.0014, 0.0014, -0.0001, 0.0013, 0.0006, 0.0006, -0.0014, -0.0015, -0.0009, 0.0001, 0.0001, 0.0009, 0.0007, 0, 0.0001, -0.001, -0.0004, 0, -0.0005, 0.0001, -0.0003, 0.0004, -0.0005, -0.0001, -0.0011, 0.0002, 0, 0.0001, 0.0008, 0.0008, 0, -0.0007, -0.0008, 0, 0.0002, -0.0001, 0.001, 0.0003, 0.0004, -0.0002, 0, 0.0005, 0.0018, -0.0001], expression: [0, -0.0004, 0.0028, 0.0036, -0.0008, -0.0026, -0.0015, -0.0008, 0.0003, 0.0075, -0.0608, 0.025, 0.0019, -0.0076, 0.0033, 0.0379, -0.0437, 0.0335, 0.0964, -0.2452, 0.1233, 0.0368, -0.0251, 0.0253, 0.0033, 0.0097, -0.0021, -0.0095, 0.1171, -0.0475, -0.064, 0.1548, -0.0718, 0.0228, -0.0831, 0.0343, -0.1924, 0.6206, -0.2771, 0.0021, -0.0143, 0.0056, -0.0705, 0.2522, -0.1116, -0.0692, 0.4229, -0.1592, -0.0093, 0.05, -0.0185, 0.0948, -0.3196, 0.1437, -0.0184, 0.0194, -0.0131, 0.0205, -0.0353, 0.0201, 0.0676, -0.135, 0.0672, 0.0137, -0.0311, 0.0118, 0.0003, -0.0077, -0.0002, -0.0151, 0.0004, -0.0058, 0.029, -0.0139, 0.0163, 0.1324, 0.1819, -0.0039, 0.0406, 0.0501, 0.0017, 0.0331, 0.0161, 0.0062, -0.0235, -0.0446, 0.0047] } };
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
package/lib/facemesh.js CHANGED
@@ -1,26 +1,20 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FaceMesh = exports.getFaceMesh = exports.destroyFaceMesh = exports.createFaceMesh = void 0;
4
- const gl_matrix_1 = require("gl-matrix");
5
- const loglevel_1 = require("./loglevel");
1
+ import { vec3 } from "gl-matrix";
2
+ import { zcout } from "./loglevel";
6
3
  let latestFaceMesh = 1;
7
4
  let faceMeshById = new Map();
8
- function createFaceMesh() {
5
+ export function createFaceMesh() {
9
6
  let ret = (latestFaceMesh++);
10
7
  faceMeshById.set(ret, new FaceMesh());
11
- loglevel_1.zcout("face_mesh_t initialized");
8
+ zcout("face_mesh_t initialized");
12
9
  return ret;
13
10
  }
14
- exports.createFaceMesh = createFaceMesh;
15
- function destroyFaceMesh(m) {
11
+ export function destroyFaceMesh(m) {
16
12
  faceMeshById.delete(m);
17
13
  }
18
- exports.destroyFaceMesh = destroyFaceMesh;
19
- function getFaceMesh(m) {
14
+ export function getFaceMesh(m) {
20
15
  return faceMeshById.get(m);
21
16
  }
22
- exports.getFaceMesh = getFaceMesh;
23
- class FaceMesh {
17
+ export class FaceMesh {
24
18
  constructor() {
25
19
  this.render_mean_ = new Float32Array();
26
20
  this.render_identity_ = new Float32Array(50);
@@ -193,8 +187,8 @@ class FaceMesh {
193
187
  w[0] = vertices[vertexStart2] - vertices[vertexStart0];
194
188
  w[1] = vertices[vertexStart2 + 1] - vertices[vertexStart0 + 1];
195
189
  w[2] = vertices[vertexStart2 + 2] - vertices[vertexStart0 + 2];
196
- gl_matrix_1.vec3.cross(out, v, w);
197
- let length = gl_matrix_1.vec3.length(out);
190
+ vec3.cross(out, v, w);
191
+ let length = vec3.length(out);
198
192
  faceNormals[i] = out[0] / length;
199
193
  faceNormals[i + 1] = out[1] / length;
200
194
  faceNormals[i + 2] = out[2] / length;
@@ -220,7 +214,7 @@ class FaceMesh {
220
214
  v[0] = normals[indx];
221
215
  v[1] = normals[indx + 1];
222
216
  v[2] = normals[indx + 2];
223
- gl_matrix_1.vec3.normalize(w, v);
217
+ vec3.normalize(w, v);
224
218
  normals[indx] = w[0];
225
219
  normals[indx + 1] = w[1];
226
220
  normals[indx + 2] = w[2];
@@ -228,4 +222,3 @@ class FaceMesh {
228
222
  this.normalsCalculated_ = true;
229
223
  }
230
224
  }
231
- exports.FaceMesh = FaceMesh;
@@ -1,18 +1,15 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.zappar_client = void 0;
4
- const serializer_1 = require("../serializer");
5
- const deserializer_1 = require("../deserializer");
6
- class zappar_client {
1
+ import { MessageSerializer } from "../serializer";
2
+ import { MessageDeserializer } from "../deserializer";
3
+ export class zappar_client {
7
4
  constructor(_messageSender) {
8
5
  this._messageSender = _messageSender;
9
6
  this._globalState = {
10
7
  log_level: 1,
11
8
  };
12
- this.serializer = new serializer_1.MessageSerializer(ab => {
9
+ this.serializer = new MessageSerializer(ab => {
13
10
  this._messageSender(ab);
14
11
  });
15
- this.deserializer = new deserializer_1.MessageDeserializer();
12
+ this.deserializer = new MessageDeserializer();
16
13
  this._latestId = 1;
17
14
  this._pipeline_state_by_instance = new Map();
18
15
  this._camera_source_state_by_instance = new Map();
@@ -213,7 +210,6 @@ class zappar_client {
213
210
  let s = {
214
211
  enabled: true,
215
212
  target_loaded_version: -1,
216
- target_count: 0,
217
213
  anchor_count: 0,
218
214
  anchor_id: [],
219
215
  anchor_pose: [],
@@ -249,12 +245,6 @@ class zappar_client {
249
245
  throw new Error("This object has been destroyed");
250
246
  return s.target_loaded_version;
251
247
  },
252
- image_tracker_target_count: (o) => {
253
- let s = this._image_tracker_state_by_instance.get(o);
254
- if (!s)
255
- throw new Error("This object has been destroyed");
256
- return s.target_count;
257
- },
258
248
  image_tracker_enabled: (o) => {
259
249
  let s = this._image_tracker_state_by_instance.get(o);
260
250
  if (!s)
@@ -615,14 +605,6 @@ class zappar_client {
615
605
  inst.target_loaded_version = msg.int();
616
606
  break;
617
607
  }
618
- case 21: {
619
- let handle = msg.type();
620
- let inst = this._image_tracker_state_by_instance.get(handle);
621
- if (!inst)
622
- return;
623
- inst.target_count = msg.int();
624
- break;
625
- }
626
608
  case 1: {
627
609
  let handle = msg.type();
628
610
  let inst = this._image_tracker_state_by_instance.get(handle);
@@ -739,4 +721,3 @@ class zappar_client {
739
721
  });
740
722
  }
741
723
  }
742
- exports.zappar_client = zappar_client;
@@ -1,7 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getRuntimeObject = void 0;
4
- function getRuntimeObject(mod) {
1
+ export function getRuntimeObject(mod) {
5
2
  let log_level_wrapped = mod.cwrap("zappar_log_level", "number", []);
6
3
  let log_level_set_wrapped = mod.cwrap("zappar_log_level_set", null, [
7
4
  "number"
@@ -66,9 +63,6 @@ function getRuntimeObject(mod) {
66
63
  let image_tracker_target_loaded_version_wrapped = mod.cwrap("zappar_image_tracker_target_loaded_version", "number", [
67
64
  "number"
68
65
  ]);
69
- let image_tracker_target_count_wrapped = mod.cwrap("zappar_image_tracker_target_count", "number", [
70
- "number"
71
- ]);
72
66
  let image_tracker_enabled_wrapped = mod.cwrap("zappar_image_tracker_enabled", "number", [
73
67
  "number"
74
68
  ]);
@@ -349,10 +343,6 @@ function getRuntimeObject(mod) {
349
343
  let ret = image_tracker_target_loaded_version_wrapped(o);
350
344
  return ret;
351
345
  },
352
- image_tracker_target_count: (o) => {
353
- let ret = image_tracker_target_count_wrapped(o);
354
- return ret;
355
- },
356
346
  image_tracker_enabled: (o) => {
357
347
  let ret = image_tracker_enabled_wrapped(o);
358
348
  ret = ret === 1;
@@ -542,4 +532,3 @@ function getRuntimeObject(mod) {
542
532
  },
543
533
  };
544
534
  }
545
- exports.getRuntimeObject = getRuntimeObject;
@@ -109,7 +109,6 @@ export interface zappar_cwrap {
109
109
  image_tracker_destroy(o: zappar_image_tracker_t): void;
110
110
  image_tracker_target_load_from_memory(o: zappar_image_tracker_t, data: ArrayBuffer): void;
111
111
  image_tracker_target_loaded_version(o: zappar_image_tracker_t): number;
112
- image_tracker_target_count(o: zappar_image_tracker_t): number;
113
112
  image_tracker_enabled(o: zappar_image_tracker_t): boolean;
114
113
  image_tracker_enabled_set(o: zappar_image_tracker_t, enabled: boolean): void;
115
114
  image_tracker_anchor_count(o: zappar_image_tracker_t): number;
@@ -1,7 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.frame_pixel_format_t = exports.log_level_t = exports.instant_world_tracker_transform_orientation_t = exports.face_landmark_name_t = exports.barcode_format_t = void 0;
4
- var barcode_format_t;
1
+ export var barcode_format_t;
5
2
  (function (barcode_format_t) {
6
3
  barcode_format_t[barcode_format_t["UNKNOWN"] = 131072] = "UNKNOWN";
7
4
  barcode_format_t[barcode_format_t["AZTEC"] = 1] = "AZTEC";
@@ -22,9 +19,9 @@ var barcode_format_t;
22
19
  barcode_format_t[barcode_format_t["UPC_E"] = 32768] = "UPC_E";
23
20
  barcode_format_t[barcode_format_t["UPC_EAN_EXTENSION"] = 65536] = "UPC_EAN_EXTENSION";
24
21
  barcode_format_t[barcode_format_t["ALL"] = 131071] = "ALL";
25
- })(barcode_format_t = exports.barcode_format_t || (exports.barcode_format_t = {}));
22
+ })(barcode_format_t || (barcode_format_t = {}));
26
23
  ;
27
- var face_landmark_name_t;
24
+ export var face_landmark_name_t;
28
25
  (function (face_landmark_name_t) {
29
26
  face_landmark_name_t[face_landmark_name_t["EYE_LEFT"] = 0] = "EYE_LEFT";
30
27
  face_landmark_name_t[face_landmark_name_t["EYE_RIGHT"] = 1] = "EYE_RIGHT";
@@ -39,25 +36,25 @@ var face_landmark_name_t;
39
36
  face_landmark_name_t[face_landmark_name_t["CHIN"] = 10] = "CHIN";
40
37
  face_landmark_name_t[face_landmark_name_t["EYEBROW_LEFT"] = 11] = "EYEBROW_LEFT";
41
38
  face_landmark_name_t[face_landmark_name_t["EYEBROW_RIGHT"] = 12] = "EYEBROW_RIGHT";
42
- })(face_landmark_name_t = exports.face_landmark_name_t || (exports.face_landmark_name_t = {}));
39
+ })(face_landmark_name_t || (face_landmark_name_t = {}));
43
40
  ;
44
- var instant_world_tracker_transform_orientation_t;
41
+ export var instant_world_tracker_transform_orientation_t;
45
42
  (function (instant_world_tracker_transform_orientation_t) {
46
43
  instant_world_tracker_transform_orientation_t[instant_world_tracker_transform_orientation_t["WORLD"] = 3] = "WORLD";
47
44
  instant_world_tracker_transform_orientation_t[instant_world_tracker_transform_orientation_t["MINUS_Z_AWAY_FROM_USER"] = 4] = "MINUS_Z_AWAY_FROM_USER";
48
45
  instant_world_tracker_transform_orientation_t[instant_world_tracker_transform_orientation_t["MINUS_Z_HEADING"] = 5] = "MINUS_Z_HEADING";
49
46
  instant_world_tracker_transform_orientation_t[instant_world_tracker_transform_orientation_t["UNCHANGED"] = 6] = "UNCHANGED";
50
- })(instant_world_tracker_transform_orientation_t = exports.instant_world_tracker_transform_orientation_t || (exports.instant_world_tracker_transform_orientation_t = {}));
47
+ })(instant_world_tracker_transform_orientation_t || (instant_world_tracker_transform_orientation_t = {}));
51
48
  ;
52
- var log_level_t;
49
+ export var log_level_t;
53
50
  (function (log_level_t) {
54
51
  log_level_t[log_level_t["LOG_LEVEL_NONE"] = 0] = "LOG_LEVEL_NONE";
55
52
  log_level_t[log_level_t["LOG_LEVEL_ERROR"] = 1] = "LOG_LEVEL_ERROR";
56
53
  log_level_t[log_level_t["LOG_LEVEL_WARNING"] = 2] = "LOG_LEVEL_WARNING";
57
54
  log_level_t[log_level_t["LOG_LEVEL_VERBOSE"] = 3] = "LOG_LEVEL_VERBOSE";
58
- })(log_level_t = exports.log_level_t || (exports.log_level_t = {}));
55
+ })(log_level_t || (log_level_t = {}));
59
56
  ;
60
- var frame_pixel_format_t;
57
+ export var frame_pixel_format_t;
61
58
  (function (frame_pixel_format_t) {
62
59
  frame_pixel_format_t[frame_pixel_format_t["FRAME_PIXEL_FORMAT_I420"] = 0] = "FRAME_PIXEL_FORMAT_I420";
63
60
  frame_pixel_format_t[frame_pixel_format_t["FRAME_PIXEL_FORMAT_I420A"] = 1] = "FRAME_PIXEL_FORMAT_I420A";
@@ -67,5 +64,5 @@ var frame_pixel_format_t;
67
64
  frame_pixel_format_t[frame_pixel_format_t["FRAME_PIXEL_FORMAT_RGBA"] = 5] = "FRAME_PIXEL_FORMAT_RGBA";
68
65
  frame_pixel_format_t[frame_pixel_format_t["FRAME_PIXEL_FORMAT_BGRA"] = 6] = "FRAME_PIXEL_FORMAT_BGRA";
69
66
  frame_pixel_format_t[frame_pixel_format_t["FRAME_PIXEL_FORMAT_Y"] = 7] = "FRAME_PIXEL_FORMAT_Y";
70
- })(frame_pixel_format_t = exports.frame_pixel_format_t || (exports.frame_pixel_format_t = {}));
67
+ })(frame_pixel_format_t || (frame_pixel_format_t = {}));
71
68
  ;
@@ -1,13 +1,10 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.zappar_server = void 0;
4
- const serializer_1 = require("../serializer");
5
- const deserializer_1 = require("../deserializer");
6
- class zappar_server {
1
+ import { MessageSerializer } from "../serializer";
2
+ import { MessageDeserializer } from "../deserializer";
3
+ export class zappar_server {
7
4
  constructor(_impl, _sender) {
8
5
  this._impl = _impl;
9
6
  this._sender = _sender;
10
- this._deserializer = new deserializer_1.MessageDeserializer();
7
+ this._deserializer = new MessageDeserializer();
11
8
  this.serializersByPipelineId = new Map();
12
9
  this._pipeline_id_by_pipeline_id = new Map();
13
10
  this._pipeline_by_instance = new Map();
@@ -45,7 +42,7 @@ class zappar_server {
45
42
  let handle = this._impl.pipeline_create();
46
43
  this._pipeline_by_instance.set(clientId, handle);
47
44
  this._pipeline_id_by_pipeline_id.set(clientId, clientId);
48
- this.serializersByPipelineId.set(clientId, new serializer_1.MessageSerializer(ab => {
45
+ this.serializersByPipelineId.set(clientId, new MessageSerializer(ab => {
49
46
  this._sender(clientId, ab);
50
47
  }));
51
48
  break;
@@ -378,10 +375,6 @@ class zappar_server {
378
375
  msg.type(k);
379
376
  msg.int(this._impl.image_tracker_target_loaded_version(v));
380
377
  });
381
- serializer.sendMessage(21, msg => {
382
- msg.type(k);
383
- msg.int(this._impl.image_tracker_target_count(v));
384
- });
385
378
  serializer.sendMessage(1, msg => {
386
379
  msg.type(k);
387
380
  msg.int(this._impl.image_tracker_anchor_count(v));
@@ -501,4 +494,3 @@ class zappar_server {
501
494
  }
502
495
  }
503
496
  }
504
- exports.zappar_server = zappar_server;
@@ -2,7 +2,6 @@ import { barcode_format_t } from "./zappar-native";
2
2
  export { barcode_format_t } from "./zappar-native";
3
3
  import { face_landmark_name_t } from "./zappar-native";
4
4
  export { face_landmark_name_t } from "./zappar-native";
5
- import { frame_pixel_format_t } from "./zappar-native";
6
5
  export { frame_pixel_format_t } from "./zappar-native";
7
6
  import { instant_world_tracker_transform_orientation_t } from "./zappar-native";
8
7
  export { instant_world_tracker_transform_orientation_t } from "./zappar-native";
@@ -68,7 +67,6 @@ export interface zappar {
68
67
  pipeline_camera_pose_with_origin(o: zappar_pipeline_t, pose: Float32Array): Float32Array;
69
68
  pipeline_camera_frame_user_data(o: zappar_pipeline_t): number;
70
69
  pipeline_camera_frame_submit(o: zappar_pipeline_t, data: ArrayBuffer, width: number, height: number, user_data: number, camera_to_device_transform: Float32Array, camera_model: Float32Array, user_facing: boolean): void;
71
- pipeline_camera_frame_submit_raw_pointer(o: zappar_pipeline_t, data: number, dataLength: number, format: frame_pixel_format_t, width: number, height: number, user_data: number, camera_to_device_transform: Float32Array, rotation: number, camera_model: Float32Array, user_facing: boolean): void;
72
70
  pipeline_camera_frame_camera_attitude(o: zappar_pipeline_t): Float32Array;
73
71
  pipeline_camera_frame_device_attitude(o: zappar_pipeline_t): Float32Array;
74
72
  pipeline_camera_frame_user_facing(o: zappar_pipeline_t): boolean;
@@ -97,6 +95,13 @@ export interface zappar {
97
95
  image_tracker_target_load_from_memory(o: zappar_image_tracker_t, data: ArrayBuffer): void;
98
96
  image_tracker_target_loaded_version(o: zappar_image_tracker_t): number;
99
97
  image_tracker_target_count(o: zappar_image_tracker_t): number;
98
+ image_tracker_target_radius_top(o: zappar_image_tracker_t, indx: number): number;
99
+ image_tracker_target_radius_bottom(o: zappar_image_tracker_t, indx: number): number;
100
+ image_tracker_target_side_length(o: zappar_image_tracker_t, indx: number): number;
101
+ image_tracker_target_physical_scale_factor(o: zappar_image_tracker_t, indx: number): number;
102
+ image_tracker_target_preview_compressed(o: zappar_image_tracker_t, indx: number): Uint8Array;
103
+ image_tracker_target_preview_compressed_size(o: zappar_image_tracker_t, indx: number): number;
104
+ image_tracker_target_preview_compressed_mimetype(o: zappar_image_tracker_t, indx: number): string;
100
105
  image_tracker_enabled(o: zappar_image_tracker_t): boolean;
101
106
  image_tracker_enabled_set(o: zappar_image_tracker_t, enabled: boolean): void;
102
107
  image_tracker_anchor_count(o: zappar_image_tracker_t): number;
package/lib/gen/zappar.js CHANGED
@@ -1,13 +1,5 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.log_level_t = exports.instant_world_tracker_transform_orientation_t = exports.frame_pixel_format_t = exports.face_landmark_name_t = exports.barcode_format_t = void 0;
4
- var zappar_native_1 = require("./zappar-native");
5
- Object.defineProperty(exports, "barcode_format_t", { enumerable: true, get: function () { return zappar_native_1.barcode_format_t; } });
6
- var zappar_native_2 = require("./zappar-native");
7
- Object.defineProperty(exports, "face_landmark_name_t", { enumerable: true, get: function () { return zappar_native_2.face_landmark_name_t; } });
8
- var zappar_native_3 = require("./zappar-native");
9
- Object.defineProperty(exports, "frame_pixel_format_t", { enumerable: true, get: function () { return zappar_native_3.frame_pixel_format_t; } });
10
- var zappar_native_4 = require("./zappar-native");
11
- Object.defineProperty(exports, "instant_world_tracker_transform_orientation_t", { enumerable: true, get: function () { return zappar_native_4.instant_world_tracker_transform_orientation_t; } });
12
- var zappar_native_5 = require("./zappar-native");
13
- Object.defineProperty(exports, "log_level_t", { enumerable: true, get: function () { return zappar_native_5.log_level_t; } });
1
+ export { barcode_format_t } from "./zappar-native";
2
+ export { face_landmark_name_t } from "./zappar-native";
3
+ export { frame_pixel_format_t } from "./zappar-native";
4
+ export { instant_world_tracker_transform_orientation_t } from "./zappar-native";
5
+ export { log_level_t } from "./zappar-native";