@sveltejs/kit 1.0.0-next.405 → 1.0.0-next.408

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 (99) hide show
  1. package/package.json +23 -25
  2. package/{dist → src}/cli.js +19 -18
  3. package/{dist/chunks/index3.js → src/core/adapt/builder.js} +6 -59
  4. package/src/core/adapt/index.js +19 -0
  5. package/src/core/config/index.js +86 -0
  6. package/{dist/chunks/index.js → src/core/config/options.js} +7 -194
  7. package/src/core/config/types.d.ts +1 -0
  8. package/src/core/constants.js +3 -0
  9. package/src/core/generate_manifest/index.js +99 -0
  10. package/src/core/prerender/crawl.js +194 -0
  11. package/src/core/prerender/prerender.js +378 -0
  12. package/src/core/prerender/queue.js +80 -0
  13. package/src/core/sync/create_manifest_data/index.js +492 -0
  14. package/src/core/sync/create_manifest_data/types.d.ts +40 -0
  15. package/src/core/sync/sync.js +59 -0
  16. package/src/core/sync/utils.js +97 -0
  17. package/src/core/sync/write_ambient.js +87 -0
  18. package/src/core/sync/write_client_manifest.js +82 -0
  19. package/src/core/sync/write_matchers.js +25 -0
  20. package/src/core/sync/write_root.js +88 -0
  21. package/{dist/chunks → src/core/sync}/write_tsconfig.js +24 -108
  22. package/src/core/sync/write_types.js +738 -0
  23. package/src/core/utils.js +58 -0
  24. package/{dist → src}/hooks.js +1 -3
  25. package/src/index/index.js +45 -0
  26. package/src/index/private.js +33 -0
  27. package/src/node/index.js +145 -0
  28. package/src/node/polyfills.js +40 -0
  29. package/src/packaging/index.js +218 -0
  30. package/src/packaging/types.d.ts +8 -0
  31. package/src/packaging/typescript.js +150 -0
  32. package/src/packaging/utils.js +143 -0
  33. package/{assets → src/runtime}/app/env.js +3 -5
  34. package/src/runtime/app/navigation.js +22 -0
  35. package/src/runtime/app/paths.js +1 -0
  36. package/{assets → src/runtime}/app/stores.js +6 -9
  37. package/src/runtime/client/ambient.d.ts +17 -0
  38. package/{assets/client/start.js → src/runtime/client/client.js} +302 -878
  39. package/src/runtime/client/fetcher.js +60 -0
  40. package/src/runtime/client/parse.js +36 -0
  41. package/{assets → src/runtime}/client/singletons.js +2 -4
  42. package/src/runtime/client/start.js +48 -0
  43. package/src/runtime/client/types.d.ts +106 -0
  44. package/src/runtime/client/utils.js +113 -0
  45. package/src/runtime/components/error.svelte +16 -0
  46. package/{assets → src/runtime}/components/layout.svelte +0 -0
  47. package/{assets → src/runtime}/env/dynamic/private.js +0 -0
  48. package/{assets → src/runtime}/env/dynamic/public.js +0 -0
  49. package/{assets → src/runtime}/env-private.js +2 -4
  50. package/{assets → src/runtime}/env-public.js +2 -4
  51. package/src/runtime/env.js +6 -0
  52. package/src/runtime/hash.js +16 -0
  53. package/{assets → src/runtime}/paths.js +3 -5
  54. package/src/runtime/server/endpoint.js +42 -0
  55. package/src/runtime/server/index.js +434 -0
  56. package/src/runtime/server/page/cookie.js +25 -0
  57. package/src/runtime/server/page/crypto.js +239 -0
  58. package/src/runtime/server/page/csp.js +249 -0
  59. package/src/runtime/server/page/fetch.js +265 -0
  60. package/src/runtime/server/page/index.js +418 -0
  61. package/src/runtime/server/page/load_data.js +94 -0
  62. package/src/runtime/server/page/render.js +357 -0
  63. package/src/runtime/server/page/respond_with_error.js +105 -0
  64. package/src/runtime/server/page/types.d.ts +44 -0
  65. package/src/runtime/server/utils.js +116 -0
  66. package/src/utils/error.js +22 -0
  67. package/src/utils/escape.js +104 -0
  68. package/{dist/chunks → src/utils}/filesystem.js +22 -24
  69. package/src/utils/http.js +55 -0
  70. package/src/utils/misc.js +1 -0
  71. package/src/utils/routing.js +107 -0
  72. package/src/utils/url.js +97 -0
  73. package/src/vite/build/build_server.js +335 -0
  74. package/src/vite/build/build_service_worker.js +90 -0
  75. package/src/vite/build/utils.js +153 -0
  76. package/src/vite/dev/index.js +565 -0
  77. package/src/vite/index.js +540 -0
  78. package/src/vite/preview/index.js +186 -0
  79. package/src/vite/types.d.ts +3 -0
  80. package/src/vite/utils.js +335 -0
  81. package/svelte-kit.js +1 -10
  82. package/types/ambient.d.ts +5 -12
  83. package/types/index.d.ts +86 -44
  84. package/types/internal.d.ts +50 -72
  85. package/types/private.d.ts +2 -1
  86. package/assets/app/navigation.js +0 -24
  87. package/assets/app/paths.js +0 -1
  88. package/assets/components/error.svelte +0 -29
  89. package/assets/env.js +0 -8
  90. package/assets/server/index.js +0 -3589
  91. package/dist/chunks/error.js +0 -12
  92. package/dist/chunks/index2.js +0 -15745
  93. package/dist/chunks/multipart-parser.js +0 -458
  94. package/dist/chunks/sync.js +0 -1366
  95. package/dist/chunks/utils.js +0 -66
  96. package/dist/node/polyfills.js +0 -17928
  97. package/dist/node.js +0 -348
  98. package/dist/prerender.js +0 -788
  99. package/dist/vite.js +0 -2513
@@ -0,0 +1,104 @@
1
+ /**
2
+ * Inside a script element, only `</script` and `<!--` hold special meaning to the HTML parser.
3
+ *
4
+ * The first closes the script element, so everything after is treated as raw HTML.
5
+ * The second disables further parsing until `-->`, so the script element might be unexpectedly
6
+ * kept open until until an unrelated HTML comment in the page.
7
+ *
8
+ * U+2028 LINE SEPARATOR and U+2029 PARAGRAPH SEPARATOR are escaped for the sake of pre-2018
9
+ * browsers.
10
+ *
11
+ * @see tests for unsafe parsing examples.
12
+ * @see https://html.spec.whatwg.org/multipage/scripting.html#restrictions-for-contents-of-script-elements
13
+ * @see https://html.spec.whatwg.org/multipage/syntax.html#cdata-rcdata-restrictions
14
+ * @see https://html.spec.whatwg.org/multipage/parsing.html#script-data-state
15
+ * @see https://html.spec.whatwg.org/multipage/parsing.html#script-data-double-escaped-state
16
+ * @see https://github.com/tc39/proposal-json-superset
17
+ * @type {Record<string, string>}
18
+ */
19
+ const render_json_payload_script_dict = {
20
+ '<': '\\u003C',
21
+ '\u2028': '\\u2028',
22
+ '\u2029': '\\u2029'
23
+ };
24
+
25
+ const render_json_payload_script_regex = new RegExp(
26
+ `[${Object.keys(render_json_payload_script_dict).join('')}]`,
27
+ 'g'
28
+ );
29
+
30
+ /**
31
+ * Generates a raw HTML string containing a safe script element carrying JSON data and associated attributes.
32
+ *
33
+ * It escapes all the special characters needed to guarantee the element is unbroken, but care must
34
+ * be taken to ensure it is inserted in the document at an acceptable position for a script element,
35
+ * and that the resulting string isn't further modified.
36
+ *
37
+ * Attribute names must be type-checked so we don't need to escape them.
38
+ *
39
+ * @param {import('types').PayloadScriptAttributes} attrs A list of attributes to be added to the element.
40
+ * @param {import('types').JSONValue} payload The data to be carried by the element. Must be serializable to JSON.
41
+ * @returns {string} The raw HTML of a script element carrying the JSON payload.
42
+ * @example const html = render_json_payload_script({ type: 'data', url: '/data.json' }, { foo: 'bar' });
43
+ */
44
+ export function render_json_payload_script(attrs, payload) {
45
+ const safe_payload = JSON.stringify(payload).replace(
46
+ render_json_payload_script_regex,
47
+ (match) => render_json_payload_script_dict[match]
48
+ );
49
+
50
+ let safe_attrs = '';
51
+ for (const [key, value] of Object.entries(attrs)) {
52
+ if (value === undefined) continue;
53
+ safe_attrs += ` sveltekit:data-${key}=${escape_html_attr(value)}`;
54
+ }
55
+
56
+ return `<script type="application/json"${safe_attrs}>${safe_payload}</script>`;
57
+ }
58
+
59
+ /**
60
+ * When inside a double-quoted attribute value, only `&` and `"` hold special meaning.
61
+ * @see https://html.spec.whatwg.org/multipage/parsing.html#attribute-value-(double-quoted)-state
62
+ * @type {Record<string, string>}
63
+ */
64
+ const escape_html_attr_dict = {
65
+ '&': '&amp;',
66
+ '"': '&quot;'
67
+ };
68
+
69
+ const escape_html_attr_regex = new RegExp(
70
+ // special characters
71
+ `[${Object.keys(escape_html_attr_dict).join('')}]|` +
72
+ // high surrogate without paired low surrogate
73
+ '[\\ud800-\\udbff](?![\\udc00-\\udfff])|' +
74
+ // a valid surrogate pair, the only match with 2 code units
75
+ // we match it so that we can match unpaired low surrogates in the same pass
76
+ // TODO: use lookbehind assertions once they are widely supported: (?<![\ud800-udbff])[\udc00-\udfff]
77
+ '[\\ud800-\\udbff][\\udc00-\\udfff]|' +
78
+ // unpaired low surrogate (see previous match)
79
+ '[\\udc00-\\udfff]',
80
+ 'g'
81
+ );
82
+
83
+ /**
84
+ * Formats a string to be used as an attribute's value in raw HTML.
85
+ *
86
+ * It escapes unpaired surrogates (which are allowed in js strings but invalid in HTML), escapes
87
+ * characters that are special in attributes, and surrounds the whole string in double-quotes.
88
+ *
89
+ * @param {string} str
90
+ * @returns {string} Escaped string surrounded by double-quotes.
91
+ * @example const html = `<tag data-value=${escape_html_attr('value')}>...</tag>`;
92
+ */
93
+ export function escape_html_attr(str) {
94
+ const escaped_str = str.replace(escape_html_attr_regex, (match) => {
95
+ if (match.length === 2) {
96
+ // valid surrogate pair
97
+ return match;
98
+ }
99
+
100
+ return escape_html_attr_dict[match] ?? `&#${match.charCodeAt(0)};`;
101
+ });
102
+
103
+ return `"${escaped_str}"`;
104
+ }
@@ -1,10 +1,10 @@
1
- import fs__default from 'fs';
2
- import path__default from 'path';
1
+ import fs from 'fs';
2
+ import path from 'path';
3
3
 
4
4
  /** @param {string} dir */
5
- function mkdirp(dir) {
5
+ export function mkdirp(dir) {
6
6
  try {
7
- fs__default.mkdirSync(dir, { recursive: true });
7
+ fs.mkdirSync(dir, { recursive: true });
8
8
  } catch (/** @type {any} */ e) {
9
9
  if (e.code === 'EEXIST') return;
10
10
  throw e;
@@ -12,8 +12,8 @@ function mkdirp(dir) {
12
12
  }
13
13
 
14
14
  /** @param {string} path */
15
- function rimraf(path) {
16
- fs__default.rmSync(path, { force: true, recursive: true });
15
+ export function rimraf(path) {
16
+ fs.rmSync(path, { force: true, recursive: true });
17
17
  }
18
18
 
19
19
  /**
@@ -24,8 +24,8 @@ function rimraf(path) {
24
24
  * replace?: Record<string, string>;
25
25
  * }} opts
26
26
  */
27
- function copy(source, target, opts = {}) {
28
- if (!fs__default.existsSync(source)) return [];
27
+ export function copy(source, target, opts = {}) {
28
+ if (!fs.existsSync(source)) return [];
29
29
 
30
30
  /** @type {string[]} */
31
31
  const files = [];
@@ -41,20 +41,20 @@ function copy(source, target, opts = {}) {
41
41
  * @param {string} to
42
42
  */
43
43
  function go(from, to) {
44
- if (opts.filter && !opts.filter(path__default.basename(from))) return;
44
+ if (opts.filter && !opts.filter(path.basename(from))) return;
45
45
 
46
- const stats = fs__default.statSync(from);
46
+ const stats = fs.statSync(from);
47
47
 
48
48
  if (stats.isDirectory()) {
49
- fs__default.readdirSync(from).forEach((file) => {
50
- go(path__default.join(from, file), path__default.join(to, file));
49
+ fs.readdirSync(from).forEach((file) => {
50
+ go(path.join(from, file), path.join(to, file));
51
51
  });
52
52
  } else {
53
- mkdirp(path__default.dirname(to));
53
+ mkdirp(path.dirname(to));
54
54
 
55
55
  if (opts.replace) {
56
- const data = fs__default.readFileSync(from, 'utf-8');
57
- fs__default.writeFileSync(
56
+ const data = fs.readFileSync(from, 'utf-8');
57
+ fs.writeFileSync(
58
58
  to,
59
59
  data.replace(
60
60
  /** @type {RegExp} */ (regex),
@@ -62,10 +62,10 @@ function copy(source, target, opts = {}) {
62
62
  )
63
63
  );
64
64
  } else {
65
- fs__default.copyFileSync(from, to);
65
+ fs.copyFileSync(from, to);
66
66
  }
67
67
 
68
- files.push(to === target ? posixify(path__default.basename(to)) : posixify(to).replace(prefix, ''));
68
+ files.push(to === target ? posixify(path.basename(to)) : posixify(to).replace(prefix, ''));
69
69
  }
70
70
  }
71
71
 
@@ -79,17 +79,17 @@ function copy(source, target, opts = {}) {
79
79
  * @param {string} cwd - the directory to walk
80
80
  * @param {boolean} [dirs] - whether to include directories in the result
81
81
  */
82
- function walk(cwd, dirs = false) {
82
+ export function walk(cwd, dirs = false) {
83
83
  /** @type {string[]} */
84
84
  const all_files = [];
85
85
 
86
86
  /** @param {string} dir */
87
87
  function walk_dir(dir) {
88
- const files = fs__default.readdirSync(path__default.join(cwd, dir));
88
+ const files = fs.readdirSync(path.join(cwd, dir));
89
89
 
90
90
  for (const file of files) {
91
- const joined = path__default.join(dir, file);
92
- const stats = fs__default.statSync(path__default.join(cwd, joined));
91
+ const joined = path.join(dir, file);
92
+ const stats = fs.statSync(path.join(cwd, joined));
93
93
  if (stats.isDirectory()) {
94
94
  if (dirs) all_files.push(joined);
95
95
  walk_dir(joined);
@@ -103,8 +103,6 @@ function walk(cwd, dirs = false) {
103
103
  }
104
104
 
105
105
  /** @param {string} str */
106
- function posixify(str) {
106
+ export function posixify(str) {
107
107
  return str.replace(/\\/g, '/');
108
108
  }
109
-
110
- export { copy as c, mkdirp as m, posixify as p, rimraf as r, walk as w };
@@ -0,0 +1,55 @@
1
+ /**
2
+ * Given an Accept header and a list of possible content types, pick
3
+ * the most suitable one to respond with
4
+ * @param {string} accept
5
+ * @param {string[]} types
6
+ */
7
+ export function negotiate(accept, types) {
8
+ /** @type {Array<{ type: string, subtype: string, q: number, i: number }>} */
9
+ const parts = [];
10
+
11
+ accept.split(',').forEach((str, i) => {
12
+ const match = /([^/]+)\/([^;]+)(?:;q=([0-9.]+))?/.exec(str);
13
+
14
+ // no match equals invalid header — ignore
15
+ if (match) {
16
+ const [, type, subtype, q = '1'] = match;
17
+ parts.push({ type, subtype, q: +q, i });
18
+ }
19
+ });
20
+
21
+ parts.sort((a, b) => {
22
+ if (a.q !== b.q) {
23
+ return b.q - a.q;
24
+ }
25
+
26
+ if ((a.subtype === '*') !== (b.subtype === '*')) {
27
+ return a.subtype === '*' ? 1 : -1;
28
+ }
29
+
30
+ if ((a.type === '*') !== (b.type === '*')) {
31
+ return a.type === '*' ? 1 : -1;
32
+ }
33
+
34
+ return a.i - b.i;
35
+ });
36
+
37
+ let accepted;
38
+ let min_priority = Infinity;
39
+
40
+ for (const mimetype of types) {
41
+ const [type, subtype] = mimetype.split('/');
42
+ const priority = parts.findIndex(
43
+ (part) =>
44
+ (part.type === type || part.type === '*') &&
45
+ (part.subtype === subtype || part.subtype === '*')
46
+ );
47
+
48
+ if (priority !== -1 && priority < min_priority) {
49
+ accepted = mimetype;
50
+ min_priority = priority;
51
+ }
52
+ }
53
+
54
+ return accepted;
55
+ }
@@ -0,0 +1 @@
1
+ export const s = JSON.stringify;
@@ -0,0 +1,107 @@
1
+ const param_pattern = /^(\.\.\.)?(\w+)(?:=(\w+))?$/;
2
+
3
+ /** @param {string} id */
4
+ export function parse_route_id(id) {
5
+ /** @type {string[]} */
6
+ const names = [];
7
+
8
+ /** @type {string[]} */
9
+ const types = [];
10
+
11
+ // `/foo` should get an optional trailing slash, `/foo.json` should not
12
+ // const add_trailing_slash = !/\.[a-z]+$/.test(key);
13
+ let add_trailing_slash = true;
14
+
15
+ const pattern =
16
+ id === ''
17
+ ? /^\/$/
18
+ : new RegExp(
19
+ `^${decodeURIComponent(id)
20
+ .split(/(?:@[a-zA-Z0-9_-]+)?(?:\/|$)/)
21
+ .map((segment, i, segments) => {
22
+ // special case — /[...rest]/ could contain zero segments
23
+ const match = /^\[\.\.\.(\w+)(?:=(\w+))?\]$/.exec(segment);
24
+ if (match) {
25
+ names.push(match[1]);
26
+ types.push(match[2]);
27
+ return '(?:/(.*))?';
28
+ }
29
+
30
+ const is_last = i === segments.length - 1;
31
+
32
+ return (
33
+ segment &&
34
+ '/' +
35
+ segment
36
+ .split(/\[(.+?)\]/)
37
+ .map((content, i) => {
38
+ if (i % 2) {
39
+ const match = param_pattern.exec(content);
40
+ if (!match) {
41
+ throw new Error(
42
+ `Invalid param: ${content}. Params and matcher names can only have underscores and alphanumeric characters.`
43
+ );
44
+ }
45
+
46
+ const [, rest, name, type] = match;
47
+ names.push(name);
48
+ types.push(type);
49
+ return rest ? '(.*?)' : '([^/]+?)';
50
+ }
51
+
52
+ if (is_last && content.includes('.')) add_trailing_slash = false;
53
+
54
+ return (
55
+ content // allow users to specify characters on the file system in an encoded manner
56
+ .normalize()
57
+ // We use [ and ] to denote parameters, so users must encode these on the file
58
+ // system to match against them. We don't decode all characters since others
59
+ // can already be epressed and so that '%' can be easily used directly in filenames
60
+ .replace(/%5[Bb]/g, '[')
61
+ .replace(/%5[Dd]/g, ']')
62
+ // '#', '/', and '?' can only appear in URL path segments in an encoded manner.
63
+ // They will not be touched by decodeURI so need to be encoded here, so
64
+ // that we can match against them.
65
+ // We skip '/' since you can't create a file with it on any OS
66
+ .replace(/#/g, '%23')
67
+ .replace(/\?/g, '%3F')
68
+ // escape characters that have special meaning in regex
69
+ .replace(/[.*+?^${}()|[\]\\]/g, '\\$&')
70
+ ); // TODO handle encoding
71
+ })
72
+ .join('')
73
+ );
74
+ })
75
+ .join('')}${add_trailing_slash ? '/?' : ''}$`
76
+ );
77
+
78
+ return { pattern, names, types };
79
+ }
80
+
81
+ /**
82
+ * @param {RegExpMatchArray} match
83
+ * @param {string[]} names
84
+ * @param {string[]} types
85
+ * @param {Record<string, import('types').ParamMatcher>} matchers
86
+ */
87
+ export function exec(match, names, types, matchers) {
88
+ /** @type {Record<string, string>} */
89
+ const params = {};
90
+
91
+ for (let i = 0; i < names.length; i += 1) {
92
+ const name = names[i];
93
+ const type = types[i];
94
+ const value = match[i + 1] || '';
95
+
96
+ if (type) {
97
+ const matcher = matchers[type];
98
+ if (!matcher) throw new Error(`Missing "${type}" param matcher`); // TODO do this ahead of time?
99
+
100
+ if (!matcher(value)) return;
101
+ }
102
+
103
+ params[name] = value;
104
+ }
105
+
106
+ return params;
107
+ }
@@ -0,0 +1,97 @@
1
+ const absolute = /^([a-z]+:)?\/?\//;
2
+ const scheme = /^[a-z]+:/;
3
+
4
+ /**
5
+ * @param {string} base
6
+ * @param {string} path
7
+ */
8
+ export function resolve(base, path) {
9
+ if (scheme.test(path)) return path;
10
+
11
+ const base_match = absolute.exec(base);
12
+ const path_match = absolute.exec(path);
13
+
14
+ if (!base_match) {
15
+ throw new Error(`bad base path: "${base}"`);
16
+ }
17
+
18
+ const baseparts = path_match ? [] : base.slice(base_match[0].length).split('/');
19
+ const pathparts = path_match ? path.slice(path_match[0].length).split('/') : path.split('/');
20
+
21
+ baseparts.pop();
22
+
23
+ for (let i = 0; i < pathparts.length; i += 1) {
24
+ const part = pathparts[i];
25
+ if (part === '.') continue;
26
+ else if (part === '..') baseparts.pop();
27
+ else baseparts.push(part);
28
+ }
29
+
30
+ const prefix = (path_match && path_match[0]) || (base_match && base_match[0]) || '';
31
+
32
+ return `${prefix}${baseparts.join('/')}`;
33
+ }
34
+
35
+ /** @param {string} path */
36
+ export function is_root_relative(path) {
37
+ return path[0] === '/' && path[1] !== '/';
38
+ }
39
+
40
+ /**
41
+ * @param {string} path
42
+ * @param {import('types').TrailingSlash} trailing_slash
43
+ */
44
+ export function normalize_path(path, trailing_slash) {
45
+ if (path === '/' || trailing_slash === 'ignore') return path;
46
+
47
+ if (trailing_slash === 'never') {
48
+ return path.endsWith('/') ? path.slice(0, -1) : path;
49
+ } else if (trailing_slash === 'always' && !path.endsWith('/')) {
50
+ return path + '/';
51
+ }
52
+
53
+ return path;
54
+ }
55
+
56
+ /** @param {Record<string, string>} params */
57
+ export function decode_params(params) {
58
+ for (const key in params) {
59
+ // input has already been decoded by decodeURI
60
+ // now handle the rest that decodeURIComponent would do
61
+ params[key] = params[key]
62
+ .replace(/%23/g, '#')
63
+ .replace(/%3[Bb]/g, ';')
64
+ .replace(/%2[Cc]/g, ',')
65
+ .replace(/%2[Ff]/g, '/')
66
+ .replace(/%3[Ff]/g, '?')
67
+ .replace(/%3[Aa]/g, ':')
68
+ .replace(/%40/g, '@')
69
+ .replace(/%26/g, '&')
70
+ .replace(/%3[Dd]/g, '=')
71
+ .replace(/%2[Bb]/g, '+')
72
+ .replace(/%24/g, '$');
73
+ }
74
+
75
+ return params;
76
+ }
77
+
78
+ export class LoadURL extends URL {
79
+ /** @returns {string} */
80
+ get hash() {
81
+ throw new Error(
82
+ 'url.hash is inaccessible from load. Consider accessing hash from the page store within the script tag of your component.'
83
+ );
84
+ }
85
+ }
86
+
87
+ export class PrerenderingURL extends URL {
88
+ /** @returns {string} */
89
+ get search() {
90
+ throw new Error('Cannot access url.search on a page with prerendering enabled');
91
+ }
92
+
93
+ /** @returns {URLSearchParams} */
94
+ get searchParams() {
95
+ throw new Error('Cannot access url.searchParams on a page with prerendering enabled');
96
+ }
97
+ }