skuilder 0.1.1 → 0.1.3

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 (93) hide show
  1. package/README.md +155 -12
  2. package/dist/cli.d.ts +3 -0
  3. package/dist/cli.d.ts.map +1 -0
  4. package/dist/cli.js +35 -0
  5. package/dist/cli.js.map +1 -0
  6. package/dist/commands/init.d.ts +3 -0
  7. package/dist/commands/init.d.ts.map +1 -0
  8. package/dist/commands/init.js +70 -0
  9. package/dist/commands/init.js.map +1 -0
  10. package/dist/types.d.ts +35 -0
  11. package/dist/types.d.ts.map +1 -0
  12. package/dist/types.js +35 -0
  13. package/dist/types.js.map +1 -0
  14. package/dist/utils/prompts.d.ts +5 -0
  15. package/dist/utils/prompts.d.ts.map +1 -0
  16. package/dist/utils/prompts.js +185 -0
  17. package/dist/utils/prompts.js.map +1 -0
  18. package/dist/utils/template.d.ts +26 -0
  19. package/dist/utils/template.d.ts.map +1 -0
  20. package/dist/utils/template.js +170 -0
  21. package/dist/utils/template.js.map +1 -0
  22. package/eslint.config.mjs +21 -0
  23. package/package.json +41 -36
  24. package/src/cli.ts +42 -0
  25. package/src/commands/init.ts +83 -0
  26. package/src/types.ts +72 -0
  27. package/src/utils/prompts.ts +204 -0
  28. package/src/utils/template.ts +215 -0
  29. package/tsconfig.json +12 -21
  30. package/.npmignore +0 -56
  31. package/android/app/BUCK +0 -65
  32. package/android/app/build.gradle +0 -139
  33. package/android/app/proguard-rules.pro +0 -66
  34. package/android/app/src/main/AndroidManifest.xml +0 -32
  35. package/android/app/src/main/java/com/rxphelloworld/MainActivity.java +0 -15
  36. package/android/app/src/main/java/com/rxphelloworld/MainApplication.java +0 -40
  37. package/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  38. package/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  39. package/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  40. package/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  41. package/android/app/src/main/res/values/strings.xml +0 -3
  42. package/android/app/src/main/res/values/styles.xml +0 -8
  43. package/android/build.gradle +0 -24
  44. package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  45. package/android/gradle/wrapper/gradle-wrapper.properties +0 -6
  46. package/android/gradle.properties +0 -20
  47. package/android/gradlew +0 -164
  48. package/android/gradlew.bat +0 -90
  49. package/android/keystores/BUCK +0 -8
  50. package/android/keystores/debug.keystore.properties +0 -4
  51. package/android/settings.gradle +0 -3
  52. package/img/fingerCounter/1.PNG +0 -0
  53. package/img/fingerCounter/10.PNG +0 -0
  54. package/img/fingerCounter/2.PNG +0 -0
  55. package/img/fingerCounter/3.PNG +0 -0
  56. package/img/fingerCounter/4.PNG +0 -0
  57. package/img/fingerCounter/5.PNG +0 -0
  58. package/img/fingerCounter/6.PNG +0 -0
  59. package/img/fingerCounter/7.PNG +0 -0
  60. package/img/fingerCounter/8.PNG +0 -0
  61. package/img/fingerCounter/9.PNG +0 -0
  62. package/index.android.js +0 -1
  63. package/index.html +0 -30
  64. package/index.ios.js +0 -1
  65. package/ios/RXPHelloWorld/AppDelegate.h +0 -16
  66. package/ios/RXPHelloWorld/AppDelegate.m +0 -37
  67. package/ios/RXPHelloWorld/Base.lproj/LaunchScreen.xib +0 -42
  68. package/ios/RXPHelloWorld/Images.xcassets/AppIcon.appiconset/Contents.json +0 -38
  69. package/ios/RXPHelloWorld/Info.plist +0 -56
  70. package/ios/RXPHelloWorld/main.m +0 -18
  71. package/ios/RXPHelloWorld.xcodeproj/project.pbxproj +0 -1251
  72. package/ios/RXPHelloWorld.xcodeproj/xcshareddata/xcschemes/RXPHelloWorld-tvOS.xcscheme +0 -129
  73. package/ios/RXPHelloWorld.xcodeproj/xcshareddata/xcschemes/RXPHelloWorld.xcscheme +0 -129
  74. package/ios/RXPHelloWorldTests/Info.plist +0 -24
  75. package/ios/RXPHelloWorldTests/RXPHelloWorldTests.m +0 -70
  76. package/src/App.tsx +0 -206
  77. package/src/appUtilities/Grader.ts +0 -72
  78. package/src/appUtilities/Keybinder.ts +0 -28
  79. package/src/appUtilities/Recorder.ts +0 -73
  80. package/src/cloudantFiles/_users._design._auth.validate_doc_update.js +0 -136
  81. package/src/components/ProgressChart.tsx +0 -155
  82. package/src/components/fingerCounter/fingerCounter.tsx +0 -38
  83. package/src/components/fingerCounter/resources/hands.svg +0 -512
  84. package/src/components/numpad.tsx +0 -146
  85. package/src/components/sessionReport.tsx +0 -87
  86. package/src/index.tsx +0 -8
  87. package/src/questions/addition.tsx +0 -30
  88. package/src/questions/division.tsx +0 -62
  89. package/src/questions/multiplication.tsx +0 -71
  90. package/src/styles/answerStyles.css +0 -22
  91. package/src/typings/react.d.ts +0 -964
  92. package/webpack.config.ts +0 -26
  93. package/yarn.lock +0 -6208
@@ -1,512 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg
3
- xmlns:dc="http://purl.org/dc/elements/1.1/"
4
- xmlns:cc="http://creativecommons.org/ns#"
5
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
- xmlns:svg="http://www.w3.org/2000/svg"
7
- xmlns="http://www.w3.org/2000/svg"
8
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
- viewBox="0 0 741.98407 190.78735"
11
- id="svg2"
12
- version="1.1"
13
- inkscape:version="0.91 r13725"
14
- sodipodi:docname="hands.svg">
15
- <metadata
16
- id="metadata58">
17
- <rdf:RDF>
18
- <cc:Work
19
- rdf:about="">
20
- <dc:format>image/svg+xml</dc:format>
21
- <dc:type
22
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
23
- <dc:title></dc:title>
24
- </cc:Work>
25
- </rdf:RDF>
26
- </metadata>
27
- <defs
28
- id="defs56" />
29
- <sodipodi:namedview
30
- pagecolor="#ffffff"
31
- bordercolor="#666666"
32
- borderopacity="1"
33
- objecttolerance="10"
34
- gridtolerance="10"
35
- guidetolerance="10"
36
- inkscape:pageopacity="0"
37
- inkscape:pageshadow="2"
38
- inkscape:window-width="1920"
39
- inkscape:window-height="1137"
40
- id="namedview54"
41
- showgrid="false"
42
- inkscape:zoom="0.55464283"
43
- inkscape:cx="606.77778"
44
- inkscape:cy="-580.44097"
45
- inkscape:window-x="-8"
46
- inkscape:window-y="-8"
47
- inkscape:window-maximized="1"
48
- inkscape:current-layer="svg2" />
49
- <g
50
- transform="translate(-174.02 -618.74)"
51
- stroke="#000"
52
- stroke-linecap="round"
53
- stroke-linejoin="round"
54
- id="g4">
55
- <path
56
- d="m267.92 750.68c-4.297 6.4618-13.318 26.901-24.859 24.258l0.52243 31.287-50.021 0.45689 0.1601-30.762c-11.862-2.8788-20.524-55.675-11.845-66.95 6.3915-6.4967 46.668-2.5934 49.378-20.227 2.3557-13.326 0.37321 11.848 1.8237 2.9673 1.134-7.1802 15.529-12.884 16.37 2.1156 1.7685 7.2188-4.3743 10.653-2.9944 30.993 0.38261 5.64 10.737 3.0735 11.596 3.3518l25.18-17.896c17.046-11.041 24.199 7.6665 9.8698 18.676z"
57
- fill="#fff"
58
- stroke-width="2"
59
- id="path6" />
60
- <path
61
- d="m232.4 685.07c0.68236-7.9048 20.749-9.2117 20.968 4.7529-3.5542 14.543-5.3227 29.087-8.8769 43.63-2.3371 7.1835-14.644 7.9883-15.465-0.84841 1.3715-15.914 1.6338-31.658 3.3738-47.534z"
62
- fill="#fff"
63
- stroke-width="1.9789"
64
- id="path8" />
65
- <path
66
- d="m221.33 773.27c-2.7874-19.896-0.87231-25.376 12.455-33.966"
67
- fill="none"
68
- id="path10" />
69
- <path
70
- d="m232.37 684.16c1.8802-8.4355-15.811-16.425-21.983 0.29691l-1.0152 49.607c0.66072 7.3247 18.603 9.159 18.986-2.0831 2.7542-16.239 4.0363-33.007 4.0124-47.82z"
71
- fill="#fff"
72
- stroke-width="2"
73
- id="path12" />
74
- <path
75
- d="m194.13 701.23c-2.6002-12.045-23.635-13.058-18.216 7.1155 3.2863 10.551 6.4857 21.698 12.115 30.151 3.315 5.4808 13.658 2.2304 13.71-2.8971l-4.2599-13.567z"
76
- fill="#fff"
77
- stroke-width="2"
78
- id="path14" />
79
- <path
80
- d="m209.98 688.04c-0.59249-7.9133-19.525-9.3442-19.934 4.6162l5.2865 22.434 5.0276 21.336c2.2922 7.2144 13.027 8.1612 13.983-0.66368l-1.9054-22.789z"
81
- fill="#fff"
82
- stroke-width="2"
83
- id="path16" />
84
- </g>
85
- <g
86
- transform="translate(-166.22 -617.74)"
87
- stroke="#000"
88
- stroke-linecap="round"
89
- stroke-linejoin="round"
90
- id="g18">
91
- <path
92
- d="m409.97 749.68c-4.2969 6.4618-13.318 26.901-24.858 24.258l0.5224 31.287-50.021 0.45689 0.1601-30.762c-11.862-2.8788-20.524-55.675-11.845-66.95 4.2752-4.3455 31.522 5.266 29.948-8.6352-2.6541-20.896 3.8003 4.9104 3.733-4.4945-2.6467-21.235 10.031-21.2 10.5-6.9704 3.8229 14.667-2.1474 9.4251 4.266 9.4805 5.6686 5.1166 9.5846-50.424 12.779-58.054 3.3084-17.293 18.623-15.964 17.173 2.1664 1.2703 7.2188-8.7748 59.159-7.395 79.498 0.3826 5.64 4.3084 5.9306 5.1675 6.2089l25.18-17.896c17.046-11.041 24.199 7.6665 9.8698 18.676z"
93
- fill="#fff"
94
- stroke-width="2"
95
- id="path20" />
96
- <path
97
- d="m363.38 772.28c-2.7874-19.896 0.70611-33.365 14.033-41.955"
98
- fill="none"
99
- id="path22" />
100
- <path
101
- d="m336.18 700.24c-2.6002-12.045-23.635-13.058-18.216 7.1155 3.2863 10.551 4.9705 23.213 10.599 31.666 3.315 5.4808 15.173 0.71518 15.226-4.4123l-4.2599-13.567z"
102
- fill="#fff"
103
- stroke-width="2"
104
- id="path24" />
105
- <path
106
- d="m375.73 684.16c1.8802-8.4355-15.811-16.425-21.983 0.29691l-1.0152 49.607c0.66072 7.3247 18.603 9.159 18.986-2.0831 2.7542-16.239 4.0363-33.007 4.0124-47.82z"
107
- fill="#fff"
108
- stroke-width="2"
109
- id="path26" />
110
- <path
111
- d="m352.53 683.22c-1.0204-7.5825-20.792-9.1681-20.432 4.9812l5.2865 24.209 4.0175 21.003c-0.73205 11.908 17.089 12.668 15.499-1.7263l-1.4003-20.045z"
112
- fill="#fff"
113
- stroke-width="2"
114
- id="path28" />
115
- </g>
116
- <g
117
- transform="translate(-164.47 -616.9)"
118
- stroke="#000"
119
- stroke-linecap="round"
120
- stroke-linejoin="round"
121
- id="g30">
122
- <path
123
- d="m558.07 748.84c-4.2969 6.4618-13.318 26.901-24.858 24.258l0.5224 31.287-50.021 0.45689 0.1601-30.762c-11.862-2.8788-20.524-55.675-11.845-66.95 4.2752-4.3455 31.522 5.266 29.948-8.6352-2.6541-20.896-4.2809-54.689-4.3482-64.093-2.6467-21.235 16.816-20.486 17.286-6.2562 3.8229 14.667 0.57671 68.667 6.9901 68.722 5.6686 5.1166 8.156-50.782 11.351-58.411 3.3084-17.293 18.623-15.964 17.173 2.1664 1.2703 7.2188-8.7748 59.159-7.395 79.498 0.38259 5.64 4.3084 5.9306 5.1675 6.2089l25.18-17.896c17.046-11.041 24.199 7.6665 9.8698 18.676z"
124
- fill="#fff"
125
- stroke-width="2"
126
- id="path32" />
127
- <path
128
- d="m511.48 771.44c-2.7874-19.896 0.70612-33.365 14.033-41.955"
129
- fill="none"
130
- id="path34" />
131
- <path
132
- d="m484.28 699.4c-2.6002-12.045-23.635-13.058-18.216 7.1155 3.2863 10.551 4.9705 23.213 10.599 31.666 3.315 5.4808 15.173 0.71518 15.226-4.4123l-4.2599-13.567z"
133
- fill="#fff"
134
- stroke-width="2"
135
- id="path36" />
136
- <path
137
- d="m500.63 682.38c-1.0204-7.5825-20.792-9.1681-20.432 4.9812l5.2865 24.209 4.0175 21.003c-0.73206 11.908 17.089 12.668 15.499-1.7263l-1.4003-20.045z"
138
- fill="#fff"
139
- stroke-width="2"
140
- id="path38" />
141
- </g>
142
- <g
143
- transform="translate(-176 -616.9)"
144
- stroke="#000"
145
- stroke-linecap="round"
146
- stroke-linejoin="round"
147
- id="g40">
148
- <path
149
- d="m669.34 617.9c-4.9112 0.14702-9.7498 5.2189-8.3438 16.5 0.0673 9.4048 1.7209 37.198 4.375 58.094 0.73445 6.193-3.594 8.2435-5.9375 2.7679l-3.5089-31.804-2.9286-21.714c0.73206-11.908-17.09-12.675-15.5 1.7188l1.4062 20.062 6.5312 42.531c-4.6119-0.26532-8.6061-0.38607-10.031 1.0625-8.6791 11.275-0.0179 64.09 11.844 66.969l-0.15625 30.75 50.031-0.4375-0.53125-31.312c11.54 2.6436 20.578-17.788 24.875-24.25l25.156-21.719c14.329-11.009 7.1705-29.729-9.875-18.688l-25.156 17.906c-0.8591-0.27831-4.8049-0.5788-5.1875-6.2188-1.3798-20.34 8.6766-72.281 7.4062-79.5 1.4495-18.131-13.879-19.449-17.188-2.1562-3.1948 7.6292-5.6751 63.523-11.344 58.406-6.4134-0.0554-3.1458-54.052-6.9688-68.719-0.22017-6.6701-4.6354-10.38-8.9688-10.25z"
150
- fill="#fff"
151
- stroke-width="2"
152
- id="path42" />
153
- <path
154
- d="m674.85 771.44c-2.7874-19.896 0.70612-33.365 14.033-41.955"
155
- fill="none"
156
- id="path44" />
157
- <path
158
- d="m645.66 701.4c-2.6002-12.045-23.635-13.058-18.216 7.1155 3.2863 10.551 4.9705 23.213 10.599 31.666 3.315 5.4808 15.173 0.71518 15.226-4.4123l-4.2599-13.567z"
159
- fill="#fff"
160
- stroke-width="2"
161
- id="path46" />
162
- </g>
163
- <g
164
- transform="translate(-174.02 -616.9)"
165
- stroke="#000"
166
- stroke-linecap="round"
167
- stroke-linejoin="round"
168
- id="g48">
169
- <path
170
- transform="translate(200.76 612.69)"
171
- d="m629.28 5.2188c-4.9112 0.14702-7.7498 5.2189-6.3438 16.5 0.0673 9.4048 1.7209 43.198 4.375 64.094 0.0477 5.3457-4.9012 7.7349-7.9375 2.7812l-3.5-37.812-2.9375-23.719c0.73206-11.908-17.09-12.675-15.5 1.7188l1.4062 22.062 6.3312 37.226c1.987 8.6801-1.6208 5.6945-2.5479 1.0442-1.8673-9.9385-13.534-38.294-16.513-42.767-3.315-5.4808-10.408-0.72123-10.461 4.4062 2.4753 14.258 17.409 42.431 17.128 50.121-3.7745 17.922 4.11 58.032 14.406 60.531l-0.15625 30.75 50.031-0.4375-0.53125-31.312c11.54 2.6436 20.578-17.788 24.875-24.25l25.156-21.719c14.329-11.009 7.1705-29.729-9.875-18.688l-25.156 17.906c-0.8591-0.27831-6.8049-0.5788-7.1875-6.2188-1.3798-20.34 10.677-68.281 9.4062-75.5 1.4495-18.131-11.879-19.449-15.188-2.1562-3.1948 7.6292-7.6751 59.523-13.344 54.406-6.4134-0.0554-3.1458-54.052-6.9688-68.719-0.22017-6.6701-4.6354-10.38-8.9688-10.25z"
172
- fill="#fff"
173
- stroke-width="2"
174
- id="path50" />
175
- <path
176
- d="m835.57 771.44c-2.7874-19.896 0.70612-33.365 14.033-41.955"
177
- fill="none"
178
- id="path52" />
179
- </g>
180
- <g
181
- style="stroke:#000000;stroke-linecap:round;stroke-linejoin:round"
182
- transform="matrix(-1,0,0,1,917.53417,-356.0427)"
183
- id="g4-5">
184
- <path
185
- style="fill:#ffffff;stroke-width:2"
186
- inkscape:connector-curvature="0"
187
- d="m 267.92,750.68 c -4.297,6.4618 -13.318,26.901 -24.859,24.258 l 0.52243,31.287 -50.021,0.45689 0.1601,-30.762 c -11.862,-2.8788 -20.524,-55.675 -11.845,-66.95 6.3915,-6.4967 46.668,-2.5934 49.378,-20.227 2.3557,-13.326 0.37321,11.848 1.8237,2.9673 1.134,-7.1802 15.529,-12.884 16.37,2.1156 1.7685,7.2188 -4.3743,10.653 -2.9944,30.993 0.38261,5.64 10.737,3.0735 11.596,3.3518 l 25.18,-17.896 c 17.046,-11.041 24.199,7.6665 9.8698,18.676 z"
188
- id="path6-6" />
189
- <path
190
- style="fill:#ffffff;stroke-width:1.97889996"
191
- inkscape:connector-curvature="0"
192
- d="m 232.4,685.07 c 0.68236,-7.9048 20.749,-9.2117 20.968,4.7529 -3.5542,14.543 -5.3227,29.087 -8.8769,43.63 -2.3371,7.1835 -14.644,7.9883 -15.465,-0.84841 1.3715,-15.914 1.6338,-31.658 3.3738,-47.534 z"
193
- id="path8-5" />
194
- <path
195
- style="fill:none"
196
- inkscape:connector-curvature="0"
197
- d="m 221.33,773.27 c -2.7874,-19.896 -0.87231,-25.376 12.455,-33.966"
198
- id="path10-7" />
199
- <path
200
- style="fill:#ffffff;stroke-width:2"
201
- inkscape:connector-curvature="0"
202
- d="m 232.37,684.16 c 1.8802,-8.4355 -15.811,-16.425 -21.983,0.29691 l -1.0152,49.607 c 0.66072,7.3247 18.603,9.159 18.986,-2.0831 2.7542,-16.239 4.0363,-33.007 4.0124,-47.82 z"
203
- id="path12-5" />
204
- <path
205
- style="fill:#ffffff;stroke-width:2"
206
- inkscape:connector-curvature="0"
207
- d="m 194.13,701.23 c -2.6002,-12.045 -23.635,-13.058 -18.216,7.1155 3.2863,10.551 6.4857,21.698 12.115,30.151 3.315,5.4808 13.658,2.2304 13.71,-2.8971 l -4.2599,-13.567 z"
208
- id="path14-1" />
209
- <path
210
- style="fill:#ffffff;stroke-width:2"
211
- inkscape:connector-curvature="0"
212
- d="m 209.98,688.04 c -0.59249,-7.9133 -19.525,-9.3442 -19.934,4.6162 l 5.2865,22.434 5.0276,21.336 c 2.2922,7.2144 13.027,8.1612 13.983,-0.66368 l -1.9054,-22.789 z"
213
- id="path16-9" />
214
- </g>
215
- <g
216
- style="stroke:#000000;stroke-linecap:round;stroke-linejoin:round"
217
- transform="matrix(-1,0,0,1,909.73417,-355.0427)"
218
- id="g18-6">
219
- <path
220
- style="fill:#ffffff;stroke-width:2"
221
- inkscape:connector-curvature="0"
222
- d="m 409.97,749.68 c -4.2969,6.4618 -13.318,26.901 -24.858,24.258 l 0.5224,31.287 -50.021,0.45689 0.1601,-30.762 c -11.862,-2.8788 -20.524,-55.675 -11.845,-66.95 4.2752,-4.3455 31.522,5.266 29.948,-8.6352 -2.6541,-20.896 3.8003,4.9104 3.733,-4.4945 -2.6467,-21.235 10.031,-21.2 10.5,-6.9704 3.8229,14.667 -2.1474,9.4251 4.266,9.4805 5.6686,5.1166 9.5846,-50.424 12.779,-58.054 3.3084,-17.293 18.623,-15.964 17.173,2.1664 1.2703,7.2188 -8.7748,59.159 -7.395,79.498 0.3826,5.64 4.3084,5.9306 5.1675,6.2089 l 25.18,-17.896 c 17.046,-11.041 24.199,7.6665 9.8698,18.676 z"
223
- id="path20-0" />
224
- <path
225
- style="fill:none"
226
- inkscape:connector-curvature="0"
227
- d="m 363.38,772.28 c -2.7874,-19.896 0.70611,-33.365 14.033,-41.955"
228
- id="path22-8" />
229
- <path
230
- style="fill:#ffffff;stroke-width:2"
231
- inkscape:connector-curvature="0"
232
- d="m 336.18,700.24 c -2.6002,-12.045 -23.635,-13.058 -18.216,7.1155 3.2863,10.551 4.9705,23.213 10.599,31.666 3.315,5.4808 15.173,0.71518 15.226,-4.4123 l -4.2599,-13.567 z"
233
- id="path24-6" />
234
- <path
235
- style="fill:#ffffff;stroke-width:2"
236
- inkscape:connector-curvature="0"
237
- d="m 375.73,684.16 c 1.8802,-8.4355 -15.811,-16.425 -21.983,0.29691 l -1.0152,49.607 c 0.66072,7.3247 18.603,9.159 18.986,-2.0831 2.7542,-16.239 4.0363,-33.007 4.0124,-47.82 z"
238
- id="path26-6" />
239
- <path
240
- style="fill:#ffffff;stroke-width:2"
241
- inkscape:connector-curvature="0"
242
- d="m 352.53,683.22 c -1.0204,-7.5825 -20.792,-9.1681 -20.432,4.9812 l 5.2865,24.209 4.0175,21.003 c -0.73205,11.908 17.089,12.668 15.499,-1.7263 l -1.4003,-20.045 z"
243
- id="path28-4" />
244
- </g>
245
- <g
246
- style="stroke:#000000;stroke-linecap:round;stroke-linejoin:round"
247
- transform="matrix(-1,0,0,1,907.98417,-354.2027)"
248
- id="g30-3">
249
- <path
250
- style="fill:#ffffff;stroke-width:2"
251
- inkscape:connector-curvature="0"
252
- d="m 558.07,748.84 c -4.2969,6.4618 -13.318,26.901 -24.858,24.258 l 0.5224,31.287 -50.021,0.45689 0.1601,-30.762 c -11.862,-2.8788 -20.524,-55.675 -11.845,-66.95 4.2752,-4.3455 31.522,5.266 29.948,-8.6352 -2.6541,-20.896 -4.2809,-54.689 -4.3482,-64.093 -2.6467,-21.235 16.816,-20.486 17.286,-6.2562 3.8229,14.667 0.57671,68.667 6.9901,68.722 5.6686,5.1166 8.156,-50.782 11.351,-58.411 3.3084,-17.293 18.623,-15.964 17.173,2.1664 1.2703,7.2188 -8.7748,59.159 -7.395,79.498 0.38259,5.64 4.3084,5.9306 5.1675,6.2089 l 25.18,-17.896 c 17.046,-11.041 24.199,7.6665 9.8698,18.676 z"
253
- id="path32-9" />
254
- <path
255
- style="fill:none"
256
- inkscape:connector-curvature="0"
257
- d="m 511.48,771.44 c -2.7874,-19.896 0.70612,-33.365 14.033,-41.955"
258
- id="path34-0" />
259
- <path
260
- style="fill:#ffffff;stroke-width:2"
261
- inkscape:connector-curvature="0"
262
- d="m 484.28,699.4 c -2.6002,-12.045 -23.635,-13.058 -18.216,7.1155 3.2863,10.551 4.9705,23.213 10.599,31.666 3.315,5.4808 15.173,0.71518 15.226,-4.4123 l -4.2599,-13.567 z"
263
- id="path36-2" />
264
- <path
265
- style="fill:#ffffff;stroke-width:2"
266
- inkscape:connector-curvature="0"
267
- d="m 500.63,682.38 c -1.0204,-7.5825 -20.792,-9.1681 -20.432,4.9812 l 5.2865,24.209 4.0175,21.003 c -0.73206,11.908 17.089,12.668 15.499,-1.7263 l -1.4003,-20.045 z"
268
- id="path38-9" />
269
- </g>
270
- <g
271
- style="stroke:#000000;stroke-linecap:round;stroke-linejoin:round"
272
- transform="matrix(-1,0,0,1,919.51417,-354.2027)"
273
- id="g40-8">
274
- <path
275
- style="fill:#ffffff;stroke-width:2"
276
- inkscape:connector-curvature="0"
277
- d="m 669.34,617.9 c -4.9112,0.14702 -9.7498,5.2189 -8.3438,16.5 0.0673,9.4048 1.7209,37.198 4.375,58.094 0.73445,6.193 -3.594,8.2435 -5.9375,2.7679 l -3.5089,-31.804 -2.9286,-21.714 c 0.73206,-11.908 -17.09,-12.675 -15.5,1.7188 l 1.4062,20.062 6.5312,42.531 c -4.6119,-0.26532 -8.6061,-0.38607 -10.031,1.0625 -8.6791,11.275 -0.0179,64.09 11.844,66.969 l -0.15625,30.75 50.031,-0.4375 -0.53125,-31.312 c 11.54,2.6436 20.578,-17.788 24.875,-24.25 l 25.156,-21.719 c 14.329,-11.009 7.1705,-29.729 -9.875,-18.688 l -25.156,17.906 c -0.8591,-0.27831 -4.8049,-0.5788 -5.1875,-6.2188 -1.3798,-20.34 8.6766,-72.281 7.4062,-79.5 1.4495,-18.131 -13.879,-19.449 -17.188,-2.1562 -3.1948,7.6292 -5.6751,63.523 -11.344,58.406 -6.4134,-0.0554 -3.1458,-54.052 -6.9688,-68.719 -0.22017,-6.6701 -4.6354,-10.38 -8.9688,-10.25 z"
278
- id="path42-7" />
279
- <path
280
- style="fill:none"
281
- inkscape:connector-curvature="0"
282
- d="m 674.85,771.44 c -2.7874,-19.896 0.70612,-33.365 14.033,-41.955"
283
- id="path44-2" />
284
- <path
285
- style="fill:#ffffff;stroke-width:2"
286
- inkscape:connector-curvature="0"
287
- d="m 645.66,701.4 c -2.6002,-12.045 -23.635,-13.058 -18.216,7.1155 3.2863,10.551 4.9705,23.213 10.599,31.666 3.315,5.4808 15.173,0.71518 15.226,-4.4123 l -4.2599,-13.567 z"
288
- id="path46-0" />
289
- </g>
290
- <g
291
- style="stroke:#000000;stroke-linecap:round;stroke-linejoin:round"
292
- transform="matrix(-1,0,0,1,917.53417,-354.2027)"
293
- id="g48-0">
294
- <path
295
- style="fill:#ffffff;stroke-width:2"
296
- inkscape:connector-curvature="0"
297
- transform="translate(200.76,612.69)"
298
- d="m 629.28,5.2188 c -4.9112,0.14702 -7.7498,5.2189 -6.3438,16.5 0.0673,9.4048 1.7209,43.198 4.375,64.094 0.0477,5.3457 -4.9012,7.7349 -7.9375,2.7812 l -3.5,-37.812 -2.9375,-23.719 c 0.73206,-11.908 -17.09,-12.675 -15.5,1.7188 l 1.4062,22.062 6.3312,37.226 c 1.987,8.6801 -1.6208,5.6945 -2.5479,1.0442 -1.8673,-9.9385 -13.534,-38.294 -16.513,-42.767 -3.315,-5.4808 -10.408,-0.72123 -10.461,4.4062 2.4753,14.258 17.409,42.431 17.128,50.121 -3.7745,17.922 4.11,58.032 14.406,60.531 l -0.15625,30.75 50.031,-0.4375 -0.53125,-31.312 c 11.54,2.6436 20.578,-17.788 24.875,-24.25 l 25.156,-21.719 c 14.329,-11.009 7.1705,-29.729 -9.875,-18.688 l -25.156,17.906 c -0.8591,-0.27831 -6.8049,-0.5788 -7.1875,-6.2188 -1.3798,-20.34 10.677,-68.281 9.4062,-75.5 1.4495,-18.131 -11.879,-19.449 -15.188,-2.1562 -3.1948,7.6292 -7.6751,59.523 -13.344,54.406 -6.4134,-0.0554 -3.1458,-54.052 -6.9688,-68.719 -0.22017,-6.6701 -4.6354,-10.38 -8.9688,-10.25 z"
299
- id="path50-1" />
300
- <path
301
- style="fill:none"
302
- inkscape:connector-curvature="0"
303
- d="m 835.57,771.44 c -2.7874,-19.896 0.70612,-33.365 14.033,-41.955"
304
- id="path52-8" />
305
- </g>
306
- <g
307
- id="g4317"
308
- transform="matrix(-1,0,0,1,917.53417,-133.70947)"
309
- style="stroke:#000000;stroke-linecap:round;stroke-linejoin:round">
310
- <path
311
- id="path4319"
312
- d="m 629.28,5.2188 c -4.9112,0.14702 -7.7498,5.2189 -6.3438,16.5 0.0673,9.4048 1.7209,43.198 4.375,64.094 0.0477,5.3457 -4.9012,7.7349 -7.9375,2.7812 l -3.5,-37.812 -2.9375,-23.719 c 0.73206,-11.908 -17.09,-12.675 -15.5,1.7188 l 1.4062,22.062 6.3312,37.226 c 1.987,8.6801 -1.6208,5.6945 -2.5479,1.0442 -1.8673,-9.9385 -13.534,-38.294 -16.513,-42.767 -3.315,-5.4808 -10.408,-0.72123 -10.461,4.4062 2.4753,14.258 17.409,42.431 17.128,50.121 -3.7745,17.922 4.11,58.032 14.406,60.531 l -0.15625,30.75 50.031,-0.4375 -0.53125,-31.312 c 11.54,2.6436 20.578,-17.788 24.875,-24.25 l 25.156,-21.719 c 14.329,-11.009 7.1705,-29.729 -9.875,-18.688 l -25.156,17.906 c -0.8591,-0.27831 -6.8049,-0.5788 -7.1875,-6.2188 -1.3798,-20.34 10.677,-68.281 9.4062,-75.5 1.4495,-18.131 -11.879,-19.449 -15.188,-2.1562 -3.1948,7.6292 -7.6751,59.523 -13.344,54.406 -6.4134,-0.0554 -3.1458,-54.052 -6.9688,-68.719 -0.22017,-6.6701 -4.6354,-10.38 -8.9688,-10.25 z"
313
- transform="translate(200.76,612.69)"
314
- inkscape:connector-curvature="0"
315
- style="fill:#ffffff;stroke-width:2" />
316
- <path
317
- id="path4321"
318
- d="m 835.57,771.44 c -2.7874,-19.896 0.70612,-33.365 14.033,-41.955"
319
- inkscape:connector-curvature="0"
320
- style="fill:none" />
321
- </g>
322
- <g
323
- style="stroke:#000000;stroke-linecap:round;stroke-linejoin:round"
324
- transform="matrix(-1,0,0,1,917.53417,80.843018)"
325
- id="g4323">
326
- <path
327
- style="fill:#ffffff;stroke-width:2"
328
- inkscape:connector-curvature="0"
329
- transform="translate(200.76,612.69)"
330
- d="m 629.28,5.2188 c -4.9112,0.14702 -7.7498,5.2189 -6.3438,16.5 0.0673,9.4048 1.7209,43.198 4.375,64.094 0.0477,5.3457 -4.9012,7.7349 -7.9375,2.7812 l -3.5,-37.812 -2.9375,-23.719 c 0.73206,-11.908 -17.09,-12.675 -15.5,1.7188 l 1.4062,22.062 6.3312,37.226 c 1.987,8.6801 -1.6208,5.6945 -2.5479,1.0442 -1.8673,-9.9385 -13.534,-38.294 -16.513,-42.767 -3.315,-5.4808 -10.408,-0.72123 -10.461,4.4062 2.4753,14.258 17.409,42.431 17.128,50.121 -3.7745,17.922 4.11,58.032 14.406,60.531 l -0.15625,30.75 50.031,-0.4375 -0.53125,-31.312 c 11.54,2.6436 20.578,-17.788 24.875,-24.25 l 25.156,-21.719 c 14.329,-11.009 7.1705,-29.729 -9.875,-18.688 l -25.156,17.906 c -0.8591,-0.27831 -6.8049,-0.5788 -7.1875,-6.2188 -1.3798,-20.34 10.677,-68.281 9.4062,-75.5 1.4495,-18.131 -11.879,-19.449 -15.188,-2.1562 -3.1948,7.6292 -7.6751,59.523 -13.344,54.406 -6.4134,-0.0554 -3.1458,-54.052 -6.9688,-68.719 -0.22017,-6.6701 -4.6354,-10.38 -8.9688,-10.25 z"
331
- id="path4325" />
332
- <path
333
- style="fill:none"
334
- inkscape:connector-curvature="0"
335
- d="m 835.57,771.44 c -2.7874,-19.896 0.70612,-33.365 14.033,-41.955"
336
- id="path4327" />
337
- </g>
338
- <g
339
- id="g4329"
340
- transform="matrix(-1,0,0,1,917.53417,281.7973)"
341
- style="stroke:#000000;stroke-linecap:round;stroke-linejoin:round">
342
- <path
343
- id="path4331"
344
- d="m 629.28,5.2188 c -4.9112,0.14702 -7.7498,5.2189 -6.3438,16.5 0.0673,9.4048 1.7209,43.198 4.375,64.094 0.0477,5.3457 -4.9012,7.7349 -7.9375,2.7812 l -3.5,-37.812 -2.9375,-23.719 c 0.73206,-11.908 -17.09,-12.675 -15.5,1.7188 l 1.4062,22.062 6.3312,37.226 c 1.987,8.6801 -1.6208,5.6945 -2.5479,1.0442 -1.8673,-9.9385 -13.534,-38.294 -16.513,-42.767 -3.315,-5.4808 -10.408,-0.72123 -10.461,4.4062 2.4753,14.258 17.409,42.431 17.128,50.121 -3.7745,17.922 4.11,58.032 14.406,60.531 l -0.15625,30.75 50.031,-0.4375 -0.53125,-31.312 c 11.54,2.6436 20.578,-17.788 24.875,-24.25 l 25.156,-21.719 c 14.329,-11.009 7.1705,-29.729 -9.875,-18.688 l -25.156,17.906 c -0.8591,-0.27831 -6.8049,-0.5788 -7.1875,-6.2188 -1.3798,-20.34 10.677,-68.281 9.4062,-75.5 1.4495,-18.131 -11.879,-19.449 -15.188,-2.1562 -3.1948,7.6292 -7.6751,59.523 -13.344,54.406 -6.4134,-0.0554 -3.1458,-54.052 -6.9688,-68.719 -0.22017,-6.6701 -4.6354,-10.38 -8.9688,-10.25 z"
345
- transform="translate(200.76,612.69)"
346
- inkscape:connector-curvature="0"
347
- style="fill:#ffffff;stroke-width:2" />
348
- <path
349
- id="path4333"
350
- d="m 835.57,771.44 c -2.7874,-19.896 0.70612,-33.365 14.033,-41.955"
351
- inkscape:connector-curvature="0"
352
- style="fill:none" />
353
- </g>
354
- <g
355
- style="stroke:#000000;stroke-linecap:round;stroke-linejoin:round"
356
- transform="matrix(-1,0,0,1,917.53417,489.7973)"
357
- id="g4335">
358
- <path
359
- style="fill:#ffffff;stroke-width:2"
360
- inkscape:connector-curvature="0"
361
- transform="translate(200.76,612.69)"
362
- d="m 629.28,5.2188 c -4.9112,0.14702 -7.7498,5.2189 -6.3438,16.5 0.0673,9.4048 1.7209,43.198 4.375,64.094 0.0477,5.3457 -4.9012,7.7349 -7.9375,2.7812 l -3.5,-37.812 -2.9375,-23.719 c 0.73206,-11.908 -17.09,-12.675 -15.5,1.7188 l 1.4062,22.062 6.3312,37.226 c 1.987,8.6801 -1.6208,5.6945 -2.5479,1.0442 -1.8673,-9.9385 -13.534,-38.294 -16.513,-42.767 -3.315,-5.4808 -10.408,-0.72123 -10.461,4.4062 2.4753,14.258 17.409,42.431 17.128,50.121 -3.7745,17.922 4.11,58.032 14.406,60.531 l -0.15625,30.75 50.031,-0.4375 -0.53125,-31.312 c 11.54,2.6436 20.578,-17.788 24.875,-24.25 l 25.156,-21.719 c 14.329,-11.009 7.1705,-29.729 -9.875,-18.688 l -25.156,17.906 c -0.8591,-0.27831 -6.8049,-0.5788 -7.1875,-6.2188 -1.3798,-20.34 10.677,-68.281 9.4062,-75.5 1.4495,-18.131 -11.879,-19.449 -15.188,-2.1562 -3.1948,7.6292 -7.6751,59.523 -13.344,54.406 -6.4134,-0.0554 -3.1458,-54.052 -6.9688,-68.719 -0.22017,-6.6701 -4.6354,-10.38 -8.9688,-10.25 z"
363
- id="path4337" />
364
- <path
365
- style="fill:none"
366
- inkscape:connector-curvature="0"
367
- d="m 835.57,771.44 c -2.7874,-19.896 0.70612,-33.365 14.033,-41.955"
368
- id="path4339" />
369
- </g>
370
- <g
371
- id="g4341"
372
- transform="matrix(-1,0,0,1,917.53417,701.06529)"
373
- style="stroke:#000000;stroke-linecap:round;stroke-linejoin:round">
374
- <path
375
- id="path4343"
376
- d="m 629.28,5.2188 c -4.9112,0.14702 -7.7498,5.2189 -6.3438,16.5 0.0673,9.4048 1.7209,43.198 4.375,64.094 0.0477,5.3457 -4.9012,7.7349 -7.9375,2.7812 l -3.5,-37.812 -2.9375,-23.719 c 0.73206,-11.908 -17.09,-12.675 -15.5,1.7188 l 1.4062,22.062 6.3312,37.226 c 1.987,8.6801 -1.6208,5.6945 -2.5479,1.0442 -1.8673,-9.9385 -13.534,-38.294 -16.513,-42.767 -3.315,-5.4808 -10.408,-0.72123 -10.461,4.4062 2.4753,14.258 17.409,42.431 17.128,50.121 -3.7745,17.922 4.11,58.032 14.406,60.531 l -0.15625,30.75 50.031,-0.4375 -0.53125,-31.312 c 11.54,2.6436 20.578,-17.788 24.875,-24.25 l 25.156,-21.719 c 14.329,-11.009 7.1705,-29.729 -9.875,-18.688 l -25.156,17.906 c -0.8591,-0.27831 -6.8049,-0.5788 -7.1875,-6.2188 -1.3798,-20.34 10.677,-68.281 9.4062,-75.5 1.4495,-18.131 -11.879,-19.449 -15.188,-2.1562 -3.1948,7.6292 -7.6751,59.523 -13.344,54.406 -6.4134,-0.0554 -3.1458,-54.052 -6.9688,-68.719 -0.22017,-6.6701 -4.6354,-10.38 -8.9688,-10.25 z"
377
- transform="translate(200.76,612.69)"
378
- inkscape:connector-curvature="0"
379
- style="fill:#ffffff;stroke-width:2" />
380
- <path
381
- id="path4345"
382
- d="m 835.57,771.44 c -2.7874,-19.896 0.70612,-33.365 14.033,-41.955"
383
- inkscape:connector-curvature="0"
384
- style="fill:none" />
385
- </g>
386
- <g
387
- id="g4347"
388
- transform="translate(14.889948,-135.54616)"
389
- style="stroke:#000000;stroke-linecap:round;stroke-linejoin:round">
390
- <path
391
- id="path4349"
392
- d="m 267.92,750.68 c -4.297,6.4618 -13.318,26.901 -24.859,24.258 l 0.52243,31.287 -50.021,0.45689 0.1601,-30.762 c -11.862,-2.8788 -20.524,-55.675 -11.845,-66.95 6.3915,-6.4967 46.668,-2.5934 49.378,-20.227 2.3557,-13.326 0.37321,11.848 1.8237,2.9673 1.134,-7.1802 15.529,-12.884 16.37,2.1156 1.7685,7.2188 -4.3743,10.653 -2.9944,30.993 0.38261,5.64 10.737,3.0735 11.596,3.3518 l 25.18,-17.896 c 17.046,-11.041 24.199,7.6665 9.8698,18.676 z"
393
- inkscape:connector-curvature="0"
394
- style="fill:#ffffff;stroke-width:2" />
395
- <path
396
- id="path4351"
397
- d="m 232.4,685.07 c 0.68236,-7.9048 20.749,-9.2117 20.968,4.7529 -3.5542,14.543 -5.3227,29.087 -8.8769,43.63 -2.3371,7.1835 -14.644,7.9883 -15.465,-0.84841 1.3715,-15.914 1.6338,-31.658 3.3738,-47.534 z"
398
- inkscape:connector-curvature="0"
399
- style="fill:#ffffff;stroke-width:1.97889996" />
400
- <path
401
- id="path4353"
402
- d="m 221.33,773.27 c -2.7874,-19.896 -0.87231,-25.376 12.455,-33.966"
403
- inkscape:connector-curvature="0"
404
- style="fill:none" />
405
- <path
406
- id="path4355"
407
- d="m 232.37,684.16 c 1.8802,-8.4355 -15.811,-16.425 -21.983,0.29691 l -1.0152,49.607 c 0.66072,7.3247 18.603,9.159 18.986,-2.0831 2.7542,-16.239 4.0363,-33.007 4.0124,-47.82 z"
408
- inkscape:connector-curvature="0"
409
- style="fill:#ffffff;stroke-width:2" />
410
- <path
411
- id="path4357"
412
- d="m 194.13,701.23 c -2.6002,-12.045 -23.635,-13.058 -18.216,7.1155 3.2863,10.551 6.4857,21.698 12.115,30.151 3.315,5.4808 13.658,2.2304 13.71,-2.8971 l -4.2599,-13.567 z"
413
- inkscape:connector-curvature="0"
414
- style="fill:#ffffff;stroke-width:2" />
415
- <path
416
- id="path4359"
417
- d="m 209.98,688.04 c -0.59249,-7.9133 -19.525,-9.3442 -19.934,4.6162 l 5.2865,22.434 5.0276,21.336 c 2.2922,7.2144 13.027,8.1612 13.983,-0.66368 l -1.9054,-22.789 z"
418
- inkscape:connector-curvature="0"
419
- style="fill:#ffffff;stroke-width:2" />
420
- </g>
421
- <g
422
- id="g4361"
423
- transform="translate(-127.15964,80.006328)"
424
- style="stroke:#000000;stroke-linecap:round;stroke-linejoin:round">
425
- <path
426
- id="path4363"
427
- d="m 409.97,749.68 c -4.2969,6.4618 -13.318,26.901 -24.858,24.258 l 0.5224,31.287 -50.021,0.45689 0.1601,-30.762 c -11.862,-2.8788 -20.524,-55.675 -11.845,-66.95 4.2752,-4.3455 31.522,5.266 29.948,-8.6352 -2.6541,-20.896 3.8003,4.9104 3.733,-4.4945 -2.6467,-21.235 10.031,-21.2 10.5,-6.9704 3.8229,14.667 -2.1474,9.4251 4.266,9.4805 5.6686,5.1166 9.5846,-50.424 12.779,-58.054 3.3084,-17.293 18.623,-15.964 17.173,2.1664 1.2703,7.2188 -8.7748,59.159 -7.395,79.498 0.3826,5.64 4.3084,5.9306 5.1675,6.2089 l 25.18,-17.896 c 17.046,-11.041 24.199,7.6665 9.8698,18.676 z"
428
- inkscape:connector-curvature="0"
429
- style="fill:#ffffff;stroke-width:2" />
430
- <path
431
- id="path4365"
432
- d="m 363.38,772.28 c -2.7874,-19.896 0.70611,-33.365 14.033,-41.955"
433
- inkscape:connector-curvature="0"
434
- style="fill:none" />
435
- <path
436
- id="path4367"
437
- d="m 336.18,700.24 c -2.6002,-12.045 -23.635,-13.058 -18.216,7.1155 3.2863,10.551 4.9705,23.213 10.599,31.666 3.315,5.4808 15.173,0.71518 15.226,-4.4123 l -4.2599,-13.567 z"
438
- inkscape:connector-curvature="0"
439
- style="fill:#ffffff;stroke-width:2" />
440
- <path
441
- id="path4369"
442
- d="m 375.73,684.16 c 1.8802,-8.4355 -15.811,-16.425 -21.983,0.29691 l -1.0152,49.607 c 0.66072,7.3247 18.603,9.159 18.986,-2.0831 2.7542,-16.239 4.0363,-33.007 4.0124,-47.82 z"
443
- inkscape:connector-curvature="0"
444
- style="fill:#ffffff;stroke-width:2" />
445
- <path
446
- id="path4371"
447
- d="m 352.53,683.22 c -1.0204,-7.5825 -20.792,-9.1681 -20.432,4.9812 l 5.2865,24.209 4.0175,21.003 c -0.73205,11.908 17.089,12.668 15.499,-1.7263 l -1.4003,-20.045 z"
448
- inkscape:connector-curvature="0"
449
- style="fill:#ffffff;stroke-width:2" />
450
- </g>
451
- <g
452
- id="g4373"
453
- transform="translate(-275.26009,281.80061)"
454
- style="stroke:#000000;stroke-linecap:round;stroke-linejoin:round">
455
- <path
456
- id="path4375"
457
- d="m 558.07,748.84 c -4.2969,6.4618 -13.318,26.901 -24.858,24.258 l 0.5224,31.287 -50.021,0.45689 0.1601,-30.762 c -11.862,-2.8788 -20.524,-55.675 -11.845,-66.95 4.2752,-4.3455 31.522,5.266 29.948,-8.6352 -2.6541,-20.896 -4.2809,-54.689 -4.3482,-64.093 -2.6467,-21.235 16.816,-20.486 17.286,-6.2562 3.8229,14.667 0.57671,68.667 6.9901,68.722 5.6686,5.1166 8.156,-50.782 11.351,-58.411 3.3084,-17.293 18.623,-15.964 17.173,2.1664 1.2703,7.2188 -8.7748,59.159 -7.395,79.498 0.38259,5.64 4.3084,5.9306 5.1675,6.2089 l 25.18,-17.896 c 17.046,-11.041 24.199,7.6665 9.8698,18.676 z"
458
- inkscape:connector-curvature="0"
459
- style="fill:#ffffff;stroke-width:2" />
460
- <path
461
- id="path4377"
462
- d="m 511.48,771.44 c -2.7874,-19.896 0.70612,-33.365 14.033,-41.955"
463
- inkscape:connector-curvature="0"
464
- style="fill:none" />
465
- <path
466
- id="path4379"
467
- d="m 484.28,699.4 c -2.6002,-12.045 -23.635,-13.058 -18.216,7.1155 3.2863,10.551 4.9705,23.213 10.599,31.666 3.315,5.4808 15.173,0.71518 15.226,-4.4123 l -4.2599,-13.567 z"
468
- inkscape:connector-curvature="0"
469
- style="fill:#ffffff;stroke-width:2" />
470
- <path
471
- id="path4381"
472
- d="m 500.63,682.38 c -1.0204,-7.5825 -20.792,-9.1681 -20.432,4.9812 l 5.2865,24.209 4.0175,21.003 c -0.73206,11.908 17.089,12.668 15.499,-1.7263 l -1.4003,-20.045 z"
473
- inkscape:connector-curvature="0"
474
- style="fill:#ffffff;stroke-width:2" />
475
- </g>
476
- <g
477
- id="g4383"
478
- transform="translate(-437.63435,489.8053)"
479
- style="stroke:#000000;stroke-linecap:round;stroke-linejoin:round">
480
- <path
481
- id="path4385"
482
- d="m 669.34,617.9 c -4.9112,0.14702 -9.7498,5.2189 -8.3438,16.5 0.0673,9.4048 1.7209,37.198 4.375,58.094 0.73445,6.193 -3.594,8.2435 -5.9375,2.7679 l -3.5089,-31.804 -2.9286,-21.714 c 0.73206,-11.908 -17.09,-12.675 -15.5,1.7188 l 1.4062,20.062 6.5312,42.531 c -4.6119,-0.26532 -8.6061,-0.38607 -10.031,1.0625 -8.6791,11.275 -0.0179,64.09 11.844,66.969 l -0.15625,30.75 50.031,-0.4375 -0.53125,-31.312 c 11.54,2.6436 20.578,-17.788 24.875,-24.25 l 25.156,-21.719 c 14.329,-11.009 7.1705,-29.729 -9.875,-18.688 l -25.156,17.906 c -0.8591,-0.27831 -4.8049,-0.5788 -5.1875,-6.2188 -1.3798,-20.34 8.6766,-72.281 7.4062,-79.5 1.4495,-18.131 -13.879,-19.449 -17.188,-2.1562 -3.1948,7.6292 -5.6751,63.523 -11.344,58.406 -6.4134,-0.0554 -3.1458,-54.052 -6.9688,-68.719 -0.22017,-6.6701 -4.6354,-10.38 -8.9688,-10.25 z"
483
- inkscape:connector-curvature="0"
484
- style="fill:#ffffff;stroke-width:2" />
485
- <path
486
- id="path4387"
487
- d="m 674.85,771.44 c -2.7874,-19.896 0.70612,-33.365 14.033,-41.955"
488
- inkscape:connector-curvature="0"
489
- style="fill:none" />
490
- <path
491
- id="path4389"
492
- d="m 645.66,701.4 c -2.6002,-12.045 -23.635,-13.058 -18.216,7.1155 3.2863,10.551 4.9705,23.213 10.599,31.666 3.315,5.4808 15.173,0.71518 15.226,-4.4123 l -4.2599,-13.567 z"
493
- inkscape:connector-curvature="0"
494
- style="fill:#ffffff;stroke-width:2" />
495
- </g>
496
- <g
497
- id="g4391"
498
- transform="translate(-592.9125,701.06529)"
499
- style="stroke:#000000;stroke-linecap:round;stroke-linejoin:round">
500
- <path
501
- id="path4393"
502
- d="m 629.28,5.2188 c -4.9112,0.14702 -7.7498,5.2189 -6.3438,16.5 0.0673,9.4048 1.7209,43.198 4.375,64.094 0.0477,5.3457 -4.9012,7.7349 -7.9375,2.7812 l -3.5,-37.812 -2.9375,-23.719 c 0.73206,-11.908 -17.09,-12.675 -15.5,1.7188 l 1.4062,22.062 6.3312,37.226 c 1.987,8.6801 -1.6208,5.6945 -2.5479,1.0442 -1.8673,-9.9385 -13.534,-38.294 -16.513,-42.767 -3.315,-5.4808 -10.408,-0.72123 -10.461,4.4062 2.4753,14.258 17.409,42.431 17.128,50.121 -3.7745,17.922 4.11,58.032 14.406,60.531 l -0.15625,30.75 50.031,-0.4375 -0.53125,-31.312 c 11.54,2.6436 20.578,-17.788 24.875,-24.25 l 25.156,-21.719 c 14.329,-11.009 7.1705,-29.729 -9.875,-18.688 l -25.156,17.906 c -0.8591,-0.27831 -6.8049,-0.5788 -7.1875,-6.2188 -1.3798,-20.34 10.677,-68.281 9.4062,-75.5 1.4495,-18.131 -11.879,-19.449 -15.188,-2.1562 -3.1948,7.6292 -7.6751,59.523 -13.344,54.406 -6.4134,-0.0554 -3.1458,-54.052 -6.9688,-68.719 -0.22017,-6.6701 -4.6354,-10.38 -8.9688,-10.25 z"
503
- transform="translate(200.76,612.69)"
504
- inkscape:connector-curvature="0"
505
- style="fill:#ffffff;stroke-width:2" />
506
- <path
507
- id="path4395"
508
- d="m 835.57,771.44 c -2.7874,-19.896 0.70612,-33.365 14.033,-41.955"
509
- inkscape:connector-curvature="0"
510
- style="fill:none" />
511
- </g>
512
- </svg>
@@ -1,146 +0,0 @@
1
- import * as RX from 'reactxp';
2
- import Keybinder from '../appUtilities/Keybinder'
3
- import FingerCounter from './fingerCounter/fingerCounter'
4
-
5
- export interface NumpadProps extends RX.CommonProps {
6
- num: number;
7
- // counted?: number;
8
- }
9
- interface NumpadState {
10
- counted?: number;
11
- }
12
-
13
- const styles = {
14
- row: RX.Styles.createViewStyle({
15
- flexDirection: 'row',
16
- backgroundColor: "white",
17
- }, false)
18
- }
19
-
20
- const keys = [
21
- [7, 8, 9],
22
- [4, 5, 6],
23
- [1, 2, 3],
24
- [0]
25
- ];
26
-
27
- const highlights: Array<Array<number>> = [
28
- [0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
29
- [1, 2, 3, 4, 5, 6, 7, 8, 9, 0],
30
- [2, 4, 6, 8, 0, 2, 4, 6, 8, 0],
31
- [3, 6, 9, 2, 5, 8, 1, 4, 7, 0],
32
- [4, 8, 2, 6, 0, 4, 8, 2, 6, 0],
33
- [5, 0, 5, 0, 5, 0, 5, 0, 5, 0],
34
- [6, 2, 8, 4, 0, 6, 2, 8, 4, 0],
35
- [7, 4, 1, 8, 5, 2, 9, 6, 3, 0],
36
- [8, 6, 4, 2, 0, 8, 6, 4, 2, 0],
37
- [9, 8, 7, 6, 5, 4, 3, 2, 1, 0],
38
- [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
39
- ]
40
-
41
- class Numpad extends RX.Component<NumpadProps, NumpadState> {
42
- private UIbindings: Keybinder;
43
-
44
- constructor(props: NumpadProps) {
45
- super();
46
-
47
- this.UIbindings = new Keybinder([
48
- {
49
- binding: 'left',
50
- callback: (e: ExtendedKeyboardEvent) => {
51
- this.setState({
52
- counted: Math.max(0, (this.state.counted - 1))
53
- })
54
- }
55
- },
56
- {
57
- binding: 'right',
58
- callback: (e: ExtendedKeyboardEvent) => {
59
- this.setState({
60
- counted: Math.min(10, (this.state.counted + 1))
61
- });
62
- }
63
- }
64
- ])
65
-
66
- this.state = {
67
- counted: 0
68
- }
69
- }
70
-
71
- shouldComponentUpdate(nextProps: NumpadProps, nextState: NumpadState) {
72
- if (nextProps) {
73
- this.setState({
74
- counted: 0
75
- })
76
- }
77
- return true;
78
- }
79
-
80
- componentDidMount() {
81
- this.UIbindings.bind();
82
- }
83
-
84
- componentWillUnmount() {
85
- this.UIbindings.unbind();
86
- }
87
-
88
- render() {
89
- const num = this.props.num;
90
- const counted = this.state.counted;
91
-
92
- return (
93
- <RX.View>
94
- <div>
95
- {keys.map((keyrow, index) => {
96
- return this.renderKeyRow(keyrow, index);
97
- })}
98
- </div>
99
- <FingerCounter counted={counted} />
100
- </RX.View>
101
- )
102
- }
103
-
104
- renderKeyRow(keys: Array<number>, index: number) {
105
- const style = RX.Styles.createViewStyle({
106
- flexDirection: "row",
107
-
108
- }, false)
109
-
110
- return (
111
- <RX.View style={style} key={index} >
112
- {keys.map((key, index) => {
113
- return this.renderKey(key, index);
114
- })
115
- }
116
- </RX.View >
117
- )
118
- }
119
-
120
- renderKey(key: number, index: number) {
121
- return (
122
- <RX.Text style={this.getKeyStyle(key)} key={index}> {key} </RX.Text>
123
- );
124
- }
125
- getKeyStyle(key: number) {
126
- return RX.Styles.createTextStyle({
127
- borderStyle: "solid",
128
- borderColor: "black",
129
- borderWidth: 1,
130
- borderRadius: 4,
131
- padding: 4,
132
- margin: 3,
133
- backgroundColor: this.getBackgroundColor(key)
134
- }, false);
135
- }
136
-
137
- getBackgroundColor(key: number): string {
138
- if (highlights[this.props.num][this.state.counted - 1] == key) {
139
- return 'green';
140
- }
141
-
142
- return 'white';
143
- }
144
- }
145
-
146
- export default Numpad;