underpost 2.7.1 → 2.7.2
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.
- package/.dockerignore +13 -13
- package/.env.development +7 -7
- package/.env.production +7 -7
- package/.env.test +7 -7
- package/.github/workflows/publish.yml +26 -0
- package/.nycrc +9 -9
- package/.prettierignore +12 -12
- package/.prettierrc +9 -9
- package/.vscode/extensions.json +72 -72
- package/.vscode/settings.json +100 -99
- package/Dockerfile +89 -89
- package/LICENSE +21 -21
- package/README.md +96 -96
- package/bin/db.js +172 -119
- package/bin/deploy.js +582 -661
- package/bin/dns.js +1 -1
- package/bin/file.js +92 -92
- package/bin/index.js +53 -53
- package/bin/install.js +398 -357
- package/bin/shortcut.js +44 -44
- package/bin/ssl.js +65 -64
- package/bin/util.js +182 -182
- package/bin/vs.js +35 -35
- package/conf.js +251 -249
- package/docker-compose.yml +67 -67
- package/jsconfig.json +7 -7
- package/jsdoc.json +32 -32
- package/nodemon.json +6 -6
- package/package.json +137 -132
- package/prometheus.yml +36 -36
- package/setup.sh +24 -24
- package/src/api/core/core.controller.js +69 -69
- package/src/api/core/core.model.js +11 -11
- package/src/api/core/core.router.js +23 -23
- package/src/api/core/core.service.js +29 -29
- package/src/api/crypto/crypto.controller.js +51 -51
- package/src/api/crypto/crypto.model.js +23 -23
- package/src/api/crypto/crypto.router.js +20 -20
- package/src/api/crypto/crypto.service.js +64 -64
- package/src/api/default/default.controller.js +69 -69
- package/src/api/default/default.model.js +20 -20
- package/src/api/default/default.router.js +23 -23
- package/src/api/default/default.service.js +31 -31
- package/src/api/file/file.controller.js +53 -51
- package/src/api/file/file.model.js +19 -19
- package/src/api/file/file.router.js +21 -20
- package/src/api/file/file.service.js +76 -70
- package/src/api/instance/instance.controller.js +69 -69
- package/src/api/instance/instance.model.js +36 -36
- package/src/api/instance/instance.router.js +33 -33
- package/src/api/instance/instance.service.js +48 -48
- package/src/api/test/test.controller.js +59 -59
- package/src/api/test/test.model.js +14 -14
- package/src/api/test/test.router.js +21 -21
- package/src/api/test/test.service.js +35 -35
- package/src/api/user/user.build.js +16 -0
- package/src/api/user/user.controller.js +70 -70
- package/src/api/user/user.model.js +65 -65
- package/src/api/user/user.router.js +345 -345
- package/src/api/user/user.service.js +479 -479
- package/src/api.js +23 -23
- package/src/client/Default.index.js +40 -40
- package/src/client/components/core/Account.js +290 -290
- package/src/client/components/core/AgGrid.js +160 -160
- package/src/client/components/core/Auth.js +19 -19
- package/src/client/components/core/Badge.js +32 -32
- package/src/client/components/core/BlockChain.js +41 -41
- package/src/client/components/core/Blog.js +9 -9
- package/src/client/components/core/BtnIcon.js +101 -94
- package/src/client/components/core/CalendarCore.js +458 -319
- package/src/client/components/core/Chat.js +64 -64
- package/src/client/components/core/ColorPalette.js +5267 -5267
- package/src/client/components/core/CommonJs.js +735 -732
- package/src/client/components/core/Content.js +193 -49
- package/src/client/components/core/Css.js +1064 -1027
- package/src/client/components/core/CssCore.js +817 -796
- package/src/client/components/core/D3Chart.js +44 -44
- package/src/client/components/core/Docs.js +229 -229
- package/src/client/components/core/DropDown.js +164 -164
- package/src/client/components/core/EventsUI.js +46 -54
- package/src/client/components/core/FileExplorer.js +699 -624
- package/src/client/components/core/FullScreen.js +45 -45
- package/src/client/components/core/Input.js +346 -259
- package/src/client/components/core/JoyStick.js +77 -77
- package/src/client/components/core/Keyboard.js +73 -73
- package/src/client/components/core/LoadingAnimation.js +179 -157
- package/src/client/components/core/LogIn.js +187 -181
- package/src/client/components/core/LogOut.js +58 -52
- package/src/client/components/core/Logger.js +26 -26
- package/src/client/components/core/Modal.js +1612 -1596
- package/src/client/components/core/NotificationManager.js +84 -84
- package/src/client/components/core/Panel.js +613 -413
- package/src/client/components/core/PanelForm.js +468 -0
- package/src/client/components/core/Polyhedron.js +162 -162
- package/src/client/components/core/Recover.js +204 -204
- package/src/client/components/core/Responsive.js +53 -53
- package/src/client/components/core/RichText.js +51 -27
- package/src/client/components/core/Router.js +76 -77
- package/src/client/components/core/Scroll.js +34 -0
- package/src/client/components/core/SignUp.js +125 -125
- package/src/client/components/core/SocketIo.js +72 -72
- package/src/client/components/core/Stream.js +113 -113
- package/src/client/components/core/ToggleSwitch.js +87 -87
- package/src/client/components/core/ToolTip.js +26 -26
- package/src/client/components/core/Translate.js +437 -408
- package/src/client/components/core/Validator.js +100 -100
- package/src/client/components/core/VanillaJs.js +460 -457
- package/src/client/components/core/Wallet.js +106 -106
- package/src/client/components/core/Webhook.js +25 -25
- package/src/client/components/core/Worker.js +272 -272
- package/src/client/components/default/CommonDefault.js +29 -29
- package/src/client/components/default/CssDefault.js +13 -13
- package/src/client/components/default/ElementsDefault.js +38 -38
- package/src/client/components/default/LogInDefault.js +41 -41
- package/src/client/components/default/LogOutDefault.js +28 -28
- package/src/client/components/default/MenuDefault.js +389 -389
- package/src/client/components/default/RoutesDefault.js +48 -48
- package/src/client/components/default/SettingsDefault.js +16 -16
- package/src/client/components/default/SignUpDefault.js +9 -9
- package/src/client/components/default/SocketIoDefault.js +54 -54
- package/src/client/components/default/TranslateDefault.js +7 -7
- package/src/client/public/default/assets/mailer/api-user-check.png +0 -0
- package/src/client/public/default/assets/mailer/api-user-invalid-token.png +0 -0
- package/src/client/public/default/assets/mailer/api-user-recover.png +0 -0
- package/src/client/public/default/browserconfig.xml +11 -11
- package/src/client/public/default/manifest.webmanifest +68 -68
- package/src/client/public/default/plantuml/client-conf.svg +1 -0
- package/src/client/public/default/plantuml/client-schema.svg +1 -0
- package/src/client/public/default/plantuml/cron-conf.svg +1 -0
- package/src/client/public/default/plantuml/cron-schema.svg +1 -0
- package/src/client/public/default/plantuml/server-conf.svg +1 -0
- package/src/client/public/default/plantuml/server-schema.svg +1 -0
- package/src/client/public/default/plantuml/ssr-conf.svg +1 -0
- package/src/client/public/default/plantuml/ssr-schema.svg +1 -0
- package/src/client/public/default/sitemap +147 -147
- package/src/client/public/default/yandex-browser-manifest.json +8 -8
- package/src/client/public/doc/sitemap +147 -147
- package/src/client/public/test/sitemap +147 -147
- package/src/client/services/core/core.service.js +170 -152
- package/src/client/services/crypto/crypto.service.js +70 -70
- package/src/client/services/default/default.management.js +345 -345
- package/src/client/services/default/default.service.js +89 -89
- package/src/client/services/file/file.service.js +70 -70
- package/src/client/services/instance/instance.management.js +74 -74
- package/src/client/services/instance/instance.service.js +89 -89
- package/src/client/services/test/test.service.js +70 -70
- package/src/client/services/user/user.management.js +50 -50
- package/src/client/services/user/user.service.js +89 -89
- package/src/client/ssr/Render.js +16 -16
- package/src/client/ssr/body-components/CacheControl.js +114 -113
- package/src/client/ssr/body-components/DefaultSplashScreen.js +79 -79
- package/src/client/ssr/email-components/DefaultRecoverEmail.js +21 -21
- package/src/client/ssr/email-components/DefaultVerifyEmail.js +17 -17
- package/src/client/ssr/head-components/Css.js +241 -241
- package/src/client/ssr/head-components/DefaultScripts.js +3 -3
- package/src/client/ssr/head-components/Microdata.js +11 -11
- package/src/client/ssr/head-components/Production.js +1 -1
- package/src/client/ssr/head-components/PwaDefault.js +59 -59
- package/src/client/ssr/head-components/Seo.js +14 -14
- package/src/client/sw/default.sw.js +201 -201
- package/src/client/sw/template.sw.js +84 -84
- package/src/client.build.js +22 -22
- package/src/client.dev.js +21 -21
- package/src/cron.js +25 -25
- package/src/db/DataBaseProvider.js +34 -34
- package/src/db/mariadb/MariaDB.js +33 -33
- package/src/db/mongo/MongooseDB.js +46 -46
- package/src/dns.js +22 -22
- package/src/index.js +42 -29
- package/src/mailer/EmailRender.js +69 -69
- package/src/mailer/MailerProvider.js +96 -96
- package/src/proxy.js +22 -22
- package/src/runtime/lampp/Lampp.js +69 -44
- package/src/runtime/nginx/Nginx.js +3 -3
- package/src/runtime/xampp/Xampp.js +49 -49
- package/src/server/auth.js +235 -204
- package/src/server/backup.js +101 -94
- package/src/server/client-build-live.js +72 -72
- package/src/server/client-build.js +705 -699
- package/src/server/client-dev-server.js +60 -58
- package/src/server/client-formatted.js +48 -48
- package/src/server/client-icons.js +149 -150
- package/src/server/conf.js +860 -611
- package/src/server/dns.js +98 -98
- package/src/server/downloader.js +42 -42
- package/src/server/logger.js +180 -180
- package/src/server/network.js +122 -122
- package/src/server/peer.js +33 -33
- package/src/server/process.js +66 -66
- package/src/server/prompt-optimizer.js +28 -28
- package/src/server/proxy.js +118 -118
- package/src/server/runtime.js +444 -393
- package/src/server/ssl.js +109 -107
- package/src/server.js +25 -25
- package/src/ws/IoInterface.js +45 -45
- package/src/ws/IoServer.js +39 -39
- package/src/ws/core/channels/core.ws.chat.js +23 -23
- package/src/ws/core/channels/core.ws.mailer.js +35 -35
- package/src/ws/core/channels/core.ws.stream.js +31 -31
- package/src/ws/core/core.ws.connection.js +28 -28
- package/src/ws/core/core.ws.emit.js +14 -14
- package/src/ws/core/core.ws.server.js +24 -24
- package/src/ws/core/management/core.ws.chat.js +8 -8
- package/src/ws/core/management/core.ws.mailer.js +16 -16
- package/src/ws/core/management/core.ws.stream.js +8 -8
- package/src/ws/default/channels/default.ws.main.js +16 -16
- package/src/ws/default/default.ws.connection.js +22 -22
- package/src/ws/default/default.ws.emit.js +14 -14
- package/src/ws/default/default.ws.server.js +20 -20
- package/src/ws/default/management/default.ws.main.js +8 -8
- package/startup.js +11 -11
- package/supervisord-openssh-server.conf +4 -4
- package/test/api.test.js +60 -60
|
@@ -1,241 +1,241 @@
|
|
|
1
|
-
// https://css-loaders.com/pulsing/
|
|
2
|
-
|
|
3
|
-
SrrComponent = () => html`
|
|
4
|
-
<style>
|
|
5
|
-
body {
|
|
6
|
-
margin: 0;
|
|
7
|
-
padding: 0;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.ssr-fl {
|
|
11
|
-
position: relative;
|
|
12
|
-
display: flow-root;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.ssr-abs,
|
|
16
|
-
.ssr-in {
|
|
17
|
-
display: block;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.ssr-fll {
|
|
21
|
-
float: left;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.ssr-flr {
|
|
25
|
-
float: right;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.ssr-abs {
|
|
29
|
-
position: absolute;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.ssr-in,
|
|
33
|
-
.ssr-inl {
|
|
34
|
-
position: relative;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.ssr-inl {
|
|
38
|
-
display: inline-table;
|
|
39
|
-
display: -webkit-inline-table;
|
|
40
|
-
display: -moz-inline-table;
|
|
41
|
-
display: -ms-inline-table;
|
|
42
|
-
display: -o-inline-table;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.ssr-fix {
|
|
46
|
-
position: fixed;
|
|
47
|
-
display: block;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.ssr-stq {
|
|
51
|
-
position: sticky;
|
|
52
|
-
/* require defined at least top, bottom, left o right */
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.ssr-wfa {
|
|
56
|
-
width: fill-available;
|
|
57
|
-
width: -webkit-fill-available;
|
|
58
|
-
width: -moz-fill-available;
|
|
59
|
-
width: -ms-fill-available;
|
|
60
|
-
width: -o-fill-available;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.ssr-wft {
|
|
64
|
-
width: fit-content;
|
|
65
|
-
width: -webkit-fit-content;
|
|
66
|
-
width: -moz-fit-content;
|
|
67
|
-
width: -ms-fit-content;
|
|
68
|
-
width: -o-fit-content;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.ssr-wfm {
|
|
72
|
-
width: max-content;
|
|
73
|
-
width: -webkit-max-content;
|
|
74
|
-
width: -moz-max-content;
|
|
75
|
-
width: -ms-max-content;
|
|
76
|
-
width: -o-max-content;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.ssr-negative-color {
|
|
80
|
-
filter: invert(1);
|
|
81
|
-
-webkit-filter: invert(1);
|
|
82
|
-
-moz-filter: invert(1);
|
|
83
|
-
-ms-filter: invert(1);
|
|
84
|
-
-o-filter: invert(1);
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
.ssr-no-drag {
|
|
88
|
-
user-drag: none;
|
|
89
|
-
-webkit-user-drag: none;
|
|
90
|
-
-moz-user-drag: none;
|
|
91
|
-
-ms-user-drag: none;
|
|
92
|
-
-o-user-drag: none;
|
|
93
|
-
user-select: none;
|
|
94
|
-
-webkit-user-select: none;
|
|
95
|
-
-moz-user-select: none;
|
|
96
|
-
-ms-user-select: none;
|
|
97
|
-
-o-user-select: none;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.ssr-center {
|
|
101
|
-
transform: translate(-50%, -50%);
|
|
102
|
-
top: 50%;
|
|
103
|
-
left: 50%;
|
|
104
|
-
width: 100%;
|
|
105
|
-
text-align: center;
|
|
106
|
-
}
|
|
107
|
-
.ssr-gray {
|
|
108
|
-
filter: grayscale(1);
|
|
109
|
-
}
|
|
110
|
-
</style>
|
|
111
|
-
<style>
|
|
112
|
-
.ssr-background-image {
|
|
113
|
-
background-size: cover;
|
|
114
|
-
background-position: center;
|
|
115
|
-
height: 100vh;
|
|
116
|
-
width: 100vw;
|
|
117
|
-
object-fit: cover;
|
|
118
|
-
z-index: -1;
|
|
119
|
-
top: 0px;
|
|
120
|
-
left: 0px;
|
|
121
|
-
pointer-events: none;
|
|
122
|
-
}
|
|
123
|
-
.ssr-background {
|
|
124
|
-
top: 0px;
|
|
125
|
-
left: 0px;
|
|
126
|
-
height: 100%;
|
|
127
|
-
width: 100%;
|
|
128
|
-
z-index: 11;
|
|
129
|
-
}
|
|
130
|
-
.ssr-shimmer {
|
|
131
|
-
height: 100%;
|
|
132
|
-
background-image: linear-gradient(
|
|
133
|
-
to right,
|
|
134
|
-
rgb(255, 255, 255, 0.5) 0%,
|
|
135
|
-
rgba(200, 200, 200, 0.5) 30%,
|
|
136
|
-
rgba(220, 220, 220, 0.5) 50%,
|
|
137
|
-
rgba(255, 255, 255, 0.5) 100%
|
|
138
|
-
);
|
|
139
|
-
animation: ssr-shimmer 3s linear infinite;
|
|
140
|
-
}
|
|
141
|
-
@keyframes ssr-shimmer {
|
|
142
|
-
0% {
|
|
143
|
-
background-position: -30px 0;
|
|
144
|
-
}
|
|
145
|
-
100% {
|
|
146
|
-
background-position: 80px 0;
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
.ssr-shimmer-dark {
|
|
150
|
-
height: 100%;
|
|
151
|
-
background-image: linear-gradient(
|
|
152
|
-
to right,
|
|
153
|
-
rgb(5, 5, 5, 0.5) 0%,
|
|
154
|
-
rgba(10, 10, 10, 0.5) 30%,
|
|
155
|
-
rgba(15, 15, 15, 0.5) 40%,
|
|
156
|
-
rgba(10, 10, 10, 0.5) 70%,
|
|
157
|
-
rgba(5, 5, 5, 0.5) 100%
|
|
158
|
-
);
|
|
159
|
-
animation: ssr-shimmer-dark 3s linear infinite;
|
|
160
|
-
}
|
|
161
|
-
@keyframes ssr-shimmer-dark {
|
|
162
|
-
0% {
|
|
163
|
-
background-position: -30px 0;
|
|
164
|
-
}
|
|
165
|
-
100% {
|
|
166
|
-
background-position: 80px 0;
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
.ssr-shimmer-dark-search-box {
|
|
170
|
-
height: 100%;
|
|
171
|
-
background-image: linear-gradient(
|
|
172
|
-
to right,
|
|
173
|
-
rgb(5, 5, 5, 0.5) 0%,
|
|
174
|
-
rgba(10, 10, 10, 0.5) 30%,
|
|
175
|
-
rgba(15, 15, 15, 0.5) 40%,
|
|
176
|
-
rgba(10, 10, 10, 0.5) 70%,
|
|
177
|
-
rgba(5, 5, 5, 0.5) 100%
|
|
178
|
-
);
|
|
179
|
-
animation: ssr-shimmer-dark-search-box 3s linear infinite;
|
|
180
|
-
}
|
|
181
|
-
@keyframes ssr-shimmer-dark-search-box {
|
|
182
|
-
0% {
|
|
183
|
-
background-position: -290px 0;
|
|
184
|
-
}
|
|
185
|
-
100% {
|
|
186
|
-
background-position: 400px 0;
|
|
187
|
-
}
|
|
188
|
-
}
|
|
189
|
-
.ssr-shimmer-search-box {
|
|
190
|
-
height: 100%;
|
|
191
|
-
background-image: linear-gradient(
|
|
192
|
-
to right,
|
|
193
|
-
rgb(255, 255, 255, 0.5) 0%,
|
|
194
|
-
rgba(200, 200, 200, 0.5) 30%,
|
|
195
|
-
rgba(220, 220, 220, 0.5) 50%,
|
|
196
|
-
rgba(255, 255, 255, 0.5) 100%
|
|
197
|
-
);
|
|
198
|
-
animation: ssr-shimmer-search-box 3s linear infinite;
|
|
199
|
-
}
|
|
200
|
-
@keyframes ssr-shimmer-search-box {
|
|
201
|
-
0% {
|
|
202
|
-
background-position: -290px 0;
|
|
203
|
-
}
|
|
204
|
-
100% {
|
|
205
|
-
background-position: 400px 0;
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
.ssr-search-box {
|
|
209
|
-
width: 290px;
|
|
210
|
-
height: 33.3px;
|
|
211
|
-
top: 8.5px;
|
|
212
|
-
left: 100px;
|
|
213
|
-
border-radius: 8px;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
.ssr-btn {
|
|
217
|
-
border-radius: 8px;
|
|
218
|
-
overflow: hidden;
|
|
219
|
-
/* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
|
|
220
|
-
color: #606060;
|
|
221
|
-
/* box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 10px 30px 0 rgba(0, 0, 0, 0.3); */
|
|
222
|
-
}
|
|
223
|
-
.ssr-sub-shimmer-loader {
|
|
224
|
-
background: linear-gradient(
|
|
225
|
-
90deg,
|
|
226
|
-
rgba(190, 190, 190, 0.5) 33%,
|
|
227
|
-
rgba(150, 150, 150, 0.5) 50%,
|
|
228
|
-
rgba(190, 190, 190, 0.5) 66%
|
|
229
|
-
)
|
|
230
|
-
rgba(220, 220, 220, 0.5);
|
|
231
|
-
background-size: 300% 100%;
|
|
232
|
-
animation: ssr-sub-shimmer-l1 1s infinite linear;
|
|
233
|
-
border-radius: 5px;
|
|
234
|
-
}
|
|
235
|
-
@keyframes ssr-sub-shimmer-l1 {
|
|
236
|
-
0% {
|
|
237
|
-
background-position: right;
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
</style>
|
|
241
|
-
`;
|
|
1
|
+
// https://css-loaders.com/pulsing/
|
|
2
|
+
|
|
3
|
+
SrrComponent = () => html`
|
|
4
|
+
<style>
|
|
5
|
+
body {
|
|
6
|
+
margin: 0;
|
|
7
|
+
padding: 0;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.ssr-fl {
|
|
11
|
+
position: relative;
|
|
12
|
+
display: flow-root;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.ssr-abs,
|
|
16
|
+
.ssr-in {
|
|
17
|
+
display: block;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.ssr-fll {
|
|
21
|
+
float: left;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.ssr-flr {
|
|
25
|
+
float: right;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.ssr-abs {
|
|
29
|
+
position: absolute;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.ssr-in,
|
|
33
|
+
.ssr-inl {
|
|
34
|
+
position: relative;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.ssr-inl {
|
|
38
|
+
display: inline-table;
|
|
39
|
+
display: -webkit-inline-table;
|
|
40
|
+
display: -moz-inline-table;
|
|
41
|
+
display: -ms-inline-table;
|
|
42
|
+
display: -o-inline-table;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.ssr-fix {
|
|
46
|
+
position: fixed;
|
|
47
|
+
display: block;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.ssr-stq {
|
|
51
|
+
position: sticky;
|
|
52
|
+
/* require defined at least top, bottom, left o right */
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.ssr-wfa {
|
|
56
|
+
width: fill-available;
|
|
57
|
+
width: -webkit-fill-available;
|
|
58
|
+
width: -moz-fill-available;
|
|
59
|
+
width: -ms-fill-available;
|
|
60
|
+
width: -o-fill-available;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.ssr-wft {
|
|
64
|
+
width: fit-content;
|
|
65
|
+
width: -webkit-fit-content;
|
|
66
|
+
width: -moz-fit-content;
|
|
67
|
+
width: -ms-fit-content;
|
|
68
|
+
width: -o-fit-content;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.ssr-wfm {
|
|
72
|
+
width: max-content;
|
|
73
|
+
width: -webkit-max-content;
|
|
74
|
+
width: -moz-max-content;
|
|
75
|
+
width: -ms-max-content;
|
|
76
|
+
width: -o-max-content;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.ssr-negative-color {
|
|
80
|
+
filter: invert(1);
|
|
81
|
+
-webkit-filter: invert(1);
|
|
82
|
+
-moz-filter: invert(1);
|
|
83
|
+
-ms-filter: invert(1);
|
|
84
|
+
-o-filter: invert(1);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.ssr-no-drag {
|
|
88
|
+
user-drag: none;
|
|
89
|
+
-webkit-user-drag: none;
|
|
90
|
+
-moz-user-drag: none;
|
|
91
|
+
-ms-user-drag: none;
|
|
92
|
+
-o-user-drag: none;
|
|
93
|
+
user-select: none;
|
|
94
|
+
-webkit-user-select: none;
|
|
95
|
+
-moz-user-select: none;
|
|
96
|
+
-ms-user-select: none;
|
|
97
|
+
-o-user-select: none;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.ssr-center {
|
|
101
|
+
transform: translate(-50%, -50%);
|
|
102
|
+
top: 50%;
|
|
103
|
+
left: 50%;
|
|
104
|
+
width: 100%;
|
|
105
|
+
text-align: center;
|
|
106
|
+
}
|
|
107
|
+
.ssr-gray {
|
|
108
|
+
filter: grayscale(1);
|
|
109
|
+
}
|
|
110
|
+
</style>
|
|
111
|
+
<style>
|
|
112
|
+
.ssr-background-image {
|
|
113
|
+
background-size: cover;
|
|
114
|
+
background-position: center;
|
|
115
|
+
height: 100vh;
|
|
116
|
+
width: 100vw;
|
|
117
|
+
object-fit: cover;
|
|
118
|
+
z-index: -1;
|
|
119
|
+
top: 0px;
|
|
120
|
+
left: 0px;
|
|
121
|
+
pointer-events: none;
|
|
122
|
+
}
|
|
123
|
+
.ssr-background {
|
|
124
|
+
top: 0px;
|
|
125
|
+
left: 0px;
|
|
126
|
+
height: 100%;
|
|
127
|
+
width: 100%;
|
|
128
|
+
z-index: 11;
|
|
129
|
+
}
|
|
130
|
+
.ssr-shimmer {
|
|
131
|
+
height: 100%;
|
|
132
|
+
background-image: linear-gradient(
|
|
133
|
+
to right,
|
|
134
|
+
rgb(255, 255, 255, 0.5) 0%,
|
|
135
|
+
rgba(200, 200, 200, 0.5) 30%,
|
|
136
|
+
rgba(220, 220, 220, 0.5) 50%,
|
|
137
|
+
rgba(255, 255, 255, 0.5) 100%
|
|
138
|
+
);
|
|
139
|
+
animation: ssr-shimmer 3s linear infinite;
|
|
140
|
+
}
|
|
141
|
+
@keyframes ssr-shimmer {
|
|
142
|
+
0% {
|
|
143
|
+
background-position: -30px 0;
|
|
144
|
+
}
|
|
145
|
+
100% {
|
|
146
|
+
background-position: 80px 0;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
.ssr-shimmer-dark {
|
|
150
|
+
height: 100%;
|
|
151
|
+
background-image: linear-gradient(
|
|
152
|
+
to right,
|
|
153
|
+
rgb(5, 5, 5, 0.5) 0%,
|
|
154
|
+
rgba(10, 10, 10, 0.5) 30%,
|
|
155
|
+
rgba(15, 15, 15, 0.5) 40%,
|
|
156
|
+
rgba(10, 10, 10, 0.5) 70%,
|
|
157
|
+
rgba(5, 5, 5, 0.5) 100%
|
|
158
|
+
);
|
|
159
|
+
animation: ssr-shimmer-dark 3s linear infinite;
|
|
160
|
+
}
|
|
161
|
+
@keyframes ssr-shimmer-dark {
|
|
162
|
+
0% {
|
|
163
|
+
background-position: -30px 0;
|
|
164
|
+
}
|
|
165
|
+
100% {
|
|
166
|
+
background-position: 80px 0;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
.ssr-shimmer-dark-search-box {
|
|
170
|
+
height: 100%;
|
|
171
|
+
background-image: linear-gradient(
|
|
172
|
+
to right,
|
|
173
|
+
rgb(5, 5, 5, 0.5) 0%,
|
|
174
|
+
rgba(10, 10, 10, 0.5) 30%,
|
|
175
|
+
rgba(15, 15, 15, 0.5) 40%,
|
|
176
|
+
rgba(10, 10, 10, 0.5) 70%,
|
|
177
|
+
rgba(5, 5, 5, 0.5) 100%
|
|
178
|
+
);
|
|
179
|
+
animation: ssr-shimmer-dark-search-box 3s linear infinite;
|
|
180
|
+
}
|
|
181
|
+
@keyframes ssr-shimmer-dark-search-box {
|
|
182
|
+
0% {
|
|
183
|
+
background-position: -290px 0;
|
|
184
|
+
}
|
|
185
|
+
100% {
|
|
186
|
+
background-position: 400px 0;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
.ssr-shimmer-search-box {
|
|
190
|
+
height: 100%;
|
|
191
|
+
background-image: linear-gradient(
|
|
192
|
+
to right,
|
|
193
|
+
rgb(255, 255, 255, 0.5) 0%,
|
|
194
|
+
rgba(200, 200, 200, 0.5) 30%,
|
|
195
|
+
rgba(220, 220, 220, 0.5) 50%,
|
|
196
|
+
rgba(255, 255, 255, 0.5) 100%
|
|
197
|
+
);
|
|
198
|
+
animation: ssr-shimmer-search-box 3s linear infinite;
|
|
199
|
+
}
|
|
200
|
+
@keyframes ssr-shimmer-search-box {
|
|
201
|
+
0% {
|
|
202
|
+
background-position: -290px 0;
|
|
203
|
+
}
|
|
204
|
+
100% {
|
|
205
|
+
background-position: 400px 0;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
.ssr-search-box {
|
|
209
|
+
width: 290px;
|
|
210
|
+
height: 33.3px;
|
|
211
|
+
top: 8.5px;
|
|
212
|
+
left: 100px;
|
|
213
|
+
border-radius: 8px;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.ssr-btn {
|
|
217
|
+
border-radius: 8px;
|
|
218
|
+
overflow: hidden;
|
|
219
|
+
/* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
|
|
220
|
+
color: #606060;
|
|
221
|
+
/* box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 10px 30px 0 rgba(0, 0, 0, 0.3); */
|
|
222
|
+
}
|
|
223
|
+
.ssr-sub-shimmer-loader {
|
|
224
|
+
background: linear-gradient(
|
|
225
|
+
90deg,
|
|
226
|
+
rgba(190, 190, 190, 0.5) 33%,
|
|
227
|
+
rgba(150, 150, 150, 0.5) 50%,
|
|
228
|
+
rgba(190, 190, 190, 0.5) 66%
|
|
229
|
+
)
|
|
230
|
+
rgba(220, 220, 220, 0.5);
|
|
231
|
+
background-size: 300% 100%;
|
|
232
|
+
animation: ssr-sub-shimmer-l1 1s infinite linear;
|
|
233
|
+
border-radius: 5px;
|
|
234
|
+
}
|
|
235
|
+
@keyframes ssr-sub-shimmer-l1 {
|
|
236
|
+
0% {
|
|
237
|
+
background-position: right;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
</style>
|
|
241
|
+
`;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
SrrComponent = ({ ssrPath }) => html`
|
|
2
|
-
<script type="text/javascript" src="${ssrPath}dist/validator/validator.min.js"></script>
|
|
3
|
-
`;
|
|
1
|
+
SrrComponent = ({ ssrPath }) => html`
|
|
2
|
+
<script type="text/javascript" src="${ssrPath}dist/validator/validator.min.js"></script>
|
|
3
|
+
`;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
SrrComponent = ({ microdata }) => html`
|
|
2
|
-
${microdata
|
|
3
|
-
.map(
|
|
4
|
-
(jsonld) => html`
|
|
5
|
-
<script type="application/ld+json">
|
|
6
|
-
${JSON.stringify(jsonld, null, 4)}
|
|
7
|
-
</script>
|
|
8
|
-
`,
|
|
9
|
-
)
|
|
10
|
-
.join(` `)}
|
|
11
|
-
`;
|
|
1
|
+
SrrComponent = ({ microdata }) => html`
|
|
2
|
+
${microdata
|
|
3
|
+
.map(
|
|
4
|
+
(jsonld) => html`
|
|
5
|
+
<script type="application/ld+json">
|
|
6
|
+
${JSON.stringify(jsonld, null, 4)}
|
|
7
|
+
</script>
|
|
8
|
+
`,
|
|
9
|
+
)
|
|
10
|
+
.join(` `)}
|
|
11
|
+
`;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
SrrComponent = () => html``;
|
|
1
|
+
SrrComponent = () => html``;
|
|
@@ -1,60 +1,60 @@
|
|
|
1
|
-
SrrComponent = () => html`<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
|
2
|
-
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
3
|
-
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
4
|
-
<link rel="icon" type="image/png" sizes="48x48" href="/favicon-48x48.png">
|
|
5
|
-
<link rel="manifest" href="/manifest.webmanifest" crossOrigin="use-credentials">
|
|
6
|
-
<meta name="mobile-web-app-capable" content="yes">
|
|
7
|
-
<meta name="theme-color" content="#fff">
|
|
8
|
-
<meta name="application-name" content="Default">
|
|
9
|
-
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png">
|
|
10
|
-
<link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png">
|
|
11
|
-
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png">
|
|
12
|
-
<link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png">
|
|
13
|
-
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png">
|
|
14
|
-
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png">
|
|
15
|
-
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png">
|
|
16
|
-
<link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png">
|
|
17
|
-
<link rel="apple-touch-icon" sizes="167x167" href="/apple-touch-icon-167x167.png">
|
|
18
|
-
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png">
|
|
19
|
-
<link rel="apple-touch-icon" sizes="1024x1024" href="/apple-touch-icon-1024x1024.png">
|
|
20
|
-
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
21
|
-
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
22
|
-
<meta name="apple-mobile-web-app-title" content="Default">
|
|
23
|
-
<link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-touch-startup-image-640x1136.png">
|
|
24
|
-
<link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-touch-startup-image-1136x640.png">
|
|
25
|
-
<link rel="apple-touch-startup-image" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-touch-startup-image-750x1334.png">
|
|
26
|
-
<link rel="apple-touch-startup-image" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-touch-startup-image-1334x750.png">
|
|
27
|
-
<link rel="apple-touch-startup-image" media="(device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)" href="/apple-touch-startup-image-1125x2436.png">
|
|
28
|
-
<link rel="apple-touch-startup-image" media="(device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape)" href="/apple-touch-startup-image-2436x1125.png">
|
|
29
|
-
<link rel="apple-touch-startup-image" media="(device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)" href="/apple-touch-startup-image-1170x2532.png">
|
|
30
|
-
<link rel="apple-touch-startup-image" media="(device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape)" href="/apple-touch-startup-image-2532x1170.png">
|
|
31
|
-
<link rel="apple-touch-startup-image" media="(device-width: 393px) and (device-height: 852px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)" href="/apple-touch-startup-image-1179x2556.png">
|
|
32
|
-
<link rel="apple-touch-startup-image" media="(device-width: 393px) and (device-height: 852px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape)" href="/apple-touch-startup-image-2556x1179.png">
|
|
33
|
-
<link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-touch-startup-image-828x1792.png">
|
|
34
|
-
<link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-touch-startup-image-1792x828.png">
|
|
35
|
-
<link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)" href="/apple-touch-startup-image-1242x2688.png">
|
|
36
|
-
<link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape)" href="/apple-touch-startup-image-2688x1242.png">
|
|
37
|
-
<link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)" href="/apple-touch-startup-image-1242x2208.png">
|
|
38
|
-
<link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape)" href="/apple-touch-startup-image-2208x1242.png">
|
|
39
|
-
<link rel="apple-touch-startup-image" media="(device-width: 428px) and (device-height: 926px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)" href="/apple-touch-startup-image-1284x2778.png">
|
|
40
|
-
<link rel="apple-touch-startup-image" media="(device-width: 428px) and (device-height: 926px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape)" href="/apple-touch-startup-image-2778x1284.png">
|
|
41
|
-
<link rel="apple-touch-startup-image" media="(device-width: 430px) and (device-height: 932px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)" href="/apple-touch-startup-image-1290x2796.png">
|
|
42
|
-
<link rel="apple-touch-startup-image" media="(device-width: 430px) and (device-height: 932px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape)" href="/apple-touch-startup-image-2796x1290.png">
|
|
43
|
-
<link rel="apple-touch-startup-image" media="(device-width: 744px) and (device-height: 1133px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-touch-startup-image-1488x2266.png">
|
|
44
|
-
<link rel="apple-touch-startup-image" media="(device-width: 744px) and (device-height: 1133px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-touch-startup-image-2266x1488.png">
|
|
45
|
-
<link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-touch-startup-image-1536x2048.png">
|
|
46
|
-
<link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-touch-startup-image-2048x1536.png">
|
|
47
|
-
<link rel="apple-touch-startup-image" media="(device-width: 810px) and (device-height: 1080px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-touch-startup-image-1620x2160.png">
|
|
48
|
-
<link rel="apple-touch-startup-image" media="(device-width: 810px) and (device-height: 1080px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-touch-startup-image-2160x1620.png">
|
|
49
|
-
<link rel="apple-touch-startup-image" media="(device-width: 820px) and (device-height: 1080px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-touch-startup-image-1640x2160.png">
|
|
50
|
-
<link rel="apple-touch-startup-image" media="(device-width: 820px) and (device-height: 1080px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-touch-startup-image-2160x1640.png">
|
|
51
|
-
<link rel="apple-touch-startup-image" media="(device-width: 834px) and (device-height: 1194px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-touch-startup-image-1668x2388.png">
|
|
52
|
-
<link rel="apple-touch-startup-image" media="(device-width: 834px) and (device-height: 1194px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-touch-startup-image-2388x1668.png">
|
|
53
|
-
<link rel="apple-touch-startup-image" media="(device-width: 834px) and (device-height: 1112px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-touch-startup-image-1668x2224.png">
|
|
54
|
-
<link rel="apple-touch-startup-image" media="(device-width: 834px) and (device-height: 1112px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-touch-startup-image-2224x1668.png">
|
|
55
|
-
<link rel="apple-touch-startup-image" media="(device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-touch-startup-image-2048x2732.png">
|
|
56
|
-
<link rel="apple-touch-startup-image" media="(device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-touch-startup-image-2732x2048.png">
|
|
57
|
-
<meta name="msapplication-TileColor" content="#fff">
|
|
58
|
-
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
|
|
59
|
-
<meta name="msapplication-config" content="/browserconfig.xml">
|
|
1
|
+
SrrComponent = () => html`<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
|
2
|
+
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
3
|
+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
4
|
+
<link rel="icon" type="image/png" sizes="48x48" href="/favicon-48x48.png">
|
|
5
|
+
<link rel="manifest" href="/manifest.webmanifest" crossOrigin="use-credentials">
|
|
6
|
+
<meta name="mobile-web-app-capable" content="yes">
|
|
7
|
+
<meta name="theme-color" content="#fff">
|
|
8
|
+
<meta name="application-name" content="Default">
|
|
9
|
+
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png">
|
|
10
|
+
<link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png">
|
|
11
|
+
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png">
|
|
12
|
+
<link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png">
|
|
13
|
+
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png">
|
|
14
|
+
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png">
|
|
15
|
+
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png">
|
|
16
|
+
<link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png">
|
|
17
|
+
<link rel="apple-touch-icon" sizes="167x167" href="/apple-touch-icon-167x167.png">
|
|
18
|
+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png">
|
|
19
|
+
<link rel="apple-touch-icon" sizes="1024x1024" href="/apple-touch-icon-1024x1024.png">
|
|
20
|
+
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
21
|
+
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
22
|
+
<meta name="apple-mobile-web-app-title" content="Default">
|
|
23
|
+
<link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-touch-startup-image-640x1136.png">
|
|
24
|
+
<link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-touch-startup-image-1136x640.png">
|
|
25
|
+
<link rel="apple-touch-startup-image" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-touch-startup-image-750x1334.png">
|
|
26
|
+
<link rel="apple-touch-startup-image" media="(device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-touch-startup-image-1334x750.png">
|
|
27
|
+
<link rel="apple-touch-startup-image" media="(device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)" href="/apple-touch-startup-image-1125x2436.png">
|
|
28
|
+
<link rel="apple-touch-startup-image" media="(device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape)" href="/apple-touch-startup-image-2436x1125.png">
|
|
29
|
+
<link rel="apple-touch-startup-image" media="(device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)" href="/apple-touch-startup-image-1170x2532.png">
|
|
30
|
+
<link rel="apple-touch-startup-image" media="(device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape)" href="/apple-touch-startup-image-2532x1170.png">
|
|
31
|
+
<link rel="apple-touch-startup-image" media="(device-width: 393px) and (device-height: 852px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)" href="/apple-touch-startup-image-1179x2556.png">
|
|
32
|
+
<link rel="apple-touch-startup-image" media="(device-width: 393px) and (device-height: 852px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape)" href="/apple-touch-startup-image-2556x1179.png">
|
|
33
|
+
<link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-touch-startup-image-828x1792.png">
|
|
34
|
+
<link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-touch-startup-image-1792x828.png">
|
|
35
|
+
<link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)" href="/apple-touch-startup-image-1242x2688.png">
|
|
36
|
+
<link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape)" href="/apple-touch-startup-image-2688x1242.png">
|
|
37
|
+
<link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)" href="/apple-touch-startup-image-1242x2208.png">
|
|
38
|
+
<link rel="apple-touch-startup-image" media="(device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape)" href="/apple-touch-startup-image-2208x1242.png">
|
|
39
|
+
<link rel="apple-touch-startup-image" media="(device-width: 428px) and (device-height: 926px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)" href="/apple-touch-startup-image-1284x2778.png">
|
|
40
|
+
<link rel="apple-touch-startup-image" media="(device-width: 428px) and (device-height: 926px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape)" href="/apple-touch-startup-image-2778x1284.png">
|
|
41
|
+
<link rel="apple-touch-startup-image" media="(device-width: 430px) and (device-height: 932px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait)" href="/apple-touch-startup-image-1290x2796.png">
|
|
42
|
+
<link rel="apple-touch-startup-image" media="(device-width: 430px) and (device-height: 932px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape)" href="/apple-touch-startup-image-2796x1290.png">
|
|
43
|
+
<link rel="apple-touch-startup-image" media="(device-width: 744px) and (device-height: 1133px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-touch-startup-image-1488x2266.png">
|
|
44
|
+
<link rel="apple-touch-startup-image" media="(device-width: 744px) and (device-height: 1133px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-touch-startup-image-2266x1488.png">
|
|
45
|
+
<link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-touch-startup-image-1536x2048.png">
|
|
46
|
+
<link rel="apple-touch-startup-image" media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-touch-startup-image-2048x1536.png">
|
|
47
|
+
<link rel="apple-touch-startup-image" media="(device-width: 810px) and (device-height: 1080px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-touch-startup-image-1620x2160.png">
|
|
48
|
+
<link rel="apple-touch-startup-image" media="(device-width: 810px) and (device-height: 1080px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-touch-startup-image-2160x1620.png">
|
|
49
|
+
<link rel="apple-touch-startup-image" media="(device-width: 820px) and (device-height: 1080px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-touch-startup-image-1640x2160.png">
|
|
50
|
+
<link rel="apple-touch-startup-image" media="(device-width: 820px) and (device-height: 1080px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-touch-startup-image-2160x1640.png">
|
|
51
|
+
<link rel="apple-touch-startup-image" media="(device-width: 834px) and (device-height: 1194px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-touch-startup-image-1668x2388.png">
|
|
52
|
+
<link rel="apple-touch-startup-image" media="(device-width: 834px) and (device-height: 1194px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-touch-startup-image-2388x1668.png">
|
|
53
|
+
<link rel="apple-touch-startup-image" media="(device-width: 834px) and (device-height: 1112px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-touch-startup-image-1668x2224.png">
|
|
54
|
+
<link rel="apple-touch-startup-image" media="(device-width: 834px) and (device-height: 1112px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-touch-startup-image-2224x1668.png">
|
|
55
|
+
<link rel="apple-touch-startup-image" media="(device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-touch-startup-image-2048x2732.png">
|
|
56
|
+
<link rel="apple-touch-startup-image" media="(device-width: 1024px) and (device-height: 1366px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-touch-startup-image-2732x2048.png">
|
|
57
|
+
<meta name="msapplication-TileColor" content="#fff">
|
|
58
|
+
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
|
|
59
|
+
<meta name="msapplication-config" content="/browserconfig.xml">
|
|
60
60
|
<link rel="yandex-tableau-widget" href="/yandex-browser-manifest.json">`;
|