repo_id
stringlengths
22
103
file_path
stringlengths
41
147
content
stringlengths
181
193k
__index_level_0__
int64
0
0
data/mdn-content/files/en-us/web/api/deprecationreportbody
data/mdn-content/files/en-us/web/api/deprecationreportbody/id/index.md
--- title: "DeprecationReportBody: id property" short-title: id slug: Web/API/DeprecationReportBody/id page-type: web-api-instance-property status: - experimental browser-compat: api.DeprecationReportBody.id --- {{APIRef("Reporting API")}}{{SeeCompatTable}} The **`id`** read-only property of the {{domxref("DeprecationReportBody")}} interface returns a string representing the feature or API that is deprecated. This can be used to group or count related reports. ## Value A string. ## Examples In this example we create a new {{domxref("ReportingObserver")}} to observe deprecation reports, then print the value of `id` to the console. ```js let options = { types: ["deprecation"], buffered: true, }; let observer = new ReportingObserver((reports, observer) => { let firstReport = reports[0]; console.log(firstReport.type); // deprecation console.log(firstReport.body.id); }, options); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/deprecationreportbody
data/mdn-content/files/en-us/web/api/deprecationreportbody/anticipatedremoval/index.md
--- title: "DeprecationReportBody: anticipatedRemoval property" short-title: anticipatedRemoval slug: Web/API/DeprecationReportBody/anticipatedRemoval page-type: web-api-instance-property status: - experimental browser-compat: api.DeprecationReportBody.anticipatedRemoval --- {{APIRef("Reporting API")}}{{SeeCompatTable}} The **`anticipatedRemoval`** read-only property of the {{domxref("DeprecationReportBody")}} interface returns the date that the browser version which removes the feature will ship. This value can be used to prioritize warnings. If this property returns `null` because the date is unknown, then the deprecation should be considered low priority. ## Value A {{jsxref("date")}} object, or `null` if the date is not known. ## Examples In this example we create a new {{domxref("ReportingObserver")}} to observe deprecation reports, then print the value of `anticipatedRemoval` to the console. ```js let options = { types: ["deprecation"], buffered: true, }; let observer = new ReportingObserver((reports, observer) => { let firstReport = reports[0]; console.log(firstReport.type); // deprecation console.log(firstReport.body.anticipatedRemoval); }, options); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/deprecationreportbody
data/mdn-content/files/en-us/web/api/deprecationreportbody/tojson/index.md
--- title: "DeprecationReportBody: toJSON() method" short-title: toJSON() slug: Web/API/DeprecationReportBody/toJSON page-type: web-api-instance-method status: - experimental browser-compat: api.DeprecationReportBody.toJSON --- {{APIRef("Reporting API")}}{{SeeCompatTable}} The **`toJSON()`** method of the {{domxref("DeprecationReportBody")}} interface is a _serializer_, and returns a JSON representation of the `InterventionReportBody` object. ## Syntax ```js-nolint toJSON() ``` ### Parameters None. ### Return value A JSON object that is the serialization of the {{domxref("DeprecationReportBody")}} object. ## Examples In this example we create a new {{domxref("ReportingObserver")}} to observe deprecation reports, then return a JSON representation of the first entry. ```js let options = { types: ["deprecation"], buffered: true, }; let observer = new ReportingObserver((reports, observer) => { let firstReport = reports[0]; console.log(firstReport.toJSON()); }, options); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/deprecationreportbody
data/mdn-content/files/en-us/web/api/deprecationreportbody/sourcefile/index.md
--- title: "DeprecationReportBody: sourceFile property" short-title: sourceFile slug: Web/API/DeprecationReportBody/sourceFile page-type: web-api-instance-property status: - experimental browser-compat: api.DeprecationReportBody.sourceFile --- {{APIRef("Reporting API")}}{{SeeCompatTable}} The **`sourceFile`** read-only property of the {{domxref("DeprecationReportBody")}} interface returns the path to the source file where the deprecated feature was used. > **Note:** This property can be used with {{domxref("DeprecationReportBody.lineNumber")}} and {{domxref("DeprecationReportBody.columnNumber")}} to locate the column and line in the file where the error occurred. ## Value A string, or `null` if the path is not known. ## Examples In this example we create a new {{domxref("ReportingObserver")}} to observe deprecation reports, then print the value of `sourceFile` to the console. ```js let options = { types: ["deprecation"], buffered: true, }; let observer = new ReportingObserver((reports, observer) => { let firstReport = reports[0]; console.log(firstReport.type); // deprecation console.log(firstReport.body.sourceFile); }, options); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/webgl_depth_texture/index.md
--- title: WEBGL_depth_texture extension short-title: WEBGL_depth_texture slug: Web/API/WEBGL_depth_texture page-type: webgl-extension browser-compat: api.WEBGL_depth_texture --- {{APIRef("WebGL")}} The **`WEBGL_depth_texture`** extension is part of the [WebGL API](/en-US/docs/Web/API/WebGL_API) and defines 2D depth and depth-stencil textures. WebGL extensions are available using the {{domxref("WebGLRenderingContext.getExtension()")}} method. For more information, see also [Using Extensions](/en-US/docs/Web/API/WebGL_API/Using_Extensions) in the [WebGL tutorial](/en-US/docs/Web/API/WebGL_API/Tutorial). > **Note:** This extension is only available to {{domxref("WebGLRenderingContext", "WebGL1", "", 1)}} contexts. In {{domxref("WebGL2RenderingContext", "WebGL2", "", 1)}}, the functionality of this extension is available on the WebGL2 context by default. The constant in WebGL2 is `gl.UNSIGNED_INT_24_8`. ## Constants This extension adds a new constant: - `ext.UNSIGNED_INT_24_8_WEBGL` - : Unsigned integer type for 24-bit depth texture data. ## Extended methods This extension extends {{domxref("WebGLRenderingContext.texImage2D()")}}: - The `format` and `internalformat` parameters now accept `gl.DEPTH_COMPONENT` and `gl.DEPTH_STENCIL`. - The `type` parameter now accepts `gl.UNSIGNED_SHORT`, `gl.UNSIGNED_INT`, and `ext.UNSIGNED_INT_24_8_WEBGL`. - The `pixels` parameter now accepts a {{jsxref("Uint16Array")}} or a {{jsxref("Uint32Array")}} object. This extension extends {{domxref("WebGLRenderingContext.framebufferTexture2D()")}}: - The `attachment` parameter now accepts `gl.DEPTH_STENCIL_ATTACHMENT`. > **Note:** Incorrectly stated as the `target` parameter in the specification, see <https://www.khronos.org/bugzilla/show_bug.cgi?id=674>. ## Examples ```js const ext = gl.getExtension("WEBGL_depth_texture"); gl.texImage2D( gl.TEXTURE_2D, 0, gl.DEPTH_COMPONENT, 512, 512, 0, gl.DEPTH_COMPONENT, gl.UNSIGNED_SHORT, null, ); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{domxref("WebGLRenderingContext.getExtension()")}} - {{domxref("WebGLRenderingContext.texImage2D()")}} - {{domxref("WebGLRenderingContext.framebufferTexture2D()")}}
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/web_midi_api/index.md
--- title: Web MIDI API slug: Web/API/Web_MIDI_API page-type: web-api-overview browser-compat: - api.Navigator.requestMIDIAccess - http.headers.Permissions-Policy.midi - api.Permissions.permission_midi spec-urls: https://webaudio.github.io/web-midi-api/ --- {{DefaultAPISidebar("Web MIDI API")}}{{SecureContext_Header}} The Web MIDI API connects to and interacts with Musical Instrument Digital Interface (MIDI) Devices. The interfaces deal with the practical aspects of sending and receiving MIDI messages. Therefore, the API can be used for musical and non-musical uses, with any MIDI device connected to your computer. ## Interfaces - {{domxref("MIDIInputMap")}} - : Represents all of the available MIDI input ports. - {{domxref("MIDIOutputMap")}} - : Represents all of the available MIDI output ports. - {{domxref("MIDIAccess")}} - : Provides the methods to list input and output devices, and to access an individual device. - {{domxref("MIDIPort")}} - : Represents an individual MIDI port. - {{domxref("MIDIInput")}} - : Provides a method for dealing with MIDI messages from an input port. - {{domxref("MIDIOutput")}} - : Queues messages to the linked MIDI port. Messages can be sent immediately or after a specified delay. - {{domxref("MIDIMessageEvent")}} - : The event passed to {{domxref("MIDIInput.midimessage_event")}}. - {{domxref("MIDIConnectionEvent")}} - : The event passed to the {{domxref("MIDIAccess.statechange_event")}} and {{domxref("MIDIPort.statechange_event")}} events, when a port becomes available or unavailable. ## Security requirements Access to the API is requested using the {{domxref("navigator.requestMIDIAccess()")}} method. - The method must be called in a [secure context](/en-US/docs/Web/Security/Secure_Contexts). - Access may be gated by the [`midi`](/en-US/docs/Web/HTTP/Headers/Permissions-Policy/midi) HTTP [Permission Policy](/en-US/docs/Web/HTTP/Permissions_Policy). - The user must explicitly grant permission to use the API through a user-agent specific mechanism, or have previously granted permission. Note that if access is denied by a permission policy it cannot be granted by a user permission. The permission status can be queried using the [Permissions API](/en-US/docs/Web/API/Permissions_API) method [`navigator.permissions.query()`](/en-US/docs/Web/API/Permissions/query), passing a permission descriptor with the `midi` permission and (optional) `sysex` property: ```js navigator.permissions.query({ name: "midi", sysex: true }).then((result) => { if (result.state === "granted") { // Access granted. } else if (result.state === "prompt") { // Using API will prompt for permission } // Permission was denied by user prompt or permission policy }); ``` ## Examples ### Gaining access to the MIDI port The {{domxref("navigator.requestMIDIAccess()")}} method returns a promise that resolves to a {{domxref("MIDIAccess")}} object, which can then be used to access a MIDI device. The method must be called in a secure context. ```js let midi = null; // global MIDIAccess object function onMIDISuccess(midiAccess) { console.log("MIDI ready!"); midi = midiAccess; // store in the global (in real usage, would probably keep in an object instance) } function onMIDIFailure(msg) { console.error(`Failed to get MIDI access - ${msg}`); } navigator.requestMIDIAccess().then(onMIDISuccess, onMIDIFailure); ``` ### Listing inputs and outputs In this example the list of input and output ports are retrieved and printed to the console. ```js function listInputsAndOutputs(midiAccess) { for (const entry of midiAccess.inputs) { const input = entry[1]; console.log( `Input port [type:'${input.type}']` + ` id:'${input.id}'` + ` manufacturer:'${input.manufacturer}'` + ` name:'${input.name}'` + ` version:'${input.version}'`, ); } for (const entry of midiAccess.outputs) { const output = entry[1]; console.log( `Output port [type:'${output.type}'] id:'${output.id}' manufacturer:'${output.manufacturer}' name:'${output.name}' version:'${output.version}'`, ); } } ``` ### Handling MIDI Input This example prints all MIDI input messages to the console. ```js function onMIDIMessage(event) { let str = `MIDI message received at timestamp ${event.timeStamp}[${event.data.length} bytes]: `; for (const character of event.data) { str += `0x${character.toString(16)} `; } console.log(str); } function startLoggingMIDIInput(midiAccess) { midiAccess.inputs.forEach((entry) => { entry.onmidimessage = onMIDIMessage; }); } ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - [Introduction to Web MIDI](https://code.tutsplus.com/tutorials/introduction-to-web-midi--cms-25220) - [Making Music in the Browser](https://www.keithmcmillen.com/blog/making-music-in-the-browser-web-midi-api/)
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/svgangle/index.md
--- title: SVGAngle slug: Web/API/SVGAngle page-type: web-api-interface browser-compat: api.SVGAngle --- {{APIRef("SVG")}} The `SVGAngle` interface is used to represent a value that can be an {{cssxref("&lt;angle&gt;")}} or {{cssxref("&lt;number&gt;")}} value. An `SVGAngle` reflected through the {{SVGAttr("animVal")}} attribute is always read only. An `SVGAngle` object can be designated as read only, which means that attempts to modify the object will result in an exception being thrown. An `SVGAngle` object can be associated with a particular element. The associated element is used to determine which element's content attribute to update if the object reflects an attribute. Unless otherwise described, an `SVGAngle` object is not associated with any element. Every `SVGAngle` object operates in one of two modes: 1. **_Reflect the base value_** of a reflected animatable attribute (being exposed through the {{SVGAttr("baseVal")}} member of an {{domxref("SVGAnimatedAngle")}}), 2. **_Be detached_,** which is the case for `SVGAngle` objects created with {{domxref("SVGSVGElement.createSVGAngle()")}}. ## Constants - `SVG_ANGLETYPE_UNKNOWN` - : Some unknown type of value. - `SVG_ANGLETYPE_UNSPECIFIED` - : A unitless {{cssxref("&lt;number&gt;")}} interpreted as a value in degrees. - `SVG_ANGLETYPE_DEG` - : An {{cssxref("&lt;angle&gt;")}} with a `deg` unit. - `SVG_ANGLETYPE_RAD` - : An {{cssxref("&lt;angle&gt;")}} with a `rad` unit. - `SVG_ANGLETYPE_GRAD` - : An {{cssxref("&lt;angle&gt;")}} with a `grad` unit. ## Instance properties - `unitType` - : The type of the value as specified by one of the `SVG_ANGLETYPE_*` constants defined on this interface. - `value` - : The value as a floating point value, in user units. Setting this attribute will cause `valueInSpecifiedUnits` and `valueAsString` to be updated automatically to reflect this setting. **Exceptions on setting:** A {{domxref("DOMException")}} with code `NO_MODIFICATION_ALLOWED_ERR` is raised when the length corresponds to a read-only attribute, or when the object itself is read-only. - `valueInSpecifiedUnits` - : The value as a floating point value, in the units expressed by `unitType`. Setting this attribute will cause `value` and `valueAsString` to be updated automatically to reflect this setting. **Exceptions on setting:** A {{domxref("DOMException")}} with code `NO_MODIFICATION_ALLOWED_ERR` is raised when the length corresponds to a read-only attribute, or when the object itself is read-only. - `valueAsString` - : The value as a string value, in the units expressed by `unitType`. Setting this attribute will cause `value`, `valueInSpecifiedUnits`, and `unitType` to be updated automatically to reflect this setting. **Exceptions on setting:** A {{domxref("DOMException")}} with code `SYNTAX_ERR` is raised if the assigned string cannot be parsed as a valid {{cssxref("&lt;angle&gt;")}}. A {{domxref("DOMException")}} with code `NO_MODIFICATION_ALLOWED_ERR` is raised when the length corresponds to a read-only attribute, or when the object itself is read-only. ## Instance methods - `newValueSpecifiedUnits` - : Reset the value as a number with an associated unitType, thereby replacing the values for all of the attributes on the object. **Exceptions:** - A {{domxref("DOMException")}} with code `NOT_SUPPORTED_ERR` is raised if `unitType` is `SVG_ANGLETYPE_UNKNOWN` or not a valid unit type constant (one of the other `SVG_ANGLETYPE_*` constants defined on this interface). - A {{domxref("DOMException")}} with code `NO_MODIFICATION_ALLOWED_ERR` is raised when the length corresponds to a read only attribute or when the object itself is read only. - `convertToSpecifiedUnits` - : Preserve the same underlying stored value, but reset the stored unit identifier to the given `unitType`. Object attributes `unitType`, `valueInSpecifiedUnits`, and `valueAsString` might be modified as a result of this method. ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/hid/index.md
--- title: HID slug: Web/API/HID page-type: web-api-interface status: - experimental browser-compat: api.HID --- {{securecontext_header}}{{APIRef("WebHID API")}}{{SeeCompatTable}} The **`HID`** interface provides methods for connecting to _HID devices_, listing attached HID devices and event handlers for connected HID devices. {{InheritanceDiagram}} ## Instance properties _This interface also inherits properties of its parent, {{domxref("EventTarget")}}._ ## Instance methods _This interface also inherits methods of its parent, {{domxref("EventTarget")}}._ - {{domxref("HID.getDevices","getDevices()")}} {{Experimental_Inline}} - : Returns a {{jsxref("Promise")}} that resolves with an array of connected {{domxref("HIDDevice")}} objects. - {{domxref("HID.requestDevice","requestDevice()")}} {{Experimental_Inline}} - : Returns a {{jsxref("Promise")}} that resolves with an array of connected {{domxref("HIDDevice")}} objects. Calling this function will trigger the user agent's permission flow in order to gain permission to access one selected device from the returned list of devices. ### Events - {{domxref("HID.connect_event", "connect")}} {{Experimental_Inline}} - : Fired when an HID device is connected. - {{domxref("HID.disconnect_event", "disconnect")}} {{Experimental_Inline}} - : Fired when an HID device is disconnected. ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{domxref("WebHID API")}}
0
data/mdn-content/files/en-us/web/api/hid
data/mdn-content/files/en-us/web/api/hid/disconnect_event/index.md
--- title: "HID: disconnect event" short-title: disconnect slug: Web/API/HID/disconnect_event page-type: web-api-event status: - experimental browser-compat: api.HID.disconnect_event --- {{securecontext_header}}{{APIRef("WebHID API")}}{{SeeCompatTable}} The **`disconnect`** event of the {{domxref("HID")}} interface fires when the user agent disconnects a HID device. ## Syntax Use the event name in methods like {{domxref("EventTarget.addEventListener", "addEventListener()")}}, or set an event handler property. ```js addEventListener("disconnect", (event) => {}); ondisconnect = (event) => {}; ``` ## Event type A {{domxref("HIDConnectionEvent")}}. Inherits from {{domxref("Event")}}. {{InheritanceDiagram("HIDConnectionEvent")}} ## Event properties _In addition to the properties listed below, properties from the parent interface, {{domxref("Event")}}, are available._ - {{domxref("HIDConnectionEvent.device", "device")}} {{ReadOnlyInline}} - : The {{domxref("HIDDevice")}} the event is fired for. ## Examples In the following example an event listener is registered to listen for the disconnection of a device. The name of the device is then printed to the console using {{domxref("HIDDevice.productName")}}. ```js navigator.hid.addEventListener("disconnect", ({ device }) => { console.log(`HID disconnected: ${device.productName}`); }); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/hid
data/mdn-content/files/en-us/web/api/hid/requestdevice/index.md
--- title: "HID: requestDevice() method" short-title: requestDevice() slug: Web/API/HID/requestDevice page-type: web-api-instance-method status: - experimental browser-compat: api.HID.requestDevice --- {{securecontext_header}}{{APIRef("WebHID API")}}{{SeeCompatTable}} The **`requestDevice()`** method of the {{domxref("HID")}} interface requests access to a HID device. The user agent will present a permission dialog including a list of connected devices, and ask the user to select and grant permission to one of these devices. ## Syntax ```js-nolint requestDevice(options) ``` ### Parameters - `options` - : An object containing an array of filter objects for possible devices to pair with. Each filter object can have the following properties: - `vendorId` {{optional_inline}} - : An integer representing the vendorId of the requested HID device - `productId` {{optional_inline}} - : An integer representing the productId of the requested HID device. - `usagePage` {{optional_inline}} - : An integer representing the usage page component of the HID usage of the requested device. The usage for a top level collection is used to identify the device type. Standard HID usage values can be found in the [HID Usage Tables](https://usb.org/document-library/hid-usage-tables-13) document - `usage` {{optional_inline}} - : An integer representing the usage ID component of the HID usage of the requested device. > **Note:** The device filters are used to narrow the list of devices presented to the user. If no filters are present, all connected devices are shown. When one or more filters are included, a device is included if any filter matches. To match a filter, all of the rules included in that filter must match. ### Return value A {{jsxref("Promise")}} that resolves with an array of connected {{domxref("HIDDevice")}} objects that match the filters passed in. ### Exceptions - `SecurityError` {{domxref("DOMException")}} - : Thrown if the page does not allow access to the HID feature. ## Security [Transient user activation](/en-US/docs/Web/Security/User_activation) is required. The user has to interact with the page or a UI element in order for this feature to work. ## Examples ### Matching a device with all four filter rules In the following example a HID device is requested that has a vendor ID of `0xABCD`, product ID of `0x1234`, usage page `0x0C` and usage ID `0x01`. Only devices that match all of these rules will be shown. ```js let requestButton = document.getElementById("request-hid-device"); requestButton.addEventListener("click", async () => { let device; try { const devices = await navigator.hid.requestDevice({ filters: [ { vendorId: 0xabcd, productId: 0x1234, usagePage: 0x0c, usage: 0x01, }, ], }); device = devices[0]; } catch (error) { console.log("An error occurred."); } if (!device) { console.log("No device was selected."); } else { console.log(`HID: ${device.productName}`); } }); ``` ### An example with two filters This next example includes two filters. Devices will be shown if they match either of these filters. ```js // Filter on devices with the Nintendo Switch Joy-Con USB Vendor/Product IDs. const filters = [ { vendorId: 0x057e, // Nintendo Co., Ltd productId: 0x2006, // Joy-Con Left }, { vendorId: 0x057e, // Nintendo Co., Ltd productId: 0x2007, // Joy-Con Right }, ]; // Prompt user to select a Joy-Con device. const [device] = await navigator.hid.requestDevice({ filters }); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/hid
data/mdn-content/files/en-us/web/api/hid/connect_event/index.md
--- title: "HID: connect event" short-title: connect slug: Web/API/HID/connect_event page-type: web-api-event status: - experimental browser-compat: api.HID.connect_event --- {{securecontext_header}}{{APIRef("WebHID API")}}{{SeeCompatTable}} The **`connect`** event of the {{domxref("HID")}} interface fires when the user agent connects to a HID device. ## Syntax Use the event name in methods like {{domxref("EventTarget.addEventListener", "addEventListener()")}}, or set an event handler property. ```js addEventListener("connect", (event) => {}); onconnect = (event) => {}; ``` ## Event type A {{domxref("HIDConnectionEvent")}}. Inherits from {{domxref("Event")}}. {{InheritanceDiagram("HIDConnectionEvent")}} ## Event properties _In addition to the properties listed below, properties from the parent interface, {{domxref("Event")}}, are available._ - {{domxref("HIDConnectionEvent.device", "device")}} {{ReadOnlyInline}} - : The {{domxref("HIDDevice")}} the event is fired for. ## Examples In the following example an event listener is registered to listen for the connection of a device. The name of the device is then printed to the console using {{domxref("HIDDevice.productName")}}. ```js navigator.hid.addEventListener("connect", ({ device }) => { console.log(`HID connected: ${device.productName}`); }); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/hid
data/mdn-content/files/en-us/web/api/hid/getdevices/index.md
--- title: "HID: getDevices() method" short-title: getDevices() slug: Web/API/HID/getDevices page-type: web-api-instance-method status: - experimental browser-compat: api.HID.getDevices --- {{securecontext_header}}{{APIRef("WebHID API")}}{{SeeCompatTable}} The **`getDevices()`** method of the {{domxref("HID")}} interface gets a list of the connected HID devices that the user has previously been granted access to in response to a {{domxref("HID.requestDevice","requestDevice()")}} call. ## Syntax ```js-nolint getDevices() ``` ### Parameters None. ### Return value A {{jsxref("Promise")}} that resolves with a list of {{domxref("HIDDevice")}} objects. ## Examples The following example gets a list of devices and logs the device names to the console. ```js document.addEventListener("DOMContentLoaded", async () => { let devices = await navigator.hid.getDevices(); devices.forEach((device) => { console.log(`HID: ${device.productName}`); }); }); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/svgtransform/index.md
--- title: SVGTransform slug: Web/API/SVGTransform page-type: web-api-interface browser-compat: api.SVGTransform --- {{APIRef("SVG")}} ## SVG transform interface `SVGTransform` is the interface for one of the component transformations within an {{ domxref("SVGTransformList") }}; thus, an `SVGTransform` object corresponds to a single component (e.g., `scale(…)` or `matrix(…)`) within a {{ SVGAttr("transform") }} attribute. An `SVGTransform` object can be designated as read only, which means that attempts to modify the object will result in an exception being thrown. ### Interface overview <table class="no-markdown"> <tbody> <tr> <th scope="row">Also implement</th> <td><em>None</em></td> </tr> <tr> <th scope="row">Methods</th> <td> <ul> <li> <code >void setMatrix(in {{ domxref("DOMMatrix") }} matrix)</code > </li> <li><code>void setTranslate(in float tx, in float ty)</code></li> <li><code>void setScale(in float sx, in float sy)</code></li> <li> <code >void setRotate(in float angle, in float cx, in float cy)</code > </li> <li><code>void setSkewX(in float angle)</code></li> <li><code>void setSkewY(in float angle)</code></li> </ul> </td> </tr> <tr> <th scope="row">Properties</th> <td> <ul> <li>readonly unsigned short <code>type</code></li> <li>readonly float <code>angle</code></li> <li> readonly {{ domxref("DOMMatrix") }} <code>matrix</code> </li> </ul> </td> </tr> <tr> <th scope="row">Constants</th> <td> <ul> <li><code>SVG_TRANSFORM_UNKNOWN</code> = 0</li> <li><code>SVG_TRANSFORM_MATRIX</code> = 1</li> <li><code>SVG_TRANSFORM_TRANSLATE</code> = 2</li> <li><code>SVG_TRANSFORM_SCALE</code> = 3</li> <li><code>SVG_TRANSFORM_ROTATE</code> = 4</li> <li><code>SVG_TRANSFORM_SKEWX</code> = 5</li> <li><code>SVG_TRANSFORM_SKEWY</code> = 6</li> </ul> </td> </tr> <tr> <th scope="row">Normative document</th> <td> <a href="https://www.w3.org/TR/SVG11/coords.html#InterfaceSVGTransform" >SVG 1.1 (2nd Edition)</a > </td> </tr> </tbody> </table> ## Constants <table class="no-markdown"> <tbody> <tr> <th>Name</th> <th>Value</th> <th>Description</th> </tr> <tr> <td><code>SVG_TRANSFORM_UNKNOWN</code></td> <td>0</td> <td> The unit type is not one of predefined unit types. It is invalid to attempt to define a new value of this type or to attempt to switch an existing value to this type. </td> </tr> <tr> <td><code>SVG_TRANSFORM_MATRIX</code></td> <td>1</td> <td>A <code>matrix(…)</code> transformation</td> </tr> <tr> <td><code>SVG_TRANSFORM_TRANSLATE</code></td> <td>2</td> <td>A <code>translate(…)</code> transformation</td> </tr> <tr> <td><code>SVG_TRANSFORM_SCALE</code></td> <td>3</td> <td>A <code>scale(…)</code> transformation</td> </tr> <tr> <td><code>SVG_TRANSFORM_ROTATE</code></td> <td>4</td> <td>A <code>rotate(…)</code> transformation</td> </tr> <tr> <td><code>SVG_TRANSFORM_SKEWX</code></td> <td>5</td> <td>A <code>skewx(…)</code> transformation</td> </tr> <tr> <td><code>SVG_TRANSFORM_SKEWY</code></td> <td>6</td> <td>A <code>skewy(…)</code> transformation</td> </tr> </tbody> </table> ## Instance properties <table class="no-markdown"> <thead> <tr> <th>Name</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><code>type</code></td> <td>unsigned short</td> <td> The type of the value as specified by one of the SVG_TRANSFORM_* constants defined on this interface. </td> </tr> <tr> <td><code>angle</code></td> <td>float</td> <td> A convenience attribute for <code>SVG_TRANSFORM_ROTATE</code>, <code>SVG_TRANSFORM_SKEWX</code> and <code>SVG_TRANSFORM_SKEWY</code>. It holds the angle that was specified.<br /><br />For <code>SVG_TRANSFORM_MATRIX</code>, <code>SVG_TRANSFORM_TRANSLATE</code> and <code>SVG_TRANSFORM_SCALE</code>, <code>angle</code> will be zero. </td> </tr> <tr> <td><code>matrix</code></td> <td>{{ domxref("DOMMatrix") }}</td> <td> <p> The matrix that represents this transformation. The matrix object is live, meaning that any changes made to the <code>SVGTransform</code> object are immediately reflected in the matrix object and vice versa. In case the matrix object is changed directly (i.e., without using the methods on the <code>SVGTransform</code> interface itself) then the type of the <code>SVGTransform</code> changes to <code>SVG_TRANSFORM_MATRIX</code>. </p> <ul> <li> For <code>SVG_TRANSFORM_MATRIX</code>, the matrix contains the a, b, c, d, e, f values supplied by the user. </li> <li> For <code>SVG_TRANSFORM_TRANSLATE</code>, e and f represent the translation amounts (a=1, b=0, c=0 and d=1). </li> <li> For <code>SVG_TRANSFORM_SCALE</code>, a and d represent the scale amounts (b=0, c=0, e=0 and f=0). </li> <li> For <code>SVG_TRANSFORM_SKEWX</code> and <code>SVG_TRANSFORM_SKEWY</code>, a, b, c and d represent the matrix which will result in the given skew (e=0 and f=0). </li> <li> For <code>SVG_TRANSFORM_ROTATE</code>, a, b, c, d, e and f together represent the matrix which will result in the given rotation. When the rotation is around the center point (0, 0), e and f will be zero. </li> </ul> </td> </tr> </tbody> </table> ## Instance methods <table class="no-markdown"> <thead> <tr> <th>Name &#x26; Arguments</th> <th>Return</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td> <code ><strong>setMatrix</strong>(in {{ domxref("DOMMatrix") }} <em>matrix</em>)</code > </td> <td><em>void</em></td> <td> <p> Sets the transform type to <code>SVG_TRANSFORM_MATRIX</code>, with parameter matrix defining the new transformation. Note that the values from the parameter <code>matrix</code> are copied. </p> <p><strong>Exceptions:</strong></p> <ul> <li> a {{ domxref("DOMException") }} with code <code>NO_MODIFICATION_ALLOWED_ERR</code> is raised when attempting to modify a read only attribute or when the object itself is read only. </li> </ul> </td> </tr> <tr> <td> <code ><strong>setTranslate</strong>(in float <em>tx</em> , in float <em>ty</em>)</code > </td> <td><em>void</em></td> <td> <p> Sets the transform type to <code>SVG_TRANSFORM_TRANSLATE</code>, with parameters <code>tx</code> and <code>ty</code> defining the translation amounts. </p> <p><strong>Exceptions:</strong></p> <ul> <li> a {{ domxref("DOMException") }} with code <code>NO_MODIFICATION_ALLOWED_ERR</code> is raised when attempting to modify a read only attribute or when the object itself is read only. </li> </ul> </td> </tr> <tr> <td> <code ><strong>setScale</strong>(in float <em>sx</em> , in float <em>sy</em>)</code > </td> <td><em>void</em></td> <td> <p> Sets the transform type to <code>SVG_TRANSFORM_SCALE</code>, with parameters <code>sx</code> and <code>sy</code> defining the scale amounts. </p> <p><strong>Exceptions:</strong></p> <ul> <li> a {{ domxref("DOMException") }} with code <code>NO_MODIFICATION_ALLOWED_ERR</code> is raised when attempting to modify a read only attribute or when the object itself is read only. </li> </ul> </td> </tr> <tr> <td> <code ><strong>setRotate</strong>(in float <em>angle</em>, in float <em>cx</em> , in float <em>cy</em>)</code > </td> <td><em>void</em></td> <td> <p> Sets the transform type to <code>SVG_TRANSFORM_ROTATE</code>, with parameter <code>angle</code> defining the rotation angle and parameters <code>cx</code> and <code>cy</code> defining the optional center of rotation. </p> <p><strong>Exceptions:</strong></p> <ul> <li> a {{ domxref("DOMException") }} with code <code>NO_MODIFICATION_ALLOWED_ERR</code> is raised when attempting to modify a read only attribute or when the object itself is read only. </li> </ul> </td> </tr> <tr> <td> <code><strong>setSkewX</strong>(in float <em>angle</em>)</code> </td> <td><em>void</em></td> <td> <p> Sets the transform type to <code>SVG_TRANSFORM_SKEWX</code>, with parameter <code>angle</code> defining the amount of skew. </p> <p><strong>Exceptions:</strong></p> <ul> <li> a {{ domxref("DOMException") }} with code <code>NO_MODIFICATION_ALLOWED_ERR</code> is raised when attempting to modify a read only attribute or when the object itself is read only. </li> </ul> </td> </tr> <tr> <td> <code><strong>setSkewY</strong>(in float <em>angle</em>)</code> </td> <td><em>void</em></td> <td> <p> Sets the transform type to <code>SVG_TRANSFORM_SKEWY</code>, with parameter <code>angle</code> defining the amount of skew. </p> <p><strong>Exceptions:</strong></p> <ul> <li> a {{ domxref("DOMException") }} with code <code>NO_MODIFICATION_ALLOWED_ERR</code> is raised when attempting to modify a read only attribute or when the object itself is read only. </li> </ul> </td> </tr> </tbody> </table> ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/prioritized_task_scheduling_api/index.md
--- title: Prioritized Task Scheduling API slug: Web/API/Prioritized_Task_Scheduling_API page-type: web-api-overview browser-compat: - api.Scheduler - api.Scheduling --- {{DefaultAPISidebar("Prioritized Task Scheduling API")}} {{AvailableInWorkers}} The **Prioritized Task Scheduling API** provides a standardized way to prioritize all tasks belonging to an application, whether they are defined in a website developer's code or in third-party libraries and frameworks. The [task priorities](#task_priorities) are very coarse-grained and based around whether tasks block user interaction or otherwise impact the user experience, or can run in the background. Developers and frameworks may implement more fine-grained prioritization schemes within the broad categories defined by the API. The API is promise-based and supports the ability to set and change task priorities, to delay tasks being added to the scheduler, to abort tasks, and to monitor for priority change and abort events. In this page, we also include information about the {{domxref("Scheduling.isInputPending", "navigator.scheduling.isInputPending()")}} method, which was defined in a different API specification but is very closely related to task scheduling. This method allows you to check whether there are pending input events in the event queue, and therefore handle task queues efficiently, only yielding to the main thread when it is needed. ## Concepts and usage ### Prioritized task scheduling The Prioritized Task Scheduling API is available in both window and worker threads using the `scheduler` property on the global object. The main API method is {{domxref('Scheduler.postTask()')}}, which takes a callback function ("the task") and returns a promise that resolves with the return value of the function, or rejects with an error. The simplest form of the API is shown below. This creates a task with default priority [`user-visible`](#user-visible) that has a fixed priority and cannot be aborted. ```js const promise = scheduler.postTask(myTask); ``` Because the method returns a promise you can wait on its resolution asynchronously using `then`, and catch errors thrown by the task callback function (or when the task is aborted) using `catch`. The callback function can be any kind of function (below we demonstrate an arrow function). ```js scheduler .postTask(() => "Task executing") // Promise resolved: log task result when promise resolves .then((taskResult) => console.log(`${taskResult}`)) // Promise rejected: log AbortError or errors thrown by task .catch((error) => console.error(`Error: ${error}`)); ``` The same task might be waited on using `await`/`async` as shown below (note, this is run in an [Immediately Invoked Function Expression (IIFE)](/en-US/docs/Glossary/IIFE)): ```js (async () => { try { const result = await scheduler.postTask(() => "Task executing"); console.log(result); } catch (error) { // Log AbortError or error thrown in task function console.error(`Error: ${error}`); } })(); ``` You can also specify an options object to the `postTask()` method if you want to change the default behavior. The options are: - `priority` This allows you to specify a particular immutable priority. Once set, the priority cannot be changed. - `signal` This allows you to specify a signal, which may be either a {{domxref("TaskSignal")}} or {{domxref("AbortSignal")}} The signal is associated with a controller, which can be used to abort the task. A {{domxref("TaskSignal")}} can also be used to set and change the task priority if the [task is mutable](#mutable_and_immutable_task_priority). - `delay` This allows you to specify the delay before the task is added for scheduling, in milliseconds. The same example as above with a priority option would look like this: ```js scheduler .postTask(() => "Task executing", { priority: "user-blocking" }) .then((taskResult) => console.log(`${taskResult}`)) // Log the task result .catch((error) => console.error(`Error: ${error}`)); // Log any errors ``` #### Task priorities Scheduled tasks are run in priority order, followed by the order that they were added to the scheduler queue. There are just three priorities, which are listed below (ordered from highest to lowest): - `user-blocking` - : Tasks that stop users from interacting with the page. This includes rendering the page to the point where it can be used, or responding to user input. - `user-visible` - : Tasks that are visible to the user but not necessarily blocking user actions. This might include rendering non-essential parts of the page, such as non-essential images or animations. This is the default priority. - `background` - : Tasks that are not time-critical. This might include log processing or initializing third party libraries that aren't required for rendering. #### Mutable and immutable task priority There are many use cases where the task priority never needs to change, while for others it does. For example fetching an image might change from a `background` task to `user-visible` as a carousel is scrolled into the viewing area. Task priorities can be set as static (immutable) or dynamic (modifiable) depending on the arguments passed to {{domxref('Scheduler.postTask()')}}. Task priority is immutable if a value is specified in the `options.priority` argument. The given value will be used for the task priority and cannot be changed. The priority is modifiable only if a {{domxref("TaskSignal")}} is passed to the `options.signal` argument **and** `options.priority` is **not set**. In this case the task will take its initial priority from the `signal` priority, and the priority can subsequently be changed by calling {{domxref("TaskController.setPriority()")}} on the controller associated with the signal. If the priority is not set with `options.priority` or by passing a {{domxref("TaskSignal")}} to `options.signal` then it defaults to `user-visible` (and is by definition immutable). Note that a task that needs to be aborted must set `options.signal` to either {{domxref("TaskSignal")}} or {{domxref("AbortSignal")}}. However for a task with an immutable priority, {{domxref("AbortSignal")}} more clearly indicates that the task priority cannot be changed using the signal. ### isInputPending() The {{domxref("Scheduling.isInputPending", "isInputPending()")}} API is intended to help with task execution, enabling you to make task runners more efficient by yielding to the main thread only when the user is trying to interact with your app, rather than having to do it at arbitrary intervals. Let's run through an example to demonstrate what we mean by this. When you have several tasks that are of roughly the same priority, it makes sense to break them down into separate functions to aid with maintenance, debugging, and many other reasons. For example: ```js function main() { a(); b(); c(); d(); e(); } ``` However, this kind of structure doesn't help with main thread blocking. Since all five of the tasks are being run inside one main function, the browser runs them all as a single task. To handle this, we tend to run a function periodically to get the code to _yield to the main thread_. This means that our code is split into multiple tasks, between the execution of which the browser is given the opportunity to handle high-priority tasks such as updating the UI. A common pattern for this function uses {{domxref("setTimeout()")}} to postpone execution into a separate task: ```js function yield() { return new Promise((resolve) => { setTimeout(resolve, 0); }); } ``` This can be used inside a task runner pattern like so, to yield to the main thread after each task has been run: ```js async function main() { // Create an array of functions to run const tasks = [a, b, c, d, e]; // Loop over the tasks while (tasks.length > 0) { // Shift the first task off the tasks array const task = tasks.shift(); // Run the task task(); // Yield to the main thread await yield(); } } ``` This helps with the main thread-blocking problem, but it could be better — we can use {{domxref("Scheduling.isInputPending", "navigator.scheduling.isInputPending()")}} to run the `yield()` function only when the user is attempting to interact with the page: ```js async function main() { // Create an array of functions to run const tasks = [a, b, c, d, e]; while (tasks.length > 0) { // Yield to a pending user input if (navigator.scheduling.isInputPending()) { await yield(); } else { // Shift the first task off the tasks array const task = tasks.shift(); // Run the task task(); } } } ``` This allows you to avoid blocking the main thread when the user is actively interacting with the page, potentially providing a smoother user experience. However, by only yielding when necessary, we can continue running the current task when there are no user inputs to process. This also avoids tasks being placed at the back of the queue behind other non-essential browser-initiated tasks that were scheduled after the current one. ## Interfaces - {{domxref("Scheduler")}} - : Contains the {{domxref('Scheduler.postTask', 'postTask()')}} method for adding prioritized tasks to be scheduled. An instance of this interface is available on the {{domxref("Window")}} or {{domxref("WorkerGlobalScope")}} global objects (`this.scheduler`). - {{domxref("Scheduling")}} - : Contains the {{domxref('Scheduling.isInputPending', 'isInputPending()')}} method for checking whether there are pending input events in the event queue. - {{domxref("TaskController")}} - : Supports both aborting a task and changing its priority. - {{domxref("TaskSignal")}} - : A signal object that allows you to abort a task and change its priority, if required, using a {{domxref("TaskController")}} object. - {{domxref("TaskPriorityChangeEvent")}} - : The interface for the {{domxref("TaskSignal/prioritychange_event","prioritychange")}} event, which is sent when the priority for a task is changed. > **Note:** If the [task priority](#task_priorities) never needs to be changed, you can use an {{domxref("AbortController")}} and its associated {{domxref("AbortSignal")}} instead of {{domxref("TaskController")}} and {{domxref("TaskSignal")}}. ### Extensions to other interfaces - [`Navigator.scheduling`](/en-US/docs/Web/API/Navigator/scheduling) - : This property is the entry point for using the `Scheduling.isInputPending()` method. - [`scheduler`](/en-US/docs/Web/API/scheduler_property) - : This property is the entry point for using the `Scheduler.postTask()` method. It is implemented on [`Window`](/en-US/docs/Web/API/Window#scheduler) and [`WorkerGlobalScope`](/en-US/docs/Web/API/WorkerGlobalScope#scheduler), making an instance of {{domxref("Scheduler")}} available through `this` in most scopes. ## Task scheduling examples Note that the examples below use `mylog()` to write to a text area. The code for the log area and method is generally hidden to not distract from more relevant code. ```html hidden <textarea id="log" style="min-height: 20px; width: 95%"></textarea> ``` ```js // hidden logger code - simplifies example let log = document.getElementById("log"); function mylog(text) { log.textContent += `${text}\n`; } ``` ### Feature checking Check whether prioritized task scheduling is supported by testing for the [`scheduler`](/en-US/docs/Web/API/scheduler_property) property in the global "`this`" exposed to the current scope. The code below prints "Feature: Supported" if the API is supported on this browser. ```html hidden <textarea id="log" style="min-height: 20px; width: 95%"></textarea> ``` ```js hidden //hidden logger code - simplifies example let log = document.getElementById("log"); function mylog(text) { log.textContent += `${text}\n`; } ``` ```js // Check that feature is supported if ("scheduler" in this) { mylog("Feature: Supported"); } else { mylog("Feature: NOT Supported"); } ``` {{EmbedLiveSample('Feature checking','400px','70px')}} ### Basic usage Tasks are posted using {{domxref('Scheduler.postTask()')}}, specifying a callback function (task) in the first argument, and an optional second argument that can be used to specify a task priority, signal, and/or delay. The method returns a {{jsxref("Promise")}} that resolves with the return value of the callback function, or rejects with either an abort error or an error thrown in the function. ```html hidden <textarea id="log" style="min-height: 100px; width: 95%"></textarea> ``` ```js hidden let log = document.getElementById("log"); function mylog(text) { log.textContent += `${text}\n`; } ``` Because it returns a promise, {{domxref('Scheduler.postTask()')}} can be [chained with other promises](/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise#chained_promises). Below we show how to wait on the promise to resolve using [`then`](/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/then). This uses the default priority (`user-visible`). ```js // A function that defines a task function myTask() { return "Task 1: user-visible"; } if ("scheduler" in this) { // Post task with default priority: 'user-visible' (no other options) // When the task resolves, Promise.then() logs the result. scheduler.postTask(myTask).then((taskResult) => mylog(`${taskResult}`)); } ``` The method can also be used with [`await`](/en-US/docs/Web/JavaScript/Reference/Operators/await) inside an [async function](/en-US/docs/Web/JavaScript/Reference/Statements/async_function). The code below shows how you might use this approach to wait on a `user-blocking` task. ```js function myTask2() { return "Task 2: user-blocking"; } async function runTask2() { const result = await scheduler.postTask(myTask2, { priority: "user-blocking", }); mylog(result); // Logs 'Task 2: user-blocking'. } runTask2(); ``` In some cases you might not need to wait on completion at all. For simplicity many of the examples here simply log the result as the task executes. ```js // A function that defines a task function myTask3() { mylog("Task 3: user-visible"); } if ("scheduler" in this) { // Post task and log result when it runs scheduler.postTask(myTask3); } ``` The log below shows the output of the three tasks above. Note that the order they are run depends on the priority first, and then the declaration order. {{EmbedLiveSample('Basic usage','400px','170px')}} ### Permanent priorities [Task priorities](#task_priorities) may be set using `priority` parameter in the optional second argument. Priorities that are set in this way are [immutable](#mutable_and_immutable_task_priority) (cannot be changed). Below we post two groups of three tasks, each member in reverse order of priority. The final task has the default priority. When run, each task simply logs it's expected order (we're not waiting on the result because we don't need to in order to show execution order). ```js hidden let log = document.getElementById("log"); function mylog(text) { log.textContent += `${text}\n`; } ``` ```js if ("scheduler" in this) { // three tasks, in reverse order of priority scheduler.postTask(() => mylog("bckg 1"), { priority: "background" }); scheduler.postTask(() => mylog("usr-vis 1"), { priority: "user-visible" }); scheduler.postTask(() => mylog("usr-blk 1"), { priority: "user-blocking" }); // three more tasks, in reverse order of priority scheduler.postTask(() => mylog("bckg 2"), { priority: "background" }); scheduler.postTask(() => mylog("usr-vis 2"), { priority: "user-visible" }); scheduler.postTask(() => mylog("usr-blk 2"), { priority: "user-blocking" }); // Task with default priority: user-visible scheduler.postTask(() => mylog("usr-vis 3 (default)")); } ``` ```html hidden <textarea id="log" style="min-height: 120px; width: 95%"></textarea> ``` The output below shows that the tasks are executed in priority order, and then declaration order. {{EmbedLiveSample("Permanent priorities",'400px','170px')}} ### Changing task priorities [Task priorities](#task_priorities) can also take their initial value from a {{domxref("TaskSignal")}} passed to `postTask()` in the optional second argument. If set in this way, the priority of the task [can then be changed](#mutable_and_immutable_task_priority) using the controller associated with the signal. > **Note:** Setting and changing task priorities using a signal only works when the `options.priority` argument to `postTask()` is not set, and when the `options.signal` is a {{domxref("TaskSignal")}} (and not an {{domxref("AbortSignal")}}). The code below first shows how to create a {{domxref("TaskController")}}, setting the initial priority of its signal to `user-blocking` in the [`TaskController()` constructor](/en-US/docs/Web/API/TaskController/TaskController). The code then uses `addEventListener()` to add an event listener to the controller's signal (we could alternatively use the `TaskSignal.onprioritychange` property to add an event handler). The event handler uses {{domxref('TaskPriorityChangeEvent.previousPriority', 'previousPriority')}} on the event to get the original priority and {{domxref("TaskSignal.priority")}} on the event target to get the new/current priority. The task is then posted, passing in the signal, and then we immediately change the priority to `background` by calling {{domxref("TaskController.setPriority()")}} on the controller. ```html hidden <textarea id="log" style="min-height: 70px; width: 95%"></textarea> ``` ```js hidden let log = document.getElementById("log"); function mylog(text) { log.textContent += `${text}\n`; } ``` ```js if ("scheduler" in this) { // Create a TaskController, setting its signal priority to 'user-blocking' const controller = new TaskController({ priority: "user-blocking" }); // Listen for 'prioritychange' events on the controller's signal. controller.signal.addEventListener("prioritychange", (event) => { const previousPriority = event.previousPriority; const newPriority = event.target.priority; mylog(`Priority changed from ${previousPriority} to ${newPriority}.`); }); // Post task using the controller's signal. // The signal priority sets the initial priority of the task scheduler.postTask(() => mylog("Task 1"), { signal: controller.signal }); // Change the priority to 'background' using the controller controller.setPriority("background"); } ``` The output below demonstrates that the priority was successfully changed to `background` from `user-blocking`. Note that in this case the priority is changed before the task is executed, but it could equally have been changed while the task was running. {{EmbedLiveSample("Changing task priorities",'400px','130px')}} ### Aborting tasks Tasks can be aborted using either {{domxref("TaskController")}} and {{domxref("AbortController")}}, in exactly the same way. The only difference is that you must use {{domxref("TaskController")}} if you also want to set the task priority. ```html hidden <textarea id="log" style="min-height: 50px; width: 95%"></textarea> ``` ```js hidden let log = document.getElementById("log"); function mylog(text) { log.textContent += `${text}\n`; } ``` The code below creates a controller and passes its signal to the task. The task is then immediately aborted. This causes the promise to be rejected with an `AbortError`, which is caught in the `catch` block and logged. Note that we could also have listened for the [`abort` event](/en-US/docs/Web/API/AbortSignal/abort_event) fired on the {{domxref("TaskSignal")}} or {{domxref("AbortSignal")}} and logged the abort there. ```js if ("scheduler" in this) { // Declare a TaskController with default priority const abortTaskController = new TaskController(); // Post task passing the controller's signal scheduler .postTask(() => mylog("Task executing"), { signal: abortTaskController.signal, }) .then((taskResult) => mylog(`${taskResult}`)) // This won't run! .catch((error) => mylog(`Error: ${error}`)); // Log the error // Abort the task abortTaskController.abort(); } ``` The log below shows the aborted task. {{EmbedLiveSample("Aborting tasks",'400px','100px')}} ### Delaying tasks Tasks can be delayed by specifying an integer number of milliseconds in the `options.delay` parameter to `postTask()`. This effectively adds the task to the prioritized queue on a timeout, as might be created using [`setTimeout()`](/en-US/docs/Web/API/setTimeout). The `delay` is the minimum amount of time before the task is added to the scheduler; it may be longer. ```html hidden <textarea id="log" style="min-height: 50px; width: 95%"></textarea> ``` ```js hidden let log = document.getElementById("log"); function mylog(text) { log.textContent += `${text}\n`; } ``` The code below shows two tasks added (as arrow functions) with a delay. ```js if ("scheduler" in this) { // Post task as arrow function with delay of 2 seconds scheduler .postTask(() => "Task delayed by 2000ms", { delay: 2000 }) .then((taskResult) => mylog(`${taskResult}`)); scheduler .postTask(() => "Next task should complete in about 2000ms", { delay: 1 }) .then((taskResult) => mylog(`${taskResult}`)); } ``` Refresh the page. Note that the second string appears in log after about 2 seconds. {{EmbedLiveSample("Delaying tasks",'400px','100px')}} ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - [Building a Faster Web Experience with the postTask Scheduler](https://medium.com/airbnb-engineering/building-a-faster-web-experience-with-the-posttask-scheduler-276b83454e91) on the Airbnb blog (2021) - [Optimizing long tasks](https://web.dev/articles/optimize-long-tasks#yield_only_when_necessary) on web.dev (2022)
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/gamepad_api/index.md
--- title: Gamepad API slug: Web/API/Gamepad_API page-type: web-api-overview browser-compat: api.Gamepad --- {{securecontext_header}}{{DefaultAPISidebar("Gamepad API")}} The **Gamepad API** is a way for developers to access and respond to signals from gamepads and other game controllers in a simple, consistent way. It contains three interfaces, two events and one specialist function, to respond to gamepads being connected and disconnected, and to access other information about the gamepads themselves, and what buttons and other controls are currently being pressed. ## Interfaces - [`Gamepad`](/en-US/docs/Web/API/Gamepad) - : Represents a gamepad/controller connected to the computer. - [`GamepadButton`](/en-US/docs/Web/API/GamepadButton) - : Represents a button on one of the connected controllers. - [`GamepadEvent`](/en-US/docs/Web/API/GamepadEvent) - : The event object representing events fired that are related to gamepads. ### Experimental Gamepad extensions - [`GamepadHapticActuator`](/en-US/docs/Web/API/GamepadHapticActuator) - : Represents hardware in the controller designed to provide haptic feedback to the user (if available), most commonly vibration hardware. - [`GamepadPose`](/en-US/docs/Web/API/GamepadPose) - : Represents the pose of a controller (e.g. position and orientation in 3D space) in the case of a [WebVR](/en-US/docs/Web/API/WebVR_API) controller. This is _not_ used by the newer [WebXR](/en-US/docs/Web/API/WebXR_Device_API) standard. See also the [extensions to the Gamepad interface](/en-US/docs/Web/API/Gamepad#experimental_extensions_to_gamepad), for features that allow you to access the above information. ### Extensions to other interfaces #### Navigator - {{domxref("Navigator.getGamepads()")}} - : An extension to the {{domxref("Navigator")}} object that returns an array of {{domxref("Gamepad")}} objects, one for each connected gamepad. #### Window events - {{domxref("Window.gamepadconnected_event", "gamepadconnected")}} - : An event that will fire when a gamepad is connected. - {{domxref("Window.gamepaddisconnected_event", "gamepaddisconnected")}} - : An event that will fire when a gamepad is disconnected. ## Tutorials and guides - [Using the Gamepad API](/en-US/docs/Web/API/Gamepad_API/Using_the_Gamepad_API) - [Implementing controls using the Gamepad API](/en-US/docs/Games/Techniques/Controls_Gamepad_API) ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - [The Gamepad API](https://hacks.mozilla.org/2013/12/the-gamepad-api/) by Ted Mielczarek and Robert Nyman - [Simple API demo page](https://luser.github.io/gamepadtest/) ([source](https://github.com/luser/gamepadtest))
0
data/mdn-content/files/en-us/web/api/gamepad_api
data/mdn-content/files/en-us/web/api/gamepad_api/using_the_gamepad_api/index.md
--- title: Using the Gamepad API slug: Web/API/Gamepad_API/Using_the_Gamepad_API page-type: guide browser-compat: api.Gamepad --- {{DefaultAPISidebar("Gamepad API")}} HTML provides the necessary components for rich, interactive game development. Technologies like `<canvas>`, WebGL, `<audio>`, and `<video>`, along with JavaScript implementations, support tasks that provide similar, if not the same, features as native code. The Gamepad API allows developers and designers to access and use gamepads and other game controllers. The [Gamepad API](/en-US/docs/Web/API/Gamepad_API) introduces new events on the {{ domxref("Window") }} object for reading gamepad and controller (hereby referred to as _gamepad_) state. In addition to these events, the API also adds a {{ domxref("Gamepad") }} object, which you can use to query the state of a connected gamepad, and a {{ domxref("navigator.getGamepads()") }} method which you can use to get a list of gamepads known to the page. ## Connecting to a gamepad When a new gamepad is connected to the computer, the focused page first receives a {{ domxref("Window/gamepadconnected_event", "gamepadconnected") }} event. If a gamepad is already connected when the page loaded, the {{ domxref("Window/gamepadconnected_event", "gamepadconnected") }} event is dispatched to the focused page when the user presses a button or moves an axis. > **Note:** In Firefox, gamepads are only exposed to a page when the user interacts with one with the page visible. This helps prevent gamepads from being used for [fingerprinting](/en-US/docs/Glossary/Fingerprinting) the user. Once one gamepad has been interacted with, other gamepads that are connected will automatically be visible. You can use {{domxref("Window/gamepadconnected_event", "gamepadconnected")}} like this: ```js window.addEventListener("gamepadconnected", (e) => { console.log( "Gamepad connected at index %d: %s. %d buttons, %d axes.", e.gamepad.index, e.gamepad.id, e.gamepad.buttons.length, e.gamepad.axes.length, ); }); ``` Each gamepad has a unique ID associated with it, which is available on the event's {{domxref("GamepadEvent.gamepad", "gamepad")}} property. ## Disconnecting a gamepad When a gamepad is disconnected, and if a page has previously received data for that gamepad (e.g. {{ domxref("Window/gamepadconnected_event", "gamepadconnected") }}), a second event is dispatched to the focused window, {{domxref("Window.gamepaddisconnected_event", "gamepaddisconnected")}}: ```js window.addEventListener("gamepaddisconnected", (e) => { console.log( "Gamepad disconnected from index %d: %s", e.gamepad.index, e.gamepad.id, ); }); ``` The gamepad's {{domxref("Gamepad.index", "index")}} property will be unique per-device connected to the system, even if multiple controllers of the same type are used. The `index` property also functions as the index into the {{jsxref("Array")}} returned by {{ domxref("Navigator.getGamepads()") }}. ```js const gamepads = {}; function gamepadHandler(event, connected) { const gamepad = event.gamepad; // Note: // gamepad === navigator.getGamepads()[gamepad.index] if (connected) { gamepads[gamepad.index] = gamepad; } else { delete gamepads[gamepad.index]; } } window.addEventListener( "gamepadconnected", (e) => { gamepadHandler(e, true); }, false, ); window.addEventListener( "gamepaddisconnected", (e) => { gamepadHandler(e, false); }, false, ); ``` This previous example also demonstrates how the `gamepad` property can be held after the event has completed — a technique we will use for device state querying later. ## Querying the Gamepad object As you can see, the **gamepad** events discussed above include a `gamepad` property on the event object, which returns a {{ domxref("Gamepad") }} object. We can use this in order to determine which gamepad (i.e., its ID) had caused the event, since multiple gamepads might be connected at once. We can do much more with the {{ domxref("Gamepad") }} object, including holding a reference to it and querying it to find out which buttons and axes are being pressed at any one time. Doing so is often desirable for games or other interactive web pages that need to know the state of a gamepad now vs. the next time an event fires. Performing such checks tends to involve using the {{ domxref("Gamepad") }} object in conjunction with an animation loop (e.g., {{ domxref("Window.requestAnimationFrame","requestAnimationFrame") }}), where developers want to make decisions for the current frame based on the state of the gamepad or gamepads. The {{domxref("Navigator.getGamepads()")}} method returns an array of all devices currently visible to the webpage, as {{ domxref("Gamepad") }} objects (the first value is always `null`, so `null` will be returned if there are no gamepads connected.) This can then be used to get the same information. For example, the first code example above could be rewritten as shown below: ```js window.addEventListener("gamepadconnected", (e) => { const gp = navigator.getGamepads()[e.gamepad.index]; console.log( "Gamepad connected at index %d: %s. %d buttons, %d axes.", gp.index, gp.id, gp.buttons.length, gp.axes.length, ); }); ``` The {{ domxref("Gamepad") }} object's properties are as follows: - `id`: A string containing some information about the controller. This is not strictly specified, but in Firefox it will contain three pieces of information separated by dashes (`-`): two 4-digit hexadecimal strings containing the USB vendor and product id of the controller, and the name of the controller as provided by the driver. This information is intended to allow you to find a mapping for the controls on the device as well as display useful feedback to the user. - `index`: An integer that is unique for each gamepad currently connected to the system. This can be used to distinguish multiple controllers. Note that disconnecting a device and then connecting a new device may reuse the previous index. - `mapping`: A string indicating whether the browser has remapped the controls on the device to a known layout. Currently there is only one supported known layout — the [standard gamepad](https://w3c.github.io/gamepad/gamepad.html#remapping). If the browser is able to map controls on the device to that layout the `mapping` property will be set to the string `standard`. - `connected`: A boolean indicating whether the gamepad is still connected to the system. If this is so the value is `True`; if not, it is `False`. - `buttons`: An array of {{ domxref("GamepadButton") }} objects representing the buttons present on the device. Each {{ domxref("GamepadButton") }} has a `pressed` and a `value` property: - The `pressed` property is a boolean indicating whether the button is currently pressed (`true`) or unpressed (`false`). - The `value` property is a floating point value used to enable representing analog buttons, such as the triggers on many modern gamepads. The values are normalized to the range 0.0..1.0, with 0.0 representing a button that is not pressed, and 1.0 representing a button that is fully pressed. - `axes`: An array representing the controls with axes present on the device (e.g. analog thumb sticks). Each entry in the array is a floating point value in the range -1.0 - 1.0, representing the axis position from the lowest value (-1.0) to the highest value (1.0). - `timestamp`: This returns a {{ domxref("DOMHighResTimeStamp") }} representing the last time the data for this gamepad was updated, allowing developers to determine if the `axes` and `button` data have been updated from the hardware. The value must be relative to the `navigationStart` attribute of the {{ domxref("PerformanceTiming") }} interface. Values are monotonically increasing, meaning that they can be compared to determine the ordering of updates, as newer values will always be greater than or equal to older values. Note that this property is not currently supported in Firefox. > **Note:** The Gamepad object is available on the {{ domxref("Window/gamepadconnected_event", "gamepadconnected") }} event rather than the {{ domxref("Window") }} object itself, for security reasons. Once we have a reference to it, we can query its properties for information about the current state of the gamepad. Behind the scenes, this object will be updated every time the gamepad's state changes. ### Using button information Let's look at a simple example that displays connection information for one gamepad (it ignores subsequent gamepad connections) and allows you to move a ball around the screen using the four gamepad buttons on the right-hand side of the gamepad. You can [view the demo live](https://chrisdavidmills.github.io/gamepad-buttons/), and [find the source code](https://github.com/chrisdavidmills/gamepad-buttons/tree/master) on GitHub. To start with, we declare some variables: The `gamepadInfo` paragraph that the connection info is written into, the `ball` that we want to move, the `start` variable that acts as the ID for `requestAnimation Frame`, the `a` and `b` variables that act as position modifiers for moving the ball, and the shorthand variables that will be used for the {{ domxref("Window.requestAnimationFrame", "requestAnimationFrame()") }} and {{ domxref("Window.cancelAnimationFrame", "cancelAnimationFrame()") }} cross browser forks. ```js const gamepadInfo = document.getElementById("gamepad-info"); const ball = document.getElementById("ball"); let start; let a = 0; let b = 0; ``` Next we use the {{domxref("Window/gamepadconnected_event", "gamepadconnected")}} event to check for a gamepad being connected. When one is connected, we grab the gamepad using {{ domxref("Navigator.getGamepads()") }}`[0]`, print information about the gamepad into our gamepad info `div`, and fire the `gameLoop()` function that starts the whole ball movement process up. ```js window.addEventListener("gamepadconnected", (e) => { const gp = navigator.getGamepads()[e.gamepad.index]; gamepadInfo.textContent = `Gamepad connected at index ${gp.index}: ${gp.id}. It has ${gp.buttons.length} buttons and ${gp.axes.length} axes.`; gameLoop(); }); ``` Now we use the {{domxref("Window/gamepaddisconnected_event", "gamepaddisconnected")}} event to check if the gamepad is disconnected again. If so, we stop the {{DOMxRef("Window.requestAnimationFrame", "requestAnimationFrame()")}} loop (see below) and revert the gamepad information back to what it was originally. ```js window.addEventListener("gamepaddisconnected", (e) => { gamepadInfo.textContent = "Waiting for gamepad."; cancelAnimationFrame(start); }); ``` Chrome does things differently here. Instead of constantly storing the gamepad's latest state in a variable it only stores a snapshot, so to do the same thing in Chrome you have to keep polling it and then only use the {{ domxref("Gamepad") }} object in code when it is available. We have done this below using {{ domxref("setInterval()") }}; once the object is available the gamepad info is outputted, the game loop is started, and the interval is cleared using {{ domxref("clearInterval") }}. ```js let interval; if (!("ongamepadconnected" in window)) { // No gamepad events available, poll instead. interval = setInterval(pollGamepads, 500); } function pollGamepads() { const gamepads = navigator.getGamepads(); for (const gp of gamepads) { gamepadInfo.textContent = `Gamepad connected at index ${gp.index}: ${gp.id}. It has ${gp.buttons.length} buttons and ${gp.axes.length} axes.`; gameLoop(); clearInterval(interval); } } ``` Now on to the main game loop. In each execution of the loop we check if one of four buttons is being pressed; if so, we update the values of the `a` and `b` movement variables appropriately, then update the {{ cssxref("left") }} and {{ cssxref("top") }} properties, changing their values to the current values of `a` and `b` respectively. This has the effect of moving the ball around the screen. After all this is done, we use our `requestAnimationFrame()` to request the next animation frame, running `gameLoop()` again. ```js function buttonPressed(b) { if (typeof b === "object") { return b.pressed; } return b === 1.0; } function gameLoop() { const gamepads = navigator.getGamepads(); if (!gamepads) { return; } const gp = gamepads[0]; if (buttonPressed(gp.buttons[0])) { b--; } else if (buttonPressed(gp.buttons[2])) { b++; } if (buttonPressed(gp.buttons[1])) { a++; } else if (buttonPressed(gp.buttons[3])) { a--; } ball.style.left = `${a * 2}px`; ball.style.top = `${b * 2}px`; start = requestAnimationFrame(gameLoop); } ``` ## Complete example: Displaying gamepad state This example shows how to use the {{ domxref("Gamepad") }} object, as well as the {{ domxref("Window/gamepadconnected_event", "gamepadconnected") }} and {{domxref("Window/gamepaddisconnected_event", "gamepaddisconnected")}} events in order to display the state of all gamepads connected to the system. You can find a [working demo](https://luser.github.io/gamepadtest/) and look at the [full source code](https://github.com/luser/gamepadtest) on GitHub. ```js const haveEvents = "ongamepadconnected" in window; const controllers = {}; function connecthandler(e) { addgamepad(e.gamepad); } function addgamepad(gamepad) { controllers[gamepad.index] = gamepad; const d = document.createElement("div"); d.setAttribute("id", `controller${gamepad.index}`); const t = document.createElement("h1"); t.textContent = `gamepad: ${gamepad.id}`; d.appendChild(t); const b = document.createElement("ul"); b.className = "buttons"; gamepad.buttons.forEach((button, i) => { const e = document.createElement("li"); e.className = "button"; e.textContent = `Button ${i}`; b.appendChild(e); }); d.appendChild(b); const a = document.createElement("div"); a.className = "axes"; gamepad.axes.forEach((axis, i) => { const p = document.createElement("progress"); p.className = "axis"; p.setAttribute("max", "2"); p.setAttribute("value", "1"); p.textContent = i; a.appendChild(p); }); d.appendChild(a); // See https://github.com/luser/gamepadtest/blob/master/index.html const start = document.getElementById("start"); if (start) { start.style.display = "none"; } document.body.appendChild(d); requestAnimationFrame(updateStatus); } function disconnecthandler(e) { removegamepad(e.gamepad); } function removegamepad(gamepad) { const d = document.getElementById(`controller${gamepad.index}`); document.body.removeChild(d); delete controllers[gamepad.index]; } function updateStatus() { if (!haveEvents) { scangamepads(); } Object.entries(controllers).forEach(([i, controller]) => { const d = document.getElementById(`controller${i}`); const buttons = d.getElementsByClassName("button"); controller.buttons.forEach((button, i) => { const b = buttons[i]; let pressed = button === 1.0; let val = button; if (typeof button === "object") { pressed = val.pressed; val = val.value; } const pct = `${Math.round(val * 100)}%`; b.style.backgroundSize = `${pct} ${pct}`; b.textContent = pressed ? `Button ${i} [PRESSED]` : `Button ${i}`; b.style.color = pressed ? "#42f593" : "#2e2d33"; b.className = pressed ? "button pressed" : "button"; }); const axes = d.getElementsByClassName("axis"); controller.axes.forEach((axis, i) => { const a = axes[i]; a.textContent = `${i}: ${axis.toFixed(4)}`; a.setAttribute("value", axis + 1); }); }); requestAnimationFrame(updateStatus); } function scangamepads() { const gamepads = navigator.getGamepads(); document.querySelector("#noDevices").style.display = gamepads.filter(Boolean) .length ? "none" : "block"; for (const gamepad of gamepads) { if (gamepad) { // Can be null if disconnected during the session if (gamepad.index in controllers) { controllers[gamepad.index] = gamepad; } else { addgamepad(gamepad); } } } } window.addEventListener("gamepadconnected", connecthandler); window.addEventListener("gamepaddisconnected", disconnecthandler); if (!haveEvents) { setInterval(scangamepads, 500); } ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/htmlspanelement/index.md
--- title: HTMLSpanElement slug: Web/API/HTMLSpanElement page-type: web-api-interface browser-compat: api.HTMLSpanElement --- {{APIRef("HTML DOM")}} The **`HTMLSpanElement`** interface represents a {{HTMLElement("span")}} element and derives from the {{DOMxRef("HTMLElement")}} interface, but without implementing any additional properties or methods. {{InheritanceDiagram}} ## Instance properties _This interface has no properties, but inherits properties from: {{DOMxRef("HTMLElement")}}._ ## Instance methods _This interface has no methods, but inherits methods from: {{DOMxRef("HTMLElement")}}._ ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - The HTML element implementing this interface: {{HTMLElement("span")}}.
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/performanceresourcetiming/timestamp-diagram.svg
<svg viewBox="0 0 1152 464" fill="none" stroke-linecap="square" stroke-miterlimit="10" xmlns="http://www.w3.org/2000/svg"><clipPath id="a"><path d="M0 0h1152v864H0V0z"/></clipPath><g clip-path="url(#a)"><path d="M0 0h1152v864H0z"/><path fill="#cfe2f3" d="M128.707 172.553h88.378v92.063h-88.378z" fill-rule="evenodd"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M128.707 172.553h88.378v92.063h-88.378z"/><path fill="#000" d="M150.428 223.385h-1.312l-1.266-2.72q-.14-.312-.297-.515-.156-.203-.328-.328-.172-.125-.375-.172-.203-.047-.453-.047h-.547v3.782h-1.156v-8.5h2.281q.735 0 1.266.156t.875.453q.344.297.5.719.172.406.172.906 0 .39-.125.75-.11.36-.344.656-.234.281-.578.5-.344.203-.781.313.359.11.609.422t.516.828l1.343 2.797zm-1.86-6.172q0-.688-.437-1.016-.421-.344-1.187-.344h-1.094v2.813h.938q.406 0 .734-.094.328-.094.563-.281.234-.188.359-.453.125-.266.125-.625zm8.907 2.562q0 .235-.016.406 0 .157-.015.297h-4.578q0 1 .546 1.547.563.531 1.625.531.282 0 .563-.015.297-.031.562-.063.266-.047.5-.093.25-.047.454-.11v.938q-.454.125-1.047.203-.578.078-1.203.078-.829 0-1.438-.219-.61-.234-1-.656-.39-.438-.578-1.063-.172-.625-.172-1.421 0-.688.188-1.297.203-.625.578-1.094.39-.469.937-.734.563-.282 1.266-.282.672 0 1.203.22.531.218.89.608.36.391.547.954.188.562.188 1.265zm-1.188-.172q.032-.422-.078-.78-.11-.376-.328-.626-.219-.266-.547-.406-.312-.156-.75-.156-.36 0-.672.156-.312.14-.53.406-.22.25-.36.625-.125.36-.156.781h3.421zm2.656.657q0-.844.235-1.485.234-.656.64-1.094.422-.453 1.016-.671.594-.235 1.313-.235.312 0 .609.047.312.031.594.11v-2.75h1.14v9.203h-1.015l-.032-1.235q-.484.688-1.03 1.016-.548.328-1.204.328-.547 0-.984-.219-.422-.234-.703-.656-.282-.438-.438-1.031-.14-.61-.14-1.328zm1.172-.079q0 1.188.344 1.766.344.578.984.578.422 0 .907-.375.484-.39 1-1.14v-3.032q-.282-.125-.625-.187-.328-.078-.657-.078-.921 0-1.437.593-.516.594-.516 1.875zm8.719-2.39h-1.938v-.938h3.078v5.594h1.953v.938h-5.234v-.938h2.14v-4.656zm.39-3.688q.203 0 .36.078.156.063.281.188.125.125.187.281.079.156.079.36 0 .171-.079.343-.062.157-.187.282-.125.125-.281.203-.157.062-.36.062-.187 0-.343-.062-.157-.078-.282-.203-.125-.125-.203-.282-.062-.172-.062-.343 0-.204.062-.36.078-.156.203-.281.125-.125.282-.188.156-.078.343-.078zm4.984 2.75h1.032l.031 1.203q.578-.703 1.14-1.015.563-.313 1.141-.313 1.016 0 1.531.657.532.656.485 1.953h-1.14q.015-.86-.25-1.235-.266-.39-.798-.39-.218 0-.453.078-.234.078-.484.265-.235.172-.516.454-.265.28-.578.671v4.204h-1.14v-6.532zm12.578 2.922q0 .235-.015.406 0 .157-.016.297h-4.578q0 1 .547 1.547.562.531 1.625.531.281 0 .562-.015.297-.031.563-.063.265-.047.5-.093.25-.047.453-.11v.938q-.453.125-1.047.203-.578.078-1.203.078-.828 0-1.438-.219-.609-.234-1-.656-.39-.438-.578-1.063-.172-.625-.172-1.421 0-.688.188-1.297.203-.625.578-1.094.39-.469.938-.734.562-.282 1.265-.282.672 0 1.203.22.532.218.891.608.36.391.547.954.187.562.187 1.265zm-1.187-.172q.031-.422-.078-.78-.11-.376-.328-.626-.22-.266-.547-.406-.313-.156-.75-.156-.36 0-.672.156-.313.14-.531.406-.22.25-.36.625-.125.36-.156.781h3.422zm8.078 3.547q-.453.156-.922.235-.453.093-.953.093-1.547 0-2.39-.843-.829-.844-.829-2.454 0-.765.234-1.39.25-.64.672-1.094.438-.453 1.047-.687.61-.25 1.344-.25.5 0 .937.078.453.062.86.234v1.078q-.438-.219-.875-.312-.438-.11-.907-.11-.437 0-.828.172-.375.156-.672.469-.296.312-.468.766-.157.437-.157 1.015 0 1.172.563 1.766.578.594 1.61.594.452 0 .89-.11.437-.11.844-.312v1.062zm7.515.14q-.39.095-.797.141-.406.047-.844.047-1.218 0-1.828-.547-.609-.562-.609-1.718v-3.407h-1.828v-.953h1.828v-1.797l1.14-.296v2.093h2.938v.953h-2.937v3.313q0 .703.375 1.062.375.344 1.093.344.313 0 .688-.047.375-.062.781-.156v.969z"/><path d="M150.511 38.743h-3.89l-11.2 126.436"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M150.511 38.743h-3.89l-10.671 120.46"/><path fill="#000" stroke="#000" stroke-linecap="butt" d="m134.305 159.056 1.244 4.667 2.046-4.375z" fill-rule="evenodd"/><path d="M2.27 21.556h98.457v31.937H2.27z"/><path fill="#000" d="M17.63 40.371q0 .578-.25.985-.25.39-.672.64-.406.25-.938.36-.515.125-1.062.125-.735 0-1.328-.079-.578-.062-1.094-.187v-1.438q.61.25 1.219.375.61.11 1.156.11.625 0 .922-.203.312-.203.312-.516 0-.156-.062-.281-.063-.125-.25-.235-.172-.109-.5-.234t-.844-.266q-.5-.14-.875-.312-.36-.172-.61-.406-.234-.235-.359-.532-.109-.312-.109-.734 0-.406.172-.766.187-.359.547-.625.375-.265.906-.421.547-.157 1.266-.157.625 0 1.109.063.484.062.844.14v1.297q-.563-.187-1.063-.25-.5-.078-.984-.078-.485 0-.781.172-.297.172-.297.484 0 .157.047.282.062.11.234.218.187.11.484.235.313.11.828.25.563.172.954.36.39.187.625.421.25.234.343.531.11.297.11.672zm7.328 1.89q-.438.095-.875.157-.422.063-.813.063-.656 0-1.125-.141-.469-.14-.781-.422-.313-.281-.469-.703-.14-.438-.14-1.031v-3.235h-1.766v-1.234h1.765v-1.688l1.625-.437v2.125h2.579v1.234h-2.579v3.11q0 .562.266.86.266.28.875.28.39 0 .75-.062.375-.063.688-.14v1.265zm6.015.063-.031-.859q-.22.219-.453.406-.22.188-.5.328-.266.125-.594.203-.313.079-.703.079-.5 0-.89-.157-.376-.156-.642-.422-.265-.265-.406-.64-.125-.375-.125-.828 0-.469.203-.86.203-.406.61-.687.406-.297 1.015-.453.61-.157 1.422-.157h.875v-.406q0-.25-.078-.453t-.234-.344q-.157-.156-.407-.234-.25-.078-.625-.078-.593 0-1.171.14-.563.125-1.094.375v-1.265q.484-.203 1.094-.313.625-.125 1.296-.125.735 0 1.266.141.531.14.86.422.343.265.5.687.171.422.171.985v4.515h-1.36zm-.219-2.922h-.969q-.406 0-.687.079-.281.078-.469.218-.172.125-.25.313-.078.172-.078.375 0 .406.25.625.266.203.719.203.328 0 .687-.234.36-.25.797-.688v-.89zm7.656-1.125q.016-.359-.031-.625-.047-.265-.156-.421-.11-.172-.266-.25-.156-.079-.36-.079-.343 0-.718.297-.375.282-.828.938v4.187h-1.625v-6.609h1.437l.063.953q.156-.25.36-.453.202-.203.452-.344.25-.14.563-.219.312-.078.672-.078.5 0 .89.172t.64.516q.267.328.392.844.14.5.109 1.171H38.41zm8.531 3.985q-.437.094-.875.156-.422.063-.812.063-.657 0-1.125-.141-.47-.14-.782-.422-.312-.281-.468-.703-.14-.438-.14-1.031v-3.235h-1.767v-1.234h1.766v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.266.86.265.28.875.28.39 0 .75-.062.375-.063.687-.14v1.265zm5.453-7.11v7.172h-1.64v-7.172h-2.329v-1.328h6.297v1.328h-2.328zm7.64-1.25q0 .22-.078.407-.078.187-.218.328-.141.14-.329.219-.187.078-.406.078-.219 0-.422-.078-.187-.079-.328-.22-.14-.14-.219-.327-.078-.188-.078-.407 0-.218.078-.406.079-.187.22-.328.14-.14.327-.219.203-.093.422-.093.219 0 .406.093.188.078.329.22.14.14.218.327.078.188.078.406zm-1.75 3.047H56.41v-1.234h3.5v5.375h1.907v1.234h-5.641V41.09h2.11v-4.14zm9.86 5.375v-4.5q0-.25-.016-.437-.016-.188-.063-.313-.03-.125-.109-.187-.078-.063-.203-.063-.203 0-.406.282-.188.265-.438.937v4.281h-1.36v-4.5q0-.25-.015-.437 0-.188-.047-.313-.031-.125-.11-.187-.077-.063-.218-.063-.172 0-.375.282-.203.265-.469.937v4.281h-1.359v-6.609h1.172l.031.953q.14-.281.281-.484.141-.219.297-.344.172-.14.36-.188.187-.062.422-.062.546 0 .828.297.297.281.343.781.157-.281.297-.484.157-.219.313-.344.172-.14.36-.188.202-.062.437-.062.718 0 1.062.5.344.5.344 1.484v4.75h-1.36zm8.421-3.812q0 .156-.015.422-.016.265-.032.484h-4.343q0 .438.125.781.14.328.375.547.25.219.593.344.344.11.75.11.485 0 1.032-.063.562-.078 1.156-.25v1.265q-.266.063-.563.125-.297.063-.61.11-.312.047-.64.062-.312.032-.61.032-.75 0-1.358-.22-.594-.218-1.016-.64-.406-.422-.64-1.031-.22-.625-.22-1.438 0-.796.22-1.453.234-.672.624-1.14.407-.469.985-.719.578-.266 1.297-.266.703 0 1.234.22.547.218.906.608.36.391.547.938.203.531.203 1.172zm-1.625-.235q.016-.39-.094-.671-.109-.297-.296-.485-.172-.187-.407-.281-.234-.094-.515-.094-.594 0-.985.406-.375.407-.453 1.125h2.75z"/><path d="M144.936 21.556H336.81v31.937H144.936z"/><path fill="#000" d="M158.873 45.059q-1.594-1.344-2.39-2.875-.782-1.532-.782-3.313 0-.984.235-1.86.234-.89.656-1.655.437-.782 1.015-1.454.594-.687 1.297-1.28l.907.905q-1.266 1.141-1.907 2.47-.64 1.312-.64 2.765 0 1.484.64 2.844.641 1.359 1.907 2.484l-.938.969zm7.547-6.782q.015-.359-.032-.625-.046-.265-.156-.421-.11-.172-.265-.25-.157-.079-.36-.079-.344 0-.719.297-.375.282-.828.938v4.187h-1.625v-6.609h1.438l.062.953q.157-.25.36-.453.203-.203.453-.344.25-.14.562-.219.313-.078.672-.078.5 0 .89.172.391.172.641.516.266.328.391.844.14.5.11 1.171h-1.594zm8.843.235q0 .156-.015.422-.016.265-.032.484h-4.343q0 .438.125.781.14.328.375.547.25.219.593.344.344.11.75.11.485 0 1.032-.063.562-.078 1.156-.25v1.265q-.266.063-.563.125-.297.063-.61.11-.312.047-.64.062-.312.032-.61.032-.75 0-1.358-.22-.594-.218-1.016-.64-.406-.422-.64-1.031-.22-.625-.22-1.438 0-.796.22-1.453.234-.672.624-1.14.407-.469.985-.719.578-.266 1.297-.266.703 0 1.234.22.547.218.906.608.36.391.547.938.203.531.203 1.172zm-1.625-.235q.016-.39-.094-.671-.109-.297-.296-.485-.172-.187-.407-.281-.234-.094-.515-.094-.594 0-.985.406-.375.407-.453 1.125h2.75zm7.344 4.047-.032-.968q-.218.25-.437.453t-.484.36q-.25.14-.547.218-.282.094-.625.094-.594 0-1.047-.235-.453-.234-.766-.672-.312-.437-.469-1.047-.156-.625-.156-1.39 0-.906.25-1.563.266-.672.719-1.109.453-.453 1.078-.656.625-.219 1.36-.219.25 0 .5.031t.437.094v-2.594h1.594v9.203h-1.375zm-2.907-3.25q0 .547.079.938.078.375.218.625.157.25.36.375.218.11.5.11.39 0 .75-.329.375-.328.78-.89v-2.891q-.187-.078-.468-.125-.265-.047-.547-.047-.39 0-.703.156-.297.156-.515.453-.22.282-.344.703-.11.407-.11.922zm9.969-5.172q0 .22-.078.407-.078.187-.219.328-.14.14-.328.219-.188.078-.406.078-.22 0-.422-.078-.188-.079-.328-.22-.141-.14-.22-.327-.077-.188-.077-.407 0-.218.078-.406.078-.187.219-.328.14-.14.328-.219.203-.093.422-.093.218 0 .406.093.187.078.328.22.14.14.219.327.078.188.078.406zm-1.75 3.047h-1.875v-1.234h3.5v5.375h1.906v1.234h-5.64V41.09h2.109v-4.14zm9.437 1.328q.016-.359-.031-.625-.047-.265-.156-.421-.11-.172-.266-.25-.156-.079-.36-.079-.343 0-.718.297-.375.282-.828.938v4.187h-1.625v-6.609h1.437l.063.953q.156-.25.36-.453.202-.203.452-.344.25-.14.563-.219.312-.078.672-.078.5 0 .89.172t.64.516q.267.328.392.844.14.5.109 1.171h-1.594zm8.844.235q0 .156-.016.422l-.031.484h-4.344q0 .438.125.781.14.328.375.547.25.219.594.344.344.11.75.11.484 0 1.031-.063.563-.078 1.156-.25v1.265q-.265.063-.562.125-.297.063-.61.11-.312.047-.64.062-.313.032-.61.032-.75 0-1.359-.22-.594-.218-1.016-.64-.406-.422-.64-1.031-.219-.625-.219-1.438 0-.796.219-1.453.234-.672.625-1.14.406-.469.984-.719.578-.266 1.297-.266.703 0 1.234.22.547.218.907.608.359.391.547.938.203.531.203 1.172zm-1.625-.235q.015-.39-.094-.671-.11-.297-.297-.485-.172-.187-.406-.281-.235-.094-.516-.094-.594 0-.984.406-.375.407-.453 1.125h2.75zm8.53 3.797q-.468.188-.968.266-.5.094-1.047.094-.781 0-1.406-.203-.625-.22-1.063-.641-.437-.422-.672-1.047-.234-.625-.234-1.453 0-.781.25-1.422.25-.656.703-1.11.469-.452 1.11-.702.64-.25 1.421-.25.641 0 1.079.078.453.062.796.172v1.53q-.406-.202-.875-.312-.468-.109-.89-.109-.438 0-.797.156-.344.14-.594.422-.234.266-.36.64-.124.376-.124.829 0 .484.125.86.14.374.39.64.25.265.594.406.36.14.797.14.203 0 .422-.03.234-.032.469-.079.234-.062.453-.125.234-.078.422-.172v1.422zm7.438.188q-.438.094-.875.156-.422.063-.813.063-.656 0-1.125-.141-.468-.14-.78-.422-.313-.281-.47-.703-.14-.438-.14-1.031v-3.235h-1.766v-1.234h1.766v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.265.86.266.28.875.28.391 0 .75-.062.375-.063.688-.14v1.265zm7.609-2.516q0 .703-.266 1.219-.25.516-.718.86-.454.327-1.094.5-.64.156-1.39.156-.673 0-1.298-.079-.625-.078-1.234-.265v-1.578q.297.093.625.187t.656.172q.328.063.64.11.329.03.641.03.454 0 .766-.077.328-.079.531-.22.203-.14.282-.327.093-.188.093-.407 0-.312-.187-.53-.172-.22-.469-.376-.281-.156-.656-.281-.375-.14-.766-.281-.375-.157-.75-.344-.375-.188-.672-.469-.297-.281-.484-.672-.172-.39-.172-.937 0-.5.188-.938.187-.453.578-.78.39-.345 1-.548.61-.203 1.468-.203.25 0 .532.031.281.016.547.063.265.031.515.078.266.047.469.11v1.452q-.203-.078-.453-.14-.25-.063-.516-.11-.265-.046-.531-.078-.266-.03-.5-.03-.438 0-.734.077-.282.063-.47.188-.187.125-.28.297-.079.171-.079.39 0 .266.172.453.188.188.485.344.297.156.672.297.375.125.765.281.39.156.766.36.375.187.672.468.297.266.468.657.188.375.188.89zm7.047 2.516q-.438.094-.875.156-.422.063-.813.063-.656 0-1.125-.141-.469-.14-.781-.422-.313-.281-.469-.703-.14-.438-.14-1.031v-3.235h-1.766v-1.234h1.765v-1.688l1.625-.437v2.125h2.579v1.234h-2.579v3.11q0 .562.266.86.266.28.875.28.39 0 .75-.062.375-.063.688-.14v1.265zm6.015.062-.031-.859q-.219.219-.453.406-.22.188-.5.328-.266.125-.594.203-.313.079-.703.079-.5 0-.89-.157-.376-.156-.642-.422-.265-.265-.406-.64-.125-.375-.125-.828 0-.469.203-.86.203-.406.61-.687.406-.297 1.015-.453.61-.157 1.422-.157h.875v-.406q0-.25-.078-.453t-.234-.344q-.157-.156-.407-.234-.25-.078-.625-.078-.593 0-1.171.14-.563.125-1.094.375v-1.265q.484-.203 1.094-.313.625-.125 1.296-.125.735 0 1.266.141.531.14.86.422.343.265.5.687.171.422.171.985v4.515h-1.359zm-.219-2.922h-.969q-.406 0-.687.079-.281.078-.469.218-.172.125-.25.313-.078.172-.078.375 0 .406.25.625.266.203.719.203.328 0 .687-.234.36-.25.797-.688v-.89zm7.656-1.125q.016-.359-.031-.625-.047-.265-.156-.421-.11-.172-.266-.25-.156-.079-.36-.079-.343 0-.718.297-.375.282-.828.938v4.187h-1.625v-6.609h1.437l.063.953q.156-.25.36-.453.202-.203.452-.344.25-.14.563-.219.312-.078.672-.078.5 0 .89.172.391.172.641.516.266.328.39.844.141.5.11 1.171h-1.594zm8.531 3.985q-.437.094-.875.156-.422.063-.812.063-.657 0-1.125-.141-.469-.14-.782-.422-.312-.281-.468-.703-.14-.438-.14-1.031v-3.235h-1.767v-1.234h1.766v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.266.86.265.28.875.28.39 0 .75-.062.375-.063.687-.14v1.265zm3.39-9.64q1.594 1.327 2.376 2.874.78 1.531.78 3.313 0 .984-.234 1.86-.234.874-.656 1.655-.406.782-1 1.453-.578.688-1.281 1.282l-.922-.907q1.281-1.14 1.922-2.468.64-1.328.64-2.782 0-1.468-.64-2.828-.64-1.375-1.922-2.515l.938-.938z"/><path d="M224.935 46.411h160v31.937h-160z"/><path fill="#000" d="M238.872 69.914q-1.594-1.344-2.39-2.875-.782-1.531-.782-3.313 0-.984.235-1.859.234-.89.656-1.656.437-.781 1.015-1.453.594-.688 1.297-1.282l.907.907q-1.266 1.14-1.907 2.468-.64 1.313-.64 2.766 0 1.484.64 2.844.641 1.36 1.907 2.484l-.938.969zm7.547-6.781q.015-.36-.032-.625-.046-.266-.156-.422-.11-.172-.265-.25-.157-.078-.36-.078-.344 0-.719.297-.375.28-.828.937v4.188h-1.625v-6.61h1.438l.062.953q.157-.25.36-.453.203-.203.453-.344.25-.14.562-.218.313-.078.672-.078.5 0 .89.171.391.172.641.516.266.328.391.844.14.5.11 1.172h-1.594zm8.843.234q0 .156-.015.422-.016.266-.032.484h-4.343q0 .438.125.782.14.328.375.546.25.22.593.344.344.11.75.11.485 0 1.032-.063.562-.078 1.156-.25v1.266q-.266.062-.563.125-.297.062-.609.11-.313.046-.64.062-.313.03-.61.03-.75 0-1.36-.218-.593-.219-1.015-.64-.406-.422-.64-1.032-.22-.625-.22-1.437 0-.797.22-1.453.234-.672.624-1.141.407-.469.985-.719.578-.265 1.297-.265.703 0 1.234.218.547.22.906.61.36.39.547.937.203.531.203 1.172zm-1.625-.234q.016-.39-.094-.672-.109-.297-.296-.485-.172-.187-.407-.28-.234-.095-.515-.095-.594 0-.985.407-.375.406-.453 1.125h2.75zm7.344 4.047-.032-.97q-.218.25-.437.454-.219.203-.484.36-.25.14-.547.218-.282.094-.625.094-.594 0-1.047-.235-.453-.234-.766-.671-.312-.438-.469-1.047-.156-.625-.156-1.39 0-.907.25-1.563.266-.672.719-1.11.453-.453 1.078-.656.625-.219 1.36-.219.25 0 .5.031.25.032.437.094v-2.594h1.594v9.204h-1.375zm-2.907-3.25q0 .546.079.937.078.375.218.625.157.25.36.375.218.11.5.11.39 0 .75-.329.375-.328.781-.89v-2.89q-.188-.079-.469-.126-.265-.047-.547-.047-.39 0-.703.156-.297.157-.515.454-.22.28-.344.703-.11.406-.11.922zm9.969-5.172q0 .218-.078.406-.078.187-.219.328-.14.14-.328.219-.188.078-.406.078-.22 0-.422-.078-.188-.078-.328-.219-.14-.14-.22-.328-.077-.188-.077-.406 0-.219.078-.407.078-.187.219-.328.14-.14.328-.218.203-.094.422-.094.218 0 .406.094.187.078.328.218.14.141.219.328.078.188.078.407zm-1.75 3.047h-1.875V60.57h3.5v5.375h1.906v1.235h-5.64v-1.235h2.109v-4.14zm9.437 1.328q.016-.36-.031-.625-.047-.266-.156-.422-.11-.172-.266-.25-.156-.078-.36-.078-.343 0-.718.297-.375.28-.828.937v4.188h-1.625v-6.61h1.437l.063.953q.156-.25.36-.453.202-.203.452-.344.25-.14.563-.218.312-.078.672-.078.5 0 .89.171.39.172.64.516.267.328.392.844.14.5.109 1.172h-1.594zm8.844.234q0 .156-.016.422t-.031.484h-4.344q0 .438.125.782.14.328.375.546.25.22.594.344.344.11.75.11.484 0 1.031-.063.563-.078 1.156-.25v1.266q-.265.062-.562.125-.297.062-.61.11-.312.046-.64.062-.313.03-.61.03-.75 0-1.359-.218-.594-.219-1.016-.64-.406-.422-.64-1.032-.219-.625-.219-1.437 0-.797.219-1.453.234-.672.625-1.141.406-.469.984-.719.578-.265 1.297-.265.703 0 1.234.218.547.22.907.61.359.39.547.937.203.531.203 1.172zm-1.625-.234q.015-.39-.094-.672-.11-.297-.297-.485-.172-.187-.406-.28-.235-.095-.516-.095-.594 0-.984.407-.375.406-.453 1.125h2.75zm8.53 3.797q-.468.187-.968.265-.5.094-1.047.094-.781 0-1.406-.203-.625-.219-1.063-.64-.437-.423-.672-1.048-.234-.625-.234-1.453 0-.781.25-1.422.25-.656.703-1.109.469-.453 1.11-.703.64-.25 1.421-.25.641 0 1.079.078.453.062.796.172v1.531q-.406-.203-.875-.312-.468-.11-.89-.11-.438 0-.797.156-.344.141-.594.422-.234.266-.36.641-.124.375-.124.828 0 .484.125.86.14.374.39.64t.594.406q.36.141.797.141.203 0 .422-.031.234-.032.469-.078.234-.063.453-.125.234-.079.422-.172v1.422zm7.438.187q-.438.094-.875.156-.422.063-.813.063-.656 0-1.125-.14-.468-.141-.78-.423-.313-.28-.47-.703-.14-.437-.14-1.031v-3.234h-1.766V60.57h1.766v-1.687l1.625-.438v2.125h2.578v1.235h-2.578v3.109q0 .562.265.86.266.28.875.28.391 0 .75-.062.375-.062.688-.14v1.265zm2.172.063v-8.5h5.109v1.343h-3.484v2.125h3.328v1.313h-3.328v2.36h3.484v1.359h-5.11zm10.968 0v-4.313q0-1.078-.797-1.078-.406 0-.781.328-.36.313-.766.875v4.188h-1.593v-6.61h1.375l.03.969q.204-.25.423-.453.218-.219.468-.36.266-.14.547-.218.297-.078.657-.078.515 0 .89.171.375.157.625.47.266.296.39.718.126.422.126.953v4.438h-1.594zm7.547 0-.032-.97q-.218.25-.437.454-.219.203-.484.36-.25.14-.547.218-.282.094-.625.094-.594 0-1.047-.235-.453-.234-.766-.671-.312-.438-.469-1.047-.156-.625-.156-1.39 0-.907.25-1.563.266-.672.719-1.11.453-.453 1.078-.656.625-.219 1.36-.219.25 0 .5.031.25.032.437.094v-2.594h1.594v9.204h-1.375zm-2.907-3.25q0 .546.079.937.078.375.218.625.157.25.36.375.218.11.5.11.39 0 .75-.329.375-.328.78-.89v-2.89q-.187-.079-.468-.126-.265-.047-.547-.047-.39 0-.703.156-.297.157-.515.454-.22.28-.344.703-.11.406-.11.922zm7.594-6.454q1.594 1.329 2.375 2.875.781 1.532.781 3.313 0 .984-.234 1.86-.235.874-.657 1.656-.406.78-1 1.453-.578.687-1.28 1.281l-.923-.906q1.282-1.14 1.922-2.469.64-1.328.64-2.781 0-1.469-.64-2.828-.64-1.375-1.922-2.516l.938-.938z"/><path d="M231.65 62.694h-3.89l-11.201 102.49"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M231.65 62.694h-3.89l-10.55 96.526"/><path fill="#000" stroke="#000" stroke-linecap="butt" d="m215.569 159.04 1.149 4.69 2.135-4.33z" fill-rule="evenodd"/><path d="M92.902 38.74h15.665l19.02 126.436"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M92.902 38.74h15.665l18.128 120.503"/><path fill="#000" stroke="#000" stroke-linecap="butt" d="m125.062 159.489 2.308 4.242.959-4.734z" fill-rule="evenodd"/><path d="M403.866 297.015h216.787v41.638H403.866z"/><path fill="#000" d="M417.803 325.369q-1.594-1.344-2.39-2.875-.782-1.532-.782-3.313 0-.984.235-1.86.234-.89.656-1.656.437-.78 1.016-1.453.593-.687 1.296-1.28l.907.905q-1.266 1.141-1.907 2.47-.64 1.312-.64 2.765 0 1.484.64 2.843.641 1.36 1.907 2.485l-.938.969zm8.75-4.688q0 .578-.25.984-.25.391-.672.641-.406.25-.938.36-.515.124-1.062.124-.734 0-1.328-.078-.578-.062-1.094-.187v-1.438q.61.25 1.219.375.61.11 1.156.11.625 0 .922-.203.312-.204.312-.516 0-.156-.062-.281-.063-.125-.25-.235-.172-.109-.5-.234t-.844-.266q-.5-.14-.875-.312-.36-.172-.61-.406-.234-.235-.359-.532-.109-.312-.109-.734 0-.406.172-.766.187-.359.547-.625.375-.265.906-.422.547-.156 1.266-.156.625 0 1.11.063.483.062.843.14v1.297q-.563-.187-1.063-.25-.5-.078-.984-.078t-.781.172q-.297.172-.297.484 0 .157.047.282.062.109.234.218.188.11.484.235.313.11.829.25.562.172.953.36.39.187.625.421.25.234.343.531.11.297.11.672zm7.64-1.86q0 .157-.015.423-.016.265-.032.484h-4.343q0 .437.125.781.14.328.375.547.25.219.593.344.344.11.75.11.485 0 1.032-.063.562-.078 1.156-.25v1.265q-.266.063-.563.125-.297.063-.609.11-.313.047-.64.062-.313.031-.61.031-.75 0-1.36-.218-.593-.219-1.015-.64-.406-.423-.64-1.032-.22-.625-.22-1.438 0-.797.22-1.453.234-.672.624-1.14.407-.47.985-.72.578-.265 1.297-.265.703 0 1.234.219.547.219.906.61.36.39.547.937.203.531.203 1.172zm-1.625-.234q.016-.39-.094-.672-.109-.296-.296-.484-.172-.187-.407-.281-.234-.094-.515-.094-.594 0-.985.406-.375.407-.453 1.125h2.75zm8.531 3.797q-.469.188-.969.266-.5.094-1.046.094-.782 0-1.407-.204-.625-.218-1.062-.64-.438-.422-.672-1.047-.234-.625-.234-1.453 0-.781.25-1.422.25-.656.703-1.11.468-.453 1.11-.703.64-.25 1.421-.25.64 0 1.078.079.453.062.797.171v1.532q-.406-.203-.875-.313-.469-.11-.89-.11-.438 0-.798.157-.343.14-.593.422-.235.266-.36.64-.125.376-.125.829 0 .484.125.86.141.374.391.64.25.265.594.406.36.14.797.14.203 0 .421-.03.235-.032.47-.079.234-.062.452-.125.235-.078.422-.172v1.422zm3.562-6.36v4.313q0 .532.204.813.203.281.609.281.39 0 .75-.328.375-.344.781-.89v-4.188h1.594v6.61h-1.375l-.031-.97q-.219.25-.438.454-.203.203-.453.359-.25.14-.547.219-.297.093-.656.093-.5 0-.89-.171-.376-.172-.641-.47-.25-.312-.375-.734-.125-.421-.125-.953v-4.437h1.593zm10 2.563q.016-.359-.031-.625-.047-.265-.156-.422-.11-.171-.266-.25-.156-.078-.36-.078-.343 0-.718.297-.375.281-.828.938v4.187h-1.625v-6.61h1.437l.063.954q.156-.25.36-.453.202-.203.452-.344.25-.14.563-.219.312-.078.672-.078.5 0 .89.172t.64.516q.267.328.392.843.14.5.109 1.172h-1.594zm8.844.235q0 .156-.016.422l-.031.484h-4.344q0 .437.125.781.14.328.375.547.25.219.594.344.344.11.75.11.484 0 1.031-.063.563-.078 1.156-.25v1.265q-.265.063-.562.125-.297.063-.61.11-.312.047-.64.062-.313.031-.61.031-.75 0-1.359-.218-.594-.219-1.016-.64-.406-.423-.64-1.032-.219-.625-.219-1.438 0-.797.219-1.453.234-.672.625-1.14.406-.47.984-.72.578-.265 1.297-.265.703 0 1.234.219.547.219.907.61.36.39.547.937.203.531.203 1.172zm-1.625-.235q.015-.39-.094-.672-.11-.296-.297-.484-.172-.187-.406-.281-.235-.094-.516-.094-.594 0-.984.406-.375.407-.453 1.125h2.75zm8.812 3.72q-.563.218-1.094.327-.531.11-1.11.11-.905 0-1.624-.266-.703-.266-1.188-.797-.484-.531-.734-1.328t-.25-1.844q0-1.062.266-1.89.28-.844.78-1.422.516-.578 1.235-.875.735-.313 1.64-.313.298 0 .548.016.265.015.5.047.25.031.5.093.265.063.53.157v1.578q-.546-.25-1.046-.36-.5-.109-.922-.109-.594 0-1.031.219-.422.203-.703.61-.281.39-.406.937-.125.531-.125 1.187 0 .688.125 1.235.14.546.421.921.282.375.704.579.437.187 1.046.187.204 0 .454-.031.25-.047.5-.11.265-.078.515-.171.25-.094.469-.188v1.5zm7.656-3.032q0 .781-.219 1.437-.219.641-.64 1.11-.422.453-1.032.718-.593.25-1.375.25-.734 0-1.312-.218-.578-.219-.985-.64-.406-.423-.625-1.063-.203-.657-.203-1.5 0-.782.22-1.422.233-.657.64-1.11.422-.453 1.03-.703.61-.25 1.376-.25.734 0 1.312.219.579.219.985.656.406.422.61 1.063.218.625.218 1.453zm-1.656.047q0-1.032-.39-1.547-.376-.516-1.142-.516-.406 0-.703.156-.297.157-.484.454-.188.28-.281.656-.078.375-.078.797 0 1.047.406 1.578.422.515 1.14.515.407 0 .688-.156.297-.172.484-.453.188-.281.266-.656.094-.39.094-.828zm6.968 3.312v-4.312q0-1.078-.797-1.078-.406 0-.781.328-.36.312-.766.875v4.187h-1.593v-6.61h1.375l.03.97q.204-.25.423-.454.219-.218.469-.359.265-.14.546-.219.297-.078.657-.078.515 0 .89.172.375.156.625.469.266.297.39.719.126.421.126.953v4.437h-1.594zm7.328 0v-4.312q0-1.078-.797-1.078-.406 0-.781.328-.36.312-.766.875v4.187h-1.593v-6.61h1.375l.03.97q.204-.25.423-.454.218-.218.468-.359.266-.14.547-.219.297-.078.657-.078.515 0 .89.172.375.156.625.469.266.297.39.719.126.421.126.953v4.437h-1.594zm9.156-3.812q0 .156-.016.422-.015.265-.03.484h-4.345q0 .437.125.781.141.328.375.547.25.219.594.344.344.11.75.11.485 0 1.031-.063.563-.078 1.157-.25v1.265q-.266.063-.563.125-.297.063-.61.11-.312.047-.64.062-.312.031-.61.031-.75 0-1.359-.218-.593-.219-1.015-.64-.406-.423-.64-1.032-.22-.625-.22-1.438 0-.797.22-1.453.234-.672.624-1.14.406-.47.985-.72.578-.265 1.296-.265.704 0 1.235.219.547.219.906.61.36.39.547.937.203.531.203 1.172zm-1.625-.235q.016-.39-.094-.672-.11-.296-.297-.484-.171-.187-.406-.281-.234-.094-.515-.094-.594 0-.985.406-.375.407-.453 1.125h2.75zm8.531 3.797q-.469.188-.969.266-.5.094-1.047.094-.78 0-1.406-.204-.625-.218-1.062-.64-.438-.422-.672-1.047-.235-.625-.235-1.453 0-.781.25-1.422.25-.656.704-1.11.468-.453 1.109-.703.64-.25 1.422-.25.64 0 1.078.079.453.062.797.171v1.532q-.406-.203-.875-.313-.469-.11-.89-.11-.438 0-.798.157-.343.14-.593.422-.235.266-.36.64-.125.376-.125.829 0 .484.125.86.14.374.39.64.25.265.595.406.359.14.796.14.204 0 .422-.03.235-.032.469-.079.234-.062.453-.125.235-.078.422-.172v1.422zm7.437.188q-.437.093-.875.156-.422.062-.812.062-.657 0-1.125-.14-.469-.14-.782-.422-.312-.281-.468-.703-.14-.438-.14-1.031v-3.235h-1.767v-1.234h1.766v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.266.859.265.281.875.281.39 0 .75-.062.375-.063.687-.14v1.265zm5.766-8.36q0 .22-.079.407-.078.187-.218.328-.14.14-.328.218-.188.079-.407.079-.218 0-.422-.079-.187-.078-.328-.218-.14-.14-.218-.328-.079-.188-.079-.407 0-.218.079-.406.078-.187.218-.328.141-.14.328-.219.204-.094.422-.094.22 0 .407.094.187.078.328.219.14.14.218.328.079.188.079.406zm-1.75 3.047h-1.875v-1.234h3.5v5.375h1.906v1.234h-5.64V321.4h2.109v-4.14zm11.14 2.016q0 .781-.219 1.437-.218.641-.64 1.11-.422.453-1.032.718-.593.25-1.375.25-.734 0-1.312-.218-.578-.219-.984-.64-.407-.423-.625-1.063-.204-.657-.204-1.5 0-.782.22-1.422.234-.657.64-1.11.422-.453 1.031-.703.61-.25 1.375-.25.734 0 1.313.219.578.219.984.656.406.422.61 1.063.218.625.218 1.453zm-1.656.047q0-1.032-.39-1.547-.376-.516-1.141-.516-.407 0-.704.156-.296.157-.484.454-.187.28-.281.656-.078.375-.078.797 0 1.047.406 1.578.422.515 1.14.515.407 0 .688-.156.297-.172.484-.453.188-.281.266-.656.094-.39.094-.828zm6.968 3.312v-4.312q0-1.078-.797-1.078-.406 0-.78.328-.36.312-.767.875v4.187h-1.593v-6.61h1.375l.03.97q.204-.25.423-.454.219-.218.469-.359.265-.14.546-.219.297-.078.657-.078.515 0 .89.172.375.156.625.469.266.297.39.719.126.421.126.953v4.437h-1.594zm9.125-2.578q0 .703-.266 1.219-.25.515-.718.86-.454.327-1.094.5-.64.155-1.39.155-.673 0-1.298-.078t-1.234-.265v-1.578q.297.093.625.187t.656.172q.328.062.64.11.329.03.641.03.454 0 .766-.078.328-.078.531-.218t.282-.328q.093-.188.093-.407 0-.312-.187-.53-.172-.22-.469-.376-.281-.156-.656-.281-.375-.14-.766-.281-.375-.157-.75-.344-.375-.188-.672-.469-.297-.281-.484-.672-.172-.39-.172-.937 0-.5.188-.938.187-.453.578-.781.39-.344 1-.547.61-.203 1.468-.203.25 0 .532.031.281.016.547.063.265.031.515.078.266.047.469.11v1.452q-.203-.078-.453-.14-.25-.063-.516-.11-.265-.047-.531-.078t-.5-.031q-.438 0-.734.078-.282.063-.47.188-.187.125-.28.296-.079.172-.079.391 0 .266.172.453.188.188.485.344.297.156.672.297.375.125.765.281.39.156.766.36.375.187.672.468.297.266.468.656.188.375.188.891zm7.047 2.516q-.438.093-.875.156-.422.062-.813.062-.656 0-1.125-.14t-.781-.422q-.313-.281-.469-.703-.14-.438-.14-1.031v-3.235h-1.766v-1.234h1.765v-1.688l1.625-.437v2.125h2.579v1.234h-2.579v3.11q0 .562.266.859.266.281.875.281.39 0 .75-.062.375-.063.688-.14v1.265zm6.015.062-.031-.86q-.219.22-.453.407-.22.188-.5.328-.266.125-.594.203-.313.078-.703.078-.5 0-.89-.156-.376-.156-.642-.422-.265-.265-.406-.64-.125-.375-.125-.828 0-.47.203-.86.203-.406.61-.687.406-.297 1.015-.453.61-.157 1.422-.157h.875v-.406q0-.25-.078-.453t-.234-.344q-.157-.156-.407-.234-.25-.078-.625-.078-.593 0-1.171.14-.563.125-1.094.375v-1.265q.484-.203 1.094-.313.625-.125 1.296-.125.735 0 1.266.14.531.141.86.423.343.265.5.687.171.422.171.985v4.515h-1.359zm-.219-2.922h-.969q-.406 0-.687.078-.281.079-.469.22-.172.124-.25.312-.078.172-.078.375 0 .406.25.625.266.203.719.203.328 0 .687-.235.36-.25.797-.687v-.89zm7.656-1.125q.016-.359-.031-.625-.047-.265-.156-.422-.11-.171-.266-.25-.156-.078-.36-.078-.343 0-.718.297-.375.281-.828.938v4.187h-1.625v-6.61h1.437l.063.954q.156-.25.36-.453.202-.203.452-.344.25-.14.563-.219.312-.078.672-.078.5 0 .89.172t.64.516q.267.328.392.843.14.5.109 1.172h-1.594zm8.531 3.985q-.437.093-.875.156-.422.062-.812.062-.657 0-1.125-.14-.47-.14-.782-.422-.312-.281-.468-.703-.141-.438-.141-1.031v-3.235h-1.766v-1.234h1.766v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.266.859.265.281.875.281.39 0 .75-.062.375-.063.687-.14v1.265zm3.39-9.64q1.594 1.327 2.376 2.874.78 1.531.78 3.313 0 .984-.234 1.859t-.656 1.656q-.406.781-1 1.453-.578.688-1.281 1.282l-.922-.907q1.281-1.14 1.922-2.468.64-1.329.64-2.782 0-1.468-.64-2.828-.64-1.375-1.922-2.515l.938-.938z"/><path d="M585.28 316.726h3.008l8.663-46.358"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M585.28 316.726h3.008l7.56-40.46"/><path fill="#000" stroke="#000" stroke-linecap="butt" d="m597.472 276.57-.79-4.765-2.457 4.157z" fill-rule="evenodd"/><path d="M760.234 305.107h250.079v31.937h-250.08z"/><path fill="#000" d="M774.171 328.61q-1.593-1.344-2.39-2.875-.782-1.531-.782-3.313 0-.984.235-1.859.234-.89.656-1.656.438-.781 1.016-1.453.593-.688 1.297-1.282l.906.907q-1.266 1.14-1.906 2.468-.641 1.313-.641 2.766 0 1.484.64 2.844.641 1.36 1.907 2.484l-.938.969zm7.547-6.781q.016-.36-.031-.625-.047-.266-.157-.422-.109-.172-.265-.25-.156-.078-.36-.078-.343 0-.718.297-.375.28-.828.937v4.188h-1.625v-6.61h1.437l.063.953q.156-.25.359-.453.203-.203.453-.344.25-.14.563-.218.312-.078.671-.078.5 0 .891.171.39.172.64.516.266.328.391.844.14.5.11 1.172h-1.594zm8.843.234q0 .156-.015.422-.016.266-.031.484h-4.344q0 .438.125.782.14.328.375.546.25.22.594.344.343.11.75.11.484 0 1.03-.063.563-.078 1.157-.25v1.266q-.266.062-.562.125-.297.062-.61.11-.312.046-.64.062-.313.03-.61.03-.75 0-1.36-.218-.593-.219-1.015-.64-.406-.422-.64-1.032-.22-.625-.22-1.437 0-.797.22-1.453.234-.672.625-1.141.406-.469.984-.719.578-.265 1.297-.265.703 0 1.234.218.547.22.906.61.36.39.547.937.203.531.203 1.172zm-1.625-.234q.016-.39-.093-.672-.11-.297-.297-.485-.172-.187-.406-.28-.235-.095-.516-.095-.594 0-.984.407-.375.406-.454 1.125h2.75zm7.125 6.625v-2.172l.078-1.281q-.187.218-.39.421-.203.188-.453.329-.235.125-.532.203-.281.078-.61.078-.593 0-1.046-.235-.453-.234-.766-.671-.312-.438-.468-1.047-.157-.625-.157-1.39 0-.782.204-1.438.218-.657.64-1.125.438-.47 1.063-.72.64-.265 1.5-.265.156 0 .343.031.204.016.391.047.203.032.375.078.188.032.328.079l1.094-.235v9.313h-1.594zm-2.687-5.828q0 .546.078.937.078.375.219.625.156.25.359.375.219.11.5.11.39 0 .75-.329.375-.328.781-.89v-2.89q-.187-.079-.469-.126-.265-.047-.546-.047-.391 0-.704.156-.296.157-.515.454-.219.28-.344.703-.11.406-.11.922zm7.656-3.36v4.313q0 .531.203.812t.61.281q.39 0 .75-.328.374-.343.78-.89v-4.188h1.594v6.61h-1.375l-.031-.97q-.219.25-.438.454-.203.203-.453.36-.25.14-.547.218-.296.094-.656.094-.5 0-.89-.172-.375-.172-.641-.469-.25-.312-.375-.734t-.125-.953v-4.438h1.594zm11.515 2.797q0 .156-.016.422-.015.266-.03.484h-4.345q0 .438.125.782.141.328.375.546.25.22.594.344.344.11.75.11.485 0 1.031-.063.563-.078 1.157-.25v1.266q-.266.062-.563.125-.297.062-.61.11-.312.046-.64.062-.312.03-.61.03-.75 0-1.359-.218-.593-.219-1.015-.64-.406-.422-.64-1.032-.22-.625-.22-1.437 0-.797.22-1.453.234-.672.624-1.141.406-.469.985-.719.578-.265 1.296-.265.704 0 1.235.218.547.22.906.61.36.39.547.937.203.531.203 1.172zm-1.625-.234q.016-.39-.094-.672-.11-.297-.297-.485-.171-.187-.406-.28-.234-.095-.515-.095-.594 0-.985.407-.375.406-.453 1.125h2.75zm8.64 2.093q0 .579-.25.985-.25.39-.672.64-.406.25-.937.36-.516.125-1.063.125-.734 0-1.328-.078-.578-.063-1.093-.188v-1.437q.609.25 1.218.375.61.11 1.157.11.625 0 .921-.204.313-.203.313-.516 0-.156-.063-.28-.062-.126-.25-.235-.171-.11-.5-.235-.328-.125-.843-.265-.5-.14-.875-.313-.36-.172-.61-.406-.234-.234-.359-.531-.11-.313-.11-.735 0-.406.172-.765.188-.36.547-.625.375-.266.907-.422.546-.156 1.265-.156.625 0 1.11.062.484.063.843.14v1.298q-.562-.188-1.062-.25-.5-.079-.985-.079-.484 0-.78.172-.298.172-.298.485 0 .156.047.281.063.11.235.219.187.11.484.234.312.11.828.25.563.172.953.36.39.187.625.421.25.235.344.532.11.296.11.671zm7.328 1.891q-.437.094-.875.156-.422.063-.812.063-.657 0-1.125-.14-.469-.141-.782-.423-.312-.28-.468-.703-.14-.437-.14-1.031v-3.234h-1.767v-1.235h1.766v-1.687l1.625-.438v2.125h2.578v1.235h-2.578v3.109q0 .562.266.86.265.28.875.28.39 0 .75-.062.375-.062.687-.14v1.265zm7.61-2.516q0 .704-.266 1.22-.25.515-.719.859-.453.328-1.094.5-.64.156-1.39.156-.672 0-1.297-.078-.625-.078-1.235-.266v-1.578q.297.094.625.187.328.094.657.172.328.063.64.11.328.031.64.031.454 0 .766-.078.329-.078.532-.219.203-.14.281-.328.094-.188.094-.406 0-.313-.188-.532-.172-.218-.469-.375-.28-.156-.656-.28-.375-.141-.765-.282-.375-.156-.75-.344-.375-.187-.672-.469-.297-.28-.485-.671-.172-.391-.172-.938 0-.5.188-.937.187-.454.578-.782.39-.343 1-.547.61-.203 1.469-.203.25 0 .531.032.281.015.547.062.266.031.516.078.265.047.468.11v1.453q-.203-.078-.453-.14-.25-.063-.515-.11-.266-.047-.532-.078-.265-.032-.5-.032-.437 0-.734.078-.281.063-.469.188-.187.125-.281.297-.078.172-.078.39 0 .266.172.454.187.187.484.343.297.157.672.297.375.125.766.281.39.157.765.36.375.187.672.469.297.265.469.656.187.375.187.89zm7.046 2.516q-.438.094-.875.156-.422.063-.813.063-.656 0-1.125-.14-.468-.141-.78-.423-.313-.28-.47-.703-.14-.437-.14-1.031v-3.234h-1.766v-1.235h1.766v-1.687l1.625-.438v2.125h2.578v1.235h-2.578v3.109q0 .562.265.86.266.28.875.28.391 0 .75-.062.375-.062.688-.14v1.265zm6.015.063-.03-.86q-.22.219-.454.406-.219.188-.5.329-.266.125-.594.203-.312.078-.703.078-.5 0-.89-.156-.376-.157-.641-.422-.266-.266-.406-.64-.125-.376-.125-.829 0-.469.203-.86.203-.406.61-.687.405-.297 1.015-.453.61-.156 1.422-.156h.875v-.407q0-.25-.079-.453-.078-.203-.234-.343-.156-.157-.406-.235-.25-.078-.625-.078-.594 0-1.172.14-.563.126-1.094.376v-1.266q.485-.203 1.094-.312.625-.125 1.297-.125.734 0 1.265.14.532.14.86.422.344.266.5.688.172.421.172.984v4.516h-1.36zm-.218-2.922h-.97q-.405 0-.687.078-.28.078-.468.219-.172.125-.25.312-.079.172-.079.375 0 .406.25.625.266.203.72.203.327 0 .687-.234.36-.25.797-.688v-.89zm7.656-1.125q.015-.36-.032-.625-.047-.266-.156-.422-.11-.172-.266-.25-.156-.078-.359-.078-.344 0-.719.297-.375.28-.828.937v4.188h-1.625v-6.61h1.438l.062.953q.156-.25.36-.453.203-.203.453-.344.25-.14.562-.218.313-.078.672-.078.5 0 .89.171.391.172.641.516.266.328.39.844.142.5.11 1.172h-1.593zm8.53 3.984q-.437.094-.874.156-.422.063-.813.063-.656 0-1.125-.14-.469-.141-.781-.423-.313-.28-.469-.703-.14-.437-.14-1.031v-3.234h-1.766v-1.235h1.765v-1.687l1.625-.438v2.125h2.579v1.235h-2.579v3.109q0 .562.266.86.266.28.875.28.39 0 .75-.062.375-.062.688-.14v1.265zm5.313-3.516h-1.36l.188-2-1.64 1.172-.657-1.14 1.828-.844-1.828-.828.656-1.14 1.64 1.171-.187-2.016h1.36l-.188 2.016 1.64-1.172.657 1.14-1.828.829 1.828.844-.656 1.14-1.64-1.172.187 2zm5.406-6.125q1.594 1.329 2.375 2.875.781 1.532.781 3.313 0 .984-.234 1.86-.235.874-.657 1.656-.406.78-1 1.453-.578.687-1.28 1.281l-.923-.906q1.282-1.14 1.922-2.469.64-1.328.64-2.781 0-1.469-.64-2.828-.64-1.375-1.922-2.516l.938-.938z"/><path d="M766.955 321.392h-2.733l-7.87-48.51"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M766.955 321.392h-2.733l-6.908-42.588"/><path fill="#000" stroke="#000" stroke-linecap="butt" d="m758.944 278.54-2.357-4.216-.904 4.744z" fill-rule="evenodd"/><path fill="#cfe2f3" d="M359.767 172.552h104.031v92.063H359.767z" fill-rule="evenodd"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M359.767 172.552h104.031v92.063H359.767z"/><path fill="#000" d="M381.752 223.384h-1.156v-3.907h-3.578v3.907h-1.156v-8.5h1.156v3.593h3.578v-3.593h1.156v8.5zm7.484-7.516h-2.515v7.516h-1.172v-7.516h-2.516v-.984h6.203v.984zm7.328 0h-2.515v7.516h-1.172v-7.516h-2.516v-.984h6.203v.984zm7.172 1.61q0 .53-.203 1.046-.188.5-.594.907-.406.406-1.047.656-.64.25-1.531.25h-1.047v3.047h-1.156v-8.5h2.39q.625 0 1.204.14.593.141 1.03.453.438.313.688.813.266.484.266 1.187zm-1.203.062q0-.828-.547-1.266-.531-.437-1.484-.437h-1.188v3.5h1.078q1.031 0 1.578-.438.563-.453.563-1.359zm15.718 5.531q-1.016.422-2.14.422-1.797 0-2.766-1.078-.969-1.078-.969-3.188 0-1.03.266-1.843.265-.828.765-1.407.5-.578 1.203-.89.704-.313 1.579-.313.578 0 1.078.11.515.093.984.297v1.14q-.453-.25-.953-.375-.484-.14-1.078-.14-.594 0-1.078.234-.485.219-.828.64-.344.422-.532 1.047-.172.61-.172 1.391 0 1.656.672 2.5.672.828 1.969.828.547 0 1.047-.125.5-.125.953-.344v1.094zm6.094.313-.016-.875q-.547.531-1.094.765-.547.22-1.156.22-.547 0-.953-.142-.39-.14-.656-.39-.25-.25-.375-.578-.125-.344-.125-.75 0-.985.734-1.532.734-.562 2.172-.562h1.344v-.563q0-.578-.375-.921-.36-.36-1.125-.36-.547 0-1.094.125-.531.125-1.11.344v-1.016q.22-.078.485-.156t.547-.125q.297-.062.609-.094.328-.047.656-.047.594 0 1.063.141.484.125.812.39.328.266.5.673.172.406.172.953v4.5h-1.015zm-.125-2.969h-1.438q-.422 0-.734.078-.297.078-.5.234-.188.157-.282.375-.093.22-.093.5 0 .188.062.36.063.172.188.312.125.125.328.203.219.079.515.079.391 0 .891-.235.516-.234 1.063-.75v-1.156zm8.343 2.734q-.453.157-.922.235-.453.093-.953.093-1.547 0-2.39-.843-.829-.844-.829-2.453 0-.766.235-1.391.25-.64.672-1.094.437-.453 1.046-.687.61-.25 1.344-.25.5 0 .938.078.453.062.859.234v1.078q-.437-.218-.875-.312-.437-.11-.906-.11-.438 0-.828.172-.375.157-.672.47-.297.312-.469.765-.156.437-.156 1.015 0 1.172.562 1.766.578.594 1.61.594.453 0 .89-.11.438-.109.844-.312v1.062zm7.5.235h-1.14v-4.172q0-.75-.282-1.125-.281-.375-.813-.375-.218 0-.422.062-.203.063-.421.22-.204.14-.47.405-.25.266-.577.657v4.328h-1.125v-9.203h1.125v2.671l-.032 1.032q.266-.328.516-.547.266-.219.516-.344.25-.14.515-.203.282-.063.563-.063.969 0 1.5.61.547.594.547 1.781v4.266zm7.593-3.61q0 .235-.015.407 0 .156-.016.296h-4.578q0 1 .547 1.547.562.532 1.625.532.281 0 .562-.016.297-.031.563-.063.265-.046.5-.093.25-.047.453-.11v.938q-.453.125-1.047.203-.578.078-1.203.078-.828 0-1.438-.219-.609-.234-1-.656-.39-.437-.578-1.062-.172-.625-.172-1.422 0-.688.188-1.297.203-.625.578-1.094.39-.469.938-.734.562-.282 1.265-.282.672 0 1.203.22.532.218.89.609.36.39.548.953.187.562.187 1.265zm-1.187-.172q.031-.421-.078-.78-.11-.376-.328-.626-.22-.265-.547-.406-.313-.156-.75-.156-.36 0-.672.156-.313.14-.531.406-.22.25-.36.625-.125.36-.156.781h3.422z"/><path d="M255.113 96.934h126.394v31.937H255.113z"/><path fill="#000" d="M269.05 120.437q-1.593-1.344-2.39-2.875-.781-1.532-.781-3.313 0-.984.234-1.86.234-.89.656-1.656.438-.78 1.016-1.453.594-.687 1.297-1.281l.906.906q-1.266 1.14-1.906 2.469-.641 1.313-.641 2.766 0 1.484.64 2.843.641 1.36 1.907 2.485l-.938.969zm9.235-10.579q-.297-.093-.688-.156-.39-.062-.797-.062-.281 0-.531.078-.234.078-.406.234-.172.156-.282.406-.093.25-.093.61v1.078h2.593v1.234h-2.593v4.422h-1.61v-4.422h-1.922v-1.234h1.922v-1.016q0-.687.203-1.187.204-.516.579-.828.375-.328.906-.47.531-.155 1.172-.155.437 0 .828.062.39.047.719.125v1.281zm-6.844 1.235zm14 2.797q0 .156-.016.422l-.031.484h-4.344q0 .437.125.781.14.328.375.547.25.219.594.344.343.11.75.11.484 0 1.03-.063.563-.078 1.157-.25v1.265q-.266.063-.562.125-.297.063-.61.11-.312.047-.64.062-.313.031-.61.031-.75 0-1.36-.218-.593-.22-1.015-.641-.406-.422-.64-1.031-.22-.625-.22-1.438 0-.797.22-1.453.234-.672.625-1.14.406-.47.984-.72.578-.265 1.297-.265.703 0 1.234.219.547.219.906.61.36.39.547.937.203.531.203 1.172zm-1.626-.235q.016-.39-.093-.672-.11-.296-.297-.484-.172-.187-.406-.281-.235-.094-.516-.094-.594 0-.984.406-.375.407-.454 1.125h2.75zm8.64 3.985q-.437.093-.874.156-.422.062-.813.062-.656 0-1.125-.14-.468-.14-.78-.422-.313-.281-.47-.703-.14-.438-.14-1.031v-3.235h-1.766v-1.234h1.766v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.265.859.266.281.875.281.391 0 .75-.062.375-.063.688-.141v1.266zm7.22-.188q-.47.188-.97.266-.5.094-1.046.094-.782 0-1.407-.204-.625-.218-1.062-.64-.438-.422-.672-1.047-.234-.625-.234-1.453 0-.781.25-1.422.25-.656.703-1.11.469-.453 1.11-.703.64-.25 1.421-.25.64 0 1.078.079.453.062.797.171v1.532q-.406-.203-.875-.313-.469-.11-.89-.11-.438 0-.797.157-.344.14-.594.422-.235.266-.36.64-.125.376-.125.829 0 .484.125.859.141.375.391.64.25.266.594.407.36.14.797.14.203 0 .422-.03.234-.032.468-.079.235-.062.453-.125.235-.078.422-.172v1.422zm5.921.25v-4.312q0-1.078-.797-1.078-.406 0-.781.328-.36.312-.766.875v4.187h-1.594V108.5h1.594v2.266l-.078 1.203q.188-.235.39-.422.22-.203.454-.328.25-.14.531-.203t.61-.063q.515 0 .89.172.375.156.625.469.266.297.39.719.126.421.126.953v4.437h-1.594zm9.125-2.578q0 .703-.266 1.219-.25.515-.719.86-.453.327-1.093.5-.641.155-1.391.155-.672 0-1.297-.078-.625-.078-1.234-.265v-1.578q.297.093.625.187t.656.172q.328.062.64.11.329.03.641.03.453 0 .766-.078.328-.078.531-.218.203-.141.281-.328.094-.188.094-.407 0-.312-.187-.531-.172-.219-.47-.375-.28-.156-.655-.281-.375-.14-.766-.281-.375-.157-.75-.344-.375-.188-.672-.469-.297-.281-.484-.672-.172-.39-.172-.937 0-.5.187-.938.188-.453.578-.781.391-.344 1-.547.61-.203 1.47-.203.25 0 .53.031.282.016.547.063.266.03.516.078.266.047.469.11v1.452q-.203-.078-.453-.14-.25-.063-.516-.11t-.531-.078q-.266-.031-.5-.031-.438 0-.735.078-.28.063-.468.188t-.282.296q-.078.172-.078.391 0 .266.172.453.188.188.484.344.297.156.672.297.375.125.766.281.39.156.766.36.375.187.671.468.297.266.47.656.187.375.187.891zm7.046 2.516q-.437.093-.875.156-.422.062-.812.062-.656 0-1.125-.14t-.781-.422q-.313-.281-.47-.703-.14-.438-.14-1.031v-3.235H315.8v-1.234h1.765v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.266.859.265.281.875.281.39 0 .75-.062.375-.063.687-.141v1.266zm6.016.062-.032-.86q-.218.22-.453.407-.218.188-.5.328-.265.125-.593.203-.313.078-.704.078-.5 0-.89-.156-.375-.156-.64-.422-.266-.265-.407-.64-.125-.375-.125-.828 0-.47.203-.86.203-.406.61-.687.406-.297 1.015-.453.61-.157 1.422-.157h.875v-.406q0-.25-.078-.453t-.235-.344q-.156-.156-.406-.234-.25-.078-.625-.078-.594 0-1.172.14-.562.125-1.093.375v-1.265q.484-.203 1.093-.313.625-.125 1.297-.125.735 0 1.266.14.531.141.86.423.343.265.5.687.171.422.171.985v4.515h-1.36zm-.22-2.922h-.968q-.406 0-.687.078-.282.079-.47.22-.17.124-.25.312-.077.172-.077.375 0 .406.25.625.265.203.719.203.328 0 .687-.235.36-.25.797-.687v-.89zm7.657-1.125q.016-.36-.031-.625t-.157-.422q-.109-.171-.265-.25-.156-.078-.36-.078-.343 0-.718.297-.375.281-.828.938v4.187h-1.625v-6.61h1.437l.063.954q.156-.25.359-.453.203-.203.453-.344.25-.14.563-.219.312-.078.671-.078.5 0 .891.172.39.172.64.516.266.328.391.843.14.5.11 1.172h-1.594zm8.53 3.985q-.437.093-.874.156-.422.062-.813.062-.656 0-1.125-.14-.468-.14-.78-.422-.313-.281-.47-.703-.14-.438-.14-1.031v-3.235h-1.766v-1.234h1.766v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.265.859.266.281.875.281.391 0 .75-.062.375-.063.688-.141v1.266zm3.391-9.641q1.594 1.328 2.375 2.875.782 1.531.782 3.313 0 .984-.235 1.859-.234.875-.656 1.656-.406.781-1 1.453-.578.688-1.281 1.282l-.922-.907q1.281-1.14 1.922-2.468.64-1.329.64-2.782 0-1.468-.64-2.828-.641-1.375-1.922-2.515l.937-.938z"/><path d="M264.067 113.718h-3.89l-11.2 52.249"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M264.067 113.718h-3.89l-9.943 46.382"/><path fill="#000" stroke="#000" stroke-linecap="butt" d="m248.62 159.754.663 4.783 2.566-4.09z" fill-rule="evenodd"/><path fill="#cfe2f3" d="M501.842 172.553h55.969v92.063h-55.969z" fill-rule="evenodd"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M501.842 172.553h55.969v92.063h-55.969z"/><path fill="#000" d="M525.694 219.04q0 .61-.094 1.173-.094.562-.312 1.047-.204.468-.547.875-.328.39-.813.671-.469.266-1.11.422-.64.157-1.452.157h-1.828v-8.5h2.203q1.984 0 2.968 1.03.985 1.016.985 3.126zm-1.219.079q0-.906-.172-1.531-.172-.625-.515-1-.344-.39-.875-.563-.516-.172-1.22-.172h-.984v6.532h.86q2.906 0 2.906-3.266zm8.25 4.266h-1.516l-2.469-5.297-.718-1.719v7.016h-1.078v-8.5h1.484l2.36 5.015.859 1.953v-6.968h1.078v8.5zm7.25-2.297q0 .593-.25 1.062-.235.453-.688.75-.437.297-1.062.453-.625.141-1.36.141-.344 0-.687-.031-.328-.016-.64-.063-.313-.031-.595-.078-.265-.047-.484-.11v-1.124q.484.187 1.094.297.61.093 1.39.093.563 0 .953-.078.391-.094.641-.265.25-.172.36-.422.124-.25.124-.563 0-.344-.203-.594-.187-.25-.5-.437-.312-.188-.718-.344-.391-.172-.813-.328-.406-.172-.812-.375-.407-.203-.72-.469-.312-.265-.5-.625-.187-.375-.187-.875 0-.437.172-.859.188-.422.563-.75.39-.328.984-.531.61-.203 1.453-.203.203 0 .453.03.266.016.516.048.25.031.5.078.266.047.469.094v1.046q-.5-.14-1-.218-.5-.078-.969-.078-1 0-1.469.343-.469.328-.469.891 0 .344.188.594.203.234.516.437.312.188.703.36.406.156.812.328.422.156.828.36.407.202.72.483.312.282.5.657.187.36.187.875z"/><path d="M518.598 19.752h-3.89l-11.2 145.316"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M518.598 19.752h-3.89l-10.74 139.333"/><path fill="#000" stroke="#000" stroke-linecap="butt" d="m502.321 158.958 1.299 4.652 1.995-4.398z" fill-rule="evenodd"/><path d="M513.022 0h191.874v36.693H513.022z"/><path fill="#000" d="M526.96 25.88q-1.594-1.343-2.39-2.874-.782-1.531-.782-3.313 0-.984.234-1.859.235-.89.657-1.656.437-.782 1.015-1.453.594-.688 1.297-1.282l.906.907q-1.265 1.14-1.906 2.468-.64 1.313-.64 2.766 0 1.484.64 2.844.64 1.36 1.906 2.484l-.937.969zm7.453-2.734-.032-.968q-.218.25-.437.453t-.484.36q-.25.14-.547.218-.282.094-.625.094-.594 0-1.047-.235-.453-.234-.766-.672-.312-.437-.469-1.046-.156-.625-.156-1.391 0-.906.25-1.563.266-.671.719-1.109.453-.453 1.078-.656.625-.219 1.36-.219.25 0 .5.031.25.032.437.094v-2.594h1.594v9.203h-1.375zm-2.907-3.25q0 .547.079.938.078.375.218.625.157.25.36.375.218.11.5.11.39 0 .75-.329.375-.328.781-.89v-2.891q-.188-.078-.469-.125-.265-.047-.547-.047-.39 0-.703.156-.297.157-.515.453-.22.282-.344.704-.11.406-.11.921zm12.031-.109q0 .781-.218 1.438-.219.64-.64 1.109-.423.453-1.032.719-.594.25-1.375.25-.735 0-1.313-.219t-.984-.64q-.406-.423-.625-1.063-.203-.656-.203-1.5 0-.781.219-1.422.234-.656.64-1.11.422-.453 1.031-.703.61-.25 1.375-.25.735 0 1.313.22.578.218.984.655.407.422.61 1.063.218.625.218 1.453zm-1.656.047q0-1.031-.39-1.547-.375-.516-1.141-.516-.406 0-.703.157-.297.156-.485.453-.187.281-.28.656-.079.375-.079.797 0 1.047.406 1.578.422.516 1.141.516.406 0 .687-.157.297-.171.485-.453.187-.28.265-.656.094-.39.094-.828zm7.703 3.312v-4.5q0-.25-.016-.437-.015-.188-.062-.313-.031-.125-.11-.187-.078-.063-.203-.063-.203 0-.406.282-.187.265-.437.937v4.281h-1.36v-4.5q0-.25-.015-.437 0-.188-.047-.313-.031-.125-.11-.187-.078-.063-.218-.063-.172 0-.375.282-.203.265-.469.937v4.281h-1.36v-6.609h1.172l.032.953q.14-.281.281-.484.14-.219.297-.344.172-.14.36-.187.187-.063.421-.063.547 0 .828.297.297.281.344.781.156-.281.297-.484.156-.219.312-.344.172-.14.36-.187.203-.063.437-.063.719 0 1.063.5.343.5.343 1.484v4.75h-1.359zm6.797 0-.032-.859q-.218.219-.453.406-.218.188-.5.328-.265.125-.593.204-.313.078-.704.078-.5 0-.89-.157-.375-.156-.64-.421-.266-.266-.407-.641-.125-.375-.125-.828 0-.469.203-.86.203-.406.61-.687.406-.297 1.015-.453.61-.156 1.422-.156h.875v-.407q0-.25-.078-.453t-.235-.344q-.156-.156-.406-.234-.25-.078-.625-.078-.594 0-1.172.14-.562.126-1.093.376v-1.266q.484-.203 1.093-.313.625-.125 1.297-.125.735 0 1.266.141.531.14.86.422.343.266.5.687.171.422.171.985v4.515h-1.36zm-.219-2.921h-.969q-.406 0-.687.078-.282.078-.469.218-.172.125-.25.313-.078.172-.078.375 0 .406.25.625.265.203.719.203.328 0 .687-.234.36-.25.797-.688v-.89zm7.297-5.5q0 .218-.079.406-.078.187-.218.328-.14.14-.328.219-.188.078-.407.078-.218 0-.422-.078-.187-.078-.328-.219-.14-.14-.218-.328-.079-.188-.079-.406 0-.22.079-.407.078-.187.218-.328.14-.14.328-.219.204-.093.422-.093.22 0 .407.093.187.079.328.22.14.14.218.327.079.188.079.407zm-1.75 3.046h-1.875v-1.234h3.5v5.375h1.906v1.234h-5.64v-1.234h2.109v-4.14zm9.124 5.375v-4.312q0-1.078-.797-1.078-.406 0-.78.328-.36.312-.766.875v4.187h-1.594v-6.609h1.375l.031.969q.203-.25.422-.453.219-.219.469-.36.265-.14.547-.218.296-.079.656-.079.515 0 .89.172.375.157.625.47.266.296.391.718t.125.953v4.437h-1.594zm3.766 0v-8.5h1.625v7.125h3.593v1.375H574.6zm12.906-3.359q0 .781-.219 1.438-.219.64-.64 1.109-.423.453-1.032.719-.594.25-1.375.25-.734 0-1.312-.219-.579-.219-.985-.64-.406-.423-.625-1.063-.203-.656-.203-1.5 0-.781.219-1.422.234-.656.64-1.11.422-.453 1.032-.703.61-.25 1.375-.25.734 0 1.312.22.578.218.985.655.406.422.609 1.063.219.625.219 1.453zm-1.657.047q0-1.031-.39-1.547-.375-.516-1.14-.516-.407 0-.704.157-.297.156-.484.453-.188.281-.282.656-.078.375-.078.797 0 1.047.407 1.578.421.516 1.14.516.406 0 .688-.157.297-.171.484-.453.188-.28.266-.656.093-.39.093-.828zm8.985-.047q0 .781-.22 1.438-.218.64-.64 1.109-.422.453-1.031.719-.594.25-1.375.25-.734 0-1.313-.219-.578-.219-.984-.64-.406-.423-.625-1.063-.203-.656-.203-1.5 0-.781.219-1.422.234-.656.64-1.11.422-.453 1.032-.703.609-.25 1.375-.25.734 0 1.312.22.578.218.984.655.407.422.61 1.063.219.625.219 1.453zm-1.657.047q0-1.031-.39-1.547-.375-.516-1.141-.516-.406 0-.703.157-.297.156-.484.453-.188.281-.282.656-.078.375-.078.797 0 1.047.406 1.578.422.516 1.141.516.406 0 .688-.157.296-.171.484-.453.187-.28.266-.656.093-.39.093-.828zm7.125 3.312-2.437-3.312v3.312h-1.594v-9.203h1.594v5.391l2.312-2.797h1.984l-2.687 3.016 2.906 3.593h-2.078zm4.812-6.609v4.313q0 .53.203.812.204.281.61.281.39 0 .75-.328.375-.344.781-.89v-4.188h1.594v6.61h-1.375l-.031-.97q-.22.25-.438.454-.203.203-.453.36-.25.14-.547.218-.297.094-.656.094-.5 0-.89-.172-.376-.172-.641-.469-.25-.312-.375-.734t-.125-.953v-4.438h1.593zm11.703 3.188q0 .906-.265 1.578-.25.656-.72 1.093-.452.438-1.077.657-.625.203-1.36.203-.25 0-.5-.031-.25-.032-.437-.079v2.579h-1.594v-9.188h1.375l.031.969q.203-.25.422-.453.219-.219.469-.36.266-.14.547-.218.297-.079.656-.079.594 0 1.047.235.453.234.766.672.312.422.468 1.047.172.609.172 1.375zm-1.672.062q0-.547-.078-.922-.078-.39-.234-.64-.14-.25-.36-.36-.203-.11-.468-.11-.407 0-.782.329-.359.312-.765.875v2.89q.187.079.453.126.281.046.562.046.375 0 .688-.156.312-.156.531-.437.219-.297.328-.703.125-.422.125-.938zm8.781.781q0 .703-.265 1.22-.25.515-.72.858-.452.329-1.093.5-.64.157-1.39.157-.672 0-1.297-.078-.625-.079-1.235-.266v-1.578q.297.094.625.187.328.094.656.172.329.063.641.11.328.03.64.03.454 0 .766-.077.328-.078.532-.219.203-.14.28-.328.095-.188.095-.406 0-.313-.188-.532-.172-.218-.469-.375-.28-.156-.656-.28-.375-.142-.766-.282-.375-.156-.75-.344-.375-.187-.671-.469-.297-.28-.485-.672-.172-.39-.172-.937 0-.5.188-.938.187-.453.578-.78.39-.345 1-.548.61-.203 1.469-.203.25 0 .531.031.281.016.547.063.265.031.515.078.266.047.47.11v1.453q-.204-.079-.454-.141-.25-.063-.516-.11-.265-.046-.53-.078-.266-.03-.5-.03-.438 0-.735.077-.281.063-.469.188-.187.125-.281.297-.078.172-.078.39 0 .266.172.453.187.188.484.344.297.156.672.297.375.125.765.281.391.157.766.36.375.187.672.468.297.266.469.657.187.375.187.89zm7.047 2.516q-.438.094-.875.156-.422.063-.813.063-.656 0-1.125-.14-.468-.142-.78-.423-.313-.281-.47-.703-.14-.437-.14-1.031V17.77h-1.766v-1.234h1.766V14.85l1.625-.438v2.125h2.578v1.234h-2.578v3.11q0 .562.265.86.266.28.875.28.391 0 .75-.062.375-.063.688-.14v1.265zm6.015.062-.031-.859q-.219.219-.453.406-.219.188-.5.328-.266.125-.594.204-.312.078-.703.078-.5 0-.89-.157-.376-.156-.641-.421-.266-.266-.407-.641-.125-.375-.125-.828 0-.469.204-.86.203-.406.609-.687.406-.297 1.016-.453.609-.156 1.421-.156h.875v-.407q0-.25-.078-.453t-.234-.344q-.156-.156-.406-.234-.25-.078-.625-.078-.594 0-1.172.14-.563.126-1.094.376v-1.266q.484-.203 1.094-.313.625-.125 1.297-.125.734 0 1.265.141.532.14.86.422.343.266.5.687.172.422.172.985v4.515h-1.36zm-.219-2.921h-.968q-.407 0-.688.078-.281.078-.469.218-.171.125-.25.313-.078.172-.078.375 0 .406.25.625.266.203.72.203.327 0 .687-.234.359-.25.796-.688v-.89zm7.657-1.125q.015-.36-.032-.625-.047-.266-.156-.422-.11-.172-.266-.25-.156-.078-.359-.078-.344 0-.719.296-.375.282-.828.938v4.187h-1.625v-6.609h1.438l.062.953q.156-.25.36-.453.203-.203.453-.344.25-.14.562-.218.313-.079.672-.079.5 0 .89.172.391.172.641.516.266.328.39.844.142.5.11 1.172h-1.593zm8.53 3.984q-.437.094-.875.156-.421.063-.812.063-.656 0-1.125-.14-.469-.142-.781-.423-.313-.281-.47-.703-.14-.437-.14-1.031V17.77h-1.765v-1.234h1.765V14.85l1.625-.438v2.125h2.578v1.234h-2.578v3.11q0 .562.266.86.266.28.875.28.39 0 .75-.062.375-.063.687-.14v1.265zm3.39-9.64q1.595 1.327 2.376 2.874.781 1.532.781 3.313 0 .984-.234 1.86-.235.874-.657 1.655-.406.782-1 1.454-.578.687-1.28 1.28l-.923-.905q1.282-1.141 1.922-2.47.64-1.327.64-2.78 0-1.47-.64-2.829-.64-1.375-1.922-2.515l.938-.938z"/><path d="M566.17 28.567h175.37V65.26H566.17z"/><path fill="#000" d="M580.107 54.448q-1.594-1.344-2.391-2.875-.781-1.531-.781-3.313 0-.984.234-1.859.234-.89.656-1.656.438-.781 1.016-1.453.594-.688 1.297-1.282l.906.907q-1.266 1.14-1.906 2.468-.64 1.313-.64 2.766 0 1.484.64 2.844.64 1.36 1.906 2.484l-.937.969zm7.452-2.734-.03-.97q-.22.25-.438.454-.22.203-.485.36-.25.14-.547.218-.28.094-.625.094-.593 0-1.046-.235-.454-.234-.766-.671-.313-.438-.469-1.047-.156-.625-.156-1.39 0-.907.25-1.563.266-.672.719-1.11.453-.453 1.078-.656.625-.219 1.36-.219.25 0 .5.031.25.032.437.094V42.51h1.593v9.204h-1.375zm-2.906-3.25q0 .546.078.937.078.375.219.625.156.25.36.375.218.11.5.11.39 0 .75-.329.374-.328.78-.89v-2.89q-.187-.08-.468-.126-.266-.047-.547-.047-.39 0-.703.156-.297.157-.516.454-.218.28-.343.703-.11.406-.11.922zm12.031-.11q0 .781-.219 1.438-.218.64-.64 1.11-.422.452-1.031.718-.594.25-1.375.25-.735 0-1.313-.219t-.984-.64q-.407-.422-.625-1.063-.203-.656-.203-1.5 0-.781.218-1.422.235-.656.64-1.11.423-.452 1.032-.702.61-.25 1.375-.25.735 0 1.313.218.578.22.984.657.406.421.61 1.062.218.625.218 1.453zm-1.656.047q0-1.031-.39-1.547-.376-.515-1.141-.515-.407 0-.703.156-.297.156-.485.453-.187.281-.281.656-.078.375-.078.797 0 1.047.406 1.578.422.516 1.14.516.407 0 .688-.156.297-.172.485-.454.187-.28.265-.656.094-.39.094-.828zm7.703 3.313v-4.5q0-.25-.016-.438-.015-.187-.062-.312-.032-.125-.11-.188-.078-.062-.203-.062-.203 0-.406.28-.188.266-.438.938v4.282h-1.359v-4.5q0-.25-.016-.438 0-.187-.046-.312-.032-.125-.11-.188-.078-.062-.219-.062-.171 0-.375.28-.203.266-.468.938v4.282h-1.36v-6.61h1.172l.031.953q.141-.28.282-.484.14-.219.297-.344.171-.14.359-.187.187-.063.422-.063.547 0 .828.297.297.281.344.781.156-.28.297-.484.156-.219.312-.344.172-.14.36-.187.203-.063.437-.063.719 0 1.062.5.344.5.344 1.485v4.75h-1.36zm6.796 0-.03-.86q-.22.219-.454.406-.219.188-.5.329-.266.125-.594.203-.312.078-.703.078-.5 0-.89-.156-.375-.157-.641-.422-.266-.266-.406-.64-.125-.376-.125-.83 0-.468.203-.858.203-.407.61-.688.405-.297 1.015-.453.61-.156 1.422-.156h.875v-.407q0-.25-.078-.453-.079-.203-.235-.343-.156-.157-.406-.235-.25-.078-.625-.078-.594 0-1.172.14-.562.126-1.094.376V45.4q.485-.203 1.094-.312.625-.125 1.297-.125.734 0 1.266.14.53.14.859.422.344.266.5.688.172.421.172.984v4.516h-1.36zm-.218-2.922h-.97q-.405 0-.687.078-.28.078-.468.219-.172.125-.25.312-.078.172-.078.375 0 .406.25.625.265.203.718.203.328 0 .688-.234.36-.25.797-.688v-.89zm7.296-5.5q0 .218-.078.406-.078.187-.219.328-.14.14-.328.219-.187.078-.406.078-.219 0-.422-.078-.187-.078-.328-.219-.14-.14-.219-.328-.078-.188-.078-.406 0-.22.078-.407.078-.187.219-.328.14-.14.328-.218.203-.094.422-.094.219 0 .406.094.188.078.328.218.141.14.22.328.077.188.077.407zm-1.75 3.047h-1.875v-1.235h3.5v5.375h1.907v1.235h-5.641v-1.235h2.11v-4.14zm9.125 5.375V47.4q0-1.078-.797-1.078-.406 0-.781.328-.36.313-.766.875v4.188h-1.593v-6.61h1.375l.03.969q.204-.25.423-.453.218-.219.468-.36.266-.14.547-.218.297-.078.657-.078.515 0 .89.171.375.157.625.47.266.296.39.718.126.422.126.953v4.438h-1.594zm3.765 0v-8.5h1.625v7.125h3.594v1.375h-5.219zm12.906-3.36q0 .781-.218 1.438-.22.64-.641 1.11-.422.452-1.031.718-.594.25-1.375.25-.735 0-1.313-.219t-.984-.64q-.406-.422-.625-1.063-.203-.656-.203-1.5 0-.781.219-1.422.234-.656.64-1.11.422-.452 1.031-.702.61-.25 1.375-.25.735 0 1.313.218.578.22.984.657.407.421.61 1.062.218.625.218 1.453zm-1.656.047q0-1.031-.39-1.547-.375-.515-1.141-.515-.406 0-.703.156-.297.156-.485.453-.187.281-.28.656-.079.375-.079.797 0 1.047.406 1.578.422.516 1.14.516.407 0 .688-.156.297-.172.485-.454.187-.28.265-.656.094-.39.094-.828zm8.984-.047q0 .781-.219 1.438-.218.64-.64 1.11-.422.452-1.031.718-.594.25-1.375.25-.735 0-1.313-.219t-.984-.64q-.407-.422-.625-1.063-.203-.656-.203-1.5 0-.781.218-1.422.235-.656.641-1.11.422-.452 1.031-.702.61-.25 1.375-.25.735 0 1.313.218.578.22.984.657.406.421.61 1.062.218.625.218 1.453zm-1.656.047q0-1.031-.39-1.547-.376-.515-1.141-.515-.407 0-.703.156-.297.156-.485.453-.187.281-.281.656-.078.375-.078.797 0 1.047.406 1.578.422.516 1.14.516.407 0 .688-.156.297-.172.485-.454.187-.28.265-.656.094-.39.094-.828zm7.125 3.313L651.01 48.4v3.313h-1.594V42.51h1.594v5.391l2.313-2.797h1.984l-2.687 3.016 2.906 3.594h-2.078zm4.812-6.61v4.313q0 .53.203.812.203.281.61.281.39 0 .75-.328.374-.343.78-.89v-4.188h1.594v6.61h-1.375l-.03-.97q-.22.25-.438.454-.203.203-.453.36-.25.14-.547.218-.297.094-.657.094-.5 0-.89-.172-.375-.172-.64-.469-.25-.312-.376-.734-.125-.422-.125-.953v-4.438h1.594zm11.703 3.188q0 .906-.266 1.578-.25.656-.719 1.094-.453.437-1.078.656-.625.203-1.359.203-.25 0-.5-.031-.25-.032-.438-.078v2.578h-1.593v-9.188h1.375l.031.969q.203-.25.422-.453.219-.219.469-.36.265-.14.546-.218.297-.078.657-.078.593 0 1.047.234.453.234.765.672.313.422.469 1.047.172.61.172 1.375zm-1.672.062q0-.547-.078-.922-.078-.39-.235-.64-.14-.25-.359-.36-.203-.11-.469-.11-.406 0-.78.33-.36.312-.767.874v2.89q.188.079.454.126.28.047.562.047.375 0 .688-.157.312-.156.53-.437.22-.297.329-.703.125-.422.125-.938zm3.343 3.36v-8.5h5.11v1.343h-3.485v2.125h3.329v1.313h-3.329v2.36h3.485v1.359h-5.11zm10.969 0V47.4q0-1.078-.797-1.078-.406 0-.781.328-.36.313-.766.875v4.188h-1.594v-6.61h1.375l.032.969q.203-.25.422-.453.218-.219.468-.36.266-.14.547-.218.297-.078.656-.078.516 0 .891.171.375.157.625.47.266.296.39.718.126.422.126.953v4.438h-1.594zm7.547 0-.032-.97q-.218.25-.437.454-.219.203-.485.36-.25.14-.546.218-.282.094-.625.094-.594 0-1.047-.235-.453-.234-.766-.671-.312-.438-.469-1.047-.156-.625-.156-1.39 0-.907.25-1.563.266-.672.719-1.11.453-.453 1.078-.656.625-.219 1.36-.219.25 0 .5.031.25.032.437.094V42.51h1.594v9.204h-1.375zm-2.907-3.25q0 .546.078.937.079.375.22.625.155.25.359.375.218.11.5.11.39 0 .75-.329.375-.328.78-.89v-2.89q-.187-.08-.468-.126-.266-.047-.547-.047-.39 0-.703.156-.297.157-.516.454-.218.28-.343.703-.11.406-.11.922zm7.594-6.454q1.594 1.329 2.375 2.875.781 1.532.781 3.313 0 .984-.234 1.86-.235.874-.657 1.656-.406.78-1 1.453-.578.687-1.28 1.28l-.923-.905q1.282-1.14 1.922-2.47.64-1.327.64-2.78 0-1.47-.64-2.828-.64-1.375-1.922-2.516l.938-.938z"/><path d="M572.883 47.28h-3.89l-11.2 117.794"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M572.883 47.28h-3.89L558.36 159.1"/><path fill="#000" stroke="#000" stroke-linecap="butt" d="m556.716 158.945 1.215 4.674 2.074-4.361z" fill-rule="evenodd"/><path fill="#cfe2f3" d="M596.95 172.299h53.86v41.637h-53.86z" fill-rule="evenodd"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M596.95 172.299h53.86v41.637h-53.86z"/><path fill="#000" d="M619.654 190.402h-2.516v7.515h-1.172v-7.515h-2.515v-.985h6.203v.985zm7.03 7.203q-1.015.422-2.14.422-1.797 0-2.765-1.078-.97-1.078-.97-3.188 0-1.031.266-1.844.266-.828.766-1.406t1.203-.89q.703-.313 1.578-.313.578 0 1.078.11.516.093.985.296v1.141q-.453-.25-.953-.375-.485-.14-1.078-.14-.594 0-1.079.234-.484.218-.828.64-.343.422-.53 1.047-.173.61-.173 1.39 0 1.657.672 2.5.672.829 1.969.829.547 0 1.047-.125.5-.125.953-.344v1.094zm7.47-5.594q0 .531-.204 1.047-.187.5-.594.906-.406.407-1.046.657-.641.25-1.532.25h-1.047v3.046h-1.156v-8.5h2.39q.626 0 1.204.141.594.14 1.031.453.438.313.688.813.265.484.265 1.187zm-1.204.063q0-.828-.547-1.266-.53-.437-1.484-.437h-1.188v3.5h1.079q1.03 0 1.578-.438.562-.453.562-1.36z"/><path d="M600.509 53.493h139.59v40.19H600.51z"/><path fill="#000" d="M614.446 81.122q-1.594-1.344-2.39-2.875-.782-1.531-.782-3.312 0-.985.235-1.86.234-.89.656-1.656.437-.781 1.015-1.453.594-.688 1.297-1.281l.907.906q-1.266 1.14-1.907 2.469-.64 1.312-.64 2.765 0 1.485.64 2.844.64 1.36 1.907 2.484l-.938.97zm8.64-2.984q-.468.187-.968.265-.5.094-1.047.094-.782 0-1.407-.203-.625-.219-1.062-.64-.438-.423-.672-1.048-.234-.625-.234-1.453 0-.78.25-1.422.25-.656.703-1.109.469-.453 1.11-.703.64-.25 1.421-.25.64 0 1.078.078.453.063.797.172v1.531q-.406-.203-.875-.312-.469-.11-.89-.11-.438 0-.797.157-.344.14-.594.421-.235.266-.36.641t-.125.828q0 .485.125.86.141.375.391.64.25.266.594.406.36.141.797.141.203 0 .422-.031.234-.031.468-.078.235-.063.453-.125.235-.078.422-.172v1.422zm7.938-3.11q0 .782-.22 1.438-.218.64-.64 1.11-.422.452-1.031.718-.594.25-1.375.25-.734 0-1.313-.219-.578-.219-.984-.64-.406-.422-.625-1.063-.203-.656-.203-1.5 0-.781.219-1.422.234-.656.64-1.11.422-.452 1.032-.702.609-.25 1.375-.25.734 0 1.312.218.578.22.984.657.407.422.61 1.062.219.625.219 1.453zm-1.657.047q0-1.031-.39-1.547-.375-.515-1.14-.515-.407 0-.704.156t-.484.453q-.188.281-.282.656-.078.375-.078.797 0 1.047.406 1.578.422.516 1.141.516.406 0 .688-.156.296-.172.484-.453.187-.282.266-.657.093-.39.093-.828zm6.969 3.313v-4.313q0-1.078-.797-1.078-.406 0-.781.328-.36.313-.766.875v4.188h-1.594v-6.61h1.375l.032.97q.203-.25.421-.454.22-.219.47-.36.265-.14.546-.218.297-.078.656-.078.516 0 .891.172.375.156.625.468.266.297.39.72.126.421.126.952v4.438h-1.594zm7.328 0v-4.313q0-1.078-.797-1.078-.406 0-.781.328-.36.313-.766.875v4.188h-1.594v-6.61h1.375l.032.97q.203-.25.421-.454.22-.219.47-.36.265-.14.546-.218.297-.078.656-.078.516 0 .89.172.376.156.626.468.266.297.39.72.126.421.126.952v4.438h-1.594zm9.156-3.813q0 .156-.016.422t-.031.484h-4.344q0 .438.125.782.14.328.375.547.25.218.594.343.344.11.75.11.484 0 1.031-.063.563-.078 1.156-.25v1.266q-.265.062-.562.125-.297.062-.61.11-.312.046-.64.062-.313.031-.61.031-.75 0-1.359-.219-.594-.219-1.016-.64-.406-.422-.64-1.032-.219-.625-.219-1.437 0-.797.219-1.453.234-.672.625-1.14.406-.47.984-.72.578-.265 1.297-.265.703 0 1.234.218.547.22.907.61t.547.937q.203.532.203 1.172zm-1.625-.234q.015-.39-.094-.672-.11-.297-.297-.484-.172-.188-.406-.282-.235-.093-.516-.093-.594 0-.984.406-.375.406-.453 1.125h2.75zm8.53 3.797q-.468.187-.968.265-.5.094-1.047.094-.781 0-1.406-.203-.625-.219-1.063-.64-.437-.423-.672-1.048-.234-.625-.234-1.453 0-.78.25-1.422.25-.656.703-1.109.469-.453 1.11-.703.64-.25 1.421-.25.641 0 1.079.078.453.063.796.172v1.531q-.406-.203-.875-.312-.468-.11-.89-.11-.438 0-.797.157-.344.14-.594.421-.234.266-.36.641-.124.375-.124.828 0 .485.125.86.14.375.39.64.25.266.594.406.36.141.797.141.203 0 .422-.031.234-.031.469-.078.234-.063.453-.125.234-.078.422-.172v1.422zm7.438.187q-.438.094-.875.156-.422.063-.813.063-.656 0-1.125-.14-.468-.141-.78-.423-.313-.28-.47-.703-.14-.437-.14-1.03v-3.235h-1.766v-1.235h1.766v-1.687l1.625-.438v2.125h2.578v1.235h-2.578v3.11q0 .562.265.858.266.282.875.282.391 0 .75-.063.375-.062.688-.14v1.265zm7.61-2.515q0 .703-.267 1.218-.25.516-.718.86-.453.328-1.094.5-.64.156-1.39.156-.673 0-1.298-.078t-1.234-.266v-1.578q.297.094.625.188.328.093.656.171.328.063.641.11.328.031.64.031.454 0 .766-.078.328-.078.531-.219.204-.14.282-.328.093-.187.093-.406 0-.313-.187-.531-.172-.22-.469-.375-.281-.157-.656-.282-.375-.14-.766-.28-.375-.157-.75-.345-.375-.187-.672-.468-.296-.282-.484-.672-.172-.39-.172-.938 0-.5.188-.937.187-.453.578-.782.39-.343 1-.546.61-.204 1.469-.204.25 0 .53.032.282.015.548.062.265.031.515.078.266.047.47.11v1.453q-.204-.078-.454-.14-.25-.063-.516-.11-.265-.047-.53-.078-.267-.032-.5-.032-.438 0-.735.079-.282.062-.469.187-.188.125-.281.297-.078.172-.078.39 0 .266.171.454.188.187.485.343.297.157.672.297.375.125.765.282.391.156.766.359.375.187.672.469.297.265.469.656.187.375.187.89zm7.046 2.515q-.438.094-.875.156-.422.063-.813.063-.656 0-1.125-.14-.469-.141-.781-.423-.313-.28-.469-.703-.14-.437-.14-1.03v-3.235h-1.766v-1.235h1.766v-1.687l1.625-.438v2.125h2.578v1.235h-2.578v3.11q0 .562.265.858.266.282.875.282.39 0 .75-.063.375-.062.688-.14v1.265zm6.015.063-.031-.86q-.219.22-.453.407-.22.187-.5.328-.266.125-.594.203-.313.078-.703.078-.5 0-.89-.156-.376-.157-.641-.422-.266-.266-.407-.64-.125-.376-.125-.829 0-.469.203-.86.204-.406.61-.687.406-.297 1.015-.453.61-.156 1.422-.156h.875v-.406q0-.25-.078-.454-.078-.203-.234-.343-.156-.157-.406-.235-.25-.078-.625-.078-.594 0-1.172.14-.563.126-1.094.376v-1.266q.484-.203 1.094-.312.625-.125 1.297-.125.734 0 1.265.14.531.141.86.422.343.266.5.688.171.422.171.984v4.516h-1.359zm-.219-2.922h-.968q-.407 0-.688.078-.281.078-.469.219-.172.125-.25.312-.078.172-.078.375 0 .406.25.625.266.203.719.203.328 0 .687-.234.36-.25.797-.688v-.89zm7.656-1.125q.016-.36-.031-.625-.047-.266-.156-.422-.11-.172-.266-.25-.156-.078-.36-.078-.343 0-.718.297-.375.281-.828.937v4.188h-1.625v-6.61h1.437l.063.953q.156-.25.36-.453.202-.203.452-.343.25-.141.563-.22.312-.077.672-.077.5 0 .89.172.391.171.641.515.266.328.39.844.141.5.11 1.172h-1.594zm8.531 3.984q-.437.094-.875.156-.422.063-.812.063-.656 0-1.125-.14-.469-.141-.781-.423-.313-.28-.47-.703-.14-.437-.14-1.03v-3.235h-1.765v-1.235h1.765v-1.687l1.625-.438v2.125h2.578v1.235h-2.578v3.11q0 .562.266.858.265.282.875.282.39 0 .75-.063.375-.062.687-.14v1.265zm3.39-9.64q1.594 1.328 2.376 2.875.78 1.53.78 3.312 0 .984-.234 1.86-.234.874-.656 1.656-.406.781-1 1.453-.578.687-1.281 1.281l-.922-.906q1.281-1.14 1.922-2.469.64-1.328.64-2.781 0-1.469-.64-2.828-.64-1.375-1.922-2.516l.938-.937z"/><path d="M607.227 74h-2.733l-7.87 91.963"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M607.227 74h-2.733l-7.358 85.985"/><path fill="#000" stroke="#000" stroke-linecap="butt" d="m595.49 159.844 1.26 4.663 2.032-4.381z" fill-rule="evenodd"/><path d="M721.085 102.82h250.079v31.937H721.085z"/><path fill="#000" d="M735.023 126.323q-1.594-1.343-2.391-2.875-.781-1.531-.781-3.312 0-.985.234-1.86.234-.89.656-1.656.438-.781 1.016-1.453.594-.687 1.297-1.281l.906.906q-1.266 1.14-1.906 2.469-.64 1.312-.64 2.765 0 1.485.64 2.844.64 1.36 1.906 2.485l-.937.968zm8.64-2.984q-.469.187-.969.266-.5.093-1.047.093-.78 0-1.406-.203-.625-.219-1.062-.64-.438-.422-.672-1.047-.235-.625-.235-1.453 0-.782.25-1.422.25-.657.703-1.11.47-.453 1.11-.703.64-.25 1.422-.25.64 0 1.078.078.453.063.797.172v1.531q-.407-.203-.875-.312-.469-.11-.89-.11-.438 0-.798.157-.344.14-.594.422-.234.265-.359.64-.125.375-.125.828 0 .485.125.86.14.375.39.64.25.266.594.407.36.14.797.14.203 0 .422-.031.235-.031.469-.078.234-.063.453-.125.234-.078.422-.172v1.422zm7.937-3.11q0 .782-.219 1.438-.218.64-.64 1.11-.422.453-1.031.718-.594.25-1.375.25-.735 0-1.313-.219-.578-.218-.984-.64-.407-.422-.625-1.063-.203-.656-.203-1.5 0-.781.218-1.422.235-.656.641-1.109.422-.453 1.031-.703.61-.25 1.375-.25.735 0 1.313.219.578.218.984.656.406.422.61 1.062.218.625.218 1.454zm-1.656.047q0-1.03-.39-1.546-.376-.516-1.141-.516-.407 0-.703.156-.297.156-.485.453-.187.282-.281.657-.078.375-.078.796 0 1.047.406 1.579.422.515 1.14.515.407 0 .688-.156.297-.172.485-.453.187-.281.265-.656.094-.391.094-.829zm6.968 3.313v-4.313q0-1.078-.796-1.078-.407 0-.782.328-.359.313-.765.875v4.188h-1.594v-6.61h1.375l.031.97q.203-.25.422-.454.219-.219.469-.36.265-.14.547-.218.297-.078.656-.078.516 0 .89.172.376.156.626.469.265.296.39.718t.125.953v4.438h-1.594zm7.328 0v-4.313q0-1.078-.797-1.078-.406 0-.78.328-.36.313-.766.875v4.188h-1.594v-6.61h1.375l.031.97q.203-.25.422-.454.219-.219.469-.36.265-.14.547-.218.296-.078.656-.078.515 0 .89.172.375.156.625.469.266.296.391.718t.125.953v4.438h-1.594zm9.156-3.813q0 .157-.015.422-.016.266-.032.485h-4.343q0 .437.125.78.14.329.375.548.25.219.593.344.344.109.75.109.485 0 1.032-.063.562-.078 1.156-.25v1.266q-.266.063-.563.125-.296.063-.609.11-.312.046-.64.062-.313.031-.61.031-.75 0-1.36-.219-.593-.218-1.015-.64-.406-.422-.64-1.031-.22-.625-.22-1.438 0-.797.22-1.453.234-.672.624-1.14.407-.47.985-.72.578-.265 1.297-.265.703 0 1.234.219.547.218.906.609.36.39.547.938.203.53.203 1.171zm-1.625-.234q.016-.39-.093-.672-.11-.297-.297-.484-.172-.188-.407-.281-.234-.094-.515-.094-.594 0-.985.406-.375.406-.453 1.125h2.75zm8.531 3.797q-.468.187-.968.266-.5.093-1.047.093-.782 0-1.407-.203-.625-.219-1.062-.64-.438-.422-.672-1.047-.234-.625-.234-1.453 0-.782.25-1.422.25-.657.703-1.11.469-.453 1.11-.703.64-.25 1.421-.25.64 0 1.078.078.453.063.797.172v1.531q-.406-.203-.875-.312-.469-.11-.89-.11-.438 0-.797.157-.344.14-.594.422-.235.265-.36.64t-.125.828q0 .485.125.86.141.375.391.64.25.266.594.407.36.14.797.14.203 0 .422-.031.234-.031.468-.078.235-.063.453-.125.235-.078.422-.172v1.422zm7.438.187q-.438.094-.875.157-.422.062-.813.062-.656 0-1.125-.14-.469-.141-.781-.422-.313-.282-.469-.703-.14-.438-.14-1.032v-3.234h-1.766v-1.234h1.765v-1.688l1.625-.437v2.125h2.579v1.234h-2.579v3.11q0 .562.266.859.266.28.875.28.39 0 .75-.062.375-.062.688-.14v1.265zm2.171.063v-8.5h5.11v1.344h-3.485v2.125h3.328v1.312h-3.328v2.36h3.485v1.359h-5.11zm10.969 0v-4.313q0-1.078-.797-1.078-.406 0-.781.328-.36.313-.766.875v4.188h-1.594v-6.61h1.375l.031.97q.204-.25.422-.454.219-.219.469-.36.266-.14.547-.218.297-.078.656-.078.516 0 .89.172.376.156.626.469.265.296.39.718t.125.953v4.438h-1.593zm7.546 0-.031-.969q-.219.25-.437.453-.22.203-.485.36-.25.14-.547.218-.281.094-.625.094-.593 0-1.047-.234-.453-.235-.765-.672-.313-.438-.469-1.047-.156-.625-.156-1.39 0-.907.25-1.563.265-.672.719-1.11.453-.453 1.078-.656.625-.218 1.359-.218.25 0 .5.03.25.032.438.095v-2.594h1.593v9.203h-1.375zm-2.906-3.25q0 .547.078.937.078.375.219.625.156.25.36.375.218.11.5.11.39 0 .75-.328.374-.328.78-.891v-2.89q-.187-.079-.468-.126-.266-.046-.547-.046-.39 0-.703.156-.297.156-.516.453-.219.281-.344.703-.109.406-.109.922zm7.594-6.453q1.593 1.328 2.375 2.875.78 1.531.78 3.312 0 .985-.234 1.86-.234.875-.656 1.656-.406.781-1 1.453-.578.688-1.281 1.281l-.922-.906q1.281-1.14 1.922-2.469.64-1.328.64-2.781 0-1.469-.64-2.828-.64-1.375-1.922-2.516l.938-.937z"/><path d="m727.798 124.041-4.475.023-2.238 41.612"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="m727.798 124.041-4.475.023-1.916 35.621"/><path fill="#000" stroke="#000" stroke-linecap="butt" d="m719.758 159.596 1.406 4.62 1.893-4.442z" fill-rule="evenodd"/><path fill="#cfe2f3" d="M757.138 172.32H864.32v92.062H757.14z" fill-rule="evenodd"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M757.138 172.32H864.32v92.062H757.14z"/><path fill="#000" d="M791.925 223.15h-1.312l-1.266-2.718q-.14-.312-.297-.515-.156-.204-.328-.329-.172-.125-.375-.171-.203-.047-.453-.047h-.547v3.78h-1.156v-8.5h2.281q.734 0 1.266.157.53.156.875.453.343.297.5.719.172.406.172.906 0 .39-.125.75-.11.36-.344.657-.235.28-.578.5-.344.203-.782.312.36.11.61.422t.515.828l1.344 2.797zm-1.86-6.171q0-.687-.437-1.016-.422-.343-1.187-.343h-1.094v2.812h.938q.406 0 .734-.094.328-.093.562-.28.235-.188.36-.454t.125-.625zm8.907 2.563q0 .234-.016.406 0 .156-.015.297h-4.579q0 1 .547 1.547.563.53 1.625.53.282 0 .563-.015.297-.031.562-.062.266-.047.5-.094.25-.047.453-.11v.938q-.453.125-1.046.203-.579.078-1.204.078-.828 0-1.437-.218-.61-.235-1-.657-.39-.437-.578-1.062-.172-.625-.172-1.422 0-.688.187-1.297.204-.625.579-1.094.39-.468.937-.734.563-.281 1.266-.281.672 0 1.203.218.531.22.89.61.36.39.547.953.188.562.188 1.266zm-1.188-.172q.032-.422-.078-.782-.11-.375-.328-.625-.219-.265-.547-.406-.312-.156-.75-.156-.36 0-.672.156-.312.14-.53.406-.22.25-.36.625-.125.36-.157.782h3.422zm2.656.656q0-.703.188-1.328.187-.64.578-1.11.39-.484.984-.765.61-.281 1.453-.281.329 0 .657.046.328.047.687.172l1-.265v9.328h-1.14v-2.469l.062-1.406q-.922 1.312-2.203 1.312-.563 0-.984-.218-.422-.235-.72-.657-.28-.437-.421-1.031-.14-.61-.14-1.328zm1.172-.078q0 .547.078.984.078.438.235.75.172.297.422.453.25.157.593.157.422 0 .907-.375.484-.391 1-1.141v-3.031q-.25-.125-.579-.203-.328-.079-.703-.079-.953 0-1.453.641-.5.625-.5 1.844zm11.75 3.203h-1.016l-.047-1.047q-.28.328-.546.563-.266.218-.532.359-.265.125-.53.172-.25.062-.548.062-1.015 0-1.531-.578-.5-.594-.5-1.797v-4.265h1.125v4.172q0 1.5 1.14 1.5.204 0 .391-.047.203-.063.422-.22.219-.155.469-.405.25-.266.562-.672v-4.328h1.141v6.53zm7.593-3.61q0 .235-.015.407 0 .156-.016.297h-4.578q0 1 .547 1.547.562.53 1.625.53.281 0 .562-.015.297-.031.563-.062.266-.047.5-.094.25-.047.453-.11v.938q-.453.125-1.047.203-.578.078-1.203.078-.828 0-1.437-.218-.61-.235-1-.657-.391-.437-.579-1.062-.171-.625-.171-1.422 0-.688.187-1.297.203-.625.578-1.094.39-.468.938-.734.562-.281 1.265-.281.672 0 1.203.218.532.22.891.61.36.39.547.953.187.562.187 1.266zm-1.187-.171q.031-.422-.078-.782-.11-.375-.328-.625-.22-.265-.547-.406-.313-.156-.75-.156-.36 0-.672.156-.313.14-.531.406-.22.25-.36.625-.125.36-.156.782h3.422zm8.172 2q0 .343-.125.625-.11.265-.313.484-.203.203-.469.36-.265.14-.578.25-.297.093-.625.124-.312.047-.61.047-.671 0-1.234-.062-.546-.047-1.078-.172v-1.047q.563.156 1.125.25.578.078 1.14.078.813 0 1.204-.219.39-.218.39-.625 0-.187-.062-.312-.062-.14-.234-.266-.156-.14-.5-.265-.344-.141-.938-.313-.437-.14-.812-.297-.375-.172-.656-.39-.266-.235-.422-.532-.157-.312-.157-.734 0-.266.125-.594.125-.328.438-.61.312-.28.828-.468.516-.187 1.297-.187.39 0 .86.047.468.046.968.14v1.016q-.531-.125-1.016-.188-.468-.062-.828-.062-.422 0-.718.062-.282.063-.47.188-.171.11-.25.265-.077.141-.077.313 0 .187.062.328.078.14.266.281.187.125.515.266.329.125.86.281.594.172.984.36.39.187.64.421.25.22.36.516.11.281.11.64zm7.421 1.687q-.39.094-.797.14-.406.048-.843.048-1.22 0-1.829-.547-.609-.563-.609-1.719v-3.406h-1.828v-.953h1.828v-1.797l1.14-.297v2.094h2.938v.953h-2.937v3.312q0 .703.375 1.063.375.344 1.093.344.313 0 .688-.047.375-.063.781-.157v.97z"/><path fill="#cfe2f3" d="M873.251 172.315h136.473v92.063H873.25z" fill-rule="evenodd"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M873.251 172.315h136.473v92.063H873.25z"/><path fill="#000" d="M919.02 223.146h-1.313l-1.265-2.719q-.14-.312-.297-.515-.156-.203-.328-.328-.172-.125-.375-.172-.203-.047-.453-.047h-.547v3.781h-1.157v-8.5h2.282q.734 0 1.265.156.532.157.875.454.344.296.5.718.172.407.172.907 0 .39-.125.75-.11.359-.344.656-.234.281-.578.5-.343.203-.78.312.358.11.608.422.25.313.516.828l1.344 2.797zm-1.86-6.172q0-.687-.437-1.015-.422-.344-1.188-.344h-1.093v2.812h.937q.406 0 .735-.093.328-.094.562-.282.234-.187.36-.453.124-.265.124-.625zm8.906 2.563q0 .234-.015.406 0 .156-.016.297h-4.578q0 1 .547 1.547.562.531 1.625.531.281 0 .562-.016.297-.03.563-.062.266-.047.5-.094.25-.047.453-.11v.938q-.453.125-1.047.203-.578.079-1.203.079-.828 0-1.437-.22-.61-.234-1-.655-.391-.438-.579-1.063-.171-.625-.171-1.422 0-.687.187-1.297.203-.625.578-1.093.39-.47.938-.735.562-.281 1.265-.281.672 0 1.203.219.532.218.891.609.36.39.547.953.187.563.187 1.266zm-1.187-.172q.031-.422-.078-.781-.11-.375-.328-.625-.219-.266-.547-.407-.313-.156-.75-.156-.36 0-.672.156-.313.141-.531.407-.219.25-.36.625-.125.359-.156.78h3.422zm8.172 2q0 .344-.125.625-.11.266-.313.484-.203.203-.469.36-.265.14-.578.25-.297.093-.625.125-.312.047-.61.047-.671 0-1.234-.063-.546-.047-1.078-.172v-1.047q.563.157 1.125.25.578.078 1.14.078.813 0 1.204-.218.39-.22.39-.625 0-.188-.062-.313-.062-.14-.234-.265-.156-.141-.5-.266-.344-.14-.938-.313-.437-.14-.812-.296-.375-.172-.656-.391-.266-.234-.422-.531-.157-.313-.157-.735 0-.265.125-.593.125-.329.438-.61.312-.281.828-.469.516-.187 1.297-.187.39 0 .86.047.468.047.968.14v1.016q-.531-.125-1.016-.187-.468-.063-.828-.063-.422 0-.718.063-.282.062-.47.187-.171.11-.25.266-.077.14-.077.312 0 .188.062.328.078.14.266.282.187.125.515.265.329.125.86.281.594.172.984.36.39.187.64.422.25.218.36.515.11.282.11.64zm7.734-1.61q0 .876-.25 1.532-.235.656-.672 1.094-.422.421-1.016.64-.578.203-1.265.203-.313 0-.625-.031-.297-.031-.625-.11v2.735h-1.125v-9.203h1l.078 1.094q.484-.672 1.03-.938.563-.281 1.204-.281.563 0 .984.234.422.235.704.672.296.422.437 1.031.14.594.14 1.329zm-1.157.063q0-.516-.078-.937-.078-.438-.25-.735-.156-.312-.406-.484t-.61-.172q-.202 0-.437.062-.219.063-.453.235-.234.156-.5.422-.266.265-.562.656v3.156q.312.14.656.219.344.062.672.062.922 0 1.437-.609.531-.625.531-1.875zm8.594.016q0 .75-.219 1.39-.219.64-.625 1.094-.39.438-.984.688-.578.25-1.313.25-.703 0-1.265-.204-.547-.218-.938-.64-.375-.438-.594-1.063-.203-.625-.203-1.437 0-.75.22-1.375.218-.64.608-1.094.407-.453.985-.703.594-.25 1.328-.25.703 0 1.25.219.562.218.937.64.391.422.594 1.047.219.625.219 1.438zm-1.156.047q0-.61-.14-1.063-.142-.453-.392-.75-.234-.297-.593-.453-.36-.156-.797-.156-.5 0-.86.203-.359.187-.593.531-.235.328-.344.766-.11.437-.11.922 0 .609.141 1.062.14.453.375.766.25.297.594.453.36.14.797.14.515 0 .875-.187.36-.203.594-.531.234-.344.343-.782.11-.437.11-.921zm2.796-3.266h1l.047 1.047q.281-.328.547-.547.281-.234.531-.375.25-.14.516-.188.281-.062.562-.062 1.016 0 1.532.61.515.593.515 1.78v4.266h-1.14v-4.172q0-.765-.282-1.125-.28-.375-.859-.375-.203 0-.406.063-.188.062-.406.219-.22.14-.47.406-.25.265-.562.656v4.328h-1.125v-6.531zm12.5 4.75q0 .344-.125.625-.11.266-.312.484-.204.203-.47.36-.265.14-.577.25-.297.093-.625.125-.313.047-.61.047-.672 0-1.234-.063-.547-.047-1.078-.172v-1.047q.562.157 1.125.25.578.078 1.14.078.813 0 1.204-.218.39-.22.39-.625 0-.188-.062-.313-.063-.14-.235-.265-.156-.141-.5-.266-.343-.14-.937-.313-.438-.14-.813-.296-.375-.172-.656-.391-.266-.234-.422-.531-.156-.313-.156-.735 0-.265.125-.593.125-.329.437-.61.313-.281.829-.469.515-.187 1.296-.187.391 0 .86.047t.969.14v1.016q-.532-.125-1.016-.187-.469-.063-.828-.063-.422 0-.719.063-.281.062-.469.187-.172.11-.25.266-.078.14-.078.312 0 .188.063.328.078.14.265.282.188.125.516.265.328.125.86.281.593.172.984.36.39.187.64.422.25.218.36.515.109.282.109.64zm7.672-1.828q0 .234-.016.406 0 .156-.016.297h-4.578q0 1 .547 1.547.563.531 1.625.531.281 0 .563-.016.297-.03.562-.062.266-.047.5-.094.25-.047.453-.11v.938q-.453.125-1.047.203-.578.079-1.203.079-.828 0-1.437-.22-.61-.234-1-.655-.39-.438-.578-1.063-.172-.625-.172-1.422 0-.687.187-1.297.203-.625.578-1.093.391-.47.938-.735.562-.281 1.266-.281.671 0 1.203.219.53.218.89.609.36.39.547.953.188.563.188 1.266zm-1.188-.172q.031-.422-.078-.781-.11-.375-.328-.625-.219-.266-.547-.407-.312-.156-.75-.156-.36 0-.672.156-.312.141-.531.407-.219.25-.36.625-.124.359-.156.78h3.422z"/><path d="M1013.62 305.107h126.394v31.937H1013.62z"/><path fill="#000" d="M1027.776 321.829q.016-.36-.031-.625-.047-.266-.156-.422-.11-.172-.266-.25-.156-.078-.36-.078-.343 0-.718.297-.375.28-.828.937v4.188h-1.625v-6.61h1.437l.063.953q.156-.25.36-.453.202-.203.452-.344.25-.14.563-.218.312-.078.672-.078.5 0 .89.171.39.172.64.516.267.328.392.844.14.5.109 1.172h-1.594zm8.844.234q0 .156-.016.422t-.031.484h-4.344q0 .438.125.782.14.328.375.546.25.22.594.344.344.11.75.11.484 0 1.031-.063.563-.078 1.156-.25v1.266q-.265.062-.562.125-.297.062-.61.11-.312.046-.64.062-.313.03-.61.03-.75 0-1.359-.218-.594-.219-1.016-.64-.406-.422-.64-1.032-.219-.625-.219-1.437 0-.797.219-1.453.234-.672.625-1.141.406-.469.984-.719.578-.265 1.297-.265.703 0 1.234.218.547.22.907.61t.547.937q.203.531.203 1.172zm-1.625-.234q.015-.39-.094-.672-.11-.297-.297-.485-.172-.187-.406-.28-.235-.095-.516-.095-.594 0-.984.407-.375.406-.453 1.125h2.75zm8.64 2.093q0 .579-.25.985-.25.39-.672.64-.406.25-.937.36-.516.125-1.063.125-.734 0-1.328-.078-.578-.063-1.094-.188v-1.437q.61.25 1.22.375.608.11 1.155.11.625 0 .922-.204.313-.203.313-.516 0-.156-.063-.28-.062-.126-.25-.235-.172-.11-.5-.235-.328-.125-.844-.265-.5-.14-.875-.313-.359-.172-.609-.406-.234-.234-.36-.531-.109-.313-.109-.735 0-.406.172-.765.188-.36.547-.625.375-.266.906-.422.547-.156 1.266-.156.625 0 1.11.062.484.063.843.14v1.298q-.562-.188-1.062-.25-.5-.079-.985-.079-.484 0-.781.172-.297.172-.297.485 0 .156.047.281.062.11.234.219.188.11.485.234.312.11.828.25.562.172.953.36.39.187.625.421.25.235.344.532.11.296.11.671zm7.828-1.468q0 .906-.266 1.578-.25.656-.718 1.094-.454.437-1.079.656-.625.203-1.359.203-.25 0-.5-.031-.25-.032-.437-.078v2.578h-1.594v-9.188h1.375l.031.969q.203-.25.422-.453.219-.219.469-.36.265-.14.547-.218.296-.078.656-.078.594 0 1.047.234.453.234.765.672.313.422.47 1.047.171.61.171 1.375zm-1.672.062q0-.547-.078-.922-.078-.39-.234-.64-.141-.25-.36-.36-.203-.109-.469-.109-.406 0-.78.328-.36.313-.766.875v2.89q.187.079.453.126.281.047.562.047.375 0 .688-.157.312-.156.531-.437.219-.297.328-.703.125-.422.125-.938zm9 0q0 .781-.219 1.438-.219.64-.64 1.11-.422.452-1.032.718-.594.25-1.375.25-.734 0-1.312-.219-.578-.219-.985-.64-.406-.422-.625-1.063-.203-.656-.203-1.5 0-.781.219-1.422.234-.656.64-1.11.422-.452 1.032-.702.61-.25 1.375-.25.734 0 1.312.218.578.22.985.657.406.421.61 1.062.218.625.218 1.453zm-1.656.047q0-1.031-.391-1.547-.375-.515-1.14-.515-.407 0-.704.156t-.484.453q-.188.281-.281.656-.079.375-.079.797 0 1.047.407 1.578.422.516 1.14.516.407 0 .688-.156.297-.172.484-.454.188-.28.266-.656.094-.39.094-.828zm6.968 3.313v-4.313q0-1.078-.797-1.078-.406 0-.781.328-.36.313-.766.875v4.188h-1.593v-6.61h1.375l.03.969q.204-.25.423-.453.218-.219.468-.36.266-.14.547-.218.297-.078.657-.078.515 0 .89.171.375.157.625.47.266.296.39.718.126.422.126.953v4.438h-1.594zm8.843-1.954q0 .579-.25.985-.25.39-.671.64-.407.25-.938.36-.516.125-1.062.125-.735 0-1.329-.078-.578-.063-1.093-.188v-1.437q.61.25 1.218.375.61.11 1.157.11.625 0 .922-.204.312-.203.312-.516 0-.156-.062-.28-.063-.126-.25-.235-.172-.11-.5-.235-.329-.125-.844-.265-.5-.14-.875-.313-.36-.172-.61-.406-.234-.234-.359-.531-.11-.313-.11-.735 0-.406.173-.765.187-.36.546-.625.375-.266.907-.422.547-.156 1.265-.156.625 0 1.11.062.484.063.843.14v1.298q-.562-.188-1.062-.25-.5-.079-.984-.079-.485 0-.782.172-.297.172-.297.485 0 .156.047.281.063.11.235.219.187.11.484.234.313.11.828.25.563.172.953.36.391.187.625.421.25.235.344.532.11.296.11.671zm7.64-1.859q0 .156-.015.422t-.031.484h-4.344q0 .438.125.782.14.328.375.546.25.22.594.344.344.11.75.11.484 0 1.031-.063.563-.078 1.156-.25v1.266q-.265.062-.562.125-.297.062-.61.11-.312.046-.64.062-.313.03-.61.03-.75 0-1.359-.218-.594-.219-1.015-.64-.407-.422-.641-1.032-.219-.625-.219-1.437 0-.797.219-1.453.234-.672.625-1.141.406-.469.984-.719.578-.265 1.297-.265.703 0 1.235.218.546.22.906.61t.547.937q.203.531.203 1.172zm-1.624-.234q.015-.39-.094-.672-.11-.297-.297-.485-.172-.187-.406-.28-.234-.095-.516-.095-.593 0-.984.407-.375.406-.453 1.125h2.75zm3.484 4.047v-8.5h5.11v1.343h-3.485v2.125h3.328v1.313h-3.328v2.36h3.484v1.359h-5.109zm10.969 0v-4.313q0-1.078-.797-1.078-.407 0-.782.328-.359.313-.765.875v4.188h-1.594v-6.61h1.375l.031.969q.203-.25.422-.453.219-.219.469-.36.266-.14.547-.218.297-.078.656-.078.516 0 .89.171.376.157.626.47.265.296.39.718t.125.953v4.438h-1.593zm7.546 0-.031-.97q-.219.25-.438.454-.218.203-.484.36-.25.14-.547.218-.281.094-.625.094-.594 0-1.047-.235-.453-.234-.765-.671-.313-.438-.47-1.047-.155-.625-.155-1.39 0-.907.25-1.563.265-.672.718-1.11.454-.453 1.079-.656.625-.219 1.359-.219.25 0 .5.031.25.032.437.094v-2.594h1.594v9.204h-1.375zm-2.906-3.25q0 .546.078.937.078.375.219.625.156.25.36.375.218.11.5.11.39 0 .75-.329.374-.328.78-.89v-2.89q-.187-.079-.468-.126-.266-.047-.547-.047-.39 0-.703.156-.297.157-.516.454-.219.28-.344.703-.11.406-.11.922z"/><path d="M1020.34 321.392h-2.732l-7.869-48.51"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M1020.34 321.392h-2.731l-6.91-42.588"/><path fill="#000" stroke="#000" stroke-linecap="butt" d="m1012.33 278.54-2.357-4.216-.904 4.744z" fill-rule="evenodd"/><path d="M871.768 289.483h151.622v18.236H871.768z"/><path fill="#000" d="M885.706 306.136q-1.594-1.344-2.39-2.875-.782-1.532-.782-3.313 0-.984.234-1.86.235-.89.656-1.656.438-.78 1.016-1.453.594-.687 1.297-1.28l.906.905q-1.265 1.141-1.906 2.47-.64 1.312-.64 2.765 0 1.484.64 2.843.64 1.36 1.906 2.485l-.937.969zm7.546-6.782q.016-.359-.03-.625-.048-.265-.157-.422-.11-.171-.266-.25-.156-.078-.36-.078-.343 0-.718.297-.375.281-.828.938v4.187h-1.625v-6.61h1.438l.062.954q.156-.25.36-.453.203-.203.453-.344.25-.14.562-.219.313-.078.672-.078.5 0 .89.172.391.172.641.516.266.328.39.843.141.5.11 1.172h-1.594zm8.844.235q0 .156-.016.422-.015.265-.031.484h-4.344q0 .437.125.781.14.328.375.547.25.219.594.344.344.11.75.11.484 0 1.031-.063.563-.078 1.157-.25v1.265q-.266.063-.563.125-.297.063-.61.11-.312.047-.64.062-.312.031-.61.031-.75 0-1.359-.218-.593-.219-1.015-.64-.407-.423-.641-1.032-.219-.625-.219-1.438 0-.797.219-1.453.234-.672.625-1.14.406-.47.984-.72.579-.265 1.297-.265.703 0 1.235.219.547.219.906.61.36.39.547.937.203.531.203 1.172zm-1.625-.235q.016-.39-.094-.672-.11-.296-.297-.484-.172-.187-.406-.281-.234-.094-.516-.094-.593 0-.984.406-.375.407-.453 1.125h2.75zm8.64 2.094q0 .578-.25.984-.25.391-.672.641-.406.25-.937.36-.516.124-1.063.124-.734 0-1.328-.078-.578-.062-1.094-.187v-1.438q.61.25 1.22.375.609.11 1.155.11.625 0 .922-.203.313-.204.313-.516 0-.156-.063-.281-.062-.125-.25-.235-.172-.109-.5-.234t-.843-.266q-.5-.14-.875-.312-.36-.172-.61-.406-.234-.235-.36-.532-.109-.312-.109-.734 0-.406.172-.766.188-.359.547-.625.375-.265.906-.422.547-.156 1.266-.156.625 0 1.11.063.484.062.843.14v1.297q-.562-.187-1.062-.25-.5-.078-.985-.078-.484 0-.78.172-.298.172-.298.484 0 .157.047.282.063.109.234.218.188.11.485.235.312.11.828.25.562.172.953.36.39.187.625.421.25.234.344.531.11.297.11.672zm7.828-1.469q0 .907-.266 1.578-.25.657-.718 1.094-.453.438-1.078.656-.625.204-1.36.204-.25 0-.5-.032-.25-.03-.437-.078v2.578h-1.594v-9.187h1.375l.031.969q.203-.25.422-.454.219-.218.469-.359.265-.14.547-.219.297-.078.656-.078.594 0 1.047.235.453.234.765.671.313.422.47 1.047.171.61.171 1.375zm-1.672.063q0-.547-.078-.922-.078-.39-.234-.64-.14-.25-.36-.36-.203-.11-.468-.11-.407 0-.782.329-.359.312-.765.875v2.89q.187.078.453.125.281.047.562.047.375 0 .688-.156.312-.156.531-.438.219-.296.328-.703.125-.422.125-.937zm9 0q0 .781-.219 1.437-.219.641-.64 1.11-.422.453-1.032.718-.593.25-1.375.25-.734 0-1.312-.218-.578-.219-.985-.64-.406-.423-.625-1.063-.203-.657-.203-1.5 0-.782.22-1.422.233-.657.64-1.11.422-.453 1.031-.703.61-.25 1.375-.25.734 0 1.312.219.579.219.985.656.406.422.61 1.063.218.625.218 1.453zm-1.656.047q0-1.032-.39-1.547-.376-.516-1.142-.516-.406 0-.703.156-.297.157-.484.454-.188.28-.281.656-.078.375-.078.797 0 1.047.406 1.578.422.515 1.14.515.407 0 .688-.156.297-.172.484-.453.188-.281.266-.656.094-.39.094-.828zm6.968 3.312v-4.312q0-1.078-.797-1.078-.406 0-.78.328-.36.312-.767.875v4.187h-1.593v-6.61h1.375l.031.97q.203-.25.422-.454.219-.218.469-.359.265-.14.546-.219.297-.078.657-.078.515 0 .89.172.375.156.625.469.266.297.391.719.125.421.125.953v4.437h-1.594zm8.844-1.953q0 .578-.25.984-.25.391-.672.641-.406.25-.938.36-.515.124-1.062.124-.735 0-1.328-.078-.578-.062-1.094-.187v-1.438q.61.25 1.219.375.609.11 1.156.11.625 0 .922-.203.312-.204.312-.516 0-.156-.062-.281-.063-.125-.25-.235-.172-.109-.5-.234t-.844-.266q-.5-.14-.875-.312-.36-.172-.61-.406-.234-.235-.359-.532-.11-.312-.11-.734 0-.406.173-.766.187-.359.547-.625.375-.265.906-.422.547-.156 1.266-.156.625 0 1.109.063.484.062.844.14v1.297q-.563-.187-1.063-.25-.5-.078-.984-.078-.485 0-.781.172-.297.172-.297.484 0 .157.047.282.062.109.234.218.187.11.484.235.313.11.828.25.563.172.954.36.39.187.625.421.25.234.343.531.11.297.11.672zm7.64-1.86q0 .157-.016.423-.015.265-.03.484h-4.345q0 .437.125.781.141.328.375.547.25.219.594.344.344.11.75.11.485 0 1.031-.063.563-.078 1.157-.25v1.265q-.266.063-.563.125-.297.063-.61.11-.312.047-.64.062-.312.031-.61.031-.75 0-1.359-.218-.593-.219-1.015-.64-.406-.423-.64-1.032-.22-.625-.22-1.438 0-.797.22-1.453.234-.672.624-1.14.406-.47.985-.72.578-.265 1.296-.265.704 0 1.235.219.547.219.906.61.36.39.547.937.203.531.203 1.172zm-1.625-.234q.016-.39-.094-.672-.11-.296-.297-.484-.171-.187-.406-.281-.234-.094-.515-.094-.594 0-.985.406-.375.407-.453 1.125h2.75zm8.922 1.47q0 .702-.266 1.218-.25.515-.719.86-.453.327-1.093.5-.641.155-1.391.155-.672 0-1.297-.078-.625-.078-1.234-.265v-1.578q.297.093.625.187t.656.172q.328.062.64.11.329.03.641.03.453 0 .766-.078.328-.078.531-.218t.281-.328q.094-.188.094-.407 0-.312-.187-.53-.172-.22-.47-.376-.28-.156-.655-.281-.375-.14-.766-.281-.375-.157-.75-.344-.375-.188-.672-.469-.297-.281-.484-.672-.172-.39-.172-.937 0-.5.187-.938.188-.453.578-.781.391-.344 1-.547.61-.203 1.47-.203.25 0 .53.031.282.016.547.063.266.031.516.078.266.047.469.11v1.452q-.203-.078-.453-.14-.25-.063-.516-.11t-.531-.078q-.266-.031-.5-.031-.438 0-.735.078-.28.063-.468.188t-.282.296q-.078.172-.078.391 0 .266.172.453.188.188.484.344.297.156.672.297.375.125.766.281.39.156.766.36.375.187.671.468.297.266.47.656.187.375.187.891zm7.046 2.515q-.437.093-.875.156-.422.062-.812.062-.656 0-1.125-.14t-.781-.422q-.313-.281-.47-.703-.14-.438-.14-1.031v-3.235h-1.765v-1.234h1.765v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.266.859.265.281.875.281.39 0 .75-.062.375-.063.687-.14v1.265zm6.016.062-.032-.86q-.218.22-.453.407-.218.188-.5.328-.265.125-.593.203-.313.078-.704.078-.5 0-.89-.156-.375-.156-.64-.422-.266-.265-.407-.64-.125-.375-.125-.828 0-.47.203-.86.203-.406.61-.687.406-.297 1.015-.453.61-.157 1.422-.157h.875v-.406q0-.25-.078-.453t-.235-.344q-.156-.156-.406-.234-.25-.078-.625-.078-.594 0-1.172.14-.562.125-1.093.375v-1.265q.484-.203 1.093-.313.625-.125 1.297-.125.735 0 1.266.14.531.141.86.423.343.265.5.687.171.422.171.985v4.515h-1.36zm-.22-2.922h-.968q-.406 0-.687.078-.282.079-.47.22-.171.124-.25.312-.077.172-.077.375 0 .406.25.625.265.203.719.203.328 0 .687-.235.36-.25.797-.687v-.89zm7.657-1.125q.016-.359-.031-.625-.047-.265-.157-.422-.109-.171-.265-.25-.156-.078-.36-.078-.343 0-.718.297-.375.281-.828.938v4.187h-1.625v-6.61h1.437l.063.954q.156-.25.359-.453.203-.203.453-.344.25-.14.563-.219.312-.078.671-.078.5 0 .891.172.39.172.64.516.266.328.391.843.14.5.11 1.172h-1.594zm8.53 3.985q-.437.093-.874.156-.422.062-.813.062-.656 0-1.125-.14-.468-.14-.78-.422-.313-.281-.47-.703-.14-.438-.14-1.031v-3.235h-1.766v-1.234h1.766v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.265.859.266.281.875.281.391 0 .75-.062.375-.063.688-.14v1.265zm3.391-9.64q1.594 1.327 2.375 2.874.782 1.531.782 3.313 0 .984-.235 1.859-.234.875-.656 1.656-.406.781-1 1.453-.578.688-1.281 1.282l-.922-.907q1.281-1.14 1.922-2.468.64-1.329.64-2.782 0-1.468-.64-2.828-.641-1.375-1.922-2.515l.937-.938z"/><path d="M878.367 298.8h-1.318l-3.798-27.746"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M878.367 298.8h-1.318l-2.984-21.802"/><path fill="#000" stroke="#000" stroke-linecap="butt" d="m875.701 276.774-2.251-4.272-1.022 4.72z" fill-rule="evenodd"/><path fill="#cfe2f3" d="M230.528 172.315h115.78v92.063h-115.78z" fill-rule="evenodd"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M230.528 172.315h115.78v92.063h-115.78z"/><path fill="#000" d="M269.254 212.85q0 .593-.25 1.062-.234.453-.687.75-.438.297-1.063.453-.625.14-1.36.14-.343 0-.687-.03-.328-.016-.64-.063-.313-.031-.594-.078-.266-.047-.484-.11v-1.125q.484.188 1.093.297.61.094 1.391.094.563 0 .953-.078.39-.094.64-.266.25-.172.36-.422.125-.25.125-.562 0-.344-.203-.594-.187-.25-.5-.437-.312-.188-.719-.344-.39-.172-.812-.328-.406-.172-.813-.375-.406-.203-.718-.47-.313-.265-.5-.624-.188-.375-.188-.875 0-.438.172-.86.187-.421.562-.75.391-.328.985-.53.61-.204 1.453-.204.203 0 .453.031.266.016.516.047.25.032.5.078.265.047.468.094v1.047q-.5-.14-1-.219-.5-.078-.968-.078-1 0-1.47.344-.468.328-.468.89 0 .344.188.594.203.235.515.438.313.187.703.36.407.155.813.327.422.157.828.36.406.203.719.484.312.281.5.656.187.36.187.875zm7.406-1.313q0 .234-.015.406 0 .156-.016.297h-4.578q0 1 .547 1.547.562.531 1.625.531.281 0 .562-.016.297-.03.563-.062.265-.047.5-.094.25-.047.453-.11v.938q-.453.125-1.047.203-.578.079-1.203.079-.828 0-1.438-.22-.609-.234-1-.655-.39-.438-.578-1.063-.172-.625-.172-1.422 0-.687.188-1.297.203-.625.578-1.093.39-.47.938-.735.562-.281 1.265-.281.672 0 1.203.219.532.218.89.609.36.39.548.953.187.563.187 1.266zm-1.187-.172q.031-.422-.078-.781-.11-.375-.328-.625-.22-.266-.547-.407-.313-.156-.75-.156-.36 0-.672.156-.313.141-.531.407-.22.25-.36.625-.125.359-.156.78h3.422zm3.265-2.75h1.031l.032 1.203q.578-.703 1.14-1.016.563-.312 1.14-.312 1.017 0 1.532.656.531.656.485 1.953h-1.141q.016-.86-.25-1.234-.266-.39-.797-.39-.219 0-.453.077-.234.079-.484.266-.235.172-.516.453-.266.281-.578.672v4.203h-1.14v-6.531zm6.437 0h1.297l1.594 4.312.344 1.063.36-1.078 1.593-4.297h1.25l-2.578 6.531h-1.297l-2.563-6.531zm10.172.937h-1.937v-.937h3.078v5.594h1.953v.937h-5.235v-.937h2.141v-4.657zm.39-3.687q.204 0 .36.078.156.063.281.188.125.125.188.28.078.157.078.36 0 .172-.078.344-.063.156-.188.281-.125.125-.281.203-.156.063-.36.063-.187 0-.343-.063-.156-.078-.281-.203-.125-.125-.203-.281-.063-.172-.063-.344 0-.203.063-.36.078-.155.203-.28.125-.125.28-.188.157-.078.345-.078zm9.797 9.047q-.453.156-.922.234-.453.094-.953.094-1.547 0-2.39-.844-.829-.844-.829-2.453 0-.766.235-1.39.25-.641.672-1.094.437-.453 1.047-.688.609-.25 1.343-.25.5 0 .938.078.453.063.86.235v1.078q-.438-.219-.876-.313-.437-.11-.906-.11-.438 0-.828.173-.375.156-.672.469-.297.312-.469.765-.156.438-.156 1.016 0 1.172.562 1.765.579.594 1.61.594.453 0 .89-.11.438-.109.844-.312v1.063zm7.766-3.375q0 .234-.016.406 0 .156-.016.297h-4.578q0 1 .547 1.547.563.531 1.625.531.281 0 .563-.016.296-.03.562-.062.266-.047.5-.094.25-.047.453-.11v.938q-.453.125-1.047.203-.578.079-1.203.079-.828 0-1.437-.22-.61-.234-1-.655-.39-.438-.578-1.063-.172-.625-.172-1.422 0-.687.187-1.297.203-.625.578-1.093.391-.47.938-.735.562-.281 1.265-.281.672 0 1.204.219.53.218.89.609.36.39.547.953.188.563.188 1.266zm-1.188-.172q.031-.422-.078-.781-.11-.375-.328-.625-.219-.266-.547-.407-.313-.156-.75-.156-.36 0-.672.156-.312.141-.531.407-.219.25-.36.625-.125.359-.156.78h3.422zm-38.647 11.281-.562 8.5h-1.516l-1.047-3.031-.297-.969-.297 1.047-.984 2.953h-1.453l-.578-8.5h1.093l.329 5.781.093 1.594.407-1.36 1.03-3.155h.798l1.187 3.39.406 1.125.016-1.172.344-6.203h1.031zm7.031 5.188q0 .75-.219 1.39-.218.64-.625 1.094-.39.438-.984.688-.578.25-1.313.25-.703 0-1.265-.204-.547-.218-.938-.64-.375-.438-.593-1.063-.204-.625-.204-1.437 0-.75.22-1.375.218-.64.609-1.094.406-.453.984-.703.594-.25 1.328-.25.703 0 1.25.219.563.218.938.64.39.422.593 1.047.22.625.22 1.438zm-1.156.047q0-.61-.14-1.063-.141-.453-.391-.75-.235-.297-.594-.453-.36-.156-.797-.156-.5 0-.86.203-.359.187-.593.531-.235.328-.344.766-.11.437-.11.922 0 .609.141 1.062.141.453.375.766.25.297.594.453.36.14.797.14.516 0 .875-.187.36-.203.594-.531.234-.344.343-.782.11-.437.11-.921zm3.062-3.266h1.031l.032 1.203q.578-.703 1.14-1.016.563-.312 1.14-.312 1.016 0 1.532.656.531.656.484 1.953h-1.14q.015-.86-.25-1.234-.266-.39-.797-.39-.219 0-.453.077-.235.079-.485.266-.234.172-.515.453-.266.281-.578.672v4.203h-1.14v-6.531zm12.937 6.531h-1.562l-3.047-3.5v3.5h-1.125v-9.203h1.125v5.656l2.937-2.984h1.5l-3.062 3.016 3.234 3.515zm6.969-3.61q0 .235-.016.407 0 .156-.015.297h-4.579q0 1 .547 1.547.563.531 1.625.531.282 0 .563-.016.297-.03.562-.062.266-.047.5-.094.25-.047.453-.11v.938q-.453.125-1.046.203-.579.079-1.204.079-.828 0-1.437-.22-.61-.234-1-.655-.39-.438-.578-1.063-.172-.625-.172-1.422 0-.687.187-1.297.204-.625.579-1.093.39-.47.937-.735.563-.281 1.266-.281.672 0 1.203.219.531.218.89.609.36.39.547.953.188.563.188 1.266zm-1.188-.171q.032-.422-.078-.781-.11-.375-.328-.625-.219-.266-.547-.407-.312-.156-.75-.156-.36 0-.672.156-.312.141-.53.407-.22.25-.36.625-.125.359-.157.78h3.422zm3.266-2.75h1.03l.032 1.203q.578-.703 1.14-1.016.563-.312 1.141-.312 1.016 0 1.532.656.53.656.484 1.953h-1.14q.015-.86-.25-1.234-.266-.39-.797-.39-.22 0-.454.077-.234.079-.484.266-.234.172-.516.453-.265.281-.578.672v4.203h-1.14v-6.531z"/><path d="M238.078 71.685h191.874v31.937H238.078z"/><path fill="#000" d="M252.016 95.188q-1.594-1.344-2.391-2.875-.781-1.531-.781-3.312 0-.985.234-1.86.234-.89.656-1.656.438-.781 1.016-1.453.594-.688 1.297-1.281l.906.906q-1.266 1.14-1.906 2.469-.64 1.312-.64 2.765 0 1.485.64 2.844.64 1.36 1.906 2.484l-.937.97zm8.718-2.734h-1.766l-.703-2.094-.203-.734-.219.75-.671 2.078h-1.782l-.937-6.61h1.515l.47 3.735.109 1.015.28-.906.657-2.015h1.203l.719 2 .297.937.125-1.047.406-3.719h1.438l-.938 6.61zm7.86-3.36q0 .782-.22 1.438-.218.64-.64 1.11-.422.452-1.031.718-.594.25-1.375.25-.735 0-1.313-.219-.578-.218-.984-.64-.407-.422-.625-1.063-.203-.656-.203-1.5 0-.781.218-1.422.235-.656.641-1.11.422-.452 1.031-.702.61-.25 1.375-.25.735 0 1.313.219.578.218.984.656.406.422.61 1.062.218.625.218 1.453zm-1.657.047q0-1.031-.39-1.547-.376-.515-1.141-.515-.407 0-.703.156-.297.156-.485.453-.187.281-.281.656-.078.375-.078.797 0 1.047.406 1.578.422.516 1.14.516.407 0 .688-.156.297-.172.485-.453.187-.282.265-.657.094-.39.094-.828zm7.281-.734q.016-.36-.031-.625-.047-.266-.157-.422-.109-.172-.265-.25-.156-.078-.36-.078-.343 0-.718.297-.375.281-.828.937v4.188h-1.625v-6.61h1.437l.063.954q.156-.25.359-.454.203-.203.453-.343.25-.141.563-.22.312-.077.671-.077.5 0 .891.172.39.172.64.515.266.328.391.844.141.5.11 1.172h-1.594zm7.172 4.047-2.438-3.313v3.313h-1.594V83.25h1.594v5.39l2.313-2.797h1.984l-2.688 3.016 2.907 3.594h-2.078zm9-3.813q0 .157-.016.422-.016.266-.032.485H286q0 .437.125.78.14.329.375.548.25.218.593.343.344.11.75.11.485 0 1.032-.063.562-.078 1.156-.25v1.266q-.266.062-.563.125-.296.062-.609.11-.312.046-.64.062-.313.031-.61.031-.75 0-1.36-.219-.593-.218-1.015-.64-.406-.422-.64-1.032-.22-.625-.22-1.437 0-.797.22-1.453.234-.672.624-1.14.407-.47.985-.72.578-.265 1.297-.265.703 0 1.234.219.547.218.906.609.36.39.547.937.203.532.203 1.172zm-1.626-.234q.016-.39-.093-.672-.11-.297-.297-.484-.172-.188-.407-.282-.234-.093-.515-.093-.594 0-.985.406-.375.406-.453 1.125h2.75zm7.438 0q.015-.36-.032-.625-.047-.266-.156-.422-.11-.172-.266-.25-.156-.078-.359-.078-.344 0-.719.297-.375.281-.828.937v4.188h-1.625v-6.61h1.438l.062.954q.156-.25.36-.454.203-.203.453-.343.25-.141.562-.22.313-.077.672-.077.5 0 .89.172.391.172.641.515.266.328.39.844.142.5.11 1.172h-1.593zm8.812 1.469q0 .703-.266 1.218-.25.516-.719.86-.453.328-1.093.5-.641.156-1.391.156-.672 0-1.297-.078-.625-.078-1.234-.266v-1.578q.297.094.625.188.328.093.656.172.328.062.64.109.329.031.641.031.453 0 .766-.078.328-.078.531-.219.203-.14.281-.328.094-.187.094-.406 0-.313-.187-.531-.172-.22-.47-.375-.28-.157-.655-.282-.375-.14-.766-.28-.375-.157-.75-.345-.375-.187-.672-.468-.297-.282-.484-.672-.172-.39-.172-.938 0-.5.187-.937.188-.453.579-.781.39-.344 1-.547.609-.203 1.468-.203.25 0 .532.03.28.016.546.063.266.032.516.078.266.047.469.11v1.453q-.203-.078-.453-.14-.25-.063-.516-.11t-.531-.078q-.266-.031-.5-.031-.438 0-.735.078-.28.062-.468.187t-.282.297q-.078.172-.078.39 0 .266.172.454.188.187.485.344.296.156.671.296.375.125.766.282.39.156.766.359.375.188.672.469.296.265.468.656.188.375.188.89zm7.046 2.515q-.437.094-.875.157-.421.062-.812.062-.656 0-1.125-.14-.469-.141-.781-.422-.313-.282-.47-.704-.14-.437-.14-1.03v-3.235h-1.765v-1.235h1.765v-1.687l1.625-.438v2.125h2.578v1.235h-2.578v3.11q0 .562.266.859.266.28.875.28.39 0 .75-.062.375-.062.687-.14v1.265zm6.016.063-.031-.86q-.22.22-.454.407-.218.187-.5.328-.265.125-.593.203-.313.078-.703.078-.5 0-.891-.156-.375-.156-.64-.422-.266-.266-.407-.64-.125-.376-.125-.829 0-.469.203-.86.203-.405.61-.687.406-.297 1.015-.453.61-.156 1.422-.156h.875V88q0-.25-.078-.453-.078-.204-.234-.344-.157-.156-.407-.235-.25-.078-.625-.078-.593 0-1.172.14-.562.126-1.093.376V86.14q.484-.203 1.093-.312.625-.125 1.297-.125.735 0 1.266.14.531.141.86.422.343.266.5.688.171.422.171.984v4.516h-1.36zm-.219-2.922h-.969q-.406 0-.687.078t-.469.219q-.172.125-.25.312-.078.172-.078.375 0 .407.25.625.266.203.719.203.328 0 .687-.234.36-.25.797-.687v-.891zm7.656-1.125q.016-.36-.031-.625-.047-.266-.156-.422-.11-.172-.266-.25-.156-.078-.36-.078-.343 0-.718.297-.375.281-.828.937v4.188h-1.625v-6.61h1.437l.063.954q.156-.25.359-.454.203-.203.453-.343.25-.141.563-.22.312-.077.672-.077.5 0 .89.172t.64.515q.266.328.391.844.141.5.11 1.172h-1.594zm8.531 3.984q-.437.094-.875.157-.422.062-.812.062-.657 0-1.125-.14-.47-.141-.782-.422-.312-.282-.468-.704-.141-.437-.141-1.03v-3.235h-1.766v-1.235h1.766v-1.687l1.625-.438v2.125h2.578v1.235h-2.578v3.11q0 .562.266.859.265.28.875.28.39 0 .75-.062.375-.062.687-.14v1.265zm3.39-9.64q1.594 1.328 2.375 2.875.782 1.53.782 3.312 0 .985-.235 1.86-.234.875-.656 1.656-.406.781-1 1.453-.578.687-1.281 1.281l-.922-.906q1.281-1.14 1.922-2.469.64-1.328.64-2.781 0-1.469-.64-2.828-.64-1.375-1.922-2.516l.937-.937z"/><path d="M248.978 97.803h-3.89l-11.2 67.75"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M248.978 97.803h-3.89l-10.222 61.83"/><path fill="#000" stroke="#000" stroke-linecap="butt" d="m233.236 159.364.89 4.747 2.37-4.208z" fill-rule="evenodd"/><path fill="#cfe2f3" d="M661.002 172.306h55.968v41.638h-55.968z" fill-rule="evenodd"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M661.002 172.306h55.968v41.638h-55.968z"/><path fill="#000" d="M684.76 190.41h-2.516v7.515h-1.172v-7.516h-2.515v-.984h6.203v.984zm6.968 7.515h-4.89v-8.5h1.172v7.515h3.718v.985zm7.406-2.297q0 .594-.25 1.062-.234.453-.687.75-.438.297-1.063.453-.625.141-1.36.141-.343 0-.687-.031-.328-.016-.64-.063-.313-.03-.594-.078-.266-.047-.484-.11v-1.124q.484.187 1.093.297.61.093 1.391.093.563 0 .953-.078.39-.093.64-.265.25-.172.36-.422.125-.25.125-.563 0-.343-.203-.593-.187-.25-.5-.438-.312-.187-.719-.344-.39-.172-.812-.328-.406-.172-.813-.375-.406-.203-.718-.469-.313-.265-.5-.625-.188-.375-.188-.875 0-.437.172-.859.187-.422.562-.75.391-.328.985-.531.61-.203 1.453-.203.203 0 .453.031.266.016.516.047t.5.078q.265.047.468.094v1.047q-.5-.141-1-.22-.5-.077-.968-.077-1 0-1.47.343-.468.329-.468.891 0 .344.188.594.203.234.515.437.313.188.703.36.407.156.813.328.422.156.828.36.406.202.719.484.312.28.5.656.187.36.187.875z"/><path fill="#cfe2f3" d="M596.625 220.569H716.94v41.638H596.625z" fill-rule="evenodd"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M596.625 220.569H716.94v41.638H596.625z"/><path fill="#000" d="M645.173 246.266q-.687-.094-1.187-.422-.5-.344-.828-.875-.328-.547-.5-1.281-.156-.75-.156-1.64 0-1.157.265-2 .266-.86.719-1.407.469-.547 1.078-.813.61-.265 1.297-.265.813 0 1.422.297.61.296 1.015.859.407.547.594 1.344.203.781.203 1.781 0 1.031-.218 1.828-.22.781-.61 1.328-.375.547-.906.86-.516.312-1.11.406.094.578.454.922.36.343 1 .343.312 0 .61-.109.312-.094.624-.344l.516.797q-.438.36-.89.5-.454.156-.938.156-.516 0-.953-.14-.438-.14-.766-.438-.313-.28-.516-.703-.187-.422-.219-.984zm2.72-4.281q0-.766-.126-1.375-.11-.625-.36-1.063-.25-.453-.655-.703-.391-.25-.97-.25-.53 0-.937.266-.39.25-.64.703-.25.437-.375 1.047-.125.593-.125 1.25 0 .78.11 1.406.124.625.374 1.078.25.453.64.703.407.234.954.234.547 0 .937-.25.407-.265.657-.718.265-.453.39-1.047.125-.61.125-1.281zm8.187 1.234q0 .703-.204 1.281-.187.563-.578.969-.39.406-.953.625-.547.203-1.265.203-.797 0-1.36-.203-.547-.203-.89-.578-.344-.39-.516-.922-.156-.531-.156-1.188v-5.718h1.172v5.625q0 .5.093.875.094.375.297.64.219.25.563.375.343.125.828.125.937 0 1.375-.53.437-.532.437-1.5v-5.61h1.157v5.531zm3.78-4.563h-1.953v-.968h5.078v.968h-1.953v6.547h1.953v.985h-5.078v-.985h1.953v-6.547zm10.719 7.22q-1.016.421-2.14.421-1.798 0-2.766-1.078-.969-1.078-.969-3.188 0-1.03.266-1.843.265-.828.765-1.407.5-.578 1.203-.89.703-.313 1.578-.313.579 0 1.079.11.515.093.984.297v1.14q-.453-.25-.953-.375-.485-.14-1.078-.14-.594 0-1.078.234-.485.219-.829.64-.343.422-.53 1.047-.173.61-.173 1.391 0 1.656.672 2.5.672.828 1.969.828.547 0 1.047-.125.5-.125.953-.344v1.094z"/><path d="M664.121 73.83h250.08v41.637H664.12z"/><path fill="#000" d="M678.059 102.183q-1.594-1.344-2.39-2.875-.782-1.532-.782-3.313 0-.984.234-1.86.235-.89.657-1.655.437-.782 1.015-1.454.594-.687 1.297-1.28l.906.906q-1.265 1.14-1.906 2.468-.64 1.313-.64 2.766 0 1.484.64 2.844.64 1.359 1.906 2.484l-.937.969zm8.75-4.688q0 .578-.25.985-.25.39-.672.64-.406.25-.938.36-.515.125-1.062.125-.735 0-1.328-.079-.578-.062-1.094-.187v-1.438q.61.25 1.219.376.609.109 1.156.109.625 0 .922-.203.312-.203.312-.516 0-.156-.062-.281-.063-.125-.25-.234-.172-.11-.5-.235-.328-.125-.844-.266-.5-.14-.875-.312-.36-.172-.61-.406-.234-.235-.359-.532-.11-.312-.11-.734 0-.406.173-.766.187-.359.547-.624.375-.266.906-.422.547-.157 1.266-.157.625 0 1.109.063.484.062.844.14v1.297q-.563-.187-1.063-.25-.5-.078-.984-.078-.485 0-.781.172-.297.172-.297.484 0 .157.047.282.062.11.234.218.187.11.484.235.313.11.828.25.563.172.954.36.39.187.625.421.25.234.343.531.11.297.11.672zm7.64-1.86q0 .157-.016.423-.015.265-.03.484h-4.345q0 .438.125.781.141.329.375.547.25.219.594.344.344.11.75.11.485 0 1.031-.063.563-.078 1.157-.25v1.266q-.266.062-.563.124-.297.063-.61.11-.312.047-.64.062-.312.032-.61.032-.75 0-1.359-.22-.593-.218-1.015-.64-.406-.422-.64-1.031-.22-.625-.22-1.438 0-.796.22-1.453.234-.671.624-1.14.406-.469.985-.719.578-.266 1.296-.266.704 0 1.235.22.547.218.906.608.36.391.547.938.203.531.203 1.172zm-1.625-.234q.016-.39-.094-.671-.11-.297-.297-.485-.171-.187-.406-.281-.234-.094-.515-.094-.594 0-.985.406-.375.407-.453 1.126h2.75zm8.531 3.797q-.469.188-.969.266-.5.094-1.047.094-.78 0-1.406-.203-.625-.22-1.062-.641-.438-.422-.672-1.047-.235-.625-.235-1.453 0-.781.25-1.422.25-.656.704-1.11.468-.452 1.109-.702.64-.25 1.422-.25.64 0 1.078.078.453.062.797.172v1.53q-.406-.202-.875-.312-.469-.109-.89-.109-.438 0-.798.156-.343.14-.593.422-.235.266-.36.64-.125.376-.125.829 0 .484.125.86.14.374.39.64t.595.406q.359.14.796.14.204 0 .422-.03.235-.032.469-.079.234-.062.453-.125.235-.078.422-.171v1.421zm3.562-6.359v4.313q0 .53.203.812.204.281.61.281.39 0 .75-.328.375-.344.781-.89v-4.188h1.594v6.61h-1.375l-.031-.97q-.22.25-.438.454-.203.203-.453.36-.25.14-.547.218-.297.094-.656.094-.5 0-.89-.172-.376-.172-.641-.469-.25-.313-.375-.734-.125-.422-.125-.954V92.84h1.593zm10 2.563q.016-.36-.031-.626-.047-.265-.157-.421-.109-.172-.265-.25-.156-.079-.36-.079-.343 0-.718.297-.375.282-.828.938v4.187h-1.625V92.84h1.437l.063.953q.156-.25.359-.453.203-.203.453-.344.25-.14.563-.219.312-.078.671-.078.5 0 .891.172.39.172.64.516.266.328.391.844.141.5.11 1.171h-1.594zm8.843.234q0 .156-.015.422l-.031.484h-4.344q0 .438.125.781.14.329.375.547.25.219.594.344.343.11.75.11.484 0 1.03-.063.563-.078 1.157-.25v1.266q-.266.062-.562.124-.297.063-.61.11-.312.047-.64.062-.313.032-.61.032-.75 0-1.36-.22-.593-.218-1.015-.64-.406-.422-.64-1.031-.22-.625-.22-1.438 0-.796.22-1.453.234-.671.625-1.14.406-.469.984-.719.578-.266 1.297-.266.703 0 1.234.22.547.218.906.608.36.391.547.938.203.531.203 1.172zm-1.625-.234q.016-.391-.093-.672-.11-.297-.297-.485-.172-.187-.406-.281-.235-.094-.516-.094-.594 0-.984.406-.375.407-.454 1.126h2.75zm8.813 3.718q-.563.219-1.094.328-.531.11-1.11.11-.906 0-1.624-.266-.703-.266-1.188-.797-.484-.531-.734-1.328t-.25-1.844q0-1.062.265-1.89.282-.844.782-1.422.515-.578 1.234-.875.734-.313 1.64-.313.298 0 .548.016.265.016.5.047.25.031.5.094.265.062.53.156v1.578q-.546-.25-1.046-.36-.5-.109-.922-.109-.594 0-1.031.219-.422.203-.703.61-.282.39-.407.937-.125.531-.125 1.187 0 .688.125 1.235.141.547.422.922.282.375.703.578.438.187 1.047.187.203 0 .453-.031.25-.047.5-.11.266-.078.516-.171.25-.094.469-.188v1.5zm7.656-3.031q0 .781-.219 1.438-.219.64-.64 1.109-.422.453-1.032.719-.594.25-1.375.25-.734 0-1.312-.22-.578-.218-.985-.64-.406-.422-.625-1.062-.203-.657-.203-1.5 0-.782.219-1.422.234-.656.64-1.11.422-.453 1.032-.703.61-.25 1.375-.25.734 0 1.312.22.578.218.985.655.406.422.609 1.063.219.625.219 1.453zm-1.656.047q0-1.031-.391-1.547-.375-.516-1.14-.516-.407 0-.704.157-.297.156-.484.453-.188.281-.281.656-.079.375-.079.797 0 1.047.407 1.578.422.516 1.14.516.407 0 .688-.157.297-.171.484-.453.188-.281.266-.656.094-.39.094-.828zm6.968 3.312v-4.312q0-1.078-.797-1.078-.406 0-.781.328-.36.312-.766.875v4.187h-1.594V92.84h1.375l.032.969q.203-.25.422-.453.218-.22.468-.36.266-.14.547-.219.297-.078.656-.078.516 0 .891.172.375.156.625.469.266.297.39.719.126.422.126.953v4.437h-1.594zm7.328 0v-4.312q0-1.078-.797-1.078-.406 0-.781.328-.36.312-.766.875v4.187h-1.594V92.84h1.375l.032.969q.203-.25.421-.453.22-.22.47-.36.265-.14.546-.219.297-.078.656-.078.516 0 .891.172.375.156.625.469.266.297.39.719.126.422.126.953v4.437h-1.594zm9.156-3.812q0 .156-.016.422-.015.265-.031.484h-4.344q0 .438.125.781.14.329.375.547.25.219.594.344.344.11.75.11.484 0 1.031-.063.563-.078 1.156-.25v1.266q-.265.062-.562.124-.297.063-.61.11-.312.047-.64.062-.313.032-.61.032-.75 0-1.359-.22-.594-.218-1.015-.64-.407-.422-.641-1.031-.219-.625-.219-1.438 0-.796.219-1.453.234-.671.625-1.14.406-.469.984-.719.578-.266 1.297-.266.703 0 1.235.22.546.218.906.608.36.391.547.938.203.531.203 1.172zm-1.625-.234q.015-.391-.094-.672-.11-.297-.297-.485-.172-.187-.406-.281-.234-.094-.516-.094-.593 0-.984.406-.375.407-.453 1.126h2.75zm8.53 3.796q-.468.188-.968.266-.5.094-1.047.094-.781 0-1.406-.203-.625-.22-1.063-.641-.437-.422-.671-1.047-.235-.625-.235-1.453 0-.781.25-1.422.25-.656.703-1.11.47-.452 1.11-.702.64-.25 1.422-.25.64 0 1.078.078.453.062.797.172v1.53q-.407-.202-.875-.312-.47-.109-.891-.109-.438 0-.797.156-.344.14-.594.422-.234.266-.359.64-.125.376-.125.829 0 .484.125.86.14.374.39.64t.594.406q.36.14.797.14.203 0 .422-.03.234-.032.469-.079.234-.062.453-.125.234-.078.422-.171v1.421zm7.438.188q-.437.094-.875.156-.422.063-.812.063-.657 0-1.125-.141-.47-.14-.782-.422-.312-.281-.468-.703-.141-.438-.141-1.031v-3.235h-1.766V92.84h1.766v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.266.86.265.28.875.28.39 0 .75-.062.375-.063.687-.14v1.265zm5.765-8.36q0 .22-.078.407-.078.187-.218.328-.141.14-.329.219-.187.078-.406.078-.219 0-.422-.078-.187-.079-.328-.22-.14-.14-.219-.327-.078-.188-.078-.407 0-.218.078-.406.079-.187.22-.328.14-.14.327-.219.203-.093.422-.093.219 0 .406.093.188.079.329.22.14.14.218.327.078.188.078.406zm-1.75 3.047h-1.875V92.84h3.5v5.375h1.907v1.234h-5.641v-1.234h2.11v-4.14zm11.14 2.016q0 .781-.218 1.438-.219.64-.64 1.109-.422.453-1.032.719-.594.25-1.375.25-.734 0-1.312-.22-.578-.218-.985-.64-.406-.422-.625-1.062-.203-.657-.203-1.5 0-.782.219-1.422.234-.656.64-1.11.422-.453 1.032-.703.61-.25 1.375-.25.734 0 1.312.22.578.218.985.655.406.422.61 1.063.218.625.218 1.453zm-1.655.047q0-1.031-.391-1.547-.375-.516-1.14-.516-.407 0-.704.157-.297.156-.484.453-.188.281-.281.656-.079.375-.079.797 0 1.047.407 1.578.422.516 1.14.516.407 0 .688-.157.297-.171.484-.453.188-.281.266-.656.094-.39.094-.828zm6.968 3.312v-4.312q0-1.078-.797-1.078-.406 0-.781.328-.36.312-.766.875v4.187h-1.593V92.84h1.375l.03.969q.204-.25.423-.453.218-.22.468-.36.266-.14.547-.219.297-.078.657-.078.515 0 .89.172.375.156.625.469.266.297.39.719.126.422.126.953v4.437h-1.594zm9.125-2.578q0 .703-.266 1.219-.25.516-.719.86-.453.328-1.093.5-.641.156-1.391.156-.672 0-1.297-.079-.625-.078-1.234-.265v-1.578q.297.093.625.187t.656.172q.328.063.64.11.329.03.641.03.453 0 .766-.077.328-.079.531-.22.203-.14.281-.327.094-.188.094-.407 0-.312-.187-.53-.172-.22-.47-.376-.28-.156-.655-.281-.375-.14-.766-.281-.375-.157-.75-.344-.375-.188-.672-.469-.297-.281-.484-.672-.172-.39-.172-.937 0-.5.187-.938.188-.453.579-.78.39-.345 1-.548.609-.203 1.468-.203.25 0 .532.031.28.016.546.063.266.031.516.078.266.047.469.11v1.453q-.203-.079-.453-.141-.25-.063-.516-.11-.266-.046-.531-.078-.266-.03-.5-.03-.438 0-.735.077-.28.063-.468.188t-.282.297q-.078.171-.078.39 0 .266.172.453.188.188.485.344.296.156.671.297.375.125.766.281.39.156.766.36.375.187.672.468.296.266.468.657.188.375.188.89zm7.046 2.516q-.437.094-.875.156-.421.063-.812.063-.656 0-1.125-.141-.469-.14-.781-.422-.313-.281-.47-.703-.14-.438-.14-1.031v-3.235h-1.765V92.84h1.765v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.266.86.266.28.875.28.39 0 .75-.062.375-.063.687-.14v1.265zm6.016.062-.031-.859q-.22.219-.454.406-.218.188-.5.328-.265.125-.593.204-.313.078-.703.078-.5 0-.891-.157-.375-.156-.64-.421-.266-.266-.407-.641-.125-.375-.125-.828 0-.469.203-.86.203-.406.61-.687.406-.297 1.015-.453.61-.157 1.422-.157h.875v-.406q0-.25-.078-.453t-.234-.344q-.157-.156-.407-.234-.25-.078-.625-.078-.593 0-1.172.14-.562.126-1.093.376v-1.266q.484-.203 1.093-.313.625-.125 1.297-.125.735 0 1.266.141.531.14.86.422.343.266.5.687.171.422.171.985v4.515h-1.36zm-.219-2.921h-.969q-.406 0-.687.078t-.469.218q-.172.125-.25.313-.078.172-.078.375 0 .406.25.625.266.203.719.203.328 0 .687-.234.36-.25.797-.688v-.89zm7.656-1.126q.016-.359-.031-.624-.047-.266-.156-.422-.11-.172-.266-.25-.156-.079-.36-.079-.343 0-.718.297-.375.282-.828.938v4.187h-1.625V92.84h1.437l.063.953q.156-.25.359-.453.203-.203.453-.344.25-.14.563-.219.312-.078.672-.078.5 0 .89.172t.64.516q.266.328.391.844.141.5.11 1.171h-1.594zm8.531 3.985q-.438.094-.875.156-.422.063-.813.063-.656 0-1.125-.141-.468-.14-.78-.422-.313-.281-.47-.703-.14-.438-.14-1.031v-3.235h-1.766V92.84h1.766v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.265.86.266.28.875.28.391 0 .75-.062.375-.063.688-.14v1.265zm3.39-9.64q1.594 1.327 2.375 2.874.782 1.531.782 3.313 0 .984-.235 1.86-.234.874-.656 1.655-.406.782-1 1.454-.578.687-1.281 1.28l-.922-.906q1.281-1.14 1.922-2.468.64-1.328.64-2.782 0-1.468-.64-2.828-.64-1.375-1.922-2.515l.937-.938z"/><path d="M673.54 102.82h-3.889l-11.201 57.492"/><path stroke="#000" stroke-linejoin="round" stroke-linecap="butt" d="M673.54 102.82h-3.889l-10.054 51.603"/><path fill="#000" stroke="#000" stroke-linecap="butt" d="m657.976 154.107.753 4.77 2.49-4.138z" fill-rule="evenodd"/><path d="M128.706 376.474H733.43v31.937H128.706z"/><path fill="#000" d="M142.05 393.664h-1.36l.188-2-1.64 1.172-.657-1.14 1.828-.844-1.828-.828.656-1.14 1.64 1.171-.187-2.016h1.36l-.188 2.016 1.64-1.172.657 1.14-1.828.829 1.828.844-.656 1.14-1.64-1.172.187 2zm15.468-.468q.016-.36-.031-.625-.047-.266-.157-.422-.109-.172-.265-.25-.156-.078-.36-.078-.343 0-.718.297-.375.28-.828.937v4.188h-1.625v-6.61h1.437l.063.953q.156-.25.359-.453.203-.203.453-.344.25-.14.563-.218.312-.078.671-.078.5 0 .891.171.39.172.64.516.266.328.391.844.141.5.11 1.172h-1.594zm8.843.234q0 .156-.015.422-.016.266-.031.484h-4.344q0 .438.125.782.14.328.375.546.25.22.594.344.343.11.75.11.484 0 1.03-.063.563-.078 1.157-.25v1.266q-.266.062-.562.125-.297.062-.61.11-.312.046-.64.062-.313.03-.61.03-.75 0-1.36-.218-.593-.219-1.015-.64-.406-.422-.64-1.032-.22-.625-.22-1.437 0-.797.22-1.453.234-.672.625-1.141.406-.469.984-.719.578-.265 1.297-.265.703 0 1.234.218.547.22.906.61.36.39.547.937.203.531.203 1.172zm-1.625-.234q.016-.39-.093-.672-.11-.297-.297-.485-.172-.187-.406-.28-.235-.095-.516-.095-.594 0-.984.407-.375.406-.454 1.125h2.75zm7.125 6.625v-2.172l.078-1.281q-.187.218-.39.421-.203.188-.453.329-.235.125-.532.203-.28.078-.609.078-.594 0-1.047-.235-.453-.234-.766-.671-.312-.438-.468-1.047-.157-.625-.157-1.39 0-.782.204-1.438.218-.657.64-1.125.438-.47 1.063-.72.64-.265 1.5-.265.156 0 .343.031.204.016.391.047.203.032.375.078.188.032.328.079l1.094-.235v9.313h-1.594zm-2.687-5.828q0 .546.078.937.078.375.219.625.156.25.359.375.219.11.5.11.39 0 .75-.329.375-.328.781-.89v-2.89q-.187-.079-.469-.126-.265-.047-.546-.047-.391 0-.704.156-.296.157-.515.454-.219.28-.344.703-.11.406-.11.922zm7.656-3.36v4.313q0 .531.203.812t.61.281q.39 0 .75-.328.374-.343.78-.89v-4.188h1.594v6.61h-1.375l-.031-.97q-.219.25-.438.454-.203.203-.453.36-.25.14-.547.218-.296.094-.656.094-.5 0-.89-.172-.375-.172-.641-.469-.25-.312-.375-.734t-.125-.953v-4.438h1.594zm11.515 2.797q0 .156-.016.422-.015.266-.03.484h-4.345q0 .438.125.782.141.328.375.546.25.22.594.344.344.11.75.11.485 0 1.031-.063.563-.078 1.157-.25v1.266q-.266.062-.563.125-.297.062-.61.11-.312.046-.64.062-.312.03-.61.03-.75 0-1.359-.218-.593-.219-1.015-.64-.406-.422-.64-1.032-.22-.625-.22-1.437 0-.797.22-1.453.234-.672.624-1.141.406-.469.985-.719.578-.265 1.296-.265.704 0 1.235.218.547.22.906.61.36.39.547.937.203.531.203 1.172zm-1.625-.234q.016-.39-.094-.672-.109-.297-.297-.485-.171-.187-.406-.28-.234-.095-.515-.095-.594 0-.985.407-.375.406-.453 1.125h2.75zm8.64 2.093q0 .579-.25.985-.25.39-.671.64-.407.25-.938.36-.516.125-1.062.125-.735 0-1.329-.078-.578-.063-1.093-.188v-1.437q.61.25 1.218.375.61.11 1.157.11.625 0 .922-.204.312-.203.312-.516 0-.156-.062-.28-.063-.126-.25-.235-.172-.11-.5-.235-.329-.125-.844-.265-.5-.14-.875-.313-.36-.172-.61-.406-.234-.234-.359-.531-.11-.313-.11-.735 0-.406.173-.765.187-.36.546-.625.375-.266.907-.422.547-.156 1.265-.156.625 0 1.11.062.484.063.843.14v1.298q-.562-.188-1.062-.25-.5-.079-.984-.079-.485 0-.782.172-.297.172-.297.485 0 .156.047.281.063.11.235.219.187.11.484.234.313.11.828.25.563.172.953.36.39.187.625.421.25.235.344.532.11.296.11.671zm7.328 1.891q-.437.094-.875.156-.422.063-.812.063-.656 0-1.125-.14-.469-.141-.781-.423-.313-.28-.47-.703-.14-.437-.14-1.031v-3.234h-1.765v-1.235h1.765v-1.687l1.625-.438v2.125h2.578v1.235h-2.578v3.109q0 .562.266.86.265.28.875.28.39 0 .75-.062.375-.062.687-.14v1.265zm7.61-2.516q0 .704-.266 1.22-.25.515-.719.859-.453.328-1.094.5-.64.156-1.39.156-.672 0-1.297-.078-.625-.078-1.235-.266v-1.578q.297.094.625.187.329.094.657.172.328.063.64.11.328.031.64.031.454 0 .767-.078.328-.078.53-.219.204-.14.282-.328.094-.188.094-.406 0-.313-.188-.532-.172-.218-.468-.375-.282-.156-.657-.28-.375-.141-.765-.282-.375-.156-.75-.344-.375-.187-.672-.469-.297-.28-.485-.671-.171-.391-.171-.938 0-.5.187-.937.188-.454.578-.782.39-.343 1-.547.61-.203 1.469-.203.25 0 .531.032.281.015.547.062.266.031.516.078.265.047.468.11v1.453q-.203-.078-.453-.14-.25-.063-.515-.11-.266-.047-.532-.078-.265-.032-.5-.032-.437 0-.734.078-.281.063-.469.188-.187.125-.28.297-.08.172-.08.39 0 .266.173.454.187.187.484.343.297.157.672.297.375.125.766.281.39.157.765.36.375.187.672.469.297.265.469.656.187.375.187.89zm7.046 2.516q-.437.094-.875.156-.422.063-.812.063-.657 0-1.125-.14-.47-.141-.782-.423-.312-.28-.468-.703-.141-.437-.141-1.031v-3.234h-1.766v-1.235h1.766v-1.687l1.625-.438v2.125h2.578v1.235h-2.578v3.109q0 .562.266.86.265.28.875.28.39 0 .75-.062.375-.062.687-.14v1.265zm6.015.063-.03-.86q-.22.219-.454.406-.219.188-.5.329-.266.125-.594.203-.312.078-.703.078-.5 0-.89-.156-.375-.157-.641-.422-.266-.266-.406-.64-.125-.376-.125-.829 0-.469.203-.86.203-.406.61-.687.405-.297 1.015-.453.61-.156 1.422-.156h.875v-.407q0-.25-.078-.453-.079-.203-.235-.343-.156-.157-.406-.235-.25-.078-.625-.078-.594 0-1.172.14-.562.126-1.094.376v-1.266q.485-.203 1.094-.312.625-.125 1.297-.125.734 0 1.266.14.53.14.859.422.344.266.5.688.172.421.172.984v4.516h-1.36zm-.218-2.922h-.97q-.405 0-.687.078-.28.078-.468.219-.172.125-.25.312-.078.172-.078.375 0 .406.25.625.265.203.718.203.328 0 .688-.234.36-.25.797-.688v-.89zm7.656-1.125q.015-.36-.032-.625-.046-.266-.156-.422-.11-.172-.265-.25-.157-.078-.36-.078-.344 0-.719.297-.375.28-.828.937v4.188h-1.625v-6.61h1.438l.062.953q.157-.25.36-.453.203-.203.453-.344.25-.14.562-.218.313-.078.672-.078.5 0 .89.171.391.172.641.516.266.328.391.844.14.5.11 1.172h-1.594zm8.53 3.984q-.437.094-.874.156-.422.063-.813.063-.656 0-1.125-.14-.469-.141-.781-.423-.313-.28-.469-.703-.14-.437-.14-1.031v-3.234h-1.766v-1.235h1.766v-1.687l1.625-.438v2.125h2.578v1.235h-2.578v3.109q0 .562.265.86.266.28.875.28.39 0 .75-.062.375-.062.688-.14v1.265zm13.922.063-.156-4.813-.063-1.922-.406 1.313-.953 2.89h-1l-.844-2.89-.36-1.313-.046 1.89-.14 4.845h-1.36l.406-8.5h1.813l.75 2.406.359 1.36.36-1.282.78-2.484h1.844l.422 8.5h-1.406zm6.75 0-.031-.86q-.22.219-.454.406-.218.188-.5.329-.265.125-.593.203-.313.078-.703.078-.5 0-.891-.156-.375-.157-.64-.422-.266-.266-.407-.64-.125-.376-.125-.829 0-.469.203-.86.203-.406.61-.687.406-.297 1.015-.453.61-.156 1.422-.156h.875v-.407q0-.25-.078-.453t-.234-.343q-.157-.157-.407-.235-.25-.078-.625-.078-.593 0-1.172.14-.562.126-1.093.376v-1.266q.484-.203 1.093-.312.625-.125 1.297-.125.735 0 1.266.14t.86.422q.343.266.5.688.171.421.171.984v4.516h-1.36zm-.219-2.922h-.969q-.406 0-.687.078t-.469.219q-.172.125-.25.312-.078.172-.078.375 0 .406.25.625.266.203.719.203.328 0 .687-.234.36-.25.797-.688v-.89zm7.375 2.203q-.344.86-.719 1.5-.375.656-.828 1.078-.438.437-.985.656-.546.219-1.234.219-.172 0-.36-.016-.187-.015-.39-.047v-1.343q.078 0 .172.015l.219.032q.11.015.218.015.125.016.22.016.265 0 .5-.11.234-.109.437-.296.203-.188.36-.438.171-.25.28-.562l-2.609-6.61h1.766l1.375 3.75.406 1.203.406-1.156 1.39-3.797h1.704l-2.328 5.89zm16.64-2.64q0 .78-.219 1.437-.219.64-.64 1.11-.422.452-1.032.718-.594.25-1.375.25-.734 0-1.312-.219-.578-.219-.985-.64-.406-.422-.625-1.063-.203-.656-.203-1.5 0-.781.219-1.422.234-.656.64-1.11.422-.452 1.032-.702.61-.25 1.375-.25.734 0 1.312.218.578.22.985.657.406.421.61 1.062.218.625.218 1.453zm-1.656.046q0-1.031-.391-1.547-.375-.515-1.14-.515-.407 0-.704.156t-.484.453q-.188.281-.281.656-.079.375-.079.797 0 1.047.407 1.578.422.516 1.14.516.407 0 .688-.156.297-.172.484-.454.188-.28.266-.656.094-.39.094-.828zm8.374 3.063q-.468.187-.968.265-.5.094-1.047.094-.782 0-1.407-.203-.625-.219-1.062-.64-.438-.423-.672-1.048-.234-.625-.234-1.453 0-.781.25-1.422.25-.656.703-1.109.469-.453 1.11-.703.64-.25 1.421-.25.64 0 1.078.078.453.062.797.172v1.531q-.406-.203-.875-.312-.469-.11-.89-.11-.438 0-.797.156-.344.141-.594.422-.235.266-.36.641t-.125.828q0 .484.125.86.141.374.391.64t.594.406q.36.141.797.141.203 0 .422-.031.234-.032.468-.078.235-.063.453-.125.235-.079.422-.172v1.422zm7.328 0q-.469.187-.969.265-.5.094-1.046.094-.782 0-1.407-.203-.625-.219-1.062-.64-.438-.423-.672-1.048-.234-.625-.234-1.453 0-.781.25-1.422.25-.656.703-1.109.468-.453 1.11-.703.64-.25 1.42-.25.642 0 1.08.078.452.062.796.172v1.531q-.406-.203-.875-.312-.469-.11-.89-.11-.438 0-.798.156-.343.141-.593.422-.235.266-.36.641t-.125.828q0 .484.125.86.14.374.39.64t.595.406q.36.141.797.141.203 0 .421-.031.235-.032.47-.078.234-.063.452-.125.235-.079.422-.172v1.422zm3.562-6.36v4.313q0 .531.204.812.203.281.609.281.39 0 .75-.328.375-.343.781-.89v-4.188h1.594v6.61h-1.375l-.031-.97q-.22.25-.438.454-.203.203-.453.36-.25.14-.547.218-.297.094-.656.094-.5 0-.89-.172-.376-.172-.641-.469-.25-.312-.375-.734t-.125-.953v-4.438h1.593zm10 2.563q.016-.36-.031-.625-.047-.266-.156-.422-.11-.172-.266-.25-.156-.078-.36-.078-.343 0-.718.297-.375.28-.828.937v4.188h-1.625v-6.61h1.437l.063.953q.156-.25.36-.453.202-.203.452-.344.25-.14.563-.218.312-.078.672-.078.5 0 .89.171.39.172.64.516.267.328.392.844.14.5.109 1.172h-1.594zm16.359.625q0 .906-.266 1.578-.25.656-.718 1.094-.453.437-1.078.656-.625.203-1.36.203-.719 0-1.344-.11-.625-.093-1.187-.28v-8.923h1.594v2.172l-.078 1.297q.359-.469.828-.734.484-.281 1.156-.281.594 0 1.047.234.453.234.765.672.313.422.47 1.047.171.61.171 1.375zm-1.672.062q0-.547-.078-.922-.078-.39-.234-.64-.141-.25-.36-.36-.203-.109-.468-.109-.407 0-.782.328-.36.313-.765.875v2.89q.187.079.453.126.281.047.562.047.375 0 .688-.157.312-.156.531-.437.219-.297.328-.703.125-.422.125-.938zm8.812-.453q0 .156-.015.422-.016.266-.031.484h-4.344q0 .438.125.782.14.328.375.546.25.22.594.344.343.11.75.11.484 0 1.03-.063.563-.078 1.157-.25v1.266q-.266.062-.562.125-.297.062-.61.11-.312.046-.64.062-.313.03-.61.03-.75 0-1.36-.218-.593-.219-1.015-.64-.406-.422-.64-1.032-.22-.625-.22-1.437 0-.797.22-1.453.234-.672.625-1.141.406-.469.984-.719.578-.265 1.297-.265.703 0 1.234.218.547.22.906.61.36.39.547.937.203.531.203 1.172zm-1.625-.234q.016-.39-.093-.672-.11-.297-.297-.485-.172-.187-.406-.28-.235-.095-.516-.095-.594 0-.984.407-.375.406-.454 1.125h2.75zm9.125-3.797q-.297-.094-.687-.156-.391-.063-.797-.063-.281 0-.531.078-.235.078-.407.235-.172.156-.281.406-.094.25-.094.61v1.077h2.594v1.235h-2.594v4.422h-1.61v-4.422h-1.921v-1.235h1.922v-1.015q0-.688.203-1.188.203-.515.578-.828.375-.328.906-.469.532-.156 1.172-.156.438 0 .828.063.391.046.72.125v1.28zm-6.844 1.234zm14.188 3.25q0 .781-.22 1.438-.218.64-.64 1.11-.422.452-1.031.718-.594.25-1.375.25-.734 0-1.312-.219-.579-.219-.985-.64-.406-.422-.625-1.063-.203-.656-.203-1.5 0-.781.219-1.422.234-.656.64-1.11.422-.452 1.032-.702.609-.25 1.375-.25.734 0 1.312.218.578.22.985.657.406.421.609 1.062.219.625.219 1.453zm-1.657.047q0-1.031-.39-1.547-.375-.515-1.14-.515-.407 0-.704.156t-.484.453q-.188.281-.282.656-.078.375-.078.797 0 1.047.407 1.578.421.516 1.14.516.406 0 .688-.156.297-.172.484-.454.188-.28.266-.656.093-.39.093-.828zm7.281-.734q.016-.36-.03-.625-.048-.266-.157-.422-.11-.172-.266-.25-.156-.078-.36-.078-.343 0-.718.297-.375.28-.828.937v4.188h-1.625v-6.61h1.437l.063.953q.156-.25.36-.453.202-.203.452-.344.25-.14.563-.218.312-.078.672-.078.5 0 .89.171.391.172.641.516.266.328.39.844.141.5.11 1.172h-1.594zm8.844.234q0 .156-.016.422-.015.266-.031.484h-4.344q0 .438.125.782.14.328.375.546.25.22.594.344.344.11.75.11.484 0 1.031-.063.563-.078 1.156-.25v1.266q-.265.062-.562.125-.297.062-.61.11-.312.046-.64.062-.313.03-.61.03-.75 0-1.359-.218-.594-.219-1.015-.64-.407-.422-.641-1.032-.219-.625-.219-1.437 0-.797.219-1.453.234-.672.625-1.141.406-.469.984-.719.578-.265 1.297-.265.703 0 1.235.218.546.22.906.61t.547.937q.203.531.203 1.172zm-1.625-.234q.015-.39-.094-.672-.11-.297-.297-.485-.172-.187-.406-.28-.234-.095-.516-.095-.593 0-.984.407-.375.406-.453 1.125h2.75zm15.859 3.797q-.469.187-.969.265-.5.094-1.047.094-.781 0-1.406-.203-.625-.219-1.063-.64-.437-.423-.672-1.048-.234-.625-.234-1.453 0-.781.25-1.422.25-.656.703-1.109.469-.453 1.11-.703.64-.25 1.421-.25.641 0 1.079.078.453.062.796.172v1.531q-.406-.203-.875-.312-.468-.11-.89-.11-.438 0-.797.156-.344.141-.594.422-.234.266-.36.641-.124.375-.124.828 0 .484.125.86.14.374.39.64t.594.406q.36.141.797.141.203 0 .422-.031.234-.032.469-.078.234-.063.453-.125.234-.079.422-.172v1.422zm7.937-3.11q0 .781-.219 1.438-.219.64-.64 1.11-.422.452-1.032.718-.593.25-1.375.25-.734 0-1.312-.219-.578-.219-.985-.64-.406-.422-.625-1.063-.203-.656-.203-1.5 0-.781.22-1.422.233-.656.64-1.11.422-.452 1.031-.702.61-.25 1.375-.25.734 0 1.312.218.579.22.985.657.406.421.61 1.062.218.625.218 1.453zm-1.656.047q0-1.031-.39-1.547-.376-.515-1.142-.515-.406 0-.703.156-.297.156-.484.453-.188.281-.281.656-.078.375-.078.797 0 1.047.406 1.578.422.516 1.14.516.407 0 .688-.156.297-.172.484-.454.188-.28.266-.656.094-.39.094-.828zm6.968 3.313v-4.313q0-1.078-.797-1.078-.406 0-.78.328-.36.313-.767.875v4.188h-1.593v-6.61h1.375l.031.969q.203-.25.422-.453.219-.219.469-.36.265-.14.546-.218.297-.078.657-.078.515 0 .89.171.375.157.625.47.266.296.391.718t.125.953v4.438h-1.594zm7.328 0v-4.313q0-1.078-.797-1.078-.406 0-.781.328-.36.313-.766.875v4.188h-1.593v-6.61h1.375l.03.969q.204-.25.423-.453.218-.219.468-.36.266-.14.547-.218.297-.078.657-.078.515 0 .89.171.375.157.625.47.266.296.39.718.126.422.126.953v4.438h-1.594zm9.156-3.813q0 .156-.016.422-.015.266-.03.484h-4.345q0 .438.125.782.141.328.375.546.25.22.594.344.344.11.75.11.485 0 1.031-.063.563-.078 1.157-.25v1.266q-.266.062-.563.125-.297.062-.61.11-.312.046-.64.062-.312.03-.61.03-.75 0-1.359-.218-.593-.219-1.015-.64-.406-.422-.64-1.032-.22-.625-.22-1.437 0-.797.22-1.453.234-.672.624-1.141.406-.469.985-.719.578-.265 1.296-.265.704 0 1.235.218.547.22.906.61.36.39.547.937.203.531.203 1.172zm-1.625-.234q.016-.39-.094-.672-.11-.297-.297-.485-.171-.187-.406-.28-.234-.095-.515-.095-.594 0-.985.407-.375.406-.453 1.125h2.75zm8.531 3.797q-.469.187-.969.265-.5.094-1.047.094-.78 0-1.406-.203-.625-.219-1.062-.64-.438-.423-.672-1.048-.235-.625-.235-1.453 0-.781.25-1.422.25-.656.704-1.109.468-.453 1.109-.703.64-.25 1.422-.25.64 0 1.078.078.453.062.797.172v1.531q-.406-.203-.875-.312-.469-.11-.89-.11-.438 0-.798.156-.343.141-.593.422-.235.266-.36.641t-.125.828q0 .484.125.86.14.374.39.64t.595.406q.359.141.796.141.204 0 .422-.031.235-.032.47-.078.233-.063.452-.125.235-.079.422-.172v1.422zm7.437.187q-.437.094-.875.156-.422.063-.812.063-.656 0-1.125-.14-.469-.141-.781-.423-.313-.28-.47-.703-.14-.437-.14-1.031v-3.234h-1.765v-1.235h1.765v-1.687l1.625-.438v2.125h2.578v1.235h-2.578v3.109q0 .562.266.86.265.28.875.28.39 0 .75-.062.375-.062.687-.14v1.265zm5.766-8.36q0 .22-.078.407-.079.187-.22.328-.14.14-.327.219-.188.078-.407.078-.218 0-.421-.078-.188-.078-.329-.219-.14-.14-.218-.328-.078-.188-.078-.406 0-.219.078-.407.078-.187.218-.328.141-.14.329-.218.203-.094.421-.094.22 0 .407.094.187.078.328.218.14.141.219.328.078.188.078.407zm-1.75 3.048h-1.875v-1.235h3.5v5.375h1.906v1.235h-5.64v-1.235h2.109v-4.14zm11.14 2.015q0 .781-.219 1.438-.218.64-.64 1.11-.422.452-1.032.718-.593.25-1.375.25-.734 0-1.312-.219-.578-.219-.984-.64-.407-.422-.625-1.063-.204-.656-.204-1.5 0-.781.22-1.422.234-.656.64-1.11.422-.452 1.031-.702.61-.25 1.375-.25.734 0 1.313.218.578.22.984.657.406.421.61 1.062.218.625.218 1.453zm-1.656.047q0-1.031-.39-1.547-.376-.515-1.141-.515-.407 0-.704.156-.296.156-.484.453-.187.281-.281.656-.078.375-.078.797 0 1.047.406 1.578.422.516 1.14.516.407 0 .688-.156.297-.172.484-.454.188-.28.266-.656.094-.39.094-.828zm6.968 3.313v-4.313q0-1.078-.797-1.078-.406 0-.78.328-.36.313-.766.875v4.188h-1.594v-6.61h1.375l.031.969q.203-.25.422-.453.219-.219.469-.36.265-.14.547-.218.296-.078.656-.078.515 0 .89.171.375.157.625.47.266.296.391.718t.125.953v4.438h-1.594zm3.688 0v-8.5h5.109v1.343h-3.484v2.125h3.328v1.313h-3.328v2.36h3.484v1.359h-5.11zm10.968 0v-4.313q0-1.078-.797-1.078-.406 0-.781.328-.36.313-.766.875v4.188h-1.593v-6.61h1.375l.03.969q.204-.25.423-.453.218-.219.468-.36.266-.14.547-.218.297-.078.657-.078.515 0 .89.171.375.157.625.47.266.296.39.718.126.422.126.953v4.438h-1.594zm7.547 0-.032-.97q-.218.25-.437.454-.219.203-.484.36-.25.14-.547.218-.282.094-.625.094-.594 0-1.047-.235-.453-.234-.766-.671-.312-.438-.469-1.047-.156-.625-.156-1.39 0-.907.25-1.563.266-.672.719-1.11.453-.453 1.078-.656.625-.219 1.36-.219.25 0 .5.031.25.032.437.094v-2.594h1.594v9.204h-1.375zm-2.907-3.25q0 .546.079.937.078.375.218.625.157.25.36.375.218.11.5.11.39 0 .75-.329.375-.328.781-.89v-2.89q-.188-.079-.469-.126-.265-.047-.547-.047-.39 0-.703.156-.297.157-.515.454-.22.28-.344.703-.11.406-.11.922zm6.547 4.5q.39.015.719-.047.344-.047.594-.188.25-.125.39-.328.156-.187.156-.453 0-.188-.062-.313-.047-.14-.14-.234-.079-.11-.173-.203l-.187-.219q-.078-.125-.14-.265-.048-.157-.048-.36 0-.203.063-.39.078-.204.203-.344.14-.156.344-.235.203-.093.453-.093.312 0 .562.14.266.141.438.391t.266.578q.093.328.093.672 0 .61-.218 1.14-.22.532-.672.922-.438.407-1.094.641-.656.234-1.547.234v-1.046zm19.953-5.063q0 .156-.016.422-.015.266-.031.484h-4.344q0 .438.125.782.14.328.375.546.25.22.594.344.344.11.75.11.484 0 1.031-.063.563-.078 1.156-.25v1.266q-.265.062-.562.125-.297.062-.61.11-.312.046-.64.062-.313.03-.61.03-.75 0-1.359-.218-.594-.219-1.015-.64-.407-.422-.641-1.032-.219-.625-.219-1.437 0-.797.219-1.453.234-.672.625-1.141.406-.469.984-.719.578-.265 1.297-.265.703 0 1.235.218.546.22.906.61t.547.937q.203.531.203 1.172zm-1.625-.234q.015-.39-.094-.672-.11-.297-.297-.485-.172-.187-.406-.28-.234-.095-.516-.095-.593 0-.984.407-.375.406-.453 1.125h2.75zm5.906 1.64q.265 0 .5.11.234.093.406.265.188.172.281.407.094.234.094.5 0 .265-.094.5-.093.234-.281.406-.172.172-.406.265-.235.11-.5.11-.266 0-.5-.11-.219-.093-.39-.265-.157-.172-.266-.406-.094-.235-.094-.5 0-.266.094-.5.109-.235.265-.407.172-.172.39-.265.235-.11.5-.11zm9.562-3.047q.188.235.266.485.078.25.078.5 0 .562-.203.984-.188.422-.547.703-.344.282-.828.438-.485.14-1.063.14-.344 0-.64-.062-.297-.078-.438-.156-.11.11-.187.25-.079.125-.079.297 0 .093.047.203.047.11.14.187.11.078.25.14.142.048.313.048l1.579.062q.515.016.937.14.438.11.734.329.313.219.47.547.171.312.171.719 0 .453-.203.859-.203.422-.625.719t-1.047.468q-.625.188-1.453.188-.797 0-1.375-.125t-.953-.36q-.36-.218-.531-.546-.172-.313-.172-.688 0-.234.047-.437.062-.188.171-.375.125-.172.297-.328.188-.172.422-.344-.312-.188-.484-.469-.172-.281-.172-.61 0-.218.062-.406.063-.203.157-.375.093-.171.218-.328.125-.172.266-.328-.25-.25-.406-.578-.156-.344-.156-.86 0-.562.187-.984.203-.437.547-.734.36-.297.844-.438.484-.156 1.062-.156.297 0 .563.031.265.016.484.094h2.297v1.156h-1.047zm-3.734 6.329q0 .39.375.562.39.188 1.093.188.454 0 .766-.094.313-.078.5-.219.203-.125.281-.312.078-.188.078-.375 0-.172-.078-.297t-.234-.203q-.14-.079-.344-.125-.187-.032-.437-.047l-1.391-.032q-.187.125-.312.235-.125.125-.188.234-.062.125-.094.235-.015.125-.015.25zm.265-5.297q0 .531.297.843.313.297.875.297.297 0 .5-.093.219-.094.36-.25.156-.172.218-.391.078-.219.078-.453 0-.547-.312-.86-.313-.312-.86-.312-.296 0-.515.11-.219.093-.36.265-.14.156-.218.375-.063.219-.063.469zm8.563 2.015q.265 0 .5.11.234.093.406.265.187.172.281.407.094.234.094.5 0 .265-.094.5-.094.234-.281.406-.172.172-.406.265-.235.11-.5.11-.266 0-.5-.11-.22-.093-.391-.265-.156-.172-.266-.406-.093-.235-.093-.5 0-.266.093-.5.11-.235.266-.407.172-.172.39-.265.235-.11.5-.11zm17.358 2.407h-1.765l-.703-2.094-.203-.735-.22.75-.671 2.079h-1.781l-.938-6.61h1.516l.469 3.735.109 1.015.281-.906.656-2.016h1.204l.718 2 .297.938.125-1.047.406-3.719h1.438l-.938 6.61zm5.797-8.422q0 .218-.078.406-.078.187-.219.328-.14.14-.328.219-.187.078-.406.078-.219 0-.422-.078-.188-.078-.328-.219-.14-.14-.219-.328-.078-.188-.078-.406 0-.219.078-.407.078-.187.219-.328.14-.14.328-.218.203-.094.422-.094.219 0 .406.094.188.078.328.218.14.141.219.328.078.188.078.407zm-1.75 3.047h-1.875v-1.235h3.5v5.375h1.906v1.235h-5.64v-1.235h2.109v-4.14zm10.64 5.312q-.437.094-.875.156-.421.063-.812.063-.656 0-1.125-.14-.469-.141-.781-.423-.313-.28-.47-.703-.14-.437-.14-1.031v-3.234h-1.765v-1.235h1.765v-1.687l1.625-.438v2.125h2.578v1.235h-2.578v3.109q0 .562.266.86.266.28.875.28.39 0 .75-.062.375-.062.687-.14v1.265zm5.813.063v-4.313q0-1.078-.797-1.078-.406 0-.781.328-.36.313-.766.875v4.188h-1.594v-9.204h1.594v2.266l-.078 1.203q.187-.234.39-.422.22-.203.454-.328.25-.14.53-.203.282-.062.61-.062.516 0 .89.171.376.157.626.47.265.296.39.718t.125.953v4.438h-1.593zm14.296-7.172v7.172h-1.64v-7.172h-2.329v-1.328h6.297v1.328h-2.328zm9.375 6.843q-.563.22-1.094.329-.531.109-1.11.109-.906 0-1.624-.266-.703-.265-1.188-.797-.484-.53-.734-1.328-.25-.797-.25-1.843 0-1.063.265-1.891.282-.844.782-1.422.515-.578 1.234-.875.734-.312 1.64-.312.298 0 .548.015.265.016.5.047.25.031.5.094.265.062.53.156v1.578q-.546-.25-1.046-.36-.5-.109-.922-.109-.594 0-1.031.22-.422.202-.703.609-.282.39-.407.937-.125.531-.125 1.188 0 .687.125 1.234.141.547.422.922.282.375.703.578.438.187 1.047.187.203 0 .453-.03.25-.048.5-.11.266-.078.516-.172.25-.094.469-.188v1.5zm7.578-5.468q0 .656-.22 1.218-.218.563-.655.985-.438.406-1.094.64-.64.22-1.5.22h-.813v2.734h-1.625v-8.5h2.5q.829 0 1.454.187.64.172 1.062.516.438.343.656.843.235.5.235 1.157zm-1.672.11q0-.345-.11-.61-.109-.282-.328-.469-.218-.203-.562-.297-.328-.11-.781-.11h-.829v3.11h.891q.406 0 .719-.11.328-.109.547-.327.218-.22.328-.516.125-.297.125-.672zm12.374-1.47v2.36h3.22v1.312h-3.22v3.485h-1.625v-8.5h5.016v1.343h-3.39zm9.547 7.157-.031-.86q-.22.219-.453.406-.22.188-.5.329-.266.125-.594.203-.313.078-.703.078-.5 0-.89-.156-.376-.157-.642-.422-.265-.266-.406-.64-.125-.376-.125-.829 0-.469.203-.86.203-.406.61-.687.406-.297 1.015-.453.61-.156 1.422-.156h.875v-.407q0-.25-.078-.453t-.234-.343q-.157-.157-.407-.235-.25-.078-.625-.078-.593 0-1.171.14-.563.126-1.094.376v-1.266q.484-.203 1.094-.312.625-.125 1.296-.125.735 0 1.266.14t.86.422q.343.266.5.688.171.421.171.984v4.516h-1.36zm-.219-2.922h-.969q-.406 0-.687.078t-.469.219q-.172.125-.25.312-.078.172-.078.375 0 .406.25.625.266.203.719.203.328 0 .687-.234.36-.25.797-.688v-.89zm8.86.968q0 .579-.25.985-.25.39-.673.64-.406.25-.937.36-.516.125-1.063.125-.734 0-1.328-.078-.578-.063-1.093-.188v-1.437q.609.25 1.218.375.61.11 1.157.11.625 0 .921-.204.313-.203.313-.516 0-.156-.063-.28-.062-.126-.25-.235-.171-.11-.5-.235-.328-.125-.843-.265-.5-.14-.875-.313-.36-.172-.61-.406-.234-.234-.36-.531-.108-.313-.108-.735 0-.406.171-.765.188-.36.547-.625.375-.266.907-.422.546-.156 1.265-.156.625 0 1.11.062.484.063.843.14v1.298q-.562-.188-1.062-.25-.5-.079-.985-.079-.484 0-.78.172-.298.172-.298.485 0 .156.047.281.063.11.235.219.187.11.484.234.312.11.828.25.563.172.953.36.39.187.625.421.25.235.344.532.11.296.11.671zm7.327 1.891q-.437.094-.875.156-.422.063-.812.063-.657 0-1.125-.14-.47-.141-.782-.423-.312-.28-.468-.703-.14-.437-.14-1.031v-3.234h-1.767v-1.235h1.766v-1.687l1.625-.438v2.125h2.578v1.235h-2.578v3.109q0 .562.266.86.265.28.875.28.39 0 .75-.062.375-.062.687-.14v1.265zm15.39-4.219q0 1.157-.28 2-.267.828-.735 1.375-.469.532-1.11.797-.64.266-1.359.266-1.672 0-2.531-1.11-.844-1.125-.844-3.25 0-1.171.266-2 .28-.843.75-1.375.468-.546 1.109-.812.64-.266 1.36-.266 1.671 0 2.515 1.125.86 1.11.86 3.25zm-1.703.078q0-1.515-.406-2.25-.39-.75-1.328-.75-.453 0-.781.204-.329.187-.547.562-.203.36-.297.906-.094.547-.094 1.25 0 1.5.406 2.25.407.735 1.313.735.469 0 .797-.188.328-.187.531-.562.219-.375.312-.907.094-.546.094-1.25zm8.797.782q0 .906-.266 1.578-.25.656-.719 1.094-.453.437-1.078.656-.625.203-1.359.203-.25 0-.5-.031-.25-.032-.438-.078v2.578h-1.593v-9.188h1.375l.031.969q.203-.25.422-.453.219-.219.469-.36.265-.14.546-.218.297-.078.657-.078.593 0 1.047.234.453.234.765.672.313.422.469 1.047.172.61.172 1.375zm-1.672.062q0-.547-.078-.922-.078-.39-.235-.64-.14-.25-.359-.36-.203-.109-.469-.109-.406 0-.78.328-.36.313-.767.875v2.89q.188.079.454.126.28.047.562.047.375 0 .688-.157.312-.156.53-.437.22-.297.329-.703.125-.422.125-.938zm8.812-.453q0 .156-.015.422-.016.266-.032.484h-4.343q0 .438.125.782.14.328.375.546.25.22.593.344.344.11.75.11.485 0 1.032-.063.562-.078 1.156-.25v1.266q-.266.062-.563.125-.297.062-.609.11-.313.046-.64.062-.313.03-.61.03-.75 0-1.36-.218-.593-.219-1.015-.64-.406-.422-.64-1.032-.22-.625-.22-1.437 0-.797.22-1.453.234-.672.624-1.141.407-.469.985-.719.578-.265 1.297-.265.703 0 1.234.218.547.22.906.61.36.39.547.937.203.531.203 1.172zm-1.625-.234q.016-.39-.094-.672-.109-.297-.296-.485-.172-.187-.407-.28-.234-.095-.515-.095-.594 0-.985.407-.375.406-.453 1.125h2.75zm7.125 4.047v-4.313q0-1.078-.797-1.078-.406 0-.781.328-.36.313-.766.875v4.188h-1.594v-6.61h1.375l.032.969q.203-.25.422-.453.218-.219.468-.36.266-.14.547-.218.297-.078.656-.078.516 0 .891.171.375.157.625.47.266.296.39.718.126.422.126.953v4.438h-1.594z"/><path d="m721.097 217.754 30.645.85"/><path stroke="#000" stroke-width="2" stroke-linejoin="round" stroke-linecap="butt" stroke-dasharray="2.0,6.0" d="m721.097 217.754 30.645.85"/><path d="m467.509 217.754 30.645.85"/><path stroke="#000" stroke-width="2" stroke-linejoin="round" stroke-linecap="butt" stroke-dasharray="2.0,6.0" d="m467.509 217.754 30.645.85"/><path d="m115.48 426.972 26.898.976"/><path stroke="#000" stroke-width="2" stroke-linejoin="round" stroke-linecap="butt" stroke-dasharray="2.0,6.0" d="m115.48 426.972 26.898.976"/><path d="M561.5 217.292h28.598"/><path stroke="#000" stroke-width="2" stroke-linejoin="round" stroke-linecap="butt" stroke-dasharray="2.0,6.0" d="M561.5 217.292h28.598"/><path d="M142.51 414.068h631.466v31.937H142.51z"/><path fill="#000" d="M158.042 426.508q-.562.219-1.094.328-.53.11-1.109.11-.906 0-1.625-.266-.703-.266-1.187-.797-.485-.531-.735-1.328t-.25-1.844q0-1.062.266-1.89.281-.844.781-1.422.516-.578 1.234-.875.735-.313 1.641-.313.297 0 .547.016.266.016.5.047.25.031.5.094.266.062.531.156v1.578q-.547-.25-1.047-.36-.5-.109-.922-.109-.593 0-1.03.219-.423.203-.704.61-.281.39-.406.937-.125.531-.125 1.187 0 .688.125 1.235.14.547.422.922.28.375.703.578.437.187 1.047.187.203 0 .453-.031.25-.047.5-.11.265-.078.515-.171.25-.094.47-.188v1.5zm3.844-7.625h-1.875v-1.25h3.5v7.969h1.906v1.234h-5.64v-1.234h2.109v-6.719zm9.078-.469q0 .22-.079.407-.078.187-.218.328-.141.14-.328.219-.188.078-.407.078-.218 0-.422-.078-.187-.079-.328-.22-.14-.14-.218-.327-.079-.188-.079-.407 0-.218.079-.406.078-.187.218-.328.14-.14.328-.219.204-.093.422-.093.219 0 .407.093.187.078.328.22.14.14.218.327.079.188.079.406zm-1.75 3.047h-1.875v-1.234h3.5v5.375h1.906v1.234h-5.64v-1.234h2.109v-4.14zm10.952 1.563q0 .156-.015.422l-.031.484h-4.344q0 .438.125.781.14.328.375.547.25.219.594.344.343.11.75.11.484 0 1.03-.063.563-.078 1.157-.25v1.265q-.266.063-.562.125-.297.063-.61.11-.312.047-.64.062-.313.032-.61.032-.75 0-1.36-.22-.593-.218-1.015-.64-.406-.422-.64-1.031-.22-.625-.22-1.438 0-.796.22-1.453.234-.672.625-1.14.406-.47.984-.72.578-.265 1.297-.265.703 0 1.234.22.547.218.906.608.36.391.547.938.203.531.203 1.172zm-1.625-.235q.016-.39-.093-.671-.11-.297-.297-.485-.172-.187-.406-.281-.235-.094-.516-.094-.594 0-.984.406-.375.407-.454 1.125h2.75zm7.125 4.047v-4.312q0-1.078-.797-1.078-.406 0-.781.328-.36.312-.766.875v4.187h-1.593v-6.61h1.375l.03.97q.204-.25.423-.453.219-.22.469-.36.265-.14.546-.219.297-.078.657-.078.515 0 .89.172.375.156.625.469.266.297.39.719.126.422.126.953v4.437h-1.594zm8.844-.062q-.438.094-.875.156-.422.063-.813.063-.656 0-1.125-.141-.469-.14-.781-.422-.313-.281-.469-.703-.14-.438-.14-1.031v-3.235h-1.766v-1.234h1.766v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.265.86.266.28.875.28.39 0 .75-.062.375-.063.688-.14v1.265zm2.609-2.781v-1.407h4.047v1.407h-4.047zm12.046.89q0 .578-.25.985-.25.39-.672.64-.406.25-.937.36-.516.125-1.063.125-.734 0-1.328-.079-.578-.062-1.093-.187v-1.438q.609.25 1.218.375.61.11 1.157.11.625 0 .921-.203.313-.203.313-.516 0-.156-.063-.281-.062-.125-.25-.235-.171-.109-.5-.234-.328-.125-.843-.266-.5-.14-.875-.312-.36-.172-.61-.406-.234-.235-.359-.532-.11-.312-.11-.734 0-.406.172-.766.188-.359.547-.625.375-.265.907-.421.546-.157 1.265-.157.625 0 1.11.063.484.062.843.14v1.297q-.562-.187-1.062-.25-.5-.078-.985-.078-.484 0-.78.172-.298.172-.298.484 0 .157.047.282.063.11.235.218.187.11.484.235.312.11.828.25.563.172.953.36.39.187.625.421.25.234.344.531.11.297.11.672zm5.766-6.469q0 .22-.078.407-.079.187-.22.328-.14.14-.327.219-.188.078-.407.078-.218 0-.421-.078-.188-.079-.329-.22-.14-.14-.218-.327-.078-.188-.078-.407 0-.218.078-.406.078-.187.218-.328.141-.14.329-.219.203-.093.421-.093.22 0 .407.093.187.078.328.22.14.14.219.327.078.188.078.406zm-1.75 3.047h-1.875v-1.234h3.5v5.375h1.906v1.234h-5.64v-1.234h2.109v-4.14zm9.343 5.375-.031-.968q-.219.25-.438.453-.218.203-.484.36-.25.14-.547.218-.281.094-.625.094-.594 0-1.047-.235-.453-.234-.765-.672-.313-.437-.469-1.047-.156-.625-.156-1.39 0-.906.25-1.563.265-.672.718-1.11.454-.452 1.079-.655.625-.22 1.359-.22.25 0 .5.032.25.031.437.094v-2.594h1.594v9.203h-1.375zm-2.906-3.25q0 .547.078.938.078.375.219.625.156.25.36.375.218.11.5.11.39 0 .75-.329.374-.328.78-.89v-2.891q-.187-.078-.468-.125-.266-.047-.547-.047-.39 0-.703.156-.297.156-.516.453-.219.282-.344.703-.109.407-.109.922zm11.843-.562q0 .156-.015.422l-.031.484h-4.344q0 .438.125.781.14.328.375.547.25.219.594.344.343.11.75.11.484 0 1.03-.063.563-.078 1.157-.25v1.265q-.266.063-.562.125-.297.063-.61.11-.312.047-.64.062-.313.032-.61.032-.75 0-1.36-.22-.593-.218-1.015-.64-.406-.422-.64-1.031-.22-.625-.22-1.438 0-.796.22-1.453.234-.672.625-1.14.406-.47.984-.72.578-.265 1.297-.265.703 0 1.234.22.547.218.906.608.36.391.547.938.203.531.203 1.172zm-1.625-.235q.016-.39-.093-.671-.11-.297-.297-.485-.172-.187-.406-.281-.235-.094-.516-.094-.594 0-.984.406-.375.407-.454 1.125h2.75zm14.672 4.047-.031-.968q-.22.25-.438.453-.219.203-.484.36-.25.14-.547.218-.281.094-.625.094-.594 0-1.047-.235-.453-.234-.766-.672-.312-.437-.468-1.047-.157-.625-.157-1.39 0-.906.25-1.563.266-.672.72-1.11.452-.452 1.077-.655.625-.22 1.36-.22.25 0 .5.032.25.031.437.094v-2.594h1.594v9.203h-1.375zm-2.906-3.25q0 .547.078.938.078.375.218.625.157.25.36.375.219.11.5.11.39 0 .75-.329.375-.328.781-.89v-2.891q-.187-.078-.469-.125-.265-.047-.547-.047-.39 0-.703.156-.297.156-.515.453-.22.282-.344.703-.11.407-.11.922zm11.843-.562q0 .156-.016.422-.015.265-.03.484h-4.345q0 .438.125.781.141.328.375.547.25.219.594.344.344.11.75.11.485 0 1.031-.063.563-.078 1.157-.25v1.265q-.266.063-.563.125-.297.063-.61.11-.312.047-.64.062-.312.032-.61.032-.75 0-1.359-.22-.593-.218-1.015-.64-.406-.422-.64-1.031-.22-.625-.22-1.438 0-.796.22-1.453.234-.672.624-1.14.406-.47.985-.72.578-.265 1.296-.265.704 0 1.235.22.547.218.906.608.36.391.547.938.203.531.203 1.172zm-1.625-.235q.016-.39-.094-.671-.11-.297-.297-.485-.171-.187-.406-.281-.234-.094-.515-.094-.594 0-.985.406-.375.407-.453 1.125h2.75zm5.328-3.906h-1.875v-1.25h3.5v7.969h1.906v1.234h-5.64v-1.234h2.109v-6.719zm9.328 7.953-.031-.86q-.22.22-.454.407-.218.188-.5.328-.265.125-.593.203-.313.079-.703.079-.5 0-.891-.157-.375-.156-.64-.422-.266-.265-.407-.64-.125-.375-.125-.828 0-.47.203-.86.203-.406.61-.687.406-.297 1.015-.453.61-.157 1.422-.157h.875v-.406q0-.25-.078-.453t-.234-.344q-.157-.156-.407-.234-.25-.078-.625-.078-.593 0-1.172.14-.562.125-1.093.375v-1.265q.484-.203 1.093-.313.625-.125 1.297-.125.735 0 1.266.14.531.142.86.423.343.265.5.687.171.422.171.985v4.515h-1.36zm-.219-2.922h-.969q-.406 0-.687.079-.281.078-.469.218-.172.125-.25.313-.078.172-.078.375 0 .406.25.625.266.203.719.203.328 0 .687-.234.36-.25.797-.688v-.89zm7.375 2.204q-.344.859-.719 1.5-.375.656-.828 1.078-.438.437-.984.656-.547.219-1.235.219-.172 0-.36-.016-.187-.016-.39-.047v-1.344q.078 0 .172.016l.219.031q.11.016.219.016.125.016.218.016.266 0 .5-.11.235-.11.438-.297t.36-.437q.171-.25.28-.563l-2.609-6.61h1.766l1.375 3.75.406 1.204.406-1.156 1.39-3.797h1.704l-2.328 5.89zm8.812-1.235q0 .578-.25.985-.25.39-.672.64-.406.25-.937.36-.516.125-1.063.125-.734 0-1.328-.079-.578-.062-1.094-.187v-1.438q.61.25 1.219.375.61.11 1.156.11.625 0 .922-.203.313-.203.313-.516 0-.156-.063-.281-.062-.125-.25-.235-.172-.109-.5-.234t-.844-.266q-.5-.14-.875-.312-.359-.172-.609-.406-.234-.235-.36-.532-.109-.312-.109-.734 0-.406.172-.766.188-.359.547-.625.375-.265.906-.421.547-.157 1.266-.157.625 0 1.11.063.484.062.843.14v1.297q-.562-.187-1.062-.25-.5-.078-.985-.078-.484 0-.781.172-.297.172-.297.484 0 .157.047.282.062.11.234.218.188.11.485.235.312.11.828.25.562.172.953.36.39.187.625.421.25.234.344.531.109.297.109.672zm14.546 1.703q-.468.188-.968.266-.5.094-1.047.094-.781 0-1.406-.203-.625-.22-1.063-.641-.437-.422-.672-1.047-.234-.625-.234-1.453 0-.781.25-1.422.25-.656.703-1.11.469-.452 1.11-.702.64-.25 1.421-.25.64 0 1.078.078.453.062.797.172v1.53q-.406-.202-.875-.312-.469-.11-.89-.11-.438 0-.797.157-.344.14-.594.422-.234.266-.36.64-.124.376-.124.829 0 .484.125.86.14.374.39.64.25.265.594.406.36.14.797.14.203 0 .422-.03.234-.032.468-.079.235-.062.454-.125.234-.078.421-.172v1.422zm6.125.25-.031-.86q-.219.22-.453.407-.219.188-.5.328-.266.125-.594.203-.313.079-.703.079-.5 0-.89-.157-.376-.156-.641-.422-.266-.265-.407-.64-.125-.375-.125-.828 0-.47.203-.86.204-.406.61-.687.406-.297 1.015-.453.61-.157 1.422-.157h.875v-.406q0-.25-.078-.453t-.234-.344q-.156-.156-.406-.234-.25-.078-.625-.078-.594 0-1.172.14-.563.125-1.094.375v-1.265q.484-.203 1.094-.313.625-.125 1.297-.125.734 0 1.265.14.531.142.86.423.343.265.5.687.171.422.171.985v4.515h-1.359zm-.219-2.922h-.968q-.407 0-.688.079-.281.078-.469.218-.172.125-.25.313-.078.172-.078.375 0 .406.25.625.266.203.719.203.328 0 .687-.234.36-.25.797-.688v-.89zm7.344 2.922v-4.312q0-1.078-.797-1.078-.406 0-.781.328-.36.312-.766.875v4.187h-1.594v-6.61h1.375l.032.97q.203-.25.422-.453.218-.22.468-.36.266-.14.547-.219.297-.078.656-.078.516 0 .891.172.375.156.625.469.266.297.39.719.126.422.126.953v4.437h-1.594zm16.671-3.36q0 .782-.219 1.438-.218.641-.64 1.11-.422.453-1.031.719-.594.25-1.375.25-.735 0-1.313-.22-.578-.218-.984-.64-.407-.422-.625-1.062-.203-.657-.203-1.5 0-.782.218-1.422.235-.656.641-1.11.422-.453 1.031-.703.61-.25 1.375-.25.735 0 1.313.22.578.218.984.655.406.422.61 1.063.218.625.218 1.453zm-1.656.048q0-1.031-.39-1.547-.376-.516-1.141-.516-.407 0-.703.157-.297.156-.485.453-.187.28-.281.656-.078.375-.078.797 0 1.047.406 1.578.422.516 1.14.516.407 0 .688-.157.297-.172.485-.453.187-.281.265-.656.094-.39.094-.828zm8.375 3.062q-.469.188-.969.266-.5.094-1.047.094-.781 0-1.406-.203-.625-.22-1.063-.641-.437-.422-.672-1.047-.234-.625-.234-1.453 0-.781.25-1.422.25-.656.703-1.11.469-.452 1.11-.702.64-.25 1.421-.25.641 0 1.079.078.453.062.796.172v1.53q-.406-.202-.875-.312-.468-.11-.89-.11-.438 0-.797.157-.344.14-.594.422-.234.266-.36.64-.124.376-.124.829 0 .484.125.86.14.374.39.64.25.265.594.406.36.14.797.14.203 0 .422-.03.234-.032.469-.079.234-.062.453-.125.234-.078.422-.172v1.422zm7.328 0q-.47.188-.97.266-.5.094-1.046.094-.781 0-1.406-.203-.625-.22-1.063-.641-.437-.422-.672-1.047-.234-.625-.234-1.453 0-.781.25-1.422.25-.656.703-1.11.469-.452 1.11-.702.64-.25 1.421-.25.641 0 1.078.078.454.062.797.172v1.53q-.406-.202-.875-.312-.468-.11-.89-.11-.438 0-.797.157-.344.14-.594.422-.234.266-.36.64-.124.376-.124.829 0 .484.125.86.14.374.39.64.25.265.594.406.36.14.797.14.203 0 .422-.03.234-.032.469-.079.234-.062.453-.125.234-.078.422-.172v1.422zm3.562-6.36v4.313q0 .532.203.813.203.281.61.281.39 0 .75-.328.374-.344.78-.89v-4.188h1.594v6.61h-1.375l-.03-.97q-.22.25-.438.454-.204.203-.454.36-.25.14-.546.218-.297.094-.657.094-.5 0-.89-.172-.375-.172-.64-.47-.25-.312-.376-.733-.125-.422-.125-.954v-4.437h1.594zm10 2.563q.015-.359-.032-.625-.047-.265-.156-.421-.11-.172-.266-.25-.156-.079-.359-.079-.344 0-.719.297-.375.282-.828.938v4.187h-1.625v-6.61h1.438l.062.954q.156-.25.36-.453.203-.203.453-.344.25-.14.562-.219.313-.078.672-.078.5 0 .89.172.391.172.641.516.266.328.39.844.142.5.11 1.171h-1.593zm16.358.625q0 .907-.265 1.579-.25.656-.719 1.093-.453.438-1.078.657-.625.203-1.36.203-.718 0-1.343-.11-.625-.093-1.188-.28v-8.923h1.594v2.172l-.078 1.297q.36-.469.828-.734.484-.282 1.156-.282.594 0 1.047.235.453.234.766.672.312.421.469 1.046.171.61.171 1.375zm-1.671.063q0-.547-.079-.922-.078-.39-.234-.64-.14-.25-.36-.36-.202-.11-.468-.11-.406 0-.781.329-.36.312-.766.875v2.89q.188.079.453.125.281.047.563.047.375 0 .687-.156.313-.156.531-.437.22-.297.329-.704.125-.421.125-.937zm8.812-.453q0 .156-.016.422-.015.265-.031.484h-4.344q0 .438.125.781.14.328.375.547.25.219.594.344.344.11.75.11.484 0 1.031-.063.563-.078 1.156-.25v1.265q-.265.063-.562.125-.297.063-.61.11-.312.047-.64.062-.313.032-.61.032-.75 0-1.359-.22-.594-.218-1.015-.64-.407-.422-.641-1.031-.219-.625-.219-1.438 0-.796.219-1.453.234-.672.625-1.14.406-.47.984-.72.578-.265 1.297-.265.703 0 1.235.22.546.218.906.608.36.391.547.938.203.531.203 1.172zm-1.625-.235q.015-.39-.094-.671-.11-.297-.297-.485-.172-.187-.406-.281-.234-.094-.516-.094-.593 0-.984.406-.375.407-.453 1.125h2.75zm9.125-3.796q-.297-.094-.688-.157-.39-.062-.797-.062-.281 0-.531.078-.234.078-.406.234-.172.157-.282.407-.093.25-.093.609v1.078h2.593v1.234h-2.593v4.422h-1.61v-4.422h-1.922v-1.234h1.922v-1.016q0-.687.203-1.187.204-.516.579-.828.375-.328.906-.469.531-.156 1.172-.156.437 0 .828.062.39.047.719.125v1.282zm-6.844 1.234zm14.187 3.25q0 .781-.219 1.437-.218.641-.64 1.11-.422.453-1.032.719-.593.25-1.375.25-.734 0-1.312-.22-.578-.218-.984-.64-.407-.422-.625-1.062-.204-.657-.204-1.5 0-.782.22-1.422.234-.656.64-1.11.422-.453 1.031-.703.61-.25 1.375-.25.734 0 1.313.22.578.218.984.655.406.422.61 1.063.218.625.218 1.453zm-1.656.047q0-1.031-.39-1.547-.376-.516-1.141-.516-.407 0-.704.157-.296.156-.484.453-.187.28-.281.656-.078.375-.078.797 0 1.047.406 1.578.422.516 1.14.516.407 0 .688-.157.297-.172.484-.453.188-.281.266-.656.094-.39.094-.828zm7.28-.735q.016-.359-.03-.625-.047-.265-.157-.421-.11-.172-.265-.25-.157-.079-.36-.079-.343 0-.718.297-.375.282-.829.938v4.187h-1.625v-6.61h1.438l.062.954q.157-.25.36-.453.203-.203.453-.344.25-.14.562-.219.313-.078.672-.078.5 0 .89.172.392.172.642.516.265.328.39.844.14.5.11 1.171h-1.594zm8.844.235q0 .156-.015.422-.016.265-.032.484h-4.343q0 .438.125.781.14.328.375.547.25.219.593.344.344.11.75.11.485 0 1.032-.063.562-.078 1.156-.25v1.265q-.266.063-.563.125-.297.063-.609.11-.313.047-.64.062-.313.032-.61.032-.75 0-1.36-.22-.593-.218-1.015-.64-.406-.422-.64-1.031-.22-.625-.22-1.438 0-.796.22-1.453.234-.672.624-1.14.407-.47.985-.72.578-.265 1.297-.265.703 0 1.234.22.547.218.906.608.36.391.547.938.203.531.203 1.172zm-1.625-.235q.016-.39-.094-.671-.109-.297-.296-.485-.172-.187-.407-.281-.234-.094-.515-.094-.594 0-.985.406-.375.407-.453 1.125h2.75zm15.968 3.985q-.437.094-.875.156-.421.063-.812.063-.656 0-1.125-.141-.469-.14-.781-.422-.313-.281-.469-.703-.14-.438-.14-1.031v-3.235h-1.766v-1.234h1.765v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.266.86.266.28.875.28.39 0 .75-.062.375-.063.687-.14v1.265zm5.813.062v-4.312q0-1.078-.797-1.078-.406 0-.781.328-.36.312-.766.875v4.187h-1.594v-9.203h1.594v2.266l-.078 1.203q.187-.234.39-.422.22-.203.454-.328.25-.14.53-.203.282-.063.61-.063.516 0 .89.172.376.156.626.469.265.297.39.719t.125.953v4.437h-1.593zm9.156-3.812q0 .156-.016.422l-.031.484h-4.344q0 .438.125.781.14.328.375.547.25.219.594.344.344.11.75.11.484 0 1.031-.063.563-.078 1.156-.25v1.265q-.265.063-.562.125-.297.063-.61.11-.312.047-.64.062-.313.032-.61.032-.75 0-1.359-.22-.594-.218-1.016-.64-.406-.422-.64-1.031-.219-.625-.219-1.438 0-.796.219-1.453.234-.672.625-1.14.406-.47.984-.72.578-.265 1.297-.265.703 0 1.234.22.547.218.907.608.36.391.547.938.203.531.203 1.172zm-1.625-.235q.015-.39-.094-.671-.11-.297-.297-.485-.172-.187-.406-.281-.235-.094-.516-.094-.594 0-.984.406-.375.407-.453 1.125h2.75zm16.593-.312q0 .984-.25 1.797-.234.812-.766 1.375-.515.562-1.328.875-.797.312-1.922.312h-2.156v-8.5h2.516q.968 0 1.703.25.734.235 1.219.75.5.5.734 1.282.25.78.25 1.859zm-1.719.11q0-.704-.11-1.235-.109-.547-.374-.922-.266-.375-.719-.562-.437-.204-1.094-.204h-.812v5.829h.703q1.187 0 1.797-.704.61-.703.61-2.203zm6.875 4.25-2.281-5.079-.469-1.094v6.172h-1.453v-8.5h1.969l2.328 5.11.406.984v-6.094h1.453v8.5h-1.953zm9.156-2.579q0 .703-.266 1.219-.25.516-.718.86-.453.327-1.094.5-.64.156-1.39.156-.673 0-1.298-.079-.625-.078-1.234-.265v-1.578q.297.093.625.187t.656.172q.328.063.64.11.329.03.642.03.453 0 .765-.077.328-.079.531-.22.204-.14.282-.327.093-.188.093-.407 0-.312-.187-.53-.172-.22-.469-.376-.281-.156-.656-.281-.375-.14-.766-.281-.375-.157-.75-.344-.375-.188-.672-.469-.296-.281-.484-.672-.172-.39-.172-.937 0-.5.188-.938.187-.453.578-.78.39-.345 1-.548.61-.203 1.469-.203.25 0 .53.031.282.016.548.063.265.031.515.078.266.047.469.11v1.452q-.203-.078-.453-.14-.25-.063-.516-.11-.265-.046-.531-.078-.266-.03-.5-.03-.437 0-.734.077-.282.063-.47.188-.187.125-.28.297-.078.171-.078.39 0 .266.171.453.188.188.485.344.297.156.672.297.375.125.765.281.39.156.766.36.375.187.672.468.297.266.469.657.187.375.187.89zm2.062 3.828q.39.016.719-.047.344-.046.594-.187.25-.125.39-.328.157-.188.157-.453 0-.188-.063-.313-.047-.14-.14-.234-.079-.11-.172-.203l-.188-.22q-.078-.124-.14-.265-.047-.156-.047-.36 0-.202.062-.39.078-.203.203-.343.14-.157.344-.235.203-.094.453-.094.313 0 .563.141.265.14.437.39t.266.579q.094.328.094.672 0 .61-.22 1.14-.218.532-.671.922-.438.406-1.094.64-.656.235-1.547.235v-1.047zm17.765-8.422v7.172h-1.64v-7.172h-2.328v-1.328h6.297v1.328h-2.329zm9.375 6.844q-.562.219-1.094.328-.53.11-1.109.11-.906 0-1.625-.266-.703-.266-1.187-.797-.485-.531-.735-1.328t-.25-1.844q0-1.062.266-1.89.281-.844.781-1.422.516-.578 1.234-.875.735-.313 1.641-.313.297 0 .547.016.266.016.5.047.25.031.5.094.266.062.531.156v1.578q-.547-.25-1.047-.36-.5-.109-.922-.109-.593 0-1.03.219-.423.203-.704.61-.281.39-.406.937-.125.531-.125 1.187 0 .688.125 1.235.14.547.422.922.28.375.703.578.437.187 1.047.187.203 0 .453-.031.25-.047.5-.11.265-.078.515-.171.25-.094.47-.188v1.5zm7.578-5.469q0 .657-.219 1.22-.218.562-.656.984-.437.406-1.094.64-.64.219-1.5.219h-.812v2.734h-1.625v-8.5h2.5q.828 0 1.453.188.64.172 1.062.515.438.344.657.844.234.5.234 1.156zm-1.672.11q0-.344-.11-.61-.109-.28-.327-.468-.22-.203-.563-.297-.328-.11-.781-.11h-.828v3.11h.89q.407 0 .72-.11.327-.109.546-.328.219-.218.328-.515.125-.297.125-.672zm4.234 7.094h-1.547l4.547-10.61h1.547l-4.547 10.61zm8.156-1.344q-1.312-.235-1.968-1.297-.641-1.078-.641-2.938 0-1.156.266-2 .28-.843.75-1.39.468-.547 1.109-.813.64-.28 1.36-.28 1.671 0 2.515 1.108.86 1.11.86 3.204 0 1-.204 1.765-.203.766-.578 1.313-.36.547-.86.875-.5.328-1.093.453.047.312.172.515.125.204.281.313.172.125.36.172.203.047.406.047.28 0 .562-.125.281-.11.5-.328l.735 1.093q-.407.36-.891.532-.484.187-.984.187-.61 0-1.094-.14-.485-.141-.828-.438-.344-.297-.532-.75-.187-.453-.203-1.078zm2.547-4.266q0-1.515-.406-2.25-.39-.75-1.297-.75-.453 0-.797.203-.328.188-.547.563-.203.36-.312.906-.094.547-.094 1.25 0 1.484.406 2.234.407.75 1.313.75.469 0 .797-.187.328-.188.53-.563.22-.375.313-.906.094-.547.094-1.25zm8.703 1.078q0 .813-.219 1.422-.218.61-.625 1.031-.406.407-1 .625-.578.204-1.312.204-.813 0-1.406-.204-.579-.218-.954-.609-.359-.39-.53-.953-.157-.563-.157-1.25v-5.64h1.61v5.53q0 .438.062.766.078.328.265.563.188.234.47.36.28.108.702.108.39 0 .657-.093.28-.11.468-.328.188-.235.266-.579.094-.359.094-.859v-5.469h1.61v5.375zm1.531-4.078v-1.297h5.39v1.297h-1.874v5.875h1.875v1.328h-5.39v-1.328h1.874v-5.875h-1.875zm12.89 6.875q-.562.219-1.093.328-.532.11-1.11.11-.906 0-1.625-.266-.703-.266-1.187-.797-.485-.531-.735-1.328t-.25-1.844q0-1.062.266-1.89.281-.844.781-1.422.516-.578 1.235-.875.734-.313 1.64-.313.297 0 .547.016.266.016.5.047.25.031.5.094.266.062.531.156v1.578q-.546-.25-1.046-.36-.5-.109-.922-.109-.594 0-1.032.219-.421.203-.703.61-.28.39-.406.937-.125.531-.125 1.187 0 .688.125 1.235.14.547.422.922.281.375.703.578.438.187 1.047.187.203 0 .453-.031.25-.047.5-.11.266-.078.516-.171.25-.094.468-.188v1.5zm2.172 1.578q.39.016.719-.047.344-.046.594-.187.25-.125.39-.328.156-.188.156-.453 0-.188-.062-.313-.047-.14-.14-.234-.079-.11-.173-.203l-.187-.22q-.078-.124-.14-.265-.048-.156-.048-.36 0-.202.063-.39.078-.203.203-.343.14-.157.344-.235.203-.094.453-.094.312 0 .562.141.266.14.438.39t.266.579q.093.328.093.672 0 .61-.218 1.14-.22.532-.672.922-.438.406-1.094.64-.656.235-1.547.235v-1.047zm18.328-1.25-.032-.86q-.218.22-.453.407-.218.188-.5.328-.265.125-.593.203-.313.079-.704.079-.5 0-.89-.157-.375-.156-.64-.422-.266-.265-.407-.64-.125-.375-.125-.828 0-.47.203-.86.203-.406.61-.687.406-.297 1.015-.453.61-.157 1.422-.157h.875v-.406q0-.25-.078-.453t-.235-.344q-.156-.156-.406-.234-.25-.078-.625-.078-.594 0-1.172.14-.562.125-1.093.375v-1.265q.484-.203 1.093-.313.625-.125 1.297-.125.735 0 1.266.14.531.142.86.423.343.265.5.687.171.422.171.985v4.515h-1.36zm-.219-2.922h-.969q-.406 0-.687.079-.282.078-.469.218-.172.125-.25.313-.078.172-.078.375 0 .406.25.625.265.203.719.203.328 0 .687-.234.36-.25.797-.688v-.89zm7.343 2.922v-4.312q0-1.078-.796-1.078-.407 0-.782.328-.359.312-.765.875v4.187h-1.594v-6.61h1.375l.031.97q.203-.25.422-.453.219-.22.469-.36.265-.14.547-.219.297-.078.656-.078.516 0 .89.172.376.156.626.469.265.297.39.719t.125.953v4.437h-1.594zm7.547 0-.031-.968q-.219.25-.438.453-.218.203-.484.36-.25.14-.547.218-.281.094-.625.094-.594 0-1.047-.235-.453-.234-.765-.672-.313-.437-.47-1.047-.155-.625-.155-1.39 0-.906.25-1.563.265-.672.718-1.11.453-.452 1.078-.655.625-.22 1.36-.22.25 0 .5.032.25.031.437.094v-2.594h1.594v9.203h-1.375zm-2.906-3.25q0 .547.078.938.078.375.219.625.156.25.36.375.218.11.5.11.39 0 .75-.329.374-.328.78-.89v-2.891q-.187-.078-.468-.125-.266-.047-.547-.047-.39 0-.703.156-.297.156-.516.453-.219.282-.344.703-.11.407-.11.922zm17.656-.797q.015-.359-.032-.625-.047-.265-.156-.421-.11-.172-.266-.25-.156-.079-.359-.079-.344 0-.719.297-.375.282-.828.938v4.187h-1.625v-6.61h1.438l.062.954q.156-.25.36-.453.203-.203.453-.344.25-.14.562-.219.313-.078.672-.078.5 0 .89.172.391.172.641.516.266.328.391.844.14.5.11 1.171h-1.594zm8.843.235q0 .156-.016.422-.015.265-.03.484h-4.345q0 .438.125.781.141.328.375.547.25.219.594.344.344.11.75.11.485 0 1.031-.063.563-.078 1.157-.25v1.265q-.266.063-.563.125-.297.063-.61.11-.312.047-.64.062-.312.032-.61.032-.75 0-1.359-.22-.593-.218-1.015-.64-.406-.422-.64-1.031-.22-.625-.22-1.438 0-.796.22-1.453.234-.672.624-1.14.406-.47.985-.72.578-.265 1.296-.265.704 0 1.235.22.547.218.906.608.36.391.547.938.203.531.203 1.172zm-1.625-.235q.016-.39-.094-.671-.109-.297-.297-.485-.171-.187-.406-.281-.234-.094-.515-.094-.594 0-.985.406-.375.407-.453 1.125h2.75zm7.125 6.625v-2.171l.078-1.282q-.188.22-.39.422-.204.188-.454.328-.234.125-.531.203-.281.079-.61.079-.593 0-1.046-.235-.453-.234-.766-.672-.312-.437-.469-1.047-.156-.625-.156-1.39 0-.781.203-1.438.219-.656.64-1.125.438-.468 1.063-.718.641-.266 1.5-.266.157 0 .344.031.203.016.39.047.204.031.376.078.187.031.328.078l1.094-.234v9.312h-1.594zm-2.688-5.828q0 .547.078.938.079.375.22.625.155.25.359.375.218.11.5.11.39 0 .75-.329.375-.328.78-.89v-2.891q-.187-.078-.468-.125-.266-.047-.547-.047-.39 0-.703.156-.297.156-.516.453-.218.282-.343.703-.11.407-.11.922zm7.656-3.36v4.313q0 .532.203.813.204.281.61.281.39 0 .75-.328.375-.344.781-.89v-4.188h1.594v6.61h-1.375l-.031-.97q-.22.25-.438.454-.203.203-.453.36-.25.14-.547.218-.297.094-.656.094-.5 0-.89-.172-.376-.172-.641-.47-.25-.312-.375-.733-.125-.422-.125-.954v-4.437h1.593zm11.516 2.798q0 .156-.016.422-.015.265-.031.484h-4.344q0 .438.125.781.14.328.375.547.25.219.594.344.344.11.75.11.484 0 1.031-.063.563-.078 1.156-.25v1.265q-.265.063-.562.125-.297.063-.61.11-.312.047-.64.062-.313.032-.61.032-.75 0-1.359-.22-.594-.218-1.015-.64-.407-.422-.641-1.031-.219-.625-.219-1.438 0-.796.219-1.453.234-.672.625-1.14.406-.47.984-.72.578-.265 1.297-.265.703 0 1.235.22.546.218.906.608.36.391.547.938.203.531.203 1.172zm-1.625-.235q.015-.39-.094-.671-.11-.297-.297-.485-.172-.187-.406-.281-.234-.094-.516-.094-.593 0-.984.406-.375.407-.453 1.125h2.75zm8.64 2.094q0 .578-.25.985-.25.39-.672.64-.406.25-.937.36-.516.125-1.063.125-.734 0-1.328-.079-.578-.062-1.094-.187v-1.438q.61.25 1.22.375.609.11 1.155.11.625 0 .922-.203.313-.203.313-.516 0-.156-.063-.281-.062-.125-.25-.235-.172-.109-.5-.234t-.843-.266q-.5-.14-.875-.312-.36-.172-.61-.406-.234-.235-.36-.532-.109-.312-.109-.734 0-.406.172-.766.188-.359.547-.625.375-.265.906-.421.547-.157 1.266-.157.625 0 1.11.063.484.062.843.14v1.297q-.562-.187-1.062-.25-.5-.078-.985-.078-.484 0-.781.172-.297.172-.297.484 0 .157.047.282.063.11.234.218.188.11.485.235.312.11.828.25.562.172.953.36.39.187.625.421.25.234.344.531.11.297.11.672zm7.328 1.89q-.437.095-.875.157-.422.063-.812.063-.657 0-1.125-.141-.47-.14-.782-.422-.312-.281-.468-.703-.141-.438-.141-1.031v-3.235h-1.766v-1.234h1.766v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.266.86.265.28.875.28.39 0 .75-.062.375-.063.687-.14v1.265zm15.156-3.359q0 .907-.266 1.579-.25.656-.719 1.093-.453.438-1.078.657-.625.203-1.36.203-.25 0-.5-.032-.25-.03-.437-.078v2.578h-1.593v-9.187h1.375l.03.969q.204-.25.423-.453.219-.22.469-.36.265-.14.546-.219.297-.078.657-.078.593 0 1.047.235.453.234.765.672.313.421.469 1.046.172.61.172 1.375zm-1.672.063q0-.547-.078-.922-.078-.39-.235-.64-.14-.25-.359-.36-.203-.11-.469-.11-.406 0-.781.329-.36.312-.766.875v2.89q.188.079.454.125.28.047.562.047.375 0 .688-.156.312-.156.53-.437.22-.297.329-.704.125-.421.125-.937zm6.984 3.36v-4.313q0-1.078-.797-1.078-.406 0-.781.328-.36.312-.766.875v4.187h-1.593v-9.203h1.593v2.266l-.078 1.203q.188-.234.39-.422.22-.203.454-.328.25-.14.531-.203t.61-.063q.515 0 .89.172.375.156.625.469.266.297.39.719.126.422.126.953v4.437h-1.594zm7.531 0-.031-.86q-.219.219-.453.406-.22.188-.5.328-.266.125-.594.203-.313.079-.703.079-.5 0-.89-.157-.376-.156-.641-.422-.266-.265-.407-.64-.125-.375-.125-.828 0-.47.203-.86.204-.406.61-.687.406-.297 1.015-.453.61-.157 1.422-.157h.875v-.406q0-.25-.078-.453t-.234-.344q-.156-.156-.406-.234-.25-.078-.625-.078-.594 0-1.172.14-.563.125-1.094.375v-1.265q.484-.203 1.094-.313.625-.125 1.297-.125.734 0 1.265.14.531.142.86.423.343.265.5.687.171.422.171.985v4.515h-1.359zm-.219-2.923h-.968q-.407 0-.688.079-.281.078-.469.218-.172.125-.25.313-.078.172-.078.375 0 .406.25.625.266.203.719.203.328 0 .687-.234.36-.25.797-.688v-.89zm8.86.97q0 .577-.25.984-.25.39-.672.64-.407.25-.938.36-.516.125-1.062.125-.735 0-1.329-.079-.578-.062-1.093-.187v-1.438q.609.25 1.218.375.61.11 1.157.11.625 0 .922-.203.312-.203.312-.516 0-.156-.062-.281-.063-.125-.25-.235-.172-.109-.5-.234-.329-.125-.844-.266-.5-.14-.875-.312-.36-.172-.61-.406-.234-.235-.359-.532-.11-.312-.11-.734 0-.406.173-.766.187-.359.546-.625.375-.265.907-.421.547-.157 1.265-.157.625 0 1.11.063.484.062.843.14v1.297q-.562-.187-1.062-.25-.5-.078-.984-.078-.485 0-.782.172-.297.172-.297.484 0 .157.047.282.063.11.235.218.187.11.484.235.313.11.828.25.563.172.953.36.39.187.625.421.25.234.344.531.11.297.11.672zm7.64-1.86q0 .156-.016.422-.015.265-.031.484h-4.344q0 .438.125.781.14.328.375.547.25.219.594.344.344.11.75.11.484 0 1.031-.063.563-.078 1.156-.25v1.265q-.265.063-.562.125-.297.063-.61.11-.312.047-.64.062-.313.032-.61.032-.75 0-1.359-.22-.594-.218-1.015-.64-.407-.422-.641-1.031-.219-.625-.219-1.438 0-.796.219-1.453.234-.672.625-1.14.406-.47.984-.72.578-.265 1.297-.265.703 0 1.235.22.546.218.906.608.36.391.547.938.203.531.203 1.172zm-1.625-.235q.015-.39-.094-.671-.11-.297-.297-.485-.172-.187-.406-.281-.234-.094-.516-.094-.593 0-.984.406-.375.407-.453 1.125h2.75zm8.64 2.094q0 .578-.25.985-.25.39-.672.64-.406.25-.937.36-.516.125-1.063.125-.734 0-1.328-.079-.578-.062-1.094-.187v-1.438q.61.25 1.22.375.609.11 1.155.11.625 0 .922-.203.313-.203.313-.516 0-.156-.063-.281-.062-.125-.25-.235-.172-.109-.5-.234t-.843-.266q-.5-.14-.875-.312-.36-.172-.61-.406-.234-.235-.36-.532-.109-.312-.109-.734 0-.406.172-.766.188-.359.547-.625.375-.265.906-.421.547-.157 1.266-.157.625 0 1.11.063.484.062.843.14v1.297q-.562-.187-1.062-.25-.5-.078-.985-.078-.484 0-.78.172-.298.172-.298.484 0 .157.047.282.063.11.234.218.188.11.485.235.312.11.828.25.562.172.953.36.39.187.625.421.25.234.344.531.11.297.11.672zm2.344 3.203q.39.016.718-.047.344-.046.594-.187.25-.125.39-.328.157-.188.157-.453 0-.188-.062-.313-.047-.14-.141-.234-.078-.11-.172-.203l-.187-.22q-.079-.124-.141-.265-.047-.156-.047-.36 0-.202.063-.39.078-.203.203-.343.14-.157.343-.235.204-.094.454-.094.312 0 .562.141.266.14.438.39.171.25.265.579.094.328.094.672 0 .61-.219 1.14-.219.532-.672.922-.437.406-1.093.64-.657.235-1.547.235v-1.047zm19.952-5.062q0 .156-.015.422-.016.265-.032.484h-4.343q0 .438.125.781.14.328.375.547.25.219.593.344.344.11.75.11.485 0 1.032-.063.562-.078 1.156-.25v1.265q-.266.063-.563.125-.296.063-.609.11-.312.047-.64.062-.313.032-.61.032-.75 0-1.36-.22-.593-.218-1.015-.64-.406-.422-.64-1.031-.22-.625-.22-1.438 0-.796.22-1.453.234-.672.624-1.14.407-.47.985-.72.578-.265 1.297-.265.703 0 1.234.22.547.218.906.608.36.391.547.938.203.531.203 1.172zm-1.625-.235q.016-.39-.093-.671-.11-.297-.297-.485-.172-.187-.407-.281-.234-.094-.515-.094-.594 0-.985.406-.375.407-.453 1.125h2.75zm5.906 1.641q.266 0 .5.11.235.093.407.265.187.172.28.406.095.235.095.5 0 .266-.094.5-.094.235-.281.407-.172.171-.407.265-.234.11-.5.11-.265 0-.5-.11-.218-.094-.39-.265-.157-.172-.266-.407-.094-.234-.094-.5 0-.265.094-.5.11-.234.266-.406.172-.172.39-.266.235-.109.5-.109zm9.563-3.047q.187.235.265.485.078.25.078.5 0 .562-.203.984-.187.422-.547.703-.343.281-.828.438-.484.14-1.062.14-.344 0-.64-.062-.298-.078-.438-.157-.11.11-.188.25-.078.125-.078.297 0 .094.047.203.047.11.14.188.11.078.25.14.141.047.313.047l1.578.063q.516.016.938.14.437.11.734.329.312.218.469.547.172.312.172.718 0 .453-.204.86-.203.422-.625.718-.421.297-1.046.47-.625.187-1.454.187-.796 0-1.375-.125-.578-.125-.953-.36-.359-.218-.53-.547-.173-.312-.173-.687 0-.234.047-.438.063-.187.172-.375.125-.171.297-.328.187-.172.422-.343-.313-.188-.485-.47-.172-.28-.172-.609 0-.218.063-.406.062-.203.156-.375t.219-.328q.125-.172.266-.328-.25-.25-.407-.578-.156-.344-.156-.86 0-.562.188-.984.203-.437.546-.734.36-.297.844-.438.485-.156 1.063-.156.297 0 .562.031.266.016.485.094h2.296v1.156h-1.046zm-3.735 6.328q0 .39.375.563.39.187 1.094.187.453 0 .766-.093.312-.079.5-.22.203-.124.28-.312.079-.187.079-.375 0-.172-.078-.297t-.235-.203q-.14-.078-.343-.125-.188-.03-.438-.047l-1.39-.03q-.188.124-.313.234-.125.125-.187.234-.063.125-.094.234-.016.125-.016.25zm.266-5.297q0 .532.297.844.312.297.875.297.297 0 .5-.094.218-.093.36-.25.155-.172.218-.39.078-.22.078-.453 0-.547-.313-.86-.312-.312-.859-.312-.297 0-.516.11-.218.093-.359.265-.14.156-.219.375-.062.218-.062.468zm8.562 2.016q.266 0 .5.11.234.093.406.265.188.172.282.406.093.235.093.5 0 .266-.093.5-.094.235-.282.407-.172.171-.406.265-.234.11-.5.11t-.5-.11q-.219-.094-.39-.265-.157-.172-.266-.407-.094-.234-.094-.5 0-.265.094-.5.11-.234.265-.406.172-.172.391-.266.234-.109.5-.109zm16.093 2.406-.03-.968q-.22.25-.438.453-.22.203-.485.36-.25.14-.547.218-.28.094-.625.094-.593 0-1.047-.235-.453-.234-.765-.672-.313-.437-.469-1.047-.156-.625-.156-1.39 0-.906.25-1.563.265-.672.719-1.11.453-.452 1.078-.655.625-.22 1.36-.22.25 0 .5.032.25.031.437.094v-2.594h1.593v9.203h-1.375zm-2.906-3.25q0 .547.078.938.078.375.219.625.156.25.36.375.218.11.5.11.39 0 .75-.329.374-.328.78-.89v-2.891q-.187-.078-.468-.125-.266-.047-.547-.047-.39 0-.703.156-.297.156-.516.453-.219.282-.344.703-.109.407-.109.922zm7.656-3.36v4.313q0 .532.203.813.203.281.61.281.39 0 .75-.328.375-.344.78-.89v-4.188h1.595v6.61h-1.375l-.032-.97q-.218.25-.437.454-.203.203-.453.36-.25.14-.547.218-.297.094-.656.094-.5 0-.891-.172-.375-.172-.64-.47-.25-.312-.376-.733-.125-.422-.125-.954v-4.437h1.594zm11.515 2.798q0 .156-.015.422l-.031.484h-4.344q0 .438.125.781.14.328.375.547.25.219.594.344.343.11.75.11.484 0 1.03-.063.563-.078 1.157-.25v1.265q-.266.063-.562.125-.297.063-.61.11-.312.047-.64.062-.313.032-.61.032-.75 0-1.36-.22-.593-.218-1.015-.64-.406-.422-.64-1.031-.22-.625-.22-1.438 0-.796.22-1.453.234-.672.625-1.14.406-.47.984-.72.578-.265 1.297-.265.703 0 1.234.22.547.218.906.608.36.391.547.938.203.531.203 1.172zm-1.625-.235q.016-.39-.093-.671-.11-.297-.297-.485-.172-.187-.406-.281-.235-.094-.516-.094-.594 0-.984.406-.375.407-.454 1.125h2.75zM157.87 442.774q-.437.094-.875.156-.422.063-.812.063-.656 0-1.125-.141-.469-.14-.781-.422-.313-.281-.47-.703-.14-.438-.14-1.031v-3.235h-1.765v-1.234h1.765v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.266.859.265.281.875.281.39 0 .75-.062.375-.063.687-.14v1.265zm7.828-3.297q0 .781-.219 1.437-.218.641-.64 1.11-.422.453-1.031.719-.594.25-1.375.25-.735 0-1.313-.22-.578-.218-.984-.64-.407-.422-.625-1.062-.203-.657-.203-1.5 0-.782.218-1.422.235-.656.64-1.11.423-.453 1.032-.703.61-.25 1.375-.25.735 0 1.313.219t.984.656q.406.422.61 1.063.218.625.218 1.453zm-1.656.047q0-1.031-.39-1.547-.376-.516-1.141-.516-.407 0-.703.157-.297.156-.485.453-.187.28-.281.656-.078.375-.078.797 0 1.047.406 1.578.422.516 1.14.516.407 0 .688-.157.297-.172.485-.453.187-.281.265-.656.094-.39.094-.828zm15.703 3.062q-.47.188-.97.266-.5.094-1.046.094-.781 0-1.406-.203-.625-.22-1.063-.641-.437-.422-.672-1.047-.234-.625-.234-1.453 0-.781.25-1.422.25-.656.703-1.11.469-.452 1.11-.702.64-.25 1.421-.25.64 0 1.078.078.454.062.797.172v1.53q-.406-.202-.875-.312-.468-.11-.89-.11-.438 0-.797.157-.344.14-.594.422-.234.266-.36.64-.124.376-.124.829 0 .484.125.86.14.374.39.64.25.265.594.406.36.14.797.14.203 0 .422-.03.234-.032.469-.079.234-.062.453-.125.234-.078.422-.172v1.422zm7.937-3.11q0 .782-.219 1.438-.219.641-.64 1.11-.422.453-1.032.719-.594.25-1.375.25-.734 0-1.312-.22-.578-.218-.985-.64-.406-.422-.625-1.062-.203-.657-.203-1.5 0-.782.219-1.422.234-.656.64-1.11.422-.453 1.032-.703.61-.25 1.375-.25.734 0 1.312.219.578.219.985.656.406.422.609 1.063.219.625.219 1.453zm-1.656.048q0-1.031-.391-1.547-.375-.516-1.14-.516-.407 0-.704.157-.297.156-.484.453-.188.28-.281.656-.079.375-.079.797 0 1.047.407 1.578.422.516 1.14.516.407 0 .688-.157.297-.172.484-.453.188-.281.266-.656.094-.39.094-.828zm6.968 3.312v-4.312q0-1.078-.797-1.078-.406 0-.781.328-.36.312-.766.875v4.187h-1.593v-6.61h1.375l.03.97q.204-.25.423-.453.218-.22.468-.36.266-.14.547-.219.297-.078.657-.078.515 0 .89.172.375.156.625.469.266.297.39.719.126.422.126.953v4.437h-1.594zm7.328 0v-4.312q0-1.078-.797-1.078-.406 0-.781.328-.36.312-.766.875v4.187h-1.594v-6.61h1.375l.032.97q.203-.25.421-.453.22-.22.47-.36.265-.14.546-.219.297-.078.656-.078.516 0 .891.172.375.156.625.469.266.297.39.719.126.422.126.953v4.437h-1.594zm9.156-3.812q0 .156-.016.422-.015.265-.031.484h-4.344q0 .438.125.781.14.328.375.547.25.219.594.344.344.11.75.11.484 0 1.031-.063.563-.078 1.156-.25v1.265q-.265.063-.562.125-.297.063-.61.11-.312.047-.64.062-.313.032-.61.032-.75 0-1.359-.22-.594-.218-1.015-.64-.407-.422-.641-1.031-.219-.625-.219-1.438 0-.796.219-1.453.234-.672.625-1.14.406-.47.984-.72.578-.265 1.297-.265.703 0 1.235.219.546.219.906.61.36.39.547.937.203.531.203 1.172zm-1.625-.235q.015-.39-.094-.671-.11-.297-.297-.485-.172-.187-.406-.281-.234-.094-.516-.094-.593 0-.984.406-.375.407-.453 1.125h2.75zm8.53 3.797q-.468.188-.968.266-.5.094-1.047.094-.781 0-1.406-.203-.625-.22-1.063-.641-.437-.422-.671-1.047-.235-.625-.235-1.453 0-.781.25-1.422.25-.656.703-1.11.47-.452 1.11-.702.64-.25 1.422-.25.64 0 1.078.078.453.062.797.172v1.53q-.407-.202-.875-.312-.47-.11-.891-.11-.438 0-.797.157-.344.14-.594.422-.234.266-.359.64-.125.376-.125.829 0 .484.125.86.14.374.39.64.25.265.594.406.36.14.797.14.203 0 .422-.03.234-.032.469-.079.234-.062.453-.125.234-.078.422-.172v1.422zm7.438.188q-.437.094-.875.156-.422.063-.812.063-.657 0-1.125-.141-.47-.14-.782-.422-.312-.281-.468-.703-.141-.438-.141-1.031v-3.235h-1.766v-1.234h1.766v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.266.859.265.281.875.281.39 0 .75-.062.375-.063.687-.14v1.265zm5.765-8.36q0 .22-.078.407-.078.187-.218.328-.141.14-.329.219-.187.078-.406.078-.219 0-.422-.078-.187-.079-.328-.22-.14-.14-.219-.327-.078-.188-.078-.407 0-.218.078-.406.079-.187.22-.328.14-.14.327-.219.203-.093.422-.093.219 0 .406.093.188.078.329.219.14.14.218.328.078.188.078.406zm-1.75 3.047h-1.875v-1.234h3.5v5.375h1.907v1.234h-5.64v-1.234h2.108v-4.14zm11.14 2.016q0 .781-.218 1.437-.219.641-.64 1.11-.422.453-1.032.719-.594.25-1.375.25-.734 0-1.312-.22-.578-.218-.985-.64-.406-.422-.625-1.062-.203-.657-.203-1.5 0-.782.219-1.422.234-.656.64-1.11.422-.453 1.032-.703.61-.25 1.375-.25.734 0 1.312.219.578.219.985.656.406.422.61 1.063.218.625.218 1.453zm-1.655.047q0-1.031-.391-1.547-.375-.516-1.14-.516-.407 0-.704.157-.297.156-.484.453-.188.28-.281.656-.079.375-.079.797 0 1.047.407 1.578.422.516 1.14.516.407 0 .688-.157.297-.172.484-.453.188-.281.266-.656.094-.39.094-.828zm6.968 3.312v-4.312q0-1.078-.797-1.078-.406 0-.781.328-.36.312-.766.875v4.187h-1.593v-6.61h1.375l.03.97q.204-.25.423-.453.218-.22.468-.36.266-.14.547-.219.297-.078.657-.078.515 0 .89.172.375.156.625.469.266.297.39.719.126.422.126.953v4.437h-1.594zm4.5 1.407h-1.547l4.547-10.61h1.547l-4.547 10.61zm10.109-9.829q0 .22-.078.407-.078.187-.219.328-.14.14-.328.219-.188.078-.406.078-.22 0-.422-.078-.188-.079-.328-.22-.141-.14-.22-.327-.077-.188-.077-.407 0-.218.078-.406.078-.187.219-.328.14-.14.328-.219.203-.093.422-.093.218 0 .406.093.187.078.328.219.14.14.219.328.078.188.078.406zm-1.75 3.047h-1.875v-1.234h3.5v5.375h1.906v1.234h-5.64v-1.234h2.109v-4.14zm9.125 5.375v-4.312q0-1.078-.797-1.078-.406 0-.781.328-.36.312-.766.875v4.187h-1.594v-6.61h1.375l.031.97q.204-.25.422-.453.22-.22.47-.36.265-.14.546-.219.297-.078.656-.078.516 0 .89.172.376.156.626.469.265.297.39.719t.125.953v4.437h-1.593zm4.124-2.843v-1.407h4.047v1.407h-4.047zm12.531-5q-.296-.094-.687-.157-.39-.062-.797-.062-.281 0-.531.078-.235.078-.406.234-.172.157-.282.407-.093.25-.093.609v1.078h2.593v1.234h-2.593v4.422h-1.61v-4.422H276.6v-1.234h1.922v-1.016q0-.687.203-1.187.203-.516.578-.828.375-.328.907-.469.53-.156 1.172-.156.437 0 .828.062.39.047.718.125v1.282zm-6.843 1.234zm10.374-1.344h-1.875v-1.25h3.5v7.969h1.907v1.234h-5.641v-1.234h2.11v-6.719zm9.078-.469q0 .22-.078.407-.078.187-.219.328-.14.14-.328.219-.187.078-.406.078-.219 0-.422-.078-.187-.079-.328-.22-.14-.14-.219-.327-.078-.188-.078-.407 0-.218.078-.406.078-.187.219-.328.14-.14.328-.219.203-.093.422-.093.219 0 .406.093.188.078.328.219.141.14.22.328.077.188.077.406zm-1.75 3.047h-1.875v-1.234h3.5v5.375h1.907v1.234h-5.641v-1.234h2.11v-4.14zm10.14-.078q.188.235.266.485.078.25.078.5 0 .562-.203.984-.187.422-.547.703-.343.281-.828.438-.484.14-1.062.14-.344 0-.64-.062-.298-.078-.438-.157-.11.11-.188.25-.078.125-.078.297 0 .094.047.203.047.11.14.188.11.078.25.14.141.047.313.047l1.578.063q.516.016.938.14.437.11.734.329.312.218.469.547.172.312.172.718 0 .453-.204.86-.203.422-.625.718-.421.297-1.046.47-.625.187-1.454.187-.796 0-1.375-.125-.578-.125-.953-.36-.359-.218-.53-.547-.173-.312-.173-.687 0-.234.047-.438.063-.187.172-.375.125-.171.297-.328.187-.172.422-.343-.313-.188-.485-.47-.172-.28-.172-.609 0-.218.063-.406.062-.203.156-.375t.219-.328q.125-.172.266-.328-.25-.25-.407-.578-.156-.344-.156-.86 0-.562.188-.984.203-.437.546-.734.36-.297.844-.438.485-.156 1.063-.156.297 0 .562.031.266.016.485.094h2.296v1.156h-1.046zm-3.734 6.328q0 .39.375.563.39.187 1.094.187.453 0 .766-.093.312-.079.5-.22.203-.124.28-.312.079-.187.079-.375 0-.172-.078-.297t-.235-.203q-.14-.078-.343-.125-.188-.031-.438-.047l-1.39-.03q-.188.124-.313.234-.125.125-.187.234-.063.125-.094.234-.016.125-.016.25zm.266-5.297q0 .532.297.844.312.297.875.297.297 0 .5-.094.218-.093.36-.25.155-.172.218-.39.078-.22.078-.453 0-.547-.313-.86-.312-.312-.859-.312-.297 0-.516.109-.218.094-.359.266-.14.156-.219.375-.062.218-.062.468zm9.78 4.422v-4.312q0-1.078-.796-1.078-.406 0-.781.328-.36.312-.766.875v4.187h-1.594v-9.203h1.594v2.266l-.078 1.203q.187-.234.39-.422.22-.203.454-.328.25-.14.531-.203t.61-.063q.515 0 .89.172.375.156.625.469.266.297.39.719.126.422.126.953v4.437h-1.594zm8.844-.062q-.437.094-.875.156-.422.063-.812.063-.656 0-1.125-.141-.469-.14-.781-.422-.313-.281-.47-.703-.14-.438-.14-1.031v-3.235h-1.765v-1.234h1.765v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.266.859.265.281.875.281.39 0 .75-.062.375-.063.687-.14v1.265zm13.453-3.985q.016-.359-.031-.625-.047-.265-.157-.421-.109-.172-.265-.25-.156-.079-.36-.079-.343 0-.718.297-.375.282-.828.938v4.187h-1.625v-6.61h1.437l.063.954q.156-.25.359-.453.203-.203.453-.344.25-.14.563-.219.312-.078.671-.078.5 0 .891.172.39.172.64.516.266.328.391.844.141.5.11 1.171h-1.594zm8.843.235q0 .156-.015.422l-.031.484h-4.344q0 .438.125.781.14.328.375.547.25.219.594.344.343.11.75.11.484 0 1.03-.063.563-.078 1.157-.25v1.265q-.266.063-.562.125-.297.063-.61.11-.312.047-.64.062-.313.032-.61.032-.75 0-1.36-.22-.593-.218-1.015-.64-.406-.422-.64-1.031-.22-.625-.22-1.438 0-.796.22-1.453.234-.672.625-1.14.406-.47.984-.72.578-.265 1.297-.265.703 0 1.234.219.547.219.906.61.36.39.547.937.203.531.203 1.172zm-1.625-.235q.016-.39-.093-.671-.11-.297-.297-.485-.172-.187-.406-.281-.235-.094-.516-.094-.594 0-.984.406-.375.407-.454 1.125h2.75zm7.125 6.625v-2.171l.078-1.282q-.187.219-.39.422-.203.188-.453.328-.235.125-.532.203-.28.079-.61.079-.593 0-1.046-.235-.453-.234-.766-.672-.312-.437-.468-1.047-.157-.625-.157-1.39 0-.781.204-1.438.218-.656.64-1.125.438-.468 1.063-.718.64-.266 1.5-.266.156 0 .343.031.204.016.391.047.203.031.375.078.188.031.328.078l1.094-.234v9.312h-1.594zm-2.687-5.828q0 .547.078.938.078.375.219.625.156.25.359.375.219.11.5.11.39 0 .75-.329.375-.328.781-.89v-2.891q-.187-.078-.469-.125-.265-.047-.546-.047-.391 0-.704.156-.296.156-.515.453-.219.282-.344.703-.11.407-.11.922zm7.656-3.36v4.313q0 .532.203.813.203.281.61.281.39 0 .75-.328.374-.344.78-.89v-4.188h1.594v6.61h-1.375l-.031-.97q-.219.25-.438.454-.203.203-.453.359-.25.14-.547.219-.296.094-.656.094-.5 0-.89-.172-.375-.172-.641-.47-.25-.312-.375-.733-.125-.422-.125-.954v-4.437h1.594zm11.515 2.798q0 .156-.016.422-.015.265-.03.484h-4.345q0 .438.125.781.141.328.375.547.25.219.594.344.344.11.75.11.485 0 1.031-.063.563-.078 1.157-.25v1.265q-.266.063-.563.125-.297.063-.61.11-.312.047-.64.062-.312.032-.61.032-.75 0-1.359-.22-.593-.218-1.015-.64-.406-.422-.64-1.031-.22-.625-.22-1.438 0-.796.22-1.453.234-.672.624-1.14.406-.47.985-.72.578-.265 1.296-.265.704 0 1.235.219.547.219.906.61.36.39.547.937.203.531.203 1.172zm-1.625-.235q.016-.39-.094-.671-.11-.297-.297-.485-.171-.187-.406-.281-.234-.094-.515-.094-.594 0-.985.406-.375.407-.453 1.125h2.75zm8.64 2.094q0 .578-.25.985-.25.39-.671.64-.407.25-.938.36-.516.125-1.062.125-.735 0-1.329-.079-.578-.062-1.093-.187v-1.438q.609.25 1.218.375.61.11 1.157.11.625 0 .922-.203.312-.203.312-.516 0-.156-.062-.281-.063-.125-.25-.235-.172-.109-.5-.234-.329-.125-.844-.266-.5-.14-.875-.312-.36-.172-.61-.406-.234-.235-.359-.532-.11-.312-.11-.734 0-.406.173-.766.187-.359.546-.625.375-.265.907-.421.547-.157 1.265-.157.625 0 1.11.063.484.062.843.14v1.297q-.562-.187-1.062-.25-.5-.078-.984-.078-.485 0-.782.172-.297.172-.297.484 0 .157.047.282.063.109.235.218.187.11.484.235.313.11.828.25.563.172.953.36.39.187.625.421.25.234.344.531.11.297.11.672zm7.328 1.89q-.437.095-.875.157-.422.063-.812.063-.656 0-1.125-.141-.469-.14-.781-.422-.313-.281-.47-.703-.14-.438-.14-1.031v-3.235h-1.765v-1.234h1.765v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.266.859.265.281.875.281.39 0 .75-.062.375-.063.687-.14v1.265zm11.343-7.89h-1.875v-1.25h3.5v7.969h1.907v1.234h-5.64v-1.234h2.108v-6.719zm9.078-.469q0 .22-.078.407-.078.187-.218.328-.141.14-.329.219-.187.078-.406.078-.219 0-.422-.078-.187-.079-.328-.22-.14-.14-.219-.327-.078-.188-.078-.407 0-.218.078-.406.079-.187.22-.328.14-.14.327-.219.203-.093.422-.093.219 0 .406.093.188.078.329.219.14.14.218.328.078.188.078.406zm-1.75 3.047h-1.875v-1.234h3.5v5.375h1.907v1.234h-5.641v-1.234h2.11v-4.14zm9.86 5.375v-4.5q0-.25-.016-.437-.016-.188-.063-.313-.03-.125-.109-.187-.078-.063-.203-.063-.203 0-.406.282-.188.265-.438.937v4.281h-1.36v-4.5q0-.25-.015-.437 0-.188-.047-.313-.031-.125-.11-.187-.077-.063-.218-.063-.172 0-.375.282-.203.265-.469.937v4.281h-1.359v-6.61h1.172l.031.954q.14-.281.281-.484.141-.22.297-.344.172-.14.36-.188.187-.062.421-.062.547 0 .829.297.296.281.343.781.157-.281.297-.484.156-.22.313-.344.172-.14.36-.188.202-.062.437-.062.718 0 1.062.5.344.5.344 1.484v4.75h-1.36zm6.546-8.422q0 .22-.078.407-.078.187-.219.328-.14.14-.328.219-.187.078-.406.078-.219 0-.422-.078-.188-.079-.328-.22-.14-.14-.219-.327-.078-.188-.078-.407 0-.218.078-.406.078-.187.219-.328.14-.14.328-.219.203-.093.422-.093.219 0 .406.093.188.078.328.219.14.14.219.328.078.188.078.406zm-1.75 3.047h-1.875v-1.234h3.5v5.375h1.906v1.234h-5.64v-1.234h2.11v-4.14zm10.64 5.313q-.437.094-.875.156-.421.063-.812.063-.656 0-1.125-.141-.469-.14-.781-.422-.313-.281-.469-.703-.14-.438-.14-1.031v-3.235h-1.766v-1.234h1.765v-1.688l1.625-.437v2.125h2.578v1.234h-2.578v3.11q0 .562.266.859.266.281.875.281.39 0 .75-.062.375-.063.687-.14v1.265zm4.594-2.344q.266 0 .5.11.234.093.406.265.188.172.281.406.094.235.094.5 0 .266-.094.5-.093.235-.28.407-.173.171-.407.265-.234.11-.5.11t-.5-.11q-.219-.094-.39-.265-.157-.172-.266-.407-.094-.234-.094-.5 0-.265.094-.5.11-.234.265-.406.172-.172.391-.266.234-.109.5-.109z"/></g></svg>
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/performanceresourcetiming/index.md
--- title: PerformanceResourceTiming slug: Web/API/PerformanceResourceTiming page-type: web-api-interface browser-compat: api.PerformanceResourceTiming --- {{APIRef("Performance API")}} {{AvailableInWorkers}} The **`PerformanceResourceTiming`** interface enables retrieval and analysis of detailed network timing data regarding the loading of an application's resources. An application can use the timing metrics to determine, for example, the length of time it takes to fetch a specific resource, such as an {{domxref("XMLHttpRequest")}}, {{SVGElement("SVG","SVG element")}}, image, or script. ## Description The interface's properties create a resource loading timeline with high-resolution timestamps for network events such as redirect start and end times, fetch start, DNS lookup start and end times, response start and end times, and more. Additionally, the interface extends {{domxref("PerformanceEntry")}} with other properties which provide data about the size of the fetched resource as well as the type of resource that initiated the fetch. {{InheritanceDiagram}} ### Typical resource timing metrics The properties of this interface allow you to calculate certain resource timing metrics. Common use cases include: - Measuring TCP handshake time (`connectEnd` - `connectStart`) - Measuring DNS lookup time (`domainLookupEnd` - `domainLookupStart`) - Measuring redirection time (`redirectEnd` - `redirectStart`) - Measuring interim request time (`firstInterimResponseStart` - `requestStart`) - Measuring request time (`responseStart` - `requestStart`) - Measuring TLS negotiation time (`requestStart` - `secureConnectionStart`) - Measuring time to fetch (without redirects) (`responseEnd` - `fetchStart`) - Measuring ServiceWorker processing time (`fetchStart` - `workerStart`) - Checking if content was compressed (`decodedBodySize` should not be `encodedBodySize`) - Checking if local caches were hit (`transferSize` should be `0`) - Checking if modern and fast protocols are used (`nextHopProtocol` should be HTTP/2 or HTTP/3) - Checking if the correct resources are render-blocking (`renderBlockingStatus`) ## Instance properties ### Inherited from `PerformanceEntry` This interface extends the following {{domxref("PerformanceEntry")}} properties for resource performance entry types by qualifying and constraining them as follows: - {{domxref("PerformanceEntry.duration")}} {{ReadOnlyInline}} - : Returns a {{domxref("DOMHighResTimeStamp","timestamp")}} that is the difference between the {{domxref("PerformanceResourceTiming.responseEnd","responseEnd")}} and the {{domxref("PerformanceEntry.startTime","startTime")}} properties. - {{domxref("PerformanceEntry.entryType")}} {{ReadOnlyInline}} - : Returns `"resource"`. - {{domxref("PerformanceEntry.name")}} {{ReadOnlyInline}} - : Returns the resource's URL. - {{domxref("PerformanceEntry.startTime")}} {{ReadOnlyInline}} - : Returns the {{domxref("DOMHighResTimeStamp","timestamp")}} for the time a resource fetch started. This value is equivalent to {{domxref("PerformanceResourceTiming.fetchStart")}}. ### Timestamps The interface supports the following timestamp properties which you can see in the diagram and are listed in the order in which they are recorded for the fetching of a resource. An alphabetical listing is shown in the navigation, at left. ![Timestamp diagram listing timestamps in the order in which they are recorded for the fetching of a resource](timestamp-diagram.svg) - {{domxref('PerformanceResourceTiming.redirectStart')}} {{ReadOnlyInline}} - : A {{domxref("DOMHighResTimeStamp")}} that represents the start time of the fetch which initiates the redirect. - {{domxref('PerformanceResourceTiming.redirectEnd')}} {{ReadOnlyInline}} - : A {{domxref("DOMHighResTimeStamp")}} immediately after receiving the last byte of the response of the last redirect. - {{domxref('PerformanceResourceTiming.workerStart')}} {{ReadOnlyInline}} - : Returns a {{domxref("DOMHighResTimeStamp")}} immediately before dispatching the {{domxref("FetchEvent")}} if a Service Worker thread is already running, or immediately before starting the Service Worker thread if it is not already running. If the resource is not intercepted by a Service Worker the property will always return 0. - {{domxref('PerformanceResourceTiming.fetchStart')}} {{ReadOnlyInline}} - : A {{domxref("DOMHighResTimeStamp")}} immediately before the browser starts to fetch the resource. - {{domxref('PerformanceResourceTiming.domainLookupStart')}} {{ReadOnlyInline}} - : A {{domxref("DOMHighResTimeStamp")}} immediately before the browser starts the domain name lookup for the resource. - {{domxref('PerformanceResourceTiming.domainLookupEnd')}} {{ReadOnlyInline}} - : A {{domxref("DOMHighResTimeStamp")}} representing the time immediately after the browser finishes the domain name lookup for the resource. - {{domxref('PerformanceResourceTiming.connectStart')}} {{ReadOnlyInline}} - : A {{domxref("DOMHighResTimeStamp")}} immediately before the browser starts to establish the connection to the server to retrieve the resource. - {{domxref('PerformanceResourceTiming.secureConnectionStart')}} {{ReadOnlyInline}} - : A {{domxref("DOMHighResTimeStamp")}} immediately before the browser starts the handshake process to secure the current connection. - {{domxref('PerformanceResourceTiming.connectEnd')}} {{ReadOnlyInline}} - : A {{domxref("DOMHighResTimeStamp")}} immediately after the browser finishes establishing the connection to the server to retrieve the resource. - {{domxref('PerformanceResourceTiming.requestStart')}} {{ReadOnlyInline}} - : A {{domxref("DOMHighResTimeStamp")}} immediately before the browser starts requesting the resource from the server. - {{domxref('PerformanceResourceTiming.firstInterimResponseStart')}} {{experimental_inline}} {{ReadOnlyInline}} - : A {{domxref("DOMHighResTimeStamp")}} that represents the interim response time (for example, 100 Continue or 103 Early Hints). - {{domxref('PerformanceResourceTiming.responseStart')}} {{ReadOnlyInline}} - : A {{domxref("DOMHighResTimeStamp")}} immediately after the browser receives the first byte of the response from the server. - {{domxref('PerformanceResourceTiming.responseEnd')}} {{ReadOnlyInline}} - : A {{domxref("DOMHighResTimeStamp")}} immediately after the browser receives the last byte of the resource or immediately before the transport connection is closed, whichever comes first. ### Additional resource information Additionally, this interface exposes the following properties containing more information about a resource: - {{domxref('PerformanceResourceTiming.decodedBodySize')}} {{ReadOnlyInline}} - : A number that is the size (in octets) received from the fetch (HTTP or cache) of the message body, after removing any applied content encoding. - {{domxref('PerformanceResourceTiming.encodedBodySize')}} {{ReadOnlyInline}} - : A number representing the size (in octets) received from the fetch (HTTP or cache), of the payload body, before removing any applied content encodings. - {{domxref('PerformanceResourceTiming.initiatorType')}} {{ReadOnlyInline}} - : A string representing the web platform feature that initiated the performance entry. - {{domxref('PerformanceResourceTiming.nextHopProtocol')}} {{ReadOnlyInline}} - : A string representing the network protocol used to fetch the resource, as identified by the [ALPN Protocol ID (RFC7301)](https://datatracker.ietf.org/doc/html/rfc7301). - {{domxref('PerformanceResourceTiming.renderBlockingStatus')}} {{ReadOnlyInline}} - : A string representing the render-blocking status. Either "`blocking`" or "`non-blocking`". - {{domxref('PerformanceResourceTiming.responseStatus')}} {{experimental_inline}} {{ReadOnlyInline}} - : A number representing the HTTP response status code returned when fetching the resource. - {{domxref('PerformanceResourceTiming.transferSize')}} {{ReadOnlyInline}} - : A number representing the size (in octets) of the fetched resource. The size includes the response header fields plus the response payload body. - {{domxref('PerformanceResourceTiming.serverTiming')}} {{ReadOnlyInline}} - : An array of {{domxref("PerformanceServerTiming")}} entries containing server timing metrics. - {{domxref("PerformanceResourceTiming.deliveryType")}} {{experimental_inline}} {{ReadOnlyInline}} - : Indicates how the resource was delivered — for example from the cache or from a navigational prefetch. ## Instance methods - {{domxref("PerformanceResourceTiming.toJSON()")}} - : Returns a JSON representation of the `PerformanceResourceTiming` object. ## Examples ### Logging resource timing information Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { console.log(entry); }); }); observer.observe({ type: "resource", buffered: true }); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js const resources = performance.getEntriesByType("resource"); resources.forEach((entry) => { console.log(entry); }); ``` ## Security requirements ### Cross-origin timing information Many of the resource timing properties are restricted to return `0` or an empty string when the resource is a cross-origin request. To expose cross-origin timing information, the {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header needs to be set. For example, to allow `https://developer.mozilla.org` to see resource timing information, the cross-origin resource should send: ```http Timing-Allow-Origin: https://developer.mozilla.org ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - [Resource timing (Overview)](/en-US/docs/Web/API/Performance_API/Resource_timing)
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/responseend/index.md
--- title: "PerformanceResourceTiming: responseEnd property" short-title: responseEnd slug: Web/API/PerformanceResourceTiming/responseEnd page-type: web-api-instance-property browser-compat: api.PerformanceResourceTiming.responseEnd --- {{APIRef("Performance API")}} The **`responseEnd`** read-only property returns a {{domxref("DOMHighResTimeStamp","timestamp")}} immediately after the browser receives the last byte of the resource or immediately before the transport connection is closed, whichever comes first. Unlike many other `PerformanceResourceTiming` properties, the `responseEnd` property is available for cross-origin requests without the need of the {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header. ## Value A {{domxref("DOMHighResTimeStamp")}} immediately after the browser receives the last byte of the resource or immediately before the transport connection is closed, whichever comes first. ## Examples ### Measuring time to fetch (without redirects) The `responseEnd` and {{domxref("PerformanceResourceTiming.fetchStart", "fetchStart")}} properties can be used to measure the overall time it took to fetch the final resource (without redirects). If you want to include redirects, the overall time to fetch is provided in the {{domxref("PerformanceEntry.duration", "duration")}} property. ```js const timeToFetch = entry.responseEnd - entry.fetchStart; ``` Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { const timeToFetch = entry.responseEnd - entry.fetchStart; if (timeToFetch > 0) { console.log(`${entry.name}: Time to fetch: ${timeToFetch}ms`); } }); }); observer.observe({ type: "resource", buffered: true }); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js const resources = performance.getEntriesByType("resource"); resources.forEach((entry) => { const timeToFetch = entry.responseEnd - entry.fetchStart; if (timeToFetch > 0) { console.log(`${entry.name}: Time to fetch: ${timeToFetch}ms`); } }); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/decodedbodysize/index.md
--- title: "PerformanceResourceTiming: decodedBodySize property" short-title: decodedBodySize slug: Web/API/PerformanceResourceTiming/decodedBodySize page-type: web-api-instance-property browser-compat: api.PerformanceResourceTiming.decodedBodySize --- {{APIRef("Performance API")}} The **`decodedBodySize`** read-only property returns the size (in octets) received from the fetch (HTTP or cache) of the message body after removing any applied content encoding (like gzip or Brotli). If the resource is retrieved from an application cache or local resources, it returns the size of the payload after removing any applied content encoding. ## Value The `decodedBodySize` property can have the following values: - A number representing the size (in octets) received from the fetch (HTTP or cache) of the message body, after removing any applied content encoding. - `0` if the resource is a cross-origin request and no {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header is used. ## Examples ### Checking if content was compressed If the `decodedBodySize` and {{domxref("PerformanceResourceTiming.encodedBodySize", "encodedBodySize")}} properties are non-null and differ, the content was compressed (for example, gzip or Brotli). Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { const uncompressed = entry.decodedBodySize && entry.decodedBodySize === entry.encodedBodySize; if (uncompressed) { console.log(`${entry.name} was not compressed!`); } }); }); observer.observe({ type: "resource", buffered: true }); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js const resources = performance.getEntriesByType("resource"); resources.forEach((entry) => { const uncompressed = entry.decodedBodySize && entry.decodedBodySize === entry.encodedBodySize; if (uncompressed) { console.log(`${entry.name} was not compressed!`); } }); ``` ### Cross-origin content size information If the value of the `decodedBodySize` property is `0`, the resource might be a cross-origin request. To expose cross-origin content size information, the {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header needs to be set. For example, to allow `https://developer.mozilla.org` to see content sizes, the cross-origin resource should send: ```http Timing-Allow-Origin: https://developer.mozilla.org ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{HTTPHeader("Timing-Allow-Origin")}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/deliverytype/index.md
--- title: "PerformanceResourceTiming: deliveryType property" short-title: deliveryType slug: Web/API/PerformanceResourceTiming/deliveryType page-type: web-api-instance-property status: - experimental browser-compat: api.PerformanceResourceTiming.deliveryType --- {{APIRef("Performance API")}}{{SeeCompatTable}} The **`deliveryType`** read-only property is a string indicating how the resource was delivered — for example from the cache or from a navigational prefetch. ## Value A string, which can be one of the following values: - `"cache"` - : The resource was retrieved from the cache. - `"navigational-prefetch"` {{experimental_inline}} - : The resource was retrieved from a prefetched response stored in an in-memory cache via the [Speculation Rules API](/en-US/docs/Web/API/Speculation_Rules_API). - `""` (empty string) - : Returned if none of the above delivery types apply. ## Examples ### Filtering resources The `deliveryType` property can be used to get specific resource timing entries only; for example, only those that were cached. The following example uses a {{domxref("PerformanceObserver")}} to notify of new `resource` performance entries as they are recorded in the browser's performance timeline. The `buffered` option is used for accessing entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { const cachedResources = list.getEntries().filter((entry) => { return entry.deliveryType === "cache"; }); console.log(cachedResources); }); observer.observe({ type: "resource", buffered: true }); ``` The following example uses {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call the method. ```js const scripts = performance.getEntriesByType("resource").filter((entry) => { return entry.deliveryType === "cache"; }); console.log(scripts); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/connectstart/index.md
--- title: "PerformanceResourceTiming: connectStart property" short-title: connectStart slug: Web/API/PerformanceResourceTiming/connectStart page-type: web-api-instance-property browser-compat: api.PerformanceResourceTiming.connectStart --- {{APIRef("Performance API")}} The **`connectStart`** read-only property returns the {{domxref("DOMHighResTimeStamp","timestamp")}} immediately before the user agent starts establishing the connection to the server to retrieve the resource. ## Value The `connectStart` property can have the following values: - A {{domxref("DOMHighResTimeStamp")}} immediately before the browser starts to establish the connection to the server to retrieve the resource. - `0` if the resource was instantaneously retrieved from a cache. - `0` if the resource is a cross-origin request and no {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header is used. ## Examples ### Measuring TCP handshake time The `connectStart` and {{domxref("PerformanceResourceTiming.connectEnd", "connectEnd")}} properties can be used to measure how long it takes for the TCP handshake to happen. ```js const tcp = entry.connectEnd - entry.connectStart; ``` Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { const tcp = entry.connectEnd - entry.connectStart; if (tcp > 0) { console.log(`${entry.name}: TCP handshake duration: ${tcp}ms`); } }); }); observer.observe({ type: "resource", buffered: true }); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js const resources = performance.getEntriesByType("resource"); resources.forEach((entry) => { const tcp = entry.connectEnd - entry.connectStart; if (tcp > 0) { console.log(`${entry.name}: TCP handshake duration: ${tcp}ms`); } }); ``` ### Cross-origin timing information If the value of the `connectStart` property is `0`, the resource might be a cross-origin request. To allow seeing cross-origin timing information, the {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header needs to be set. For example, to allow `https://developer.mozilla.org` to see timing resources, the cross-origin resource should send: ```http Timing-Allow-Origin: https://developer.mozilla.org ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{HTTPHeader("Timing-Allow-Origin")}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/fetchstart/index.md
--- title: "PerformanceResourceTiming: fetchStart property" short-title: fetchStart slug: Web/API/PerformanceResourceTiming/fetchStart page-type: web-api-instance-property browser-compat: api.PerformanceResourceTiming.fetchStart --- {{APIRef("Performance API")}} The **`fetchStart`** read-only property represents a {{domxref("DOMHighResTimeStamp","timestamp")}} immediately before the browser starts to fetch the resource. If there are HTTP redirects, the property returns the time immediately before the user agent starts to fetch the final resource in the redirection. Unlike many other `PerformanceResourceTiming` properties, the `fetchStart` property is available for cross-origin requests without the need of the {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header. ## Value A {{domxref("DOMHighResTimeStamp")}} immediately before the browser starts to fetch the resource. ## Examples ### Measuring time to fetch (without redirects) The `fetchStart` and {{domxref("PerformanceResourceTiming.responseEnd", "responseEnd")}} properties can be used to measure the overall time it took to fetch the final resource (without redirects). If you want to include redirects, the overall time to fetch is provided in the {{domxref("PerformanceEntry.duration", "duration")}} property. ```js const timeToFetch = entry.responseEnd - entry.fetchStart; ``` Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { const timeToFetch = entry.responseEnd - entry.fetchStart; if (timeToFetch > 0) { console.log(`${entry.name}: Time to fetch: ${timeToFetch}ms`); } }); }); observer.observe({ type: "resource", buffered: true }); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js const resources = performance.getEntriesByType("resource"); resources.forEach((entry) => { const timeToFetch = entry.responseEnd - entry.fetchStart; if (timeToFetch > 0) { console.log(`${entry.name}: Time to fetch: ${timeToFetch}ms`); } }); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/encodedbodysize/index.md
--- title: "PerformanceResourceTiming: encodedBodySize property" short-title: encodedBodySize slug: Web/API/PerformanceResourceTiming/encodedBodySize page-type: web-api-instance-property browser-compat: api.PerformanceResourceTiming.encodedBodySize --- {{APIRef("Performance API")}} The **`encodedBodySize`** read-only property represents the size (in octets) received from the fetch (HTTP or cache) of the payload body before removing any applied content encodings (like gzip or Brotli). If the resource is retrieved from an application cache or a local resource, it must return the size of the payload body before removing any applied content encoding. ## Value The `encodedBodySize` property can have the following values: - A number representing the size (in octets) received from the fetch (HTTP or cache), of the payload body, before removing any applied content encoding. - `0` if the resource is a cross-origin request and no {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header is used. ## Examples ### Checking if content was compressed If the `encodedBodySize` and {{domxref("PerformanceResourceTiming.decodedBodySize", "decodedBodySize")}} properties are non-null and differ, the content was compressed (for example, gzip or Brotli). Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { const uncompressed = entry.decodedBodySize && entry.decodedBodySize === entry.encodedBodySize; if (uncompressed) { console.log(`${entry.name} was not compressed!`); } }); }); observer.observe({ type: "resource", buffered: true }); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js const resources = performance.getEntriesByType("resource"); resources.forEach((entry) => { const uncompressed = entry.decodedBodySize && entry.decodedBodySize === entry.encodedBodySize; if (uncompressed) { console.log(`${entry.name} was not compressed!`); } }); ``` ### Cross-origin content size information If the value of the `encodedBodySize` property is `0`, the resource might be a cross-origin request. To expose cross-origin content size information, the {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header needs to be set. For example, to allow `https://developer.mozilla.org` to see content sizes, the cross-origin resource should send: ```http Timing-Allow-Origin: https://developer.mozilla.org ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{HTTPHeader("Timing-Allow-Origin")}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/domainlookupstart/index.md
--- title: "PerformanceResourceTiming: domainLookupStart property" short-title: domainLookupStart slug: Web/API/PerformanceResourceTiming/domainLookupStart page-type: web-api-instance-property browser-compat: api.PerformanceResourceTiming.domainLookupStart --- {{APIRef("Performance API")}} The **`domainLookupStart`** read-only property returns the {{domxref("DOMHighResTimeStamp","timestamp")}} immediately before the browser starts the domain name lookup for the resource. ## Value The `domainLookupStart` property can have the following values: - A {{domxref("DOMHighResTimeStamp")}} immediately before the browser starts the domain name lookup for the resource. - `0` if the resource was instantaneously retrieved from a cache. - `0` if the resource is a cross-origin request and no {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header is used. ## Examples ### Measuring DNS lookup time The `domainLookupStart` and {{domxref("PerformanceResourceTiming.domainLookupEnd", "domainLookupEnd")}} properties can be used to measure how long it takes for the DNS lookup to happen. ```js const dns = entry.domainLookupEnd - entry.domainLookupStart; ``` Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { const dns = entry.domainLookupEnd - entry.domainLookupStart; if (dns > 0) { console.log(`${entry.name}: DNS lookup duration: ${dns}ms`); } }); }); observer.observe({ type: "resource", buffered: true }); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js const resources = performance.getEntriesByType("resource"); resources.forEach((entry) => { const dns = entry.domainLookupEnd - entry.domainLookupStart; if (dns > 0) { console.log(`${entry.name}: DNS lookup duration: ${dns}ms`); } }); ``` ### Cross-origin timing information If the value of the `domainLookupStart` property is `0`, the resource might be a cross-origin request. To allow seeing cross-origin timing information, the {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header needs to be set. For example, to allow `https://developer.mozilla.org` to see timing resources, the cross-origin resource should send: ```http Timing-Allow-Origin: https://developer.mozilla.org ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{HTTPHeader("Timing-Allow-Origin")}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/responsestatus/index.md
--- title: "PerformanceResourceTiming: responseStatus property" short-title: responseStatus slug: Web/API/PerformanceResourceTiming/responseStatus page-type: web-api-instance-property status: - experimental browser-compat: api.PerformanceResourceTiming.responseStatus --- {{APIRef("Performance API")}} {{SeeCompatTable}} The **`responseStatus`** read-only property represents the HTTP response status code returned when fetching the resource. This property maps to {{domxref("Response.status")}} from the [Fetch API](/en-US/docs/Web/API/Fetch_API). ## Value The `responseStatus` property can have the following values: - A number indicating the [HTTP response status code](/en-US/docs/Web/HTTP/Status) returned when fetching the resource. - `0` if the [CORS](/en-US/docs/Web/HTTP/CORS) check fails. - `0` for cross-origin {{HTMLElement("iframe")}} objects. ## Examples ### Checking if a cache was hit The `responseStatus` property can be used to check for cached resources with a {{HTTPStatus("304")}} `Not Modified` response status code. Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { if (entry.responseStatus === 304) { console.log(`${entry.name} was loaded from cache`); } }); }); observer.observe({ type: "resource", buffered: true }); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js const resources = performance.getEntriesByType("resource"); resources.forEach((entry) => { if (entry.responseStatus === 304) { console.log(`${entry.name} was loaded from cache`); } }); ``` Alternatively, if `responseStatus` is not available, you can check if the {{domxref("PerformanceResourceTiming.transferSize", "transferSize")}} property returned `0`. ### Cross-origin response status codes If the value of the `responseStatus` property is `0`, the resource might be a cross-origin request. To allow seeing cross-origin response status codes, the [CORS](/en-US/docs/Web/HTTP/CORS) {{HTTPHeader("Access-Control-Allow-Origin")}} HTTP response header needs to be set. For example, to allow `https://developer.mozilla.org` to see response status codes, the cross-origin resource should send: ```http Access-Control-Allow-Origin: https://developer.mozilla.org ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - [HTTP response status code](/en-US/docs/Web/HTTP/Status) - {{domxref("Response.status")}} - [CORS](/en-US/docs/Web/HTTP/CORS)
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/transfersize/index.md
--- title: "PerformanceResourceTiming: transferSize property" short-title: transferSize slug: Web/API/PerformanceResourceTiming/transferSize page-type: web-api-instance-property browser-compat: api.PerformanceResourceTiming.transferSize --- {{APIRef("Performance API")}} The **`transferSize`** read-only property represents the size (in octets) of the fetched resource. The size includes the response header fields plus the response payload body (as defined by [RFC7230](https://httpwg.org/specs/rfc7230.html#message.body)). If the resource is fetched from a local cache, or if it is a cross-origin resource, this property returns zero. ## Value The `transferSize` property can have the following values: - A number representing the size (in octets) of the fetched resource. The size includes the response header fields plus the [response payload body](https://httpwg.org/specs/rfc7230.html#message.body) (RFC7230). - `0` if the resource was instantaneously retrieved from a cache. - `0` if the resource is a cross-origin request and no {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header is used. ## Examples ### Checking if a cache was hit For environments not supporting the {{domxref("PerformanceResourceTiming.responseStatus", "responseStatus")}} property, the `transferSize` property can be used to determine cache hits. If `transferSize` is zero and the resource has a non-zero decoded body size (meaning the resource is same-origin or has {{HTTPHeader("Timing-Allow-Origin")}}), the resource was fetched from a local cache. Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { if (entry.transferSize === 0 && entry.decodedBodySize > 0) { console.log(`${entry.name} was loaded from cache`); } }); }); observer.observe({ type: "resource", buffered: true }); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js const resources = performance.getEntriesByType("resource"); resources.forEach((entry) => { if (entry.transferSize === 0 && entry.decodedBodySize > 0) { console.log(`${entry.name} was loaded from cache`); } }); ``` ### Cross-origin content size information If the value of the `transferSize` property is `0` and wasn't loaded from a local cache, the resource might be a cross-origin request. To expose cross-origin content size information, the {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header needs to be set. For example, to allow `https://developer.mozilla.org` to see content sizes, the cross-origin resource should send: ```http Timing-Allow-Origin: https://developer.mozilla.org ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{HTTPHeader("Timing-Allow-Origin")}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/redirectstart/index.md
--- title: "PerformanceResourceTiming: redirectStart property" short-title: redirectStart slug: Web/API/PerformanceResourceTiming/redirectStart page-type: web-api-instance-property browser-compat: api.PerformanceResourceTiming.redirectStart --- {{APIRef("Performance API")}} The **`redirectStart`** read-only property returns a {{domxref("DOMHighResTimeStamp","timestamp")}} representing the start time of the fetch which that initiates the redirect. If there are HTTP redirects when fetching the resource and if any of the redirects are not from the same origin as the current document, but the timing allow check algorithm passes for each redirected resource, this property returns the starting time of the fetch that initiates the redirect; otherwise, zero is returned. To get the amount of redirects, see also {{domxref("PerformanceNavigationTiming.redirectCount")}}. ## Value The `redirectStart` property can have the following values: - A {{domxref("DOMHighResTimeStamp","timestamp")}} representing the start time of the fetch which initiates the redirect. - `0` if there is no redirect. - `0` if the resource is a cross-origin request and no {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header is used. ## Examples ### Measuring redirection time The `redirectStart` and {{domxref("PerformanceResourceTiming.redirectEnd", "redirectEnd")}} properties can be used to measure how long the redirection takes. ```js const redirect = entry.redirectEnd - entry.redirectStart; ``` Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { const redirect = entry.redirectEnd - entry.redirectStart; if (redirect > 0) { console.log(`${entry.name}: Redirect time: ${redirect}ms`); } }); }); observer.observe({ type: "resource", buffered: true }); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js const resources = performance.getEntriesByType("resource"); resources.forEach((entry) => { const redirect = entry.redirectEnd - entry.redirectStart; if (redirect > 0) { console.log(`${entry.name}: Redirect time: ${redirect}ms`); } }); ``` ### Cross-origin timing information If the value of the `redirectStart` property is `0`, the resource might be a cross-origin request. To allow seeing cross-origin timing information, the {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header needs to be set. For example, to allow `https://developer.mozilla.org` to see timing resources, the cross-origin resource should send: ```http Timing-Allow-Origin: https://developer.mozilla.org ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{domxref("PerformanceNavigationTiming.redirectCount")}} - {{HTTPHeader("Timing-Allow-Origin")}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/renderblockingstatus/index.md
--- title: "PerformanceResourceTiming: renderBlockingStatus property" short-title: renderBlockingStatus slug: Web/API/PerformanceResourceTiming/renderBlockingStatus page-type: web-api-instance-property browser-compat: api.PerformanceResourceTiming.renderBlockingStatus --- {{APIRef("Resource Timing API")}} The **`renderBlockingStatus`** read-only property returns the render-blocking status of the resource. It is useful to determine resources that: - weren't render-blocking and therefore could be delayed, or - were render-blocking and therefore could be preloaded. ## Description Render-blocking resources are static files, such as fonts, CSS, and JavaScript that block or delay the browser from rendering page content to the screen. The browser determines these blocking resources automatically and doesn't render any pixel to the screen before all stylesheets and synchronous scripts are loaded and evaluated. This prevents Flash of Unstyled Contents ("FOUC"). In addition to the automatic render-blocking mechanism, `blocking="render"` can be provided as an attribute and value to {{HTMLElement("script")}}, {{HTMLElement("style")}} or {{HTMLElement("link")}} elements to specify explicit render-blocking. For example: ```html <link blocking="render" rel="preload" href="critical-font.woff2" as="font" crossorigin /> ``` ## Value The `renderBlockingStatus` property can have the following values: - `"blocking"` - : The resource might potentially block rendering. - `"non-blocking"` - : The resource does not block rendering. ## Examples ### Logging resources that block rendering The `renderBlockingStatus` property can be used to see resources that block rendering. Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { if (entry.renderBlockingStatus === "blocking") { console.log(`${entry.name} is render-blocking.`); } }); }); observer.observe({ type: "resource", buffered: true }); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js const resources = performance.getEntriesByType("resource"); resources.forEach((entry) => { if (entry.renderBlockingStatus === "blocking") { console.log(`${entry.name} is render-blocking.`); } }); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/servertiming/index.md
--- title: "PerformanceResourceTiming: serverTiming property" short-title: serverTiming slug: Web/API/PerformanceResourceTiming/serverTiming page-type: web-api-instance-property browser-compat: api.PerformanceResourceTiming.serverTiming --- {{APIRef("Performance API")}} {{securecontext_header}} The **`serverTiming`** read-only property returns an array of {{domxref("PerformanceServerTiming")}} entries containing server timing metrics. Server timing metrics require the server to send the {{HTTPHeader("Server-Timing")}} header. For example: ```http Server-Timing: cache;desc="Cache Read";dur=23.2 ``` The `serverTiming` entries can live on `navigation` and `resource` entries. ## Value An array of {{domxref("PerformanceServerTiming")}} entries. ## Examples ### Logging server timing entries You can use a {{domxref("PerformanceObserver")}} to watch for {{domxref("PerformanceServerTiming")}} entries. Each server entry's duration is logged to the console. Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { entry.serverTiming.forEach((serverEntry) => { console.log(`${serverEntry.name} duration: ${serverEntry.duration}`); }); }); }); ["navigation", "resource"].forEach((type) => observer.observe({ type, buffered: true }), ); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js for (const entryType of ["navigation", "resource"]) { for (const { name: url, serverTiming } of performance.getEntriesByType( entryType, )) { if (serverTiming) { for (const { name, duration } of serverTiming) { console.log(`${url}: ${name} duration: ${duration}`); } } } } ``` ### Cross-origin server timing information Access to server timing information is restricted to the same origin. To expose cross-origin timing information, the {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header needs to be set. For example, to allow `https://developer.mozilla.org` to see server timing information, the cross-origin resource should send: ```http Timing-Allow-Origin: https://developer.mozilla.org ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{domxref("PerformanceServerTiming")}} - {{HTTPHeader("Server-Timing")}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/domainlookupend/index.md
--- title: "PerformanceResourceTiming: domainLookupEnd property" short-title: domainLookupEnd slug: Web/API/PerformanceResourceTiming/domainLookupEnd page-type: web-api-instance-property browser-compat: api.PerformanceResourceTiming.domainLookupEnd --- {{APIRef("Performance API")}} The **`domainLookupEnd`** read-only property returns the {{domxref("DOMHighResTimeStamp","timestamp")}} immediately after the browser finishes the domain-name lookup for the resource. If the user agent has the domain information in cache, {{domxref("PerformanceResourceTiming.domainLookupStart","domainLookupStart")}} and {{domxref("PerformanceResourceTiming.domainLookupEnd","domainLookupEnd")}} represent the times when the user agent starts and ends the domain data retrieval from the cache. ## Value The `domainLookupEnd` property can have the following values: - A {{domxref("DOMHighResTimeStamp")}} representing the time immediately after the browser finishes the domain name lookup for the resource. - `0` if the resource was instantaneously retrieved from a cache. - `0` if the resource is a cross-origin request and no {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header is used. ## Examples ### Measuring DNS lookup time The `domainLookupEnd` and {{domxref("PerformanceResourceTiming.domainLookupStart", "domainLookupStart")}} properties can be used to measure how long it takes for the DNS lookup to happen. ```js const dns = entry.domainLookupEnd - entry.domainLookupStart; ``` Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { const dns = entry.domainLookupEnd - entry.domainLookupStart; if (dns > 0) { console.log(`${entry.name}: DNS lookup duration: ${dns}ms`); } }); }); observer.observe({ type: "resource", buffered: true }); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js const resources = performance.getEntriesByType("resource"); resources.forEach((entry) => { const dns = entry.domainLookupEnd - entry.domainLookupStart; if (dns > 0) { console.log(`${entry.name}: DNS lookup duration: ${dns}ms`); } }); ``` ### Cross-origin timing information If the value of the `domainLookupEnd` property is `0`, the resource might be a cross-origin request. To allow seeing cross-origin timing information, the {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header needs to be set. For example, to allow `https://developer.mozilla.org` to see timing resources, the cross-origin resource should send: ```http Timing-Allow-Origin: https://developer.mozilla.org ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{HTTPHeader("Timing-Allow-Origin")}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/firstinterimresponsestart/index.md
--- title: "PerformanceResourceTiming: firstInterimResponseStart property" short-title: firstInterimResponseStart slug: Web/API/PerformanceResourceTiming/firstInterimResponseStart page-type: web-api-instance-property status: - experimental browser-compat: api.PerformanceResourceTiming.firstInterimResponseStart --- {{APIRef("Performance API")}}{{SeeCompatTable}} The **`firstInterimResponseStart`** read-only property returns a {{domxref("DOMHighResTimeStamp","timestamp")}} immediately after the browser receives the first byte of the interim 1xx response (for example, 100 Continue or 103 Early Hints) from the server. There is no _end_ property for `firstInterimResponseStart`. ## Value The `firstInterimResponseStart` property can have the following values: - A {{domxref("DOMHighResTimeStamp")}} immediately after the browser receives the first interim bytes of the response from the server. - `0` if the resource was instantaneously retrieved from a cache. - `0` if the resource is a cross-origin request and no {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header is used. ## Examples ### Measuring request time The `firstInterimResponseStart` and {{domxref("PerformanceResourceTiming.requestStart", "requestStart")}} properties can be used to measure how long it takes to the browser to receive an interim response after the sending the request. ```js const request = entry.firstInterimResponseStart - entry.requestStart; ``` The following example uses a {{domxref("PerformanceObserver")}} to notify of new `resource` performance entries as they are recorded in the browser's performance timeline. The `buffered` option is used for accessing entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { const request = entry.firstInterimResponseStart - entry.requestStart; if (request > 0) { console.log(`${entry.name}: Interim response time: ${request}ms`); } }); }); observer.observe({ type: "resource", buffered: true }); ``` The following example uses {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call the method. ```js const resources = performance.getEntriesByType("resource"); resources.forEach((entry) => { const request = entry.firstInterimResponseStart - entry.requestStart; if (request > 0) { console.log(`${entry.name}: Interim response time: ${request}ms`); } }); ``` ### Cross-origin timing information If the value of the `firstInterimResponseStart` property is `0`, the resource might be a cross-origin request. To allow seeing cross-origin timing information, the {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header needs to be set. For example, to allow `https://developer.mozilla.org` to see timing resources, the cross-origin resource should send: ```http Timing-Allow-Origin: https://developer.mozilla.org ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{HTTPHeader("Timing-Allow-Origin")}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/secureconnectionstart/index.md
--- title: "PerformanceResourceTiming: secureConnectionStart property" short-title: secureConnectionStart slug: Web/API/PerformanceResourceTiming/secureConnectionStart page-type: web-api-instance-property browser-compat: api.PerformanceResourceTiming.secureConnectionStart --- {{APIRef("Performance API")}} The **`secureConnectionStart`** read-only property returns a {{domxref("DOMHighResTimeStamp","timestamp")}} immediately before the browser starts the handshake process to secure the current connection. If a secure connection is not used, the property returns zero. ## Value The `secureConnectionStart` property can have the following values: - A {{domxref("DOMHighResTimeStamp")}} indicating the time immediately before the browser starts the handshake process to secure the current connection if the resource is fetched over a secure connection. - `0` if no secure connection is used. - `0` if the resource was instantaneously retrieved from a cache. - `0` if the resource is a cross-origin request and no {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header is used. ## Examples ### Measuring TLS negotiation time The `secureConnectionStart` and {{domxref("PerformanceResourceTiming.requestStart", "requestStart")}} properties can be used to measure how long it takes for the TLS negotiation to happen. ```js const tls = entry.requestStart - entry.secureConnectionStart; ``` Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { const tls = entry.requestStart - entry.secureConnectionStart; if (tls > 0) { console.log(`${entry.name}: TLS negotiation duration: ${tls}ms`); } }); }); observer.observe({ type: "resource", buffered: true }); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js const resources = performance.getEntriesByType("resource"); resources.forEach((entry) => { const tls = entry.requestStart - entry.secureConnectionStart; if (tls > 0) { console.log(`${entry.name}: TLS negotiation duration: ${tls}ms`); } }); ``` ### Cross-origin timing information If the value of the `secureConnectionStart` property is `0`, the resource is either not using a secure connection or it is a cross-origin request. To allow seeing cross-origin timing information, the {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header needs to be set. For example, to allow `https://developer.mozilla.org` to see timing resources, the cross-origin resource should send: ```http Timing-Allow-Origin: https://developer.mozilla.org ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{HTTPHeader("Timing-Allow-Origin")}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/workerstart/index.md
--- title: "PerformanceResourceTiming: workerStart property" short-title: workerStart slug: Web/API/PerformanceResourceTiming/workerStart page-type: web-api-instance-property browser-compat: api.PerformanceResourceTiming.workerStart --- {{APIRef("Performance API")}} The **`workerStart`** read-only property of the {{domxref("PerformanceResourceTiming")}} interface returns a {{domxref("DOMHighResTimeStamp")}} immediately before dispatching the {{domxref("FetchEvent")}} if a Service Worker thread is already running, or immediately before starting the Service Worker thread if it is not already running. If the resource is not intercepted by a Service Worker the property will always return 0. ## Value The `workerStart` property can have the following values: - A {{domxref("DOMHighResTimeStamp")}}. - `0` if no service worker is used. - `0` if the resource is a cross-origin request and no {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header is used. ## Examples ### Measuring ServiceWorker processing time The `workerStart` and {{domxref("PerformanceResourceTiming.fetchStart", "fetchStart")}} properties can be used to measure the processing time of a {{domxref("ServiceWorker")}}. ```js const workerProcessingTime = entry.fetchStart - entry.workerStart; ``` Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { const workerProcessingTime = entry.fetchStart - entry.workerStart; if (workerProcessingTime > 0) { console.log( `${entry.name}: Worker processing time: ${workerProcessingTime}ms`, ); } }); }); observer.observe({ type: "resource", buffered: true }); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js const resources = performance.getEntriesByType("resource"); resources.forEach((entry) => { const workerProcessingTime = entry.fetchStart - entry.workerStart; if (workerProcessingTime > 0) { console.log( `${entry.name}: Worker processing time: ${workerProcessingTime}ms`, ); } }); ``` ### Cross-origin timing information If the value of the `workerStart` property is `0`, the resource might be a cross-origin request. To allow seeing cross-origin timing information, the {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header needs to be set. For example, to allow `https://developer.mozilla.org` to see timing resources, the cross-origin resource should send: ```http Timing-Allow-Origin: https://developer.mozilla.org ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{HTTPHeader("Timing-Allow-Origin")}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/requeststart/index.md
--- title: "PerformanceResourceTiming: requestStart property" short-title: requestStart slug: Web/API/PerformanceResourceTiming/requestStart page-type: web-api-instance-property browser-compat: api.PerformanceResourceTiming.requestStart --- {{APIRef("Performance API")}} The **`requestStart`** read-only property returns a {{domxref("DOMHighResTimeStamp","timestamp")}} of the time immediately before the browser starts requesting the resource from the server, cache, or local resource. If the transport connection fails and the browser retires the request, the value returned will be the start of the retry request. There is no _end_ property for `requestStart`. To measure the request time, calculate {{domxref("PerformanceResourceTiming.responseStart", "responseStart")}} - `requestStart` (see the example below). ## Value The `requestStart` property can have the following values: - A {{domxref("DOMHighResTimeStamp")}} representing the time immediately before the browser starts requesting the resource from the server. - `0` if the resource was instantaneously retrieved from a cache. - `0` if the resource is a cross-origin request and no {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header is used. ## Examples ### Measuring request time The `requestStart` and {{domxref("PerformanceResourceTiming.responseStart", "responseStart")}} properties can be used to measure how long the request takes. ```js const request = entry.responseStart - entry.requestStart; ``` Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { const request = entry.responseStart - entry.requestStart; if (request > 0) { console.log(`${entry.name}: Request time: ${request}ms`); } }); }); observer.observe({ type: "resource", buffered: true }); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js const resources = performance.getEntriesByType("resource"); resources.forEach((entry) => { const request = entry.responseStart - entry.requestStart; if (request > 0) { console.log(`${entry.name}: Request time: ${request}ms`); } }); ``` ### Cross-origin timing information If the value of the `requestStart` property is `0`, the resource might be a cross-origin request. To allow seeing cross-origin timing information, the {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header needs to be set. For example, to allow `https://developer.mozilla.org` to see timing resources, the cross-origin resource should send: ```http Timing-Allow-Origin: https://developer.mozilla.org ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{HTTPHeader("Timing-Allow-Origin")}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/responsestart/index.md
--- title: "PerformanceResourceTiming: responseStart property" short-title: responseStart slug: Web/API/PerformanceResourceTiming/responseStart page-type: web-api-instance-property browser-compat: api.PerformanceResourceTiming.responseStart --- {{APIRef("Performance API")}} The **`responseStart`** read-only property returns a {{domxref("DOMHighResTimeStamp","timestamp")}} immediately after the browser receives the first byte of the response from the server, cache, or local resource. ## Value The `responseStart` property can have the following values: - A {{domxref("DOMHighResTimeStamp")}} immediately after the browser receives the first byte of the response from the server. - `0` if the resource was instantaneously retrieved from a cache. - `0` if the resource is a cross-origin request and no {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header is used. ## Examples ### Measuring request time The `responseStart` and {{domxref("PerformanceResourceTiming.requestStart", "requestStart")}} properties can be used to measure how long the request takes. ```js const request = entry.responseStart - entry.requestStart; ``` Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { const request = entry.responseStart - entry.requestStart; if (request > 0) { console.log(`${entry.name}: Request time: ${request}ms`); } }); }); observer.observe({ type: "resource", buffered: true }); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js const resources = performance.getEntriesByType("resource"); resources.forEach((entry) => { const request = entry.responseStart - entry.requestStart; if (request > 0) { console.log(`${entry.name}: Request time: ${request}ms`); } }); ``` ### Cross-origin timing information If the value of the `responseStart` property is `0`, the resource might be a cross-origin request. To allow seeing cross-origin timing information, the {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header needs to be set. For example, to allow `https://developer.mozilla.org` to see timing resources, the cross-origin resource should send: ```http Timing-Allow-Origin: https://developer.mozilla.org ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{HTTPHeader("Timing-Allow-Origin")}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/redirectend/index.md
--- title: "PerformanceResourceTiming: redirectEnd property" short-title: redirectEnd slug: Web/API/PerformanceResourceTiming/redirectEnd page-type: web-api-instance-property browser-compat: api.PerformanceResourceTiming.redirectEnd --- {{APIRef("Performance API")}} The **`redirectEnd`** read-only property returns a {{domxref("DOMHighResTimeStamp","timestamp")}} immediately after receiving the last byte of the response of the last redirect. When fetching a resource, if there are multiple HTTP redirects, and any of the redirects have an origin that is different from the current document, and the timing allow check algorithm passes for each redirected resource, this property returns the time immediately after receiving the last byte of the response of the last redirect; otherwise, zero is returned. To get the amount of redirects, see also {{domxref("PerformanceNavigationTiming.redirectCount")}}. ## Value The `redirectEnd` property can have the following values: - A {{domxref("DOMHighResTimeStamp","timestamp")}} immediately after receiving the last byte of the response of the last redirect. - `0` if there is no redirect. - `0` if the resource is a cross-origin request and no {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header is used. ## Examples ### Measuring redirection time The `redirectEnd` and {{domxref("PerformanceResourceTiming.redirectStart", "redirectStart")}} properties can be used to measure how long the redirection takes. ```js const redirect = entry.redirectEnd - entry.redirectStart; ``` Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { const redirect = entry.redirectEnd - entry.redirectStart; if (redirect > 0) { console.log(`${entry.name}: Redirect time: ${redirect}ms`); } }); }); observer.observe({ type: "resource", buffered: true }); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js const resources = performance.getEntriesByType("resource"); resources.forEach((entry) => { const redirect = entry.redirectEnd - entry.redirectStart; if (redirect > 0) { console.log(`${entry.name}: Redirect time: ${redirect}ms`); } }); ``` ### Cross-origin timing information If the value of the `redirectEnd` property is `0`, the resource might be a cross-origin request. To allow seeing cross-origin timing information, the {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header needs to be set. For example, to allow `https://developer.mozilla.org` to see timing resources, the cross-origin resource should send: ```http Timing-Allow-Origin: https://developer.mozilla.org ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{domxref("PerformanceNavigationTiming.redirectCount")}} - {{HTTPHeader("Timing-Allow-Origin")}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/initiatortype/index.md
--- title: "PerformanceResourceTiming: initiatorType property" short-title: initiatorType slug: Web/API/PerformanceResourceTiming/initiatorType page-type: web-api-instance-property browser-compat: api.PerformanceResourceTiming.initiatorType --- {{APIRef("Performance API")}} The **`initiatorType`** read-only property is a string representing web platform feature that initiated the resource load. > **Note:** This property does not represent the type of content fetched. A `.css` file can be fetched using a {{HTMLElement("link")}} element leading to an `initiatorType` of `link`. When loading images using `background: url()` in a CSS file, the `initiatorType` will be `css` and not `img`. ## Value The `initiatorType` property can have the following values, or `other` if none of the conditions match. - `audio` - : If the request was initiated by an {{HTMLElement("audio")}} element's `src` attribute. - `beacon` - : If the request was initiated by a {{domxref("navigator.sendBeacon()")}} method. - `body` - : If the request was initiated by a {{HTMLElement("body")}} element's `background` attribute. - `css` - : If the request was initiated by a CSS `url()` function. - `early-hint` - : If the request was initiated by an {{HTTPStatus("103")}} `Early Hint` response. - `embed` - : If the request was initiated by an {{HTMLElement("embed")}} element's `src` attribute. - `fetch` - : If the request was initiated by a {{domxref("fetch()")}} method. - `frame` - : If the request was initiated by loading a {{HTMLElement("frame")}} element. - `iframe` - : If the request was initiated by an {{HTMLElement("iframe")}} element's `src` attribute. - `icon` {{non-standard_inline}} - : If the request was initiated by a favicon. Non-standard and only reported by Safari. - `image` - : If the request was initiated by an {{SVGElement("image")}} element. - `img` - : If the request was initiated by an {{HTMLElement("img")}} element's `src` or `srcset` attribute. - `input` - : If the request was initiated by an {{HTMLElement("input")}} element of type `image`. - `link` - : If the request was initiated by a {{HTMLElement("link")}} element. - `navigation` - : If the request was initiated by a navigation request. - `object` - : If the request was initiated by an {{HTMLElement("object")}} element. - `ping` - : If the request was initiated by an {{HTMLElement("a")}} element's `ping`. - `script` - : If the request was initiated by a {{HTMLElement("script")}} element. - `track` - : If the request was initiated by a {{HTMLElement("track")}} element's `src`. - `video` - : If the request was initiated by a {{HTMLElement("video")}} element's `poster` or `src`. - `xmlhttprequest` - : If the request was initiated by an {{domxref("XMLHttpRequest")}}. ## Examples ### Filtering resources The `initiatorType` property can be used to get specific resource timing entries only. For example, only those that were initiated by {{HTMLElement("script")}} elements. Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { const scripts = list.getEntries().filter((entry) => { return entry.initiatorType === "script"; }); console.log(scripts); }); observer.observe({ type: "resource", buffered: true }); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js const scripts = performance.getEntriesByType("resource").filter((entry) => { return entry.initiatorType === "script"; }); console.log(scripts); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/tojson/index.md
--- title: "PerformanceResourceTiming: toJSON() method" short-title: toJSON() slug: Web/API/PerformanceResourceTiming/toJSON page-type: web-api-instance-method browser-compat: api.PerformanceResourceTiming.toJSON --- {{APIRef("Performance API")}} The **`toJSON()`** method of the {{domxref("PerformanceResourceTiming")}} interface is a {{Glossary("Serialization","serializer")}}; it returns a JSON representation of the {{domxref("PerformanceResourceTiming")}} object. ## Syntax ```js-nolint toJSON() ``` ### Parameters None. ### Return value A {{jsxref("JSON")}} object that is the serialization of the {{domxref("PerformanceResourceTiming")}} object. ## Examples ### Using the toJSON method In this example, calling `entry.toJSON()` returns a JSON representation of the `PerformanceResourceTiming` object. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { console.log(entry.toJSON()); }); }); observer.observe({ type: "resource", buffered: true }); ``` This would log a JSON object like so: ```json { "name": "https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/31px-Commons-logo.svg.png", "entryType": "resource", "startTime": 110.80000001192093, "duration": 11.599999994039536, "initiatorType": "img", "nextHopProtocol": "h2", "renderBlockingStatus": "non-blocking", "workerStart": 0, "redirectStart": 0, "redirectEnd": 0, "fetchStart": 110.80000001192093, "domainLookupStart": 110.80000001192093, "domainLookupEnd": 110.80000001192093, "connectStart": 110.80000001192093, "connectEnd": 110.80000001192093, "secureConnectionStart": 110.80000001192093, "requestStart": 117.30000001192093, "responseStart": 120.40000000596046, "responseStatus": 200, "responseEnd": 122.40000000596046, "transferSize": 0, "encodedBodySize": 880, "decodedBodySize": 880, "serverTiming": [ { "name": "cache", "duration": 0, "description": "hit-front" }, { "name": "host", "duration": 0, "description": "cp3061" } ] } ``` To get a JSON string, you can use [`JSON.stringify(entry)`](/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify) directly; it will call `toJSON()` automatically. ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{jsxref("JSON")}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/nexthopprotocol/index.md
--- title: "PerformanceResourceTiming: nextHopProtocol property" short-title: nextHopProtocol slug: Web/API/PerformanceResourceTiming/nextHopProtocol page-type: web-api-instance-property browser-compat: api.PerformanceResourceTiming.nextHopProtocol --- {{APIRef("Performance API")}} The **`nextHopProtocol`** read-only property is a string representing the network protocol used to fetch the resource, as identified by the [ALPN Protocol ID (RFC7301)](https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml#alpn-protocol-ids). When a proxy is used, if a tunnel connection is established, this property returns the ALPN Protocol ID of the tunneled protocol. Otherwise, this property returns the ALPN Protocol ID of the first hop to the proxy. ## Value The `nextHopProtocol` property can have the following values: - A string representing the network protocol used to fetch the resource, as identified by the [ALPN Protocol ID (RFC7301)](https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml#alpn-protocol-ids). Typical values are: - `"http/0.9"` - `"http/1.0"` - `"http/1.1"` - `"h2"` - `"h2c"` - `"h3"` - An empty string if the resource is a cross-origin request and no {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header is used. ## Examples ### Logging resources that use neither HTTP/2 nor HTTP/3 The `nextHopProtocol` property can be used to see resources that don't use the HTTP/2 or HTTP/3 protocols. Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { const protocol = entry.nextHopProtocol; if (protocol && !(protocol === "h2" || protocol === "h3")) { console.log(`${entry.name} uses ${protocol}.`); } }); }); observer.observe({ type: "resource", buffered: true }); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js const resources = performance.getEntriesByType("resource"); resources.forEach((entry) => { const protocol = entry.nextHopProtocol; if (protocol && !(protocol === "h2" || protocol === "h3")) { console.log(`${entry.name} uses ${protocol}.`); } }); ``` ### Cross-origin network protocol information If the value of the `nextHopProtocol` property is an empty string, the resource might be a cross-origin request. To expose cross-origin network protocol information, the {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header needs to be set. For example, to allow `https://developer.mozilla.org` to see network protocol information, the cross-origin resource should send: ```http Timing-Allow-Origin: https://developer.mozilla.org ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{HTTPHeader("Timing-Allow-Origin")}} - {{Glossary("HTTP 2", "HTTP/2")}} - {{Glossary("HTTP 3", "HTTP/3")}}
0
data/mdn-content/files/en-us/web/api/performanceresourcetiming
data/mdn-content/files/en-us/web/api/performanceresourcetiming/connectend/index.md
--- title: "PerformanceResourceTiming: connectEnd property" short-title: connectEnd slug: Web/API/PerformanceResourceTiming/connectEnd page-type: web-api-instance-property browser-compat: api.PerformanceResourceTiming.connectEnd --- {{APIRef("Performance API")}} The **`connectEnd`** read-only property returns the {{domxref("DOMHighResTimeStamp","timestamp")}} immediately after the browser finishes establishing the connection to the server to retrieve the resource. The timestamp value includes the time interval to establish the transport connection, as well as other time intervals such as TLS handshake and [SOCKS](https://en.wikipedia.org/wiki/SOCKS) authentication. ## Value The `connectEnd` property can have the following values: - A {{domxref("DOMHighResTimeStamp")}} representing the time after a connection is established. - `0` if the resource was instantaneously retrieved from a cache. - `0` if the resource is a cross-origin request and no {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header is used. ## Examples ### Measuring TCP handshake time The `connectEnd` and {{domxref("PerformanceResourceTiming.connectStart", "connectStart")}} properties can be used to measure how long it takes for the TCP handshake to happen. ```js const tcp = entry.connectEnd - entry.connectStart; ``` Example using a {{domxref("PerformanceObserver")}}, which notifies of new `resource` performance entries as they are recorded in the browser's performance timeline. Use the `buffered` option to access entries from before the observer creation. ```js const observer = new PerformanceObserver((list) => { list.getEntries().forEach((entry) => { const tcp = entry.connectEnd - entry.connectStart; if (tcp > 0) { console.log(`${entry.name}: TCP handshake duration: ${tcp}ms`); } }); }); observer.observe({ type: "resource", buffered: true }); ``` Example using {{domxref("Performance.getEntriesByType()")}}, which only shows `resource` performance entries present in the browser's performance timeline at the time you call this method: ```js const resources = performance.getEntriesByType("resource"); resources.forEach((entry) => { const tcp = entry.connectEnd - entry.connectStart; if (tcp > 0) { console.log(`${entry.name}: TCP handshake duration: ${tcp}ms`); } }); ``` ### Cross-origin timing information If the value of the `connectEnd` property is `0`, the resource might be a cross-origin request. To allow seeing cross-origin timing information, the {{HTTPHeader("Timing-Allow-Origin")}} HTTP response header needs to be set. For example, to allow `https://developer.mozilla.org` to see timing resources, the cross-origin resource should send: ```http Timing-Allow-Origin: https://developer.mozilla.org ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{HTTPHeader("Timing-Allow-Origin")}}
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/khr_parallel_shader_compile/index.md
--- title: KHR_parallel_shader_compile extension short-title: KHR_parallel_shader_compile slug: Web/API/KHR_parallel_shader_compile page-type: webgl-extension browser-compat: api.KHR_parallel_shader_compile --- {{APIRef("WebGL")}} The **`KHR_parallel_shader_compile`** extension is part of the [WebGL API](/en-US/docs/Web/API/WebGL_API) and enables a non-blocking poll operation, so that compile/link status availability (`COMPLETION_STATUS_KHR`) can be queried without potentially incurring stalls. In other words you can check the status of your shaders compiling without blocking the runtime. WebGL extensions are available using the {{domxref("WebGLRenderingContext.getExtension()")}} method. For more information, see also [Using Extensions](/en-US/docs/Web/API/WebGL_API/Using_Extensions) in the [WebGL tutorial](/en-US/docs/Web/API/WebGL_API/Tutorial). ## Constants - `ext.COMPLETION_STATUS_KHR` - : A GLenum. ## Examples Enable the extension: ```js const ext = gl.getExtension("KHR_parallel_shader_compile"); ``` In general, best practice with or without the extension is: ```js // Assuming lists of `shaders` and `programs`: for (const x of shaders) gl.compileShader(x); // Never check compile status unless subsequent linking fails. for (const x of programs) gl.linkProgram(x); ``` With the extension, apps would be able to poll whether programs have linked without janking, but these are likely to take the same total wall time to link: ```js // Generator yielding a progress ratio [0.0, 1.0]. // Without the extension, this will jank and only check one program per generation. function* linkingProgress(programs) { const ext = gl.getExtension("KHR_parallel_shader_compile"); let todo = programs.slice(); while (todo.length) { if (ext) { todo = todo.filter( (x) => !gl.getProgramParameter(x, ext.COMPLETION_STATUS_KHR), ); } else { const x = todo.pop(); gl.getProgramParameter(x, gl.LINK_STATUS); } if (!todo.length) return; yield 1.0 - todo.length / programs.length; } } ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{domxref("WebGLRenderingContext.getExtension()")}}
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/inputdevicecapabilities/index.md
--- title: InputDeviceCapabilities slug: Web/API/InputDeviceCapabilities page-type: web-api-interface status: - experimental browser-compat: api.InputDeviceCapabilities --- {{APIRef("Input Device Capabilities API")}}{{SeeCompatTable}} The **`InputDeviceCapabilities`** interface of the {{domxref("InputDeviceCapabilities API", "Input Device Capabilities API", "", "nocode")}} provides information about the physical device or a group of related devices responsible for generating input events. Events caused by the same physical input device get the same instance of this object, but the converse isn't true. For example, two mice with the same capabilities in a system may appear as a single `InputDeviceCapabilities` instance. In some instances, `InputDeviceCapabilities` represents the capabilities of logical devices rather than physical devices. This allows, for example, touchscreen keyboards and physical keyboards to be represented the same way when they produce the same input. ## Constructors - {{domxref("InputDeviceCapabilities.InputDeviceCapabilities", "InputDeviceCapabilities()")}} {{Experimental_Inline}} - : Creates an `InputDeviceCapabilities` object. ## Instance properties - {{DOMxRef("InputDeviceCapabilities.firesTouchEvents")}} {{ReadOnlyInline}} {{Experimental_Inline}} - : A {{JSxRef("Boolean")}} that indicates whether the device dispatches touch events. ## Instance methods None. ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/inputdevicecapabilities
data/mdn-content/files/en-us/web/api/inputdevicecapabilities/inputdevicecapabilities/index.md
--- title: "InputDeviceCapabilities: InputDeviceCapabilities() constructor" short-title: InputDeviceCapabilities() slug: Web/API/InputDeviceCapabilities/InputDeviceCapabilities page-type: web-api-constructor status: - experimental browser-compat: api.InputDeviceCapabilities.InputDeviceCapabilities --- {{APIRef("Input Device Capabilities API")}}{{SeeCompatTable}} The `InputDeviceCapabilities()` constructor creates a new {{domxref("InputDeviceCapabilities")}} object provides information about the physical device responsible for generating a touch event. ## Syntax ```js-nolint new InputDeviceCapabilities() new InputDeviceCapabilities(InputDeviceCapabilitiesInit) ``` ### Returns An instance of the {{domxref("InputDeviceCapabilities")}} interface. ### Parameters - `InputDeviceCapabilitiesInit` {{optional_inline}} - : A dictionary object containing a set of device capabilities. It contains the following property. - `fireTouchEvents`: A boolean value that indicates whether the device dispatches touch events. ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/inputdevicecapabilities
data/mdn-content/files/en-us/web/api/inputdevicecapabilities/firestouchevents/index.md
--- title: "InputDeviceCapabilities: firesTouchEvents property" short-title: firesTouchEvents slug: Web/API/InputDeviceCapabilities/firesTouchEvents page-type: web-api-instance-property status: - experimental browser-compat: api.InputDeviceCapabilities.firesTouchEvents --- {{APIRef("Input Device Capabilities API")}}{{SeeCompatTable}} The **`firesTouchEvents`** read-only property of the {{domxref("InputDeviceCapabilities")}} interface returns a boolean value that indicates whether the device dispatches touch events. You can use this property to detect mouse events that represent an action that may already have been handled by touch event handlers. This doesn't necessarily mean the device is a touch screen. For example, stylus and mouse devices typically generate touch events on mobile browsers. ## Syntax ```js-nolint const boolean = InputDeviceCapabilities.firesTouchEvents ``` ### Returns A {{jsxref('Boolean')}} ## Example ```js myButton.addEventListener("mousedown", (e) => { if (!e.sourceCapabilities.firesTouchEvents) myButton.classList.add("pressed"); }); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/comment/index.md
--- title: Comment slug: Web/API/Comment page-type: web-api-interface browser-compat: api.Comment --- {{ ApiRef("DOM") }} The **`Comment`** interface represents textual notations within markup; although it is generally not visually shown, such comments are available to be read in the source view. Comments are represented in HTML and XML as content between '`<!--`' and '`-->`'. In XML, like inside SVG or MathML markup, the character sequence '`--`' cannot be used within a comment. {{InheritanceDiagram}} ## Instance properties _This interface has no specific property, but inherits those of its parent, {{domxref("CharacterData")}}, and indirectly those of {{domxref("Node")}}._ ## Constructor - {{ domxref("Comment.Comment()", "Comment()") }} - : Returns a new `Comment` object with the parameter as its textual content. If not present, its default value is the empty string, `''`. ## Instance methods _This interface has no specific method, but inherits those of its parent, {{domxref("CharacterData")}}, and indirectly those of {{domxref("Node")}}._ ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - [The DOM API](/en-US/docs/Web/API/Document_Object_Model)
0
data/mdn-content/files/en-us/web/api/comment
data/mdn-content/files/en-us/web/api/comment/comment/index.md
--- title: "Comment: Comment() constructor" short-title: Comment() slug: Web/API/Comment/Comment page-type: web-api-constructor browser-compat: api.Comment.Comment --- {{ApiRef("DOM")}} The **`Comment()`** constructor returns a newly created {{domxref("Comment")}} object with the optional string given in parameter as its textual content. ## Syntax ```js-nolint new Comment() new Comment(aString) ``` ### Parameters - `aString` {{optional_inline}} ### Return value A new {{domxref("Comment")}} containing `aString`, or the empty string if no parameter was given. ## Example ```js let comment = new Comment("Test"); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - [The DOM interfaces index](/en-US/docs/Web/API/Document_Object_Model) - {{domxref("Document.createComment()")}} is an outdated alternative to this constructor.
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/svg_api/index.md
--- title: SVG API slug: Web/API/SVG_API page-type: web-api-overview spec-urls: https://svgwg.org/svg2-draft/ --- {{DefaultAPISidebar("SVG")}} SVG provides elements for circles, rectangles, and simple and complex curves. The elements' attribute values specify how these must be drawn. The **SVG API** is the subset of the **DOM** connecting these SVG elements and their attribute values to scripts or programming languages by representing them in memory. The SVG API thus provides methods that allow programmatic access to the SVG elements and their attribute values. The SVG API is a set of interfaces that have been categorized into the following broad categories: 1. [The element interfaces](#svg_element_interfaces) provide access to the properties of SVG elements and methods to manipulate them. 2. [The static data type](#svg_data_type_interfaces) interfaces provide access to element attribute values and methods to manipulate them. 3. For attributes that can be animated, the [animated data type interfaces](#svg_data_type_interfaces) provide read only access to the current animated value of an attribute. 4. [The Synchronized Multimedia Integration Language (SMIL) interfaces](#smil-related_interfaces) 5. [Others](#other_svg_interfaces) ## Interfaces ### SVG element interfaces - {{DOMxRef("SVGAElement")}} - {{DOMxRef("SVGAnimationElement")}} - {{DOMxRef("SVGAnimateElement")}} - {{DOMxRef("SVGAnimateMotionElement")}} - {{DOMxRef("SVGAnimateTransformElement")}} - {{DOMxRef("SVGCircleElement")}} - {{DOMxRef("SVGClipPathElement")}} - {{DOMxRef("SVGComponentTransferFunctionElement")}} - {{DOMxRef("SVGCursorElement")}} - {{DOMxRef("SVGDefsElement")}} - {{DOMxRef("SVGDescElement")}} - {{DOMxRef("SVGElement")}} - {{DOMxRef("SVGEllipseElement")}} - {{DOMxRef("SVGFEBlendElement")}} - {{DOMxRef("SVGFEColorMatrixElement")}} - {{DOMxRef("SVGFEComponentTransferElement")}} - {{DOMxRef("SVGFECompositeElement")}} - {{DOMxRef("SVGFEConvolveMatrixElement")}} - {{DOMxRef("SVGFEDiffuseLightingElement")}} - {{DOMxRef("SVGFEDisplacementMapElement")}} - {{DOMxRef("SVGFEDistantLightElement")}} - {{DOMxRef("SVGFEDropShadowElement")}} - {{DOMxRef("SVGFEFloodElement")}} - {{DOMxRef("SVGFEFuncAElement")}} - {{DOMxRef("SVGFEFuncBElement")}} - {{DOMxRef("SVGFEFuncGElement")}} - {{DOMxRef("SVGFEFuncRElement")}} - {{DOMxRef("SVGFEGaussianBlurElement")}} - {{DOMxRef("SVGFEImageElement")}} - {{DOMxRef("SVGFEMergeElement")}} - {{DOMxRef("SVGFEMergeNodeElement")}} - {{DOMxRef("SVGFEMorphologyElement")}} - {{DOMxRef("SVGFEOffsetElement")}} - {{DOMxRef("SVGFEPointLightElement")}} - {{DOMxRef("SVGFESpecularLightingElement")}} - {{DOMxRef("SVGFESpotLightElement")}} - {{DOMxRef("SVGFETileElement")}} - {{DOMxRef("SVGFETurbulenceElement")}} - {{DOMxRef("SVGFilterElement")}} - {{DOMxRef("SVGForeignObjectElement")}} - {{DOMxRef("SVGGElement")}} - {{DOMxRef("SVGGeometryElement")}} - {{DOMxRef("SVGGradientElement")}} - {{DOMxRef("SVGGraphicsElement")}} - {{DOMxRef("SVGHatchElement")}} {{Experimental_Inline}} - {{DOMxRef("SVGHatchpathElement")}} {{Experimental_Inline}} - {{DOMxRef("SVGImageElement")}} - {{DOMxRef("SVGLinearGradientElement")}} - {{DOMxRef("SVGLineElement")}} - {{DOMxRef("SVGMarkerElement")}} {{Experimental_Inline}} - {{DOMxRef("SVGMaskElement")}} - {{DOMxRef("SVGMetadataElement")}} - {{DOMxRef("SVGMPathElement")}} - {{DOMxRef("SVGPathElement")}} - {{DOMxRef("SVGPatternElement")}} - {{DOMxRef("SVGPolylineElement")}} - {{DOMxRef("SVGPolygonElement")}} - {{DOMxRef("SVGRadialGradientElement")}} - {{DOMxRef("SVGRectElement")}} - {{DOMxRef("SVGScriptElement")}} - {{DOMxRef("SVGSetElement")}} - {{DOMxRef("SVGStopElement")}} - {{DOMxRef("SVGStyleElement")}} - {{DOMxRef("SVGSVGElement")}} - {{DOMxRef("SVGSwitchElement")}} - {{DOMxRef("SVGSymbolElement")}} - {{DOMxRef("SVGTextContentElement")}} - {{DOMxRef("SVGTextElement")}} - {{DOMxRef("SVGTextPathElement")}} - {{DOMxRef("SVGTextPositioningElement")}} - {{DOMxRef("SVGTitleElement")}} - {{DOMxRef("SVGTSpanElement")}} - {{DOMxRef("SVGUseElement")}} - {{DOMxRef("SVGViewElement")}} ### SVG data type interfaces Here are the DOM APIs for data types used in the definitions of SVG properties and attributes. #### Static type - {{DOMxRef("SVGAngle")}} - {{DOMxRef("SVGElementInstance")}} - {{DOMxRef("SVGElementInstanceList")}} - {{DOMxRef("SVGLength")}} - {{DOMxRef("SVGLengthList")}} - {{DOMxRef("SVGNameList")}} - {{DOMxRef("SVGNumber")}} - {{DOMxRef("SVGNumberList")}} - {{DOMxRef("SVGPaint")}} - {{DOMxRef("SVGPreserveAspectRatio")}} - {{DOMxRef("SVGStringList")}} - {{DOMxRef("SVGTransform")}} - {{DOMxRef("SVGTransformList")}} #### Animated type - {{DOMxRef("SVGAnimatedAngle")}} - {{DOMxRef("SVGAnimatedBoolean")}} - {{DOMxRef("SVGAnimatedEnumeration")}} - {{DOMxRef("SVGAnimatedInteger")}} - {{DOMxRef("SVGAnimatedLength")}} - {{DOMxRef("SVGAnimatedLengthList")}} - {{DOMxRef("SVGAnimatedNumber")}} - {{DOMxRef("SVGAnimatedNumberList")}} - {{DOMxRef("SVGAnimatedPreserveAspectRatio")}} - {{DOMxRef("SVGAnimatedRect")}} - {{DOMxRef("SVGAnimatedString")}} - {{DOMxRef("SVGAnimatedTransformList")}} ### SMIL-related interfaces - {{DOMxRef("ElementTimeControl")}} - {{DOMxRef("TimeEvent")}} ### Other SVG interfaces - {{DOMxRef("GetSVGDocument")}} - {{DOMxRef("ShadowAnimation")}} - {{DOMxRef("SVGDocument")}} - {{DOMxRef("SVGUnitTypes")}} - {{DOMxRef("SVGUseElementShadowRoot")}} ## Specifications {{Specifications}} ## See also - [Getting Started with SVG](/en-US/docs/Web/SVG)
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/webglcontextevent/index.md
--- title: WebGLContextEvent slug: Web/API/WebGLContextEvent page-type: web-api-interface browser-compat: api.WebGLContextEvent --- {{APIRef("WebGL")}} The **WebContextEvent** interface is part of the [WebGL API](/en-US/docs/Web/API/WebGL_API) and is an interface for an event that is generated in response to a status change to the WebGL rendering context. {{InheritanceDiagram}} ## Constructor - {{domxref("WebGLContextEvent.WebGLContextEvent", "WebGLContextEvent()")}} - : Creates a new `WebGLContextEvent` object. ## Instance properties _This interface inherits properties from its parent interface, {{domxref("Event")}}._ - {{domxref("WebGLContextEvent.statusMessage")}} - : A read-only property containing additional information about the event. ## Instance methods _This interface doesn't define any own methods, but inherits methods from its parent interface, {{domxref("Event")}}._ ## Examples With the help of the {{domxref("WEBGL_lose_context")}} extension, you can simulate the {{domxref("HTMLCanvasElement/webglcontextlost_event", "webglcontextlost")}} and {{domxref("HTMLCanvasElement/webglcontextrestored_event", "webglcontextrestored")}} events: ```js const canvas = document.getElementById("canvas"); const gl = canvas.getContext("webgl"); canvas.addEventListener( "webglcontextlost", (e) => { console.log(e); }, false, ); gl.getExtension("WEBGL_lose_context").loseContext(); // WebGLContextEvent event with type "webglcontextlost" is logged. ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{domxref("WebGLRenderingContext.isContextLost()")}} - {{domxref("WEBGL_lose_context")}}, {{domxref("WEBGL_lose_context.loseContext()")}}, {{domxref("WEBGL_lose_context.restoreContext()")}} - Events: [webglcontextlost](/en-US/docs/Web/API/HTMLCanvasElement/webglcontextlost_event), [webglcontextrestored](/en-US/docs/Web/API/HTMLCanvasElement/webglcontextrestored_event), [webglcontextcreationerror](/en-US/docs/Web/API/HTMLCanvasElement/webglcontextcreationerror_event)
0
data/mdn-content/files/en-us/web/api/webglcontextevent
data/mdn-content/files/en-us/web/api/webglcontextevent/statusmessage/index.md
--- title: "WebGLContextEvent: statusMessage property" short-title: statusMessage slug: Web/API/WebGLContextEvent/statusMessage page-type: web-api-instance-property browser-compat: api.WebGLContextEvent.statusMessage --- {{APIRef("WebGL")}} The read-only **`WebGLContextEvent.statusMessage`** property contains additional event status information, or is an empty string if no additional information is available. ## Examples The `statusMessage` property can contain a platform dependent string with details of an event. This can occur, for example, if the {{domxref("HTMLCanvasElement/webglcontextcreationerror_event", "webglcontextcreationerror")}} event is fired. ```js const canvas = document.getElementById("canvas"); const gl = canvas.getContext("webgl"); canvas.addEventListener( "webglcontextcreationerror", (e) => { console.log( `WebGL context creation failed: ${e.statusMessage || "Unknown error"}`, ); }, false, ); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - [webglcontextcreationerror](/en-US/docs/Web/API/HTMLCanvasElement/webglcontextcreationerror_event)
0
data/mdn-content/files/en-us/web/api/webglcontextevent
data/mdn-content/files/en-us/web/api/webglcontextevent/webglcontextevent/index.md
--- title: "WebGLContextEvent: WebGLContextEvent() constructor" short-title: WebGLContextEvent() slug: Web/API/WebGLContextEvent/WebGLContextEvent page-type: web-api-constructor browser-compat: api.WebGLContextEvent.WebGLContextEvent --- {{APIRef("WebGL")}} The **`WebGLContextEvent()`** constructor creates a new {{domxref("WebGLContextEvent")}} object. > **Note:** You typically don't need to call this constructor; the browser creates these objects automatically when WebGL context events get fired. To manually trigger a `webglcontextlost` event, use {{domxref("WEBGL_lose_context.loseContext()")}}. ## Syntax ```js-nolint new WebGLContextEvent(type, options) ``` ### Parameters - `type` - : A string indicating the type of the event. It is case-sensitive and should be one of `webglcontextcreationerror`, `webglcontextlost`, or `webglcontextrestored`. - `options` {{Optional_inline}} - : An object that, _in addition to the properties defined in {{domxref("Event/Event", "Event()")}}_, has the following properties: - `statusMessage` {{Optional_inline}} - : A string with additional status information. It defaults to the empty string (`""`). ### Return value A new {{domxref("WebGLContextEvent")}} object. ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - [`webglcontextlost`](/en-US/docs/Web/API/HTMLCanvasElement/webglcontextlost_event) - [`webglcontextrestored`](/en-US/docs/Web/API/HTMLCanvasElement/webglcontextrestored_event) - [`webglcontextcreationerror`](/en-US/docs/Web/API/HTMLCanvasElement/webglcontextcreationerror_event)
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/serviceworker/index.md
--- title: ServiceWorker slug: Web/API/ServiceWorker page-type: web-api-interface browser-compat: api.ServiceWorker --- {{securecontext_header}}{{APIRef("Service Workers API")}} The **`ServiceWorker`** interface of the [Service Worker API](/en-US/docs/Web/API/Service_Worker_API) provides a reference to a service worker. Multiple {{glossary("browsing context", "browsing contexts")}} (e.g. pages, workers, etc.) can be associated with the same service worker, each through a unique `ServiceWorker` object. A `ServiceWorker` object is available via a number of properties: - {{domxref("ServiceWorkerRegistration.active")}} - {{domxref("ServiceWorkerGlobalScope.serviceWorker")}} - {{domxref("ServiceWorkerContainer.controller")}} — when the service worker is in `activating` or `activated` state - {{domxref("ServiceWorkerRegistration.installing")}} — when the service worker is in `installing` state - {{domxref("ServiceWorkerRegistration.waiting")}} — when the service worker is in `installed` state The `ServiceWorker` interface is dispatched a set of lifecycle events — `install` and `activate` — and functional events including `fetch`. A `ServiceWorker` object has an associated {{domxref("ServiceWorker.state")}}, related to its lifecycle. Service workers allow static import of [ECMAScript modules](/en-US/docs/Web/JavaScript/Guide/Modules), if supported, using [`import`](/en-US/docs/Web/JavaScript/Reference/Statements/import). Dynamic import is disallowed by the specification — calling [`import()`](/en-US/docs/Web/JavaScript/Reference/Operators/import) will throw. {{InheritanceDiagram}} ## Instance properties _The `ServiceWorker` interface inherits properties from its parent, {{domxref("EventTarget")}}._ - {{domxref("ServiceWorker.scriptURL")}} {{ReadOnlyInline}} - : Returns the `ServiceWorker` serialized script URL defined as part of {{domxref("ServiceWorkerRegistration")}}. The URL must be on the same origin as the document that registers the `ServiceWorker`. - {{domxref("ServiceWorker.state")}} {{ReadOnlyInline}} - : Returns the state of the service worker. It returns one of the following values: `parsed`, `installing`, `installed`, `activating`, `activated`, or `redundant`. ## Instance methods _The `ServiceWorker` interface inherits methods from its parent, {{domxref("EventTarget")}}._ - {{domxref("ServiceWorker.postMessage()")}} - : Sends a message — consisting of any [structured-cloneable](/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm) JavaScript object — to the service worker. The message is transmitted to the service worker using a {{domxref("ServiceWorkerGlobalScope.message_event", "message")}} event on its global scope. ## Events - {{domxref("ServiceWorker.statechange_event", "statechange")}} - : Fired when {{domxref("ServiceWorker.state")}} changes. - {{domxref("ServiceWorker.error_event", "error")}} - : Fired when an error happens inside the `ServiceWorker` object. ## Examples This code snippet is from the [service worker registration-events sample](https://github.com/GoogleChrome/samples/blob/gh-pages/service-worker/registration-events/index.html) ([live demo](https://googlechrome.github.io/samples/service-worker/registration-events/)). The code listens for any change in the {{domxref("ServiceWorker.state")}} and returns its value. ```js if ("serviceWorker" in navigator) { navigator.serviceWorker .register("service-worker.js", { scope: "./", }) .then((registration) => { let serviceWorker; if (registration.installing) { serviceWorker = registration.installing; document.querySelector("#kind").textContent = "installing"; } else if (registration.waiting) { serviceWorker = registration.waiting; document.querySelector("#kind").textContent = "waiting"; } else if (registration.active) { serviceWorker = registration.active; document.querySelector("#kind").textContent = "active"; } if (serviceWorker) { // logState(serviceWorker.state); serviceWorker.addEventListener("statechange", (e) => { // logState(e.target.state); }); } }) .catch((error) => { // Something went wrong during registration. The service-worker.js file // might be unavailable or contain a syntax error. }); } else { // The current browser doesn't support service workers. // Perhaps it is too old or we are not in a Secure Context. } ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - [The Offline Cookbook](https://web.dev/articles/offline-cookbook)(service workers) - [Using Service Workers](/en-US/docs/Web/API/Service_Worker_API/Using_Service_Workers) - [Service worker basic code example](https://github.com/mdn/dom-examples/tree/main/service-worker/simple-service-worker) - [Using web workers](/en-US/docs/Web/API/Web_Workers_API/Using_web_workers)
0
data/mdn-content/files/en-us/web/api/serviceworker
data/mdn-content/files/en-us/web/api/serviceworker/scripturl/index.md
--- title: "ServiceWorker: scriptURL property" short-title: scriptURL slug: Web/API/ServiceWorker/scriptURL page-type: web-api-instance-property browser-compat: api.ServiceWorker.scriptURL --- {{APIRef("Service Workers API")}}{{SecureContext_Header}} Returns the `ServiceWorker` serialized script URL defined as part of [`ServiceWorkerRegistration`](/en-US/docs/Web/API/ServiceWorkerRegistration). Must be on the same origin as the document that registers the `ServiceWorker`. ## Value A string. ## Examples ```js const sw = navigator.serviceWorker.controller; console.log(sw.scriptURL); // https://example.com/scripts/service-worker.js ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/serviceworker
data/mdn-content/files/en-us/web/api/serviceworker/statechange_event/index.md
--- title: "ServiceWorker: statechange event" short-title: statechange slug: Web/API/ServiceWorker/statechange_event page-type: web-api-event browser-compat: api.ServiceWorker.statechange_event --- {{APIRef("Service Workers API")}}{{SecureContext_Header}} The `statechange` event fires anytime the {{domxref("ServiceWorker.state")}} changes. ## Syntax Use the event name in methods like {{domxref("EventTarget.addEventListener", "addEventListener()")}}, or set an event handler property. ```js addEventListener("statechange", (event) => {}); onstatechange = (event) => {}; ``` ## Event type A generic {{domxref("Event")}}. ## Examples This code snippet is from the [service worker registration-events sample](https://github.com/GoogleChrome/samples/blob/gh-pages/service-worker/registration-events/index.html) ([live demo](https://googlechrome.github.io/samples/service-worker/registration-events/)). The code listens for any change in the {{domxref("ServiceWorker.state")}} and returns its value. ```js let serviceWorker; if (registration.installing) { serviceWorker = registration.installing; document.querySelector("#kind").textContent = "installing"; } else if (registration.waiting) { serviceWorker = registration.waiting; document.querySelector("#kind").textContent = "waiting"; } else if (registration.active) { serviceWorker = registration.active; document.querySelector("#kind").textContent = "active"; } if (serviceWorker) { logState(serviceWorker.state); serviceWorker.addEventListener("statechange", (e) => { logState(e.target.state); }); } ``` Note that when `statechange` fires, the service worker's references may have changed. For example: ```js navigator.serviceWorker.register("/sw.js").then((swr) => { swr.installing.state = "installing"; swr.installing.onstatechange = () => { swr.installing = null; // At this point, swr.waiting OR swr.active might be true. This is because the statechange // event gets queued, meanwhile the underlying worker may have gone into the waiting // state and will be immediately activated if possible. }; }); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/serviceworker
data/mdn-content/files/en-us/web/api/serviceworker/postmessage/index.md
--- title: "ServiceWorker: postMessage() method" short-title: postMessage() slug: Web/API/ServiceWorker/postMessage page-type: web-api-instance-method browser-compat: api.ServiceWorker.postMessage --- {{APIRef("Service Workers API")}}{{securecontext_header}} The **`postMessage()`** method of the {{domxref("ServiceWorker")}} interface sends a message to the worker. The first parameter is the data to send to the worker. The data may be any JavaScript object which can be handled by the [structured clone algorithm](/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm). The service worker can send back information to its clients by using the {{domxref("Client.postMessage", "postMessage()")}} method. The message will not be sent back to this `ServiceWorker` object but to the associated {{domxref("ServiceWorkerContainer")}} available via {{domxref("navigator.serviceWorker")}}. ## Syntax ```js-nolint postMessage(message) postMessage(message, options) postMessage(message, transfer) ``` ### Parameters - `message` - : The object to deliver to the worker; this will be in the `data` field in the event delivered to the {{domxref("ServiceWorkerGlobalScope.message_event", "message")}} event. This may be any JavaScript object handled by the [structured clone algorithm](/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm). The `message` parameter is mandatory. If the data to be passed to the worker is unimportant, `null` or `undefined` must be passed explicitly. - `options` {{optional_inline}} - : An optional object containing a `transfer` field with an [array](/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array) of [transferable objects](/en-US/docs/Web/API/Web_Workers_API/Transferable_objects) to transfer ownership of. - `transfer` {{optional_inline}} - : An optional [array](/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array) of [transferable objects](/en-US/docs/Web/API/Web_Workers_API/Transferable_objects) to transfer ownership of. If the ownership of an object is transferred, it becomes unusable in the context it was sent from and becomes available only to the worker it was sent to. Transferable objects are instances of classes like {{jsxref("ArrayBuffer")}}, {{domxref("MessagePort")}} or {{domxref("ImageBitmap")}} objects that can be transferred. `null` is not an acceptable value for `transfer`. > **Note:** The parameters `options` and `transfer` can't both be used at the same time. ### Return value None ({{jsxref("undefined")}}). ### Exceptions - {{jsxref("SyntaxError")}} - : Thrown if the `message` parameter is not provided. ## Examples In this example a {{domxref("ServiceWorker")}} is created and a message is immediately sent: ```js navigator.serviceWorker.register("service-worker.js"); navigator.serviceWorker.ready.then((registration) => { registration.active.postMessage( "Test message sent immediately after creation", ); }); ``` In order to receive the message, the service worker, in `service-worker.js` has to listen to the {{domxref("ServiceWorkerGlobalScope.message_event", "message")}} event on its global scope. ```js // This must be in `service-worker.js` addEventListener("message", (event) => { console.log(`Message received: ${event.data}`); }); ``` Note that the service worker can send back messages to the main thread using the {{domxref("Client.postMessage()", "postMessage()")}} method. To receive it, the main thread needs to listen for a {{domxref("ServiceWorkerContainer.message_event", "message")}} event on the {{domxref("ServiceWorkerContainer")}} object. ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - The {{domxref("ServiceWorker")}} interface it belongs to. - Its counterpart, the {{domxref("Client.postMessage()", "postMessage()")}} method that a service worker must use to send a message back to the associated {{domxref("ServiceWorkerContainer")}}.
0
data/mdn-content/files/en-us/web/api/serviceworker
data/mdn-content/files/en-us/web/api/serviceworker/state/index.md
--- title: "ServiceWorker: state property" short-title: state slug: Web/API/ServiceWorker/state page-type: web-api-instance-property browser-compat: api.ServiceWorker.state --- {{APIRef("Service Workers API")}}{{SecureContext_Header}} The **`state`** read-only property of the {{domxref("ServiceWorker")}} interface returns a string representing the current state of the service worker. It can be one of the following values: `parsed`, `installing`, `installed`, `activating`, `activated`, or `redundant`. ## Value A {{jsxref("String")}} that can take one of the following values: - `"parsed"` - : The initial state of a service worker after it is downloaded and confirmed to be runnable. A service worker is never updated to this state, so this will never be the value of the {{DOMxRef("ServiceWorker.statechange_event")}} - `"installing"` - : The service worker in this state is considered an installing worker. During this state, {{DOMxRef("ExtendableEvent.waitUntil()")}} can be called inside the `install` event handler to extend the life of the installing worker until the passed promise resolves successfully. This is primarily used to ensure that the service worker is not active until all of the core caches are populated. - `"installed"` - : The service worker in this state is considered a waiting worker. - `"activating"` - : The service worker in this state is considered an active worker. During this state, {{DOMxRef("ExtendableEvent.waitUntil()")}} can be called inside the `onactivate` event handler to extend the life of the active worker until the passed promise resolves successfully. No functional events are dispatched until the state becomes activated. - `"activated"` - : The service worker in this state is considered an active worker ready to handle functional events. - `"redundant"` - : A new service worker is replacing the current service worker, or the current service worker is being discarded due to an install failure. ## Examples This code snippet is from the [service worker registration-events sample](https://github.com/GoogleChrome/samples/blob/gh-pages/service-worker/registration-events/index.html) ([live demo](https://googlechrome.github.io/samples/service-worker/registration-events/)). The code listens for any change in the {{domxref("ServiceWorker.state")}} and returns its value. ```js let serviceWorker; if (registration.installing) { serviceWorker = registration.installing; document.querySelector("#kind").textContent = "installing"; } else if (registration.waiting) { serviceWorker = registration.waiting; document.querySelector("#kind").textContent = "waiting"; } else if (registration.active) { serviceWorker = registration.active; document.querySelector("#kind").textContent = "active"; } if (serviceWorker) { logState(serviceWorker.state); serviceWorker.addEventListener("statechange", (e) => { logState(e.target.state); }); } ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/serviceworker
data/mdn-content/files/en-us/web/api/serviceworker/error_event/index.md
--- title: "ServiceWorker: error event" short-title: error slug: Web/API/ServiceWorker/error_event page-type: web-api-event browser-compat: api.ServiceWorker.error_event --- {{APIRef("Service Workers API")}}{{SecureContext_Header}} The `error` event fires whenever an error occurs in the service worker. ## Syntax Use the event name in methods like {{domxref("EventTarget.addEventListener", "addEventListener()")}}, or set an event handler property. ```js addEventListener("error", (event) => {}); onerror = (event) => {}; ``` ## Event type A generic {{domxref("Event")}}. ## Example The following code snippet gets a handle to the {{domxref("ServiceWorker")}} object via {{domxref("ServiceWorkerRegistration.active")}} and sets up an `onerror` handler on the resulting object: ```js // in the page being controlled if (navigator.serviceWorker) { navigator.serviceWorker.register("service-worker.js"); navigator.serviceWorker.ready.then((registration) => { registration.active.onerror = (event) => { console.log("An error occurred in the service worker!"); }; }); } ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/svgmarkerelement/index.md
--- title: SVGMarkerElement slug: Web/API/SVGMarkerElement page-type: web-api-interface browser-compat: api.SVGMarkerElement --- {{APIRef("SVG")}} The **`SVGMarkerElement`** interface provides access to the properties of {{SVGElement("marker")}} elements, as well as methods to manipulate them. The {{SVGElement("marker")}} element defines the graphics used for drawing marks on a shape. {{InheritanceDiagram}} The following properties and methods all return, or act on the attributes of the {{SVGElement("marker")}} element represented by `SVGMarkerElement`. ## Instance properties _This interface also inherits properties from its parent, {{domxref("SVGElement")}}._ - {{domxref("SVGMarkerElement.markerUnits")}} {{ReadOnlyInline}} - : Returns an {{domxref("SVGAnimatedEnumeration")}} object, with one of the following values: - 0 - : `SVG_MARKERUNITS_UNKNOWN` which means that the {{SVGattr("markerUnits")}} attribute has a value other than the two predefined keywords. - 1 - : `SVG_MARKERUNITS_USERSPACEONUSE` which means that the {{SVGattr("markerUnits")}} attribute has the keyword value `userSpaceOnUse`. - 2 - : `SVG_MARKERUNITS_STROKEWIDTH` which means that the {{SVGattr("markerUnits")}} attribute has the keyword value `strokeWidth`. - {{domxref("SVGMarkerElement.markerWidth")}} {{ReadOnlyInline}} - : Returns an {{domxref("SVGAnimatedLength")}} object containing the width of the {{SVGElement("marker")}} viewport. - {{domxref("SVGMarkerElement.markerHeight")}} {{ReadOnlyInline}} - : Returns an {{domxref("SVGAnimatedLength")}} object containing the height of the {{SVGElement("marker")}} viewport. - {{domxref("SVGMarkerElement.orientType")}} {{ReadOnlyInline}} - : Returns an {{domxref("SVGAnimatedEnumeration")}} object, with one of the following values: - 0 - : `SVG_MARKER_ORIENT_UNKNOWN` which means that the {{SVGattr("orient")}} attribute has a value other than the two predefined keywords. - 1 - : `SVG_MARKERUNITS_ORIENT_AUTO` which means that the {{SVGattr("orient")}} attribute has the keyword value `auto`. - 2 - : `SVG_MARKERUNITS_ORIENT_ANGLE` which means that the {{SVGattr("orient")}} attribute has an {{cssxref("angle")}} or {{cssxref("number")}} value indicating the angle. - {{domxref("SVGMarkerElement.orientAngle")}} {{ReadOnlyInline}} - : Returns an {{domxref("SVGAnimatedAngle")}} object containing the angle of the {{SVGattr("orient")}} attribute. - {{domxref("SVGMarkerElement.refX")}} {{ReadOnlyInline}} - : Returns an {{domxref("SVGAnimatedLength")}} object containing the value of the {{SVGattr("refX")}} attribute of the {{SVGElement("marker")}}. - {{domxref("SVGMarkerElement.refY")}} {{ReadOnlyInline}} - : Returns an {{domxref("SVGAnimatedLength")}} object containing the value of the {{SVGattr("refY")}} attribute of the {{SVGElement("marker")}}. - {{domxref("SVGMarkerElement.viewBox")}} {{ReadOnlyInline}} - : Returns an {{domxref("SVGAnimatedRect")}} object containing an {{domxref("SVGRect")}} which contains the values set by the {{SVGattr("viewBox")}} attribute on the {{SVGElement("marker")}}. - {{domxref("SVGMarkerElement.preserveAspectRatio")}} {{ReadOnlyInline}} - : Returns an {{domxref("SVGPreserveAspectRatio")}} object which contains the values set by the {{SVGattr("preserveAspectRatio")}} attribute on the {{SVGElement("marker")}} viewport. ## Instance methods _This interface also inherits methods from its parent, {{domxref("SVGElement")}}._ - {{domxref("SVGMarkerElement.setOrientToAuto()")}} - : Sets the value of the {{SVGattr("orient")}} attribute to `auto`. - {{domxref("SVGMarkerElement.setOrientToAngle()")}} - : Sets the value of the {{SVGattr("orient")}} attribute to a specific angle value. ## Examples The following SVG will be referenced in the examples. ```html <svg id="svg" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <defs> <marker id="arrow" viewBox="0 0 10 10" refX="5" refY="5" markerWidth="6" markerHeight="6" orient="90"> <path d="M 0 0 L 10 5 L 0 10 z" /> </marker> </defs> </svg> ``` ### Finding the Width of the Marker The `markerWidth` property returns an {{domxref("SVGAnimatedLength")}} which contains an {{domxref("SVGLength")}} with the value of the {{SVGattr("markerWidth")}} attribute. ```js let marker = document.getElementById("arrow"); console.log(marker.markerWidth.baseVal.value); // 6 ``` ### Updating the Orientation Angle In the following example the value of the `orient` attribute is updated using `setOrientToAngle()` using an {{domxref("SVGAngle")}} created using {{domxref("SVGElement.createSVGAngle()")}}. ```js let svg = document.getElementById("svg"); let marker = document.getElementById("arrow"); console.log(marker.orientAngle.baseVal.value); // value in SVG above - 90 let angle = svg.createSVGAngle(); angle.value = "110"; marker.setOrientToAngle(angle); console.log(marker.orientAngle.baseVal.value); // new value - 110 ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/svgmarkerelement
data/mdn-content/files/en-us/web/api/svgmarkerelement/refy/index.md
--- title: "SVGMarkerElement: refY property" short-title: refY slug: Web/API/SVGMarkerElement/refY page-type: web-api-instance-property browser-compat: api.SVGMarkerElement.refY --- {{APIRef("SVG")}} The **`refY`** read-only property of the {{domxref("SVGMarkerElement")}} interface returns an {{domxref("SVGAnimatedLength")}} object containing the value of the {{SVGattr("refY")}} attribute of the {{SVGElement("marker")}}. ## Value An {{domxref("SVGAnimatedLength")}} object. The `baseVal` property of this object returns an {{domxref("SVGLength")}}, the value of which returns the `refY`. ## Examples The `markerWidth` property returns an {{domxref("SVGAnimatedLength")}} which contains an {{domxref("SVGLength")}} with the value of the {{SVGattr("refY")}} attribute. ```html <svg id="svg" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <defs> <marker id="arrow" viewBox="0 0 10 10" refX="5" refY="5" markerWidth="6" markerHeight="6" orient="auto-start-reverse"> <path d="M 0 0 L 10 5 L 0 10 z" /> </marker> </defs> </svg> ``` ```js let marker = document.getElementById("arrow"); console.log(marker.refY.baseVal.value); // 5 ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/svgmarkerelement
data/mdn-content/files/en-us/web/api/svgmarkerelement/refx/index.md
--- title: "SVGMarkerElement: refX property" short-title: refX slug: Web/API/SVGMarkerElement/refX page-type: web-api-instance-property browser-compat: api.SVGMarkerElement.refX --- {{APIRef("SVG")}} The **`refX`** read-only property of the {{domxref("SVGMarkerElement")}} interface returns an {{domxref("SVGAnimatedLength")}} object containing the value of the {{SVGattr("refX")}} attribute of the {{SVGElement("marker")}}. ## Value An {{domxref("SVGAnimatedLength")}} object. The `baseVal` property of this object returns an {{domxref("SVGLength")}}, the value of which returns the `refX`. ## Examples The `markerWidth` property returns an {{domxref("SVGAnimatedLength")}} which contains an {{domxref("SVGLength")}} with the value of the {{SVGattr("refX")}} attribute. ```html <svg id="svg" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <defs> <marker id="arrow" viewBox="0 0 10 10" refX="5" refY="5" markerWidth="6" markerHeight="6" orient="auto-start-reverse"> <path d="M 0 0 L 10 5 L 0 10 z" /> </marker> </defs> </svg> ``` ```js let marker = document.getElementById("arrow"); console.log(marker.refX.baseVal.value); // 5 ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/svgmarkerelement
data/mdn-content/files/en-us/web/api/svgmarkerelement/markerunits/index.md
--- title: "SVGMarkerElement: markerUnits property" short-title: markerUnits slug: Web/API/SVGMarkerElement/markerUnits page-type: web-api-instance-property browser-compat: api.SVGMarkerElement.markerUnits --- {{APIRef("SVG")}} The **`markerUnits`** read-only property of the {{domxref("SVGMarkerElement")}} interface returns an {{domxref("SVGAnimatedEnumeration")}} object. This object returns an integer which represents the keyword values that the {{SVGattr("markerUnits")}} attribute accepts. ## Value An {{domxref("SVGAnimatedEnumeration")}} object. The `baseVal` property of this object contains one of the following values: - `0` - : `SVG_MARKERUNITS_UNKNOWN` which means that the {{SVGattr("markerUnits")}} attribute has a value other than the two predefined keywords. - `1` - : `SVG_MARKERUNITS_USERSPACEONUSE` which means that the {{SVGattr("markerUnits")}} attribute has the keyword value `userSpaceOnUse`. - `2` - : `SVG_MARKERUNITS_STROKEWIDTH` which means that the {{SVGattr("markerUnits")}} attribute has the keyword value `strokeWidth`. ## Examples The `markerUnits` property returns an {{domxref("SVGAnimatedEnumeration")}} object that contains the value of the {{SVGattr("markerUnits")}} attribute. ```html <svg id="svg" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <defs> <marker id="arrow" viewBox="0 0 10 10" refX="5" refY="5" markerWidth="6" markerHeight="6" orient="auto-start-reverse" markerUnits="strokeWidth"> <path d="M 0 0 L 10 5 L 0 10 z" /> </marker> </defs> </svg> ``` ```js let marker = document.getElementById("arrow"); console.log(marker.markerUnits.baseVal); // 2 ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/svgmarkerelement
data/mdn-content/files/en-us/web/api/svgmarkerelement/orientangle/index.md
--- title: "SVGMarkerElement: orientAngle property" short-title: orientAngle slug: Web/API/SVGMarkerElement/orientAngle page-type: web-api-instance-property browser-compat: api.SVGMarkerElement.orientAngle --- {{APIRef("SVG")}} The **`orientAngle`** read-only property of the {{domxref("SVGMarkerElement")}} interface returns an {{domxref("SVGAnimatedAngle")}} object containing the angle of the {{SVGattr("orient")}} attribute. ## Value An {{domxref("SVGAnimatedAngle")}} object. The `baseVal` property of this object returns an {{domxref("SVGAngle")}}, the value of which returns the `angle`. ## Examples The `orientAngle` property returns an {{domxref("SVGAnimatedAngle")}} which contains an {{domxref("SVGAngle")}} with the angle set by the {{SVGattr("orient")}} attribute as a number representing the number of degrees the marker is turned. ```html <svg id="svg" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <defs> <marker id="arrow" viewBox="0 0 10 10" refX="5" refY="5" markerWidth="6" markerHeight="6" orient=".5turn"> <path d="M 0 0 L 10 5 L 0 10 z" /> </marker> </defs> </svg> ``` ```js let marker = document.getElementById("arrow"); console.log(marker.orientAngle.baseVal.value); // 180 as .5turn is 180deg. ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/svgmarkerelement
data/mdn-content/files/en-us/web/api/svgmarkerelement/orienttype/index.md
--- title: "SVGMarkerElement: orientType property" short-title: orientType slug: Web/API/SVGMarkerElement/orientType page-type: web-api-instance-property browser-compat: api.SVGMarkerElement.orientType --- {{APIRef("SVG")}} The **`orientType`** read-only property of the {{domxref("SVGMarkerElement")}} interface returns an {{domxref("SVGAnimatedEnumeration")}} object indicating whether the {{SVGattr("orient")}} attribute is `auto`, an angle value, or something else. This _something else_ is most likely to be the keyword `auto-start-reverse` however the spec leaves it open for this to be other values. Unsupported values will generally be thrown away by the parser, leaving the value the default of `auto`. ## Value An {{domxref("SVGAnimatedEnumeration")}} object. This contains one of the following values: - `0` - : `SVG_MARKER_ORIENT_UNKNOWN` which means that the {{SVGattr("orient")}} attribute has a value other than `auto` or an angle. - `1` - : `SVG_MARKERUNITS_ORIENT_AUTO` which means that the {{SVGattr("orient")}} attribute has the keyword value `auto`. - `2` - : `SVG_MARKERUNITS_ORIENT_ANGLE` which means that the {{SVGattr("orient")}} attribute has an {{cssxref("angle")}} or {{cssxref("number")}} value indicating the angle. ## Examples The `orientType` property returns an {{domxref("SVGAnimatedEnumeration")}} object. As the value of the {{SVGattr("orient")}} attribute is an angle, returning the `SVGAnimatedEnumeration.baseVal` returns `2`. ```html <svg id="svg" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <defs> <marker id="arrow" viewBox="0 0 10 10" refX="5" refY="5" markerWidth="6" markerHeight="6" orient=".63deg"> <path d="M 0 0 L 10 5 L 0 10 z" /> </marker> </defs> </svg> ``` ```js let marker = document.getElementById("arrow"); console.log(marker.orientType.baseVal); // 2 ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/svgmarkerelement
data/mdn-content/files/en-us/web/api/svgmarkerelement/markerheight/index.md
--- title: "SVGMarkerElement: markerHeight property" short-title: markerHeight slug: Web/API/SVGMarkerElement/markerHeight page-type: web-api-instance-property browser-compat: api.SVGMarkerElement.markerHeight --- {{APIRef("SVG")}} The **`markerHeight`** read-only property of the {{domxref("SVGMarkerElement")}} interface returns an {{domxref("SVGAnimatedLength")}} object containing the height of the {{SVGElement("marker")}} viewport as defined by the {{SVGattr("markerHeight")}} attribute. ## Value An {{domxref("SVGAnimatedLength")}} object. The `baseVal` property of this object returns an {{domxref("SVGLength")}}, the value of which returns the `height`. ## Examples The `markerHeight` property returns an {{domxref("SVGAnimatedLength")}} which contains an {{domxref("SVGLength")}} with the value of the {{SVGattr("markerHeight")}} attribute. ```html <svg id="svg" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <defs> <marker id="arrow" viewBox="0 0 10 10" refX="5" refY="5" markerWidth="6" markerHeight="6" orient="auto-start-reverse"> <path d="M 0 0 L 10 5 L 0 10 z" /> </marker> </defs> </svg> ``` ```js let marker = document.getElementById("arrow"); console.log(marker.markerHeight.baseVal.value); // 6 ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/svgmarkerelement
data/mdn-content/files/en-us/web/api/svgmarkerelement/setorienttoangle/index.md
--- title: "SVGMarkerElement: setOrientToAngle() method" short-title: setOrientToAngle() slug: Web/API/SVGMarkerElement/setOrientToAngle page-type: web-api-instance-method browser-compat: api.SVGMarkerElement.setOrientToAngle --- {{APIRef("SVG")}} The **`setOrientToAngle()`** method of the {{domxref("SVGMarkerElement")}} interface sets the value of the `orient` attribute to the value in the {{domxref("SVGAngle")}} passed in. ## Syntax ```js-nolint setOrientToAngle(angle) ``` ### Parameters - `angle` - : An {{domxref("SVGAngle")}}. ### Return value None ({{jsxref("undefined")}}). ## Examples In the following example the value of the `orient` attribute is updated using `setOrientToAngle()` using an {{domxref("SVGAngle")}} created using {{domxref("SVGSVGElement.createSVGAngle()")}}. ```html <svg id="svg" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <defs> <marker id="arrow" viewBox="0 0 10 10" refX="5" refY="5" markerWidth="6" markerHeight="6" orient="90"> <path d="M 0 0 L 10 5 L 0 10 z" /> </marker> </defs> </svg> ``` ```js let svg = document.getElementById("svg"); let marker = document.getElementById("arrow"); console.log(marker.orientAngle.baseVal.value); // value in SVG above - 90 let angle = svg.createSVGAngle(); angle.value = "110"; marker.setOrientToAngle(angle); console.log(marker.orientAngle.baseVal.value); // new value - 110 ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/svgmarkerelement
data/mdn-content/files/en-us/web/api/svgmarkerelement/setorienttoauto/index.md
--- title: "SVGMarkerElement: setOrientToAuto() method" short-title: setOrientToAuto() slug: Web/API/SVGMarkerElement/setOrientToAuto page-type: web-api-instance-method browser-compat: api.SVGMarkerElement.setOrientToAuto --- {{APIRef("SVG")}} The **`setOrientToAuto()`** method of the {{domxref("SVGMarkerElement")}} interface sets the value of the `orient` attribute to `auto`. ## Syntax ```js-nolint setOrientToAuto() ``` ### Parameters None. ### Return value None ({{jsxref("undefined")}}). ## Examples In the following example the value of the `orient` attribute is updated using `setOrientToAuto()`. ```html <svg id="svg" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <defs> <marker id="arrow" viewBox="0 0 10 10" refX="5" refY="5" markerWidth="6" markerHeight="6" orient="90"> <path d="M 0 0 L 10 5 L 0 10 z" /> </marker> </defs> </svg> ``` ```js let marker = document.getElementById("arrow"); console.log(marker.orientAngle.baseVal.value); marker.setOrientToAuto(); console.log(marker.orientAngle.baseVal.value); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/svgmarkerelement
data/mdn-content/files/en-us/web/api/svgmarkerelement/viewbox/index.md
--- title: "SVGMarkerElement: viewBox property" short-title: viewBox slug: Web/API/SVGMarkerElement/viewBox page-type: web-api-instance-property browser-compat: api.SVGMarkerElement.viewBox --- {{APIRef("SVG")}} The **`viewBox`** read-only property of the {{domxref("SVGMarkerElement")}} interface returns an {{domxref("SVGAnimatedRect")}} object which contains the values set by the {{SVGattr("viewBox")}} attribute on the {{SVGElement("marker")}}. ## Value An {{domxref("SVGAnimatedRect")}} object. The `baseVal` property of this object returns an {{domxref("SVGRect")}} object, from which can be returned the `x` and `y` co-ordinates, plus the `width` and `height` of the {{SVGElement("marker")}} {{SVGattr("viewBox")}} attribute. ## Examples This example demonstrates how to return the value of the `width` set for the {{SVGattr("viewBox")}} attribute of {{SVGElement("marker")}}. ```html <svg id="svg" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <defs> <marker id="arrow" viewBox="0 0 10 10" refX="5" refY="5" viewBox="xMidYMid meet" markerWidth="6" markerHeight="6" orient="auto-start-reverse"> <path d="M 0 0 L 10 5 L 0 10 z" /> </marker> </defs> </svg> ``` ```js let marker = document.getElementById("arrow"); console.log(marker.viewBox.baseVal.width); //10 ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/svgmarkerelement
data/mdn-content/files/en-us/web/api/svgmarkerelement/markerwidth/index.md
--- title: "SVGMarkerElement: markerWidth property" short-title: markerWidth slug: Web/API/SVGMarkerElement/markerWidth page-type: web-api-instance-property browser-compat: api.SVGMarkerElement.markerWidth --- {{APIRef("SVG")}} The **`markerWidth`** read-only property of the {{domxref("SVGMarkerElement")}} interface returns an {{domxref("SVGAnimatedLength")}} object containing the width of the {{SVGElement("marker")}} viewport as defined by the {{SVGattr("markerWidth")}} attribute. ## Value An {{domxref("SVGAnimatedLength")}} object. The `baseVal` property of this object returns an {{domxref("SVGLength")}}, the value of which returns the `width`. ## Examples The `markerWidth` property returns an {{domxref("SVGAnimatedLength")}} which contains an {{domxref("SVGLength")}} with the value of the {{SVGattr("markerWidth")}} attribute. ```html <svg id="svg" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <defs> <marker id="arrow" viewBox="0 0 10 10" refX="5" refY="5" markerWidth="6" markerHeight="6" orient="auto-start-reverse"> <path d="M 0 0 L 10 5 L 0 10 z" /> </marker> </defs> </svg> ``` ```js let marker = document.getElementById("arrow"); console.log(marker.markerWidth.baseVal.value); // 6 ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/svgmarkerelement
data/mdn-content/files/en-us/web/api/svgmarkerelement/preserveaspectratio/index.md
--- title: "SVGMarkerElement: preserveAspectRatio property" short-title: preserveAspectRatio slug: Web/API/SVGMarkerElement/preserveAspectRatio page-type: web-api-instance-property browser-compat: api.SVGMarkerElement.preserveAspectRatio --- {{APIRef("SVG")}} The **`preserveAspectRatio`** read-only property of the {{domxref("SVGMarkerElement")}} interface returns an {{domxref("SVGAnimatedPreserveAspectRatio")}} object containing the value of the {{SVGattr("preserveAspectRatio")}} attribute of the {{SVGElement("marker")}}. ## Value An {{domxref("SVGAnimatedPreserveAspectRatio")}} object. The `baseVal` property of this object returns an {{domxref("SVGPreserveAspectRatio")}} object, with the following properties: - `align` - : One of the following numeric constants: - `0` - : `SVG_PRESERVEASPECTRATIO_UNKNOWN` - `1` - : `SVG_PRESERVEASPECTRATIO_NONE` - `2` - : `SVG_PRESERVEASPECTRATIO_XMINYMIN` - `3` - : `SVG_PRESERVEASPECTRATIO_XMIDYMIN` - `4` - : `SVG_PRESERVEASPECTRATIO_XMAXYMIN` - `5` - : `SVG_PRESERVEASPECTRATIO_XMINYMID` - `6` - : `SVG_PRESERVEASPECTRATIO_XMIDYMID` - `7` - : `SVG_PRESERVEASPECTRATIO_XMAXYMID` - `8` - : `SVG_PRESERVEASPECTRATIO_XMINYMAX` - `9` - : `SVG_PRESERVEASPECTRATIO_XMIDYMAX` - `10` - : `SVG_PRESERVEASPECTRATIO_XMAXYMAX` - `meetOrSlice` - : One of the following numeric constants: - `0` - : `SVG_MEETORSLICE_UNKNOWN` - `1` - : `SVG_MEETORSLICE_MEET` - `2` - : `SVG_MEETORSLICE_SLICE` ## Examples This example demonstrates how to return the numeric constants for `align` and `meetOrSlice` which relate to the values set for the {{SVGattr("preserveAspectRatio")}} attribute of {{SVGElement("marker")}}. ```html <svg id="svg" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <defs> <marker id="arrow" viewBox="0 0 10 10" refX="5" refY="5" preserveAspectRatio="xMidYMid meet" markerWidth="6" markerHeight="6" orient="auto-start-reverse"> <path d="M 0 0 L 10 5 L 0 10 z" /> </marker> </defs> </svg> ``` ```js let marker = document.getElementById("arrow"); console.log(marker.preserveAspectRatio.baseVal.align); // 6 console.log(marker.preserveAspectRatio.baseVal.meetOrSlice); // 1 ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/periodicsyncevent/index.md
--- title: PeriodicSyncEvent slug: Web/API/PeriodicSyncEvent page-type: web-api-interface status: - experimental browser-compat: api.PeriodicSyncEvent --- {{APIRef("Periodic Background Sync")}}{{SeeCompatTable}} The **`PeriodicSyncEvent`** interface of the {{domxref('Web Periodic Background Synchronization API', '', '', 'nocode')}} provides a way to run tasks in the service worker with network connectivity. An instance of this event is passed to the {{domxref('ServiceWorkerGlobalScope.periodicsync_event', 'periodicsync')}} handler. This happens periodically, at an interval greater than or equal to that set in the {{domxref('PeriodicSyncManager.register()')}} method. Other implementation-specific factors such as the user's engagement with the site decide the actual interval. {{InheritanceDiagram}} ## Constructor - {{domxref("PeriodicSyncEvent.PeriodicSyncEvent", "PeriodicSyncEvent()")}} {{Experimental_Inline}} - : Creates a new `PeriodicSyncEvent` object. This constructor is not typically used. The browser creates these objects itself and provides them to {{domxref('ServiceWorkerGlobalScope.periodicsync_event', 'onperiodicsync')}} callback. ## Instance properties _Inherits properties from its parent, {{domxref('ExtendableEvent')}}._ - {{domxref('PeriodicSyncEvent.tag')}} {{ReadOnlyInline}} {{Experimental_Inline}} - : Returns the developer-defined identifier for this `PeriodicSyncEvent`. Multiple tags can be used by the web app to run different periodic tasks at different frequencies. ## Instance methods _Inherits methods from its parent, {{domxref('ExtendableEvent')}}._ ## Examples The following example shows how to respond to a periodic sync event in the service worker. ```js self.addEventListener("periodicsync", (event) => { if (event.tag === "get-latest-news") { event.waitUntil(fetchAndCacheLatestNews()); } }); ``` `fetchAndCacheLatestNews` is a developer defined function. ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - [Richer offline experiences with the Periodic Background Sync API](https://developer.chrome.com/docs/capabilities/periodic-background-sync) - [A Periodic Background Sync demo app](https://webplatformapis.com/periodic_sync/periodicSync_improved.html)
0
data/mdn-content/files/en-us/web/api/periodicsyncevent
data/mdn-content/files/en-us/web/api/periodicsyncevent/tag/index.md
--- title: "PeriodicSyncEvent: tag property" short-title: tag slug: Web/API/PeriodicSyncEvent/tag page-type: web-api-instance-property status: - experimental browser-compat: api.PeriodicSyncEvent.tag --- {{APIRef("Periodic Background Sync")}}{{SeeCompatTable}} The **`tag`** read-only property of the {{domxref("PeriodicSyncEvent")}} interface returns the developer-defined identifier for the {{domxref('PeriodicSyncEvent')}}. This is specified when calling the {{domxref('PeriodicSyncManager.register()')}} method of the {{domxref('PeriodicSyncManager')}} interface. Multiple tags can be used by the web app to run different periodic tasks at different frequencies. ## Value Returns a {{jsxref('String')}} of the defined identifier. ## Examples The following example demonstrates listening for a periodic sync event in the service worker, and accessing the `tag` property. ```js self.addEventListener("periodicsync", (event) => { console.log(event.tag); // logs the events tag }); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - [Richer offline experiences with the Periodic Background Sync API](https://developer.chrome.com/docs/capabilities/periodic-background-sync) - [A Periodic Background Sync demo app](https://webplatformapis.com/periodic_sync/periodicSync_improved.html)
0
data/mdn-content/files/en-us/web/api/periodicsyncevent
data/mdn-content/files/en-us/web/api/periodicsyncevent/periodicsyncevent/index.md
--- title: "PeriodicSyncEvent: PeriodicSyncEvent() constructor" short-title: PeriodicSyncEvent() slug: Web/API/PeriodicSyncEvent/PeriodicSyncEvent page-type: web-api-constructor status: - experimental browser-compat: api.PeriodicSyncEvent.PeriodicSyncEvent --- {{APIRef("Periodic Background Sync")}}{{SeeCompatTable}} The **`PeriodicSyncEvent()`** constructor creates a new {{domxref("PeriodicSyncEvent")}} object. This constructor is not typically used. The browser creates these objects itself and provides them to {{domxref('ServiceWorkerGlobalScope.periodicsync_event', 'onperiodicsync')}} callback. ## Syntax ```js-nolint new PeriodicSyncEvent(type, options) ``` ### Parameters - `type` - : A string with the name of the event. It is case-sensitive and browsers set it to `periodicsync`. - `options` - : An object that, _in addition of the properties defined in {{domxref("Event/Event", "Event()")}}_, can have the following properties: - `tag` - : The tag referencing the sync event. ### Return value A new {{domxref("PeriodicSyncEvent")}} object configured using the given inputs. ## Examples This example constructs a new {{domxref('PeriodicSyncEvent')}} with the relevant associated tag. ```js const psEvent = new ExtendableEvent("periodicsync", { tag: "unique-tag" }); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - [Richer offline experiences with the Periodic Background Sync API](https://developer.chrome.com/docs/capabilities/periodic-background-sync) - [A Periodic Background Sync demo app](https://webplatformapis.com/periodic_sync/periodicSync_improved.html)
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/inputevent/index.md
--- title: InputEvent slug: Web/API/InputEvent page-type: web-api-interface browser-compat: api.InputEvent --- {{APIRef("UI Events")}} The **`InputEvent`** interface represents an event notifying the user of editable content changes. {{InheritanceDiagram}} ## Constructor - {{DOMxRef("InputEvent.InputEvent", "InputEvent()")}} - : Creates an `InputEvent` object. ## Instance properties _This interface inherits properties from its parents, {{DOMxRef("UIEvent")}} and {{DOMxRef("Event")}}._ - {{DOMxRef("InputEvent.data")}} {{ReadOnlyInline}} - : Returns a string with the inserted characters. This may be an empty string if the change doesn't insert text (for example, when deleting characters). - {{DOMxRef("InputEvent.dataTransfer")}} {{ReadOnlyInline}} - : Returns a {{DOMxRef("DataTransfer")}} object containing information about richtext or plaintext data being added to or removed from editable content. - {{DOMxRef("InputEvent.inputType")}} {{ReadOnlyInline}} - : Returns the type of change for editable content such as, for example, inserting, deleting, or formatting text. - {{DOMxRef("InputEvent.isComposing")}} {{ReadOnlyInline}} - : Returns a {{JSxRef("Boolean")}} value indicating if the event is fired after {{domxref("Element/compositionstart_event", "compositionstart")}} and before {{domxref("Element/compositionend_event", "compositionend")}}. ## Instance methods _This interface inherits methods from its parents, {{DOMxRef("UIEvent")}} and {{DOMxRef("Event")}}._ - {{DOMxRef('InputEvent.getTargetRanges()')}} - : Returns an array of static ranges that will be affected by a change to the DOM if the input event is not canceled. ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - [`beforeinput` event](/en-US/docs/Web/API/Element/beforeinput_event) - [`input` event](/en-US/docs/Web/API/Element/input_event)
0
data/mdn-content/files/en-us/web/api/inputevent
data/mdn-content/files/en-us/web/api/inputevent/gettargetranges/index.md
--- title: "InputEvent: getTargetRanges() method" short-title: getTargetRanges() slug: Web/API/InputEvent/getTargetRanges page-type: web-api-instance-method browser-compat: api.InputEvent.getTargetRanges --- {{APIRef("UI Events")}} The **`getTargetRanges()`** method of the {{domxref("InputEvent")}} interface returns an array of static ranges that will be affected by a change to the DOM if the input event is not canceled. This allows web apps to override text edit behavior before the browser modifies the DOM tree, and provides more control over input events to improve performance. Depending on the value of `inputType` and the current editing host, the expected return value of this method varies: <table> <thead> <tr> <th>inputType</th> <th>Editing host</th> <th>Response of <code>getTargetRanges()</code></th> </tr> </thead> <tbody> <tr> <td><code>"historyUndo"</code> or <code>"historyRedo"</code></td> <td>Any</td> <td>empty Array</td> </tr> <tr> <td>All remaining</td> <td><code>contenteditable</code></td> <td> an Array of {{domxref("StaticRange")}} objects associated with event </td> </tr> <tr> <td>All remaining</td> <td> <a href="/en-US/docs/Web/HTML/Element/input"><code>input</code></a> or <a href="/en-US/docs/Web/HTML/Element/textarea"><code>textarea</code></a> </td> <td> an empty Array </td> </tr> </tbody> </table> ## Syntax ```js-nolint getTargetRanges() ``` ### Parameters None. ### Return value An array of {{domxref("StaticRange")}} objects. ## Examples ### Feature Detection The following function returns true if `beforeinput`, and thus `getTargetRanges`, is supported. ```js function isBeforeInputEventAvailable() { return ( window.InputEvent && typeof InputEvent.prototype.getTargetRanges === "function" ); } ``` ### Basic usage The following example selects a `contenteditable` element and utilizes the [`beforeinput`](/en-US/docs/Web/API/Element/beforeinput_event) event to log the result of `getTargetRanges()`. ```js const editableElem = document.querySelector('[contenteditable="true"]'); editableElem.addEventListener("beforeinput", (e) => { const targetRanges = e.getTargetRanges(); console.log(targetRanges); }); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/inputevent
data/mdn-content/files/en-us/web/api/inputevent/data/index.md
--- title: "InputEvent: data property" short-title: data slug: Web/API/InputEvent/data page-type: web-api-instance-property browser-compat: api.InputEvent.data --- {{APIRef("UI Events")}} The **`data`** read-only property of the {{domxref("InputEvent")}} interface returns a string with inserted characters. This may be an empty string if the change doesn't insert text, such as when characters are deleted. ## Value A string. ## Examples In the following example, an event listener receives the [input](/en-US/docs/Web/API/Element/input_event) event. Any textual change to the {{htmlelement("input")}} element is retrieved by `InputEvent.data` and inserted into a paragraph using the [`Node.textContent`](/en-US/docs/Web/API/Node/textContent) property. ```html <p>Some text to copy and paste.</p> <input type="text" /> <p class="result"></p> ``` ```js const editable = document.querySelector("input"); const result = document.querySelector(".result"); editable.addEventListener("input", (e) => { result.textContent = `Inputted text: ${e.data}`; }); ``` {{EmbedLiveSample('Examples')}} ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/inputevent
data/mdn-content/files/en-us/web/api/inputevent/inputtype/index.md
--- title: "InputEvent: inputType property" short-title: inputType slug: Web/API/InputEvent/inputType page-type: web-api-instance-property browser-compat: api.InputEvent.inputType --- {{APIRef("UI Events")}} The **`inputType`** read-only property of the {{domxref("InputEvent")}} interface returns the type of change made to editable content. Possible changes include for example inserting, deleting, and formatting text. ## Value A string containing the type of input that was made. There are many possible values, such as `insertText`, `deleteContentBackward`, `insertFromPaste`, and `formatBold`. For a complete list of the available input types, see the [Attributes section of the Input Events Level 2 spec](https://w3c.github.io/input-events/#interface-InputEvent-Attributes). ## Examples This example logs the `inputType` for [input events](/en-US/docs/Web/API/Element/input_event) on an editable {{htmlElement("div")}}. ### HTML ```html <p id="log">Input type:</p> <div contenteditable="true" style="margin: 20px;padding: 20px;border:2px dashed red;"> <p> Some sample text. Try inserting line breaks, or deleting text in different ways, or pasting different content in. </p> <hr /> <ul> <li>A sample</li> <li>bulleted</li> <li>list.</li> </ul> <p>Another paragraph.</p> </div> ``` ### JavaScript ```js const log = document.getElementById("log"); const editable = document.querySelector("div[contenteditable]"); editable.addEventListener("input", logInputType); function logInputType(event) { log.textContent = `Input type: ${event.inputType}`; } ``` ### Result Try editing the text inside the `<div>` and see what happens. {{EmbedLiveSample("Examples", '100%', 500)}} > **Note:** See also [Masayuki Nakano's InputEvent test suite](https://d-toybox.com/studio/lib/input_event_viewer.html) for a more detailed example. ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/inputevent
data/mdn-content/files/en-us/web/api/inputevent/datatransfer/index.md
--- title: "InputEvent: dataTransfer property" short-title: dataTransfer slug: Web/API/InputEvent/dataTransfer page-type: web-api-instance-property browser-compat: api.InputEvent.dataTransfer --- {{APIRef("UI Events")}} The **`dataTransfer`** read-only property of the {{domxref("InputEvent")}} interface returns a {{domxref("DataTransfer")}} object containing information about richtext or plaintext data being added to or removed from editable content. ## Value A {{domxref("DataTransfer")}} object. ## Examples In the following simple example we've set up an event listener on the [input](/en-US/docs/Web/API/Element/input_event) event so that when any content is pasted into the contenteditable {{htmlelement("p")}} element, its HTML source is retrieved via the [`InputEvent.dataTransfer.getData()`](/en-US/docs/Web/API/DataTransfer/getData) method and reported in the paragraph below the input. Try copying and pasting some of the content provided to see the effects. ```html <p><span style="font-weight: bold; color: blue">Whoa, bold blue text!</span></p> <p> <span style="font-style: italic; color: red">Exciting: italic red text!</span> </p> <p>Boring normal text ;-(</p> <hr /> <p contenteditable="true"> Go on, try pasting some content into this editable paragraph and see what happens! </p> <p class="result"></p> ``` ```js const editable = document.querySelector("p[contenteditable]"); const result = document.querySelector(".result"); editable.addEventListener("input", (e) => { result.textContent = e.dataTransfer.getData("text/html"); }); ``` {{EmbedLiveSample('Examples', '100%', 250)}} ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/inputevent
data/mdn-content/files/en-us/web/api/inputevent/inputevent/index.md
--- title: "InputEvent: InputEvent() constructor" short-title: InputEvent() slug: Web/API/InputEvent/InputEvent page-type: web-api-constructor browser-compat: api.InputEvent.InputEvent --- {{APIRef("UI Events")}} The **`InputEvent()`** constructor creates a new {{domxref("InputEvent")}} object. ## Syntax ```js-nolint new InputEvent(type) new InputEvent(type, options) ``` ### Parameters - `type` - : A string with the name of the event. It is case-sensitive and browsers set it to `beforeinput`, or `input`. - `options` {{optional_inline}} - : An object that, _in addition of the properties defined in {{domxref("UIEvent/UIEvent", "UIEvent()")}}_, can have the following properties: - `inputType` {{optional_inline}} - : A string specifying the type of change for editable content such as, for example, inserting, deleting, or formatting text. - `data` {{optional_inline}} - : A string containing characters to insert. This may be an empty string if the change doesn't insert text (such as when deleting characters, for example). - `isComposing` {{optional_inline}} - : A boolean indicating that the event is part of a composition session, meaning it is after a {{domxref("Element/compositionstart_event", "compositionstart")}} event but before a {{domxref("Element/compositionend_event", "compositionend")}} event. The default is `false`. ## Return value A new {{domxref("InputEvent")}} object. ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{domxref("InputEvent")}}, the interface of the objects it constructs.
0
data/mdn-content/files/en-us/web/api/inputevent
data/mdn-content/files/en-us/web/api/inputevent/iscomposing/index.md
--- title: "InputEvent: isComposing property" short-title: isComposing slug: Web/API/InputEvent/isComposing page-type: web-api-instance-property browser-compat: api.InputEvent.isComposing --- {{APIRef("UI Events")}} The **`InputEvent.isComposing`** read-only property returns a boolean value indicating if the event is fired after {{domxref("Element/compositionstart_event", "compositionstart")}} and before {{domxref("Element/compositionend_event", "compositionend")}}. ## Value A boolean. ## Examples ```js const inputEvent = new InputEvent("syntheticInput", false); console.log(inputEvent.isComposing); // return false ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{domxref("Element/compositionstart_event", "compositionstart")}} and {{domxref("Element/compositionend_event", "compositionend")}} - {{domxref("InputEvent")}}
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/mimetype/index.md
--- title: MimeType slug: Web/API/MimeType page-type: web-api-interface status: - deprecated browser-compat: api.MimeType --- {{APIRef("HTML DOM")}}{{Deprecated_Header}} The **`MimeType`** interface provides contains information about a MIME type associated with a particular plugin. {{domxref("Navigator.mimeTypes")}} returns an array of this object. ## Instance properties - {{domxref("MimeType.type")}} {{Deprecated_Inline}} - : Returns the MIME type of the associated plugin. - {{domxref("MimeType.description")}} {{Deprecated_Inline}} - : Returns a description of the associated plugin or an empty string if there is none. - {{domxref("MimeType.suffixes")}} {{Deprecated_Inline}} - : A string containing valid file extensions for the data displayed by the plugin, or an empty string if an extension is not valid for the particular module. For example, a browser's content decryption module may appear in the plugin list but support more file extensions than can be anticipated. It might therefore return an empty string. - {{domxref("MimeType.enabledPlugin")}} {{Deprecated_Inline}} - : Returns an instance of {{domxref("Plugin")}} containing information about the plugin itself. ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/ambientlightsensor/index.md
--- title: AmbientLightSensor slug: Web/API/AmbientLightSensor page-type: web-api-interface status: - experimental browser-compat: api.AmbientLightSensor --- {{securecontext_header}}{{APIRef("Sensor API")}}{{SeeCompatTable}} The **`AmbientLightSensor`** interface of the [Sensor APIs](/en-US/docs/Web/API/Sensor_APIs) returns the current light level or illuminance of the ambient light around the hosting device. To use this sensor, the user must grant permission to the `'ambient-light-sensor'` device sensor through the [Permissions API](/en-US/docs/Web/API/Permissions_API). This feature may be blocked by a [Permissions Policy](/en-US/docs/Web/HTTP/Permissions_Policy) set on your server. {{InheritanceDiagram}} ## Constructor - {{domxref("AmbientLightSensor.AmbientLightSensor()", "AmbientLightSensor()")}} {{Experimental_Inline}} - : Creates a new `AmbientLightSensor` object. ## Instance properties - {{domxref('AmbientLightSensor.illuminance')}} {{ReadOnlyInline}} {{Experimental_Inline}} - : Returns the current light level in [lux](https://en.wikipedia.org/wiki/Lux) of the ambient light level around the hosting device. ## Instance methods _`AmbientLightSensor` doesn't have own methods. However, it inherits methods from its parent interfaces, {{domxref("Sensor")}} and {{domxref("EventTarget")}}._ ## Events _`AmbientLightSensor` doesn't have own events. However, it inherits events from its parent interface, {{domxref('Sensor')}}._ ## Example ```js if ("AmbientLightSensor" in window) { const sensor = new AmbientLightSensor(); sensor.addEventListener("reading", (event) => { console.log("Current light level:", sensor.illuminance); }); sensor.addEventListener("error", (event) => { console.log(event.error.name, event.error.message); }); sensor.start(); } ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/ambientlightsensor
data/mdn-content/files/en-us/web/api/ambientlightsensor/ambientlightsensor/index.md
--- title: "AmbientLightSensor: AmbientLightSensor() constructor" short-title: AmbientLightSensor() slug: Web/API/AmbientLightSensor/AmbientLightSensor page-type: web-api-constructor status: - experimental browser-compat: api.AmbientLightSensor.AmbientLightSensor --- {{securecontext_header}}{{APIRef("Sensor API")}}{{SeeCompatTable}} The **`AmbientLightSensor()`** constructor creates a new {{domxref("AmbientLightSensor")}} object, which returns the current light level or illuminance of the ambient light around the hosting device. ## Syntax ```js-nolint new AmbientLightSensor() new AmbientLightSensor(options) ``` ### Parameters - `options` {{optional_inline}} - : Currently only one option is supported: - `frequency` {{optional_inline}} - : The desired number of times per second a sample should be taken, meaning the number of times per second that {{domxref('sensor.reading_event', 'reading')}} event will be called. A whole number or decimal may be used, the latter for frequencies less than a second. The actual reading frequency depends on the device hardware and consequently may be less than requested. ### Exceptions - `SecurityError` {{domxref("DOMException")}} - : Use of this feature was blocked by a [Permissions Policy](/en-US/docs/Web/HTTP/Permissions_Policy). ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{domxref('sensor.reading_event', 'reading')}} event
0
data/mdn-content/files/en-us/web/api/ambientlightsensor
data/mdn-content/files/en-us/web/api/ambientlightsensor/illuminance/index.md
--- title: "AmbientLightSensor: illuminance property" short-title: illuminance slug: Web/API/AmbientLightSensor/illuminance page-type: web-api-instance-property status: - experimental browser-compat: api.AmbientLightSensor.illuminance --- {{securecontext_header}}{{APIRef("Sensor API")}}{{SeeCompatTable}} The **`illuminance`** read-only property of the {{domxref("AmbientLightSensor")}} interface returns the current light level in [lux](https://en.wikipedia.org/wiki/Lux) of the ambient light level around the hosting device. ## Value A {{jsxref('Number')}} indicating the current light level in lux. ## Examples ```js if ("AmbientLightSensor" in window) { const sensor = new AmbientLightSensor(); sensor.addEventListener("reading", (event) => { console.log("Current light level:", sensor.illuminance); }); sensor.addEventListener("error", (event) => { console.log(event.error.name, event.error.message); }); sensor.start(); } ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api
data/mdn-content/files/en-us/web/api/workernavigator/index.md
--- title: WorkerNavigator slug: Web/API/WorkerNavigator page-type: web-api-interface browser-compat: api.WorkerNavigator --- {{APIRef("Web Workers API")}} The **`WorkerNavigator`** interface represents a subset of the {{DOMxRef("Navigator")}} interface allowed to be accessed from a {{DOMxRef("Worker")}}. Such an object is initialized for each worker and is available via the {{DOMxRef("WorkerGlobalScope.navigator", "self.navigator")}} property. ## Instance properties _The `WorkerNavigator` interface doesn't inherit any property._ - {{DOMxRef("WorkerNavigator.appCodeName")}} {{Deprecated_Inline}} {{ReadOnlyInline}} - : Always returns `'Mozilla'`, in any browser. This property is kept only for compatibility purposes. - {{DOMxRef("WorkerNavigator.appName")}} {{Deprecated_Inline}} {{ReadOnlyInline}} - : Returns the official name of the browser. Do not rely on this property to return the correct value. - {{DOMxRef("WorkerNavigator.appVersion")}} {{Deprecated_Inline}} {{ReadOnlyInline}} - : Returns the version of the browser as a string. Do not rely on this property to return the correct value. - {{DOMxRef("WorkerNavigator.connection")}} {{ReadOnlyInline}} - : Provides a {{DOMxRef("NetworkInformation")}} object containing information about the network connection of a device. - {{domxref("WorkerNavigator.deviceMemory")}} {{ReadOnlyInline}} - : Returns the amount of device memory in gigabytes. This value is an approximation given by rounding to the nearest power of 2 and dividing that number by 1024. - {{domxref("WorkerNavigator.globalPrivacyControl")}} {{ReadOnlyInline}} {{Experimental_Inline}} {{non-standard_inline}} - : Returns a boolean indicating a user's consent to their information being shared or sold. - {{domxref("WorkerNavigator.gpu")}} {{ReadOnlyInline}} {{Experimental_Inline}} - : Returns the {{domxref("GPU")}} object for the current worker context. The entry point for the {{domxref("WebGPU_API", "WebGPU API", "", "nocode")}}. - {{DOMxRef("WorkerNavigator.hardwareConcurrency")}} {{ReadOnlyInline}} - : Returns the number of logical processor cores available. - {{DOMxRef("WorkerNavigator.language")}} {{ReadOnlyInline}} - : Returns a string representing the preferred language of the user, usually the language of the browser UI. The `null` value is returned when this is unknown. - {{DOMxRef("WorkerNavigator.languages")}} {{ReadOnlyInline}} - : Returns an array of strings representing the languages known to the user, by order of preference. - {{DOMxRef("WorkerNavigator.locks")}} {{ReadOnlyInline}} - : Returns a {{DOMxRef("LockManager")}} object which provides methods for requesting a new {{DOMxRef('Lock')}} object and querying for an existing {{DOMxRef('Lock')}} object. - {{DOMxRef("WorkerNavigator.mediaCapabilities")}} {{ReadOnlyInline}} - : Returns a {{domxref("MediaCapabilities")}} object that can expose information about the decoding and encoding capabilities for a given format and output capabilities. - {{DOMxRef("WorkerNavigator.onLine")}} {{ReadOnlyInline}} - : Returns a boolean value indicating whether the browser is online. - {{DOMxRef("WorkerNavigator.permissions")}} {{ReadOnlyInline}} - : Returns a {{DOMxRef("Permissions")}} object that can be used to query and update permission status of APIs covered by the [Permissions API](/en-US/docs/Web/API/Permissions_API). - {{DOMxRef("WorkerNavigator.platform")}} {{Deprecated_Inline}} {{ReadOnlyInline}} - : Returns a string representing the platform of the browser. Do not rely on this property to return the correct value. - {{DOMxRef("WorkerNavigator.product")}} {{Deprecated_Inline}} {{ReadOnlyInline}} - : Always returns `'Gecko'`, on any browser. This property is kept only for compatibility purposes. - {{domxref("WorkerNavigator.serial")}} {{ReadOnlyInline}} {{Experimental_Inline}} - : Returns a {{domxref("Serial")}} object, which represents the entry point into the {{domxref("Web Serial API")}} to enable the control of serial ports. - {{domxref("WorkerNavigator.serviceWorker")}} {{ReadOnlyInline}} - : Returns a {{domxref("ServiceWorkerContainer")}} object, which provides access to registration, removal, upgrade, and communication with the {{domxref("ServiceWorker")}} objects for the [associated document](https://html.spec.whatwg.org/multipage/browsers.html#concept-document-window). - {{DOMxRef("WorkerNavigator.storage")}} {{ReadOnlyInline}} - : Returns a {{DOMxRef('StorageManager')}} interface for managing persistence permissions and estimating available storage. - {{domxref("WorkerNavigator.usb")}} {{ReadOnlyInline}} - : Returns a {{domxref("USB")}} object for the current document, providing access to [WebUSB API](/en-US/docs/Web/API/WebUSB_API) functionality. - {{DOMxRef("WorkerNavigator.userAgent")}} {{ReadOnlyInline}} - : Returns the user agent string for the current browser. - {{domxref("WorkerNavigator.userAgentData")}} {{ReadOnlyInline}} {{Experimental_Inline}} - : Returns a {{domxref("NavigatorUAData")}} object, which gives access to information about the browser and operating system of the user. ## Instance methods _The `WorkerNavigator` interface doesn't inherit any method._ - {{domxref("Navigator.clearAppBadge()")}} - : Clears a badge on the current app's icon and returns a {{jsxref("Promise")}} that resolves with {{jsxref("undefined")}}. - {{domxref("Navigator.setAppBadge()")}} - : Sets a badge on the icon associated with this app and returns a {{jsxref("Promise")}} that resolves with {{jsxref("undefined")}}. ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - Other Worker-related interfaces: {{DOMxRef("Worker")}}, {{DOMxRef("WorkerLocation")}}, and {{DOMxRef("WorkerGlobalScope")}} - [Using web workers](/en-US/docs/Web/API/Web_Workers_API/Using_web_workers)
0
data/mdn-content/files/en-us/web/api/workernavigator
data/mdn-content/files/en-us/web/api/workernavigator/appcodename/index.md
--- title: "WorkerNavigator: appCodeName property" short-title: appCodeName slug: Web/API/WorkerNavigator/appCodeName page-type: web-api-instance-property status: - deprecated browser-compat: api.WorkerNavigator.appCodeName --- {{APIRef("HTML DOM")}} {{Deprecated_Header}} The value of the **`WorkerNavigator.appCodeName`** property is always "`Mozilla`", in any browser. This property is kept only for compatibility purposes. > **Note:** Do not rely on this property to return a real > product name. All browsers return "`Mozilla`" as the value of this property. ## Value The string "`Mozilla`". ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{domxref("WorkerNavigator.appName")}} - {{domxref("WorkerNavigator.product")}}
0
data/mdn-content/files/en-us/web/api/workernavigator
data/mdn-content/files/en-us/web/api/workernavigator/languages/index.md
--- title: "WorkerNavigator: languages property" short-title: languages slug: Web/API/WorkerNavigator/languages page-type: web-api-instance-property browser-compat: api.WorkerNavigator.languages --- {{APIRef("HTML DOM")}} The **`WorkerNavigator.languages`** read-only property returns an array of strings representing the user's preferred languages. The language is described using language tags according to {{RFC(5646, "Tags for Identifying Languages (also known as BCP 47)")}}. In the returned array they are ordered by preference with the most preferred language first. The value of {{domxref("WorkerNavigator.language","navigator.language")}} is the first element of the returned array. When its value changes, as the user's preferred languages are changed a {{domxref("Window.languagechange_event", "languagechange")}} event is fired on the {{domxref("WorkerGlobalScope")}} object. The `Accept-Language` HTTP header in every HTTP request from the user's browser uses the same value for the `navigator.languages` property except for the extra `qvalues` (quality values) field (e.g. `en-US;q=0.8`). ## Value An array or strings. ## Examples You can run this insert a web worker: ```js navigator.language; //"en-US" navigator.languages; //["en-US", "zh-CN", "ja-JP"] ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{domxref("WorkerNavigator.language")}} - {{domxref("WorkerNavigator")}} - {{domxref("WorkerGlobalScope.languagechange_event", "languagechange")}} event
0
data/mdn-content/files/en-us/web/api/workernavigator
data/mdn-content/files/en-us/web/api/workernavigator/appname/index.md
--- title: "WorkerNavigator: appName property" short-title: appName slug: Web/API/WorkerNavigator/appName page-type: web-api-instance-property status: - deprecated browser-compat: api.WorkerNavigator.appName --- {{APIRef("HTML DOM")}} {{Deprecated_Header}} The value of the **`WorkerNavigator.appName`** property is always "`Netscape`", in any browser. This property is kept only for compatibility purposes. > **Note:** Do not rely on this property to return a real browser name. All browsers return "`Netscape`" as the value of this property. ## Value The string "`Netscape`". ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{domxref("WorkerNavigator.appCodeName")}} - {{domxref("WorkerNavigator.product")}}
0
data/mdn-content/files/en-us/web/api/workernavigator
data/mdn-content/files/en-us/web/api/workernavigator/serial/index.md
--- title: "WorkerNavigator: serial property" short-title: serial slug: Web/API/WorkerNavigator/serial page-type: web-api-instance-property status: - experimental browser-compat: api.WorkerNavigator.serial --- {{APIRef("Web Serial API")}}{{SeeCompatTable}}{{SecureContext_Header}} The **`serial`** read-only property of the {{domxref("WorkerNavigator")}} interface returns a {{domxref("Serial")}} object which represents the entry point into the {{domxref("Web Serial API")}}. When getting, the same instance of the {{domxref("Serial")}} object will always be returned. ## Value A {{domxref("Serial")}} object. ## Examples The following example uses the `getPorts()` method to initialize a list of available ports. ```js navigator.serial.getPorts().then((ports) => { // Initialize the list of available ports. }); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - [Read from and write to a serial port](https://developer.chrome.com/docs/capabilities/serial) - [Getting started with the web serial API](https://codelabs.developers.google.com/codelabs/web-serial#0)
0
data/mdn-content/files/en-us/web/api/workernavigator
data/mdn-content/files/en-us/web/api/workernavigator/product/index.md
--- title: "WorkerNavigator: product property" short-title: product slug: Web/API/WorkerNavigator/product page-type: web-api-instance-property status: - deprecated browser-compat: api.WorkerNavigator.product --- {{APIRef("HTML DOM")}} {{Deprecated_Header}} The value of the **`WorkerNavigator.product`** property is always "`Gecko`", in any browser. This property is kept only for compatibility purposes. > **Note:** Do not rely on this property to return a real product name. All browsers return "`Gecko`" as the value of this property. ## Value The string "`Gecko`". ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{domxref("WorkerNavigator.appCodeName")}} - {{domxref("WorkerNavigator.appName")}}
0
data/mdn-content/files/en-us/web/api/workernavigator
data/mdn-content/files/en-us/web/api/workernavigator/platform/index.md
--- title: "WorkerNavigator: platform property" short-title: platform slug: Web/API/WorkerNavigator/platform page-type: web-api-instance-property status: - deprecated browser-compat: api.WorkerNavigator.platform --- {{ APIRef("HTML DOM") }} {{Deprecated_Header}} Returns a string representing the platform of the browser. The specification allows browsers to always return the empty string, so don't rely on this property to get a reliable answer. ## Value A string identifying the platform on which the browser is running, or an empty string if the browser declines to (or is unable to) identify the platform. `platform` is a string that must be an empty string or a string representing the platform on which the browser is executing. For example: "`MacIntel`", "`Win32`", "`FreeBSD i386`", "`WebTV OS`". ## Examples ```js console.log(navigator.platform); ``` ## Usage notes On Windows, modern browsers return `"Win32"` even if running on a 64-bit version of Windows ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/workernavigator
data/mdn-content/files/en-us/web/api/workernavigator/hardwareconcurrency/index.md
--- title: "WorkerNavigator: hardwareConcurrency property" short-title: hardwareConcurrency slug: Web/API/WorkerNavigator/hardwareConcurrency page-type: web-api-instance-property browser-compat: api.WorkerNavigator.hardwareConcurrency --- {{APIRef("HTML DOM")}} The **`navigator.hardwareConcurrency`** read-only property returns the number of logical processors available to run threads on the user's computer. ## Value A {{jsxref("Number")}} indicating the number of logical processor cores. Modern computers have multiple physical processor cores in their CPU (two or four cores is typical), but each physical core is also usually able to run more than one thread at a time using advanced scheduling techniques. So a four-core CPU may offer eight **logical processor cores**, for example. The number of logical processor cores can be used to measure the number of threads which can effectively be run at once without them having to context switch. The browser may, however, choose to report a lower number of logical cores in order to represent more accurately the number of {{domxref("Worker")}}s that can run at once, so don't treat this as an absolute measurement of the number of cores in the user's system. ## Examples In this example, one {{domxref("Worker")}} is created for each logical processor reported by the browser and a record is created which includes a reference to the new worker as well as a Boolean value indicating whether or not we're using that worker yet; these objects are, in turn, stored into an array for later use. This creates a pool of workers we can use to process requests later. The following code can be run in a worker: ```js let workerList = []; for (let i = 0; i < navigator.hardwareConcurrency; i++) { let newWorker = { worker: new Worker("cpuworker.js"), inUse: false, }; workerList.push(newWorker); } ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{domxref("WorkerNavigator")}}
0
data/mdn-content/files/en-us/web/api/workernavigator
data/mdn-content/files/en-us/web/api/workernavigator/serviceworker/index.md
--- title: "WorkerNavigator: serviceWorker property" short-title: serviceWorker slug: Web/API/WorkerNavigator/serviceWorker page-type: web-api-instance-property browser-compat: api.WorkerNavigator.serviceWorker --- {{securecontext_header}}{{APIRef("Service Workers API")}} The **`serviceWorker`** read-only property of the {{domxref("WorkerNavigator")}} interface returns the {{domxref("ServiceWorkerContainer")}} object for the [associated document](https://html.spec.whatwg.org/multipage/browsers.html#concept-document-window), which provides access to registration, removal, upgrade, and communication with the {{domxref("ServiceWorker")}}. The feature may not be available in private mode. ## Value {{domxref("ServiceWorkerContainer")}}. ## Examples This code checks if the browser supports using service worker in workers. ```js if ("serviceWorker" in navigator) { // Supported! } ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{domxref("Service Worker API", "", "", "nocode")}} - [Using Service Workers](/en-US/docs/Web/API/Service_Worker_API/Using_Service_Workers)
0
data/mdn-content/files/en-us/web/api/workernavigator
data/mdn-content/files/en-us/web/api/workernavigator/useragent/index.md
--- title: "WorkerNavigator: userAgent property" short-title: userAgent slug: Web/API/WorkerNavigator/userAgent page-type: web-api-instance-property browser-compat: api.WorkerNavigator.userAgent --- {{ApiRef("HTML DOM")}} The **`WorkerNavigator.userAgent`** read-only property returns the user agent string for the current browser. > **Note:** The specification asks browsers to provide as little information via this field as > possible. Never assume that the value of this property will stay the same in future > versions of the same browser. Try not to use it at all, or only for current and past > versions of a browser. New browsers may start using the same UA, or part of it, as an > older browser: you really have no guarantee that the browser agent is indeed the one > advertised by this property. > > Also keep in mind that users of a browser can change the value of this field if they > want (UA spoofing). Browser identification based on detecting the user agent string is **unreliable** and **is not recommended**, as the user agent string is user configurable. For example: - In Firefox, you can change the preference `general.useragent.override` in `about:config`. Some Firefox extensions do that; however, this only changes the HTTP header that gets sent, and doesn't affect browser detection performed by JavaScript code. - Opera 6+ allows users to set the browser identification string via a menu. ## Value A string specifying the complete user agent string the browser provides both in {{Glossary("HTTP")}} headers and in response to this and other related methods on the {{domxref("WorkerNavigator")}} object. The user agent string is built on a formal structure which can be decomposed into several pieces of info. Each of these pieces of info comes from other navigator properties which are also settable by the user. Gecko-based browsers comply with the following general structure: ```plain userAgent = appCodeName/appVersion number (Platform; Security; OS-or-CPU; Localization; rv: revision-version-number) product/productSub Application-Name Application-Name-version ``` ## Examples ```js alert(navigator.userAgent); // alerts "Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.2) Gecko/20010725 Netscape6/6.1" ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{httpheader("User-Agent")}} HTTP header
0
data/mdn-content/files/en-us/web/api/workernavigator
data/mdn-content/files/en-us/web/api/workernavigator/language/index.md
--- title: "WorkerNavigator: language property" short-title: language slug: Web/API/WorkerNavigator/language page-type: web-api-instance-property browser-compat: api.WorkerNavigator.language --- {{APIRef("HTML DOM")}} The **`WorkerNavigator.language`** read-only property returns a string representing the preferred language of the user, usually the language of the browser UI. ## Value A string representing the language version as defined in {{RFC(5646, "Tags for Identifying Languages (also known as BCP 47)")}}. Examples of valid language codes include "en", "en-US", "fr", "fr-FR", "es-ES", etc. Note that in Safari on iOS prior to 10.2, the country code returned is lowercase: "en-us", "fr-fr" etc. ## Examples You can run this insert a web worker: ```js if (/^en\b/.test(navigator.language)) { doLangSelect(window.navigator.language); } ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{domxref("WorkerNavigator.languages")}} - {{domxref("WorkerNavigator")}}
0
data/mdn-content/files/en-us/web/api/workernavigator
data/mdn-content/files/en-us/web/api/workernavigator/appversion/index.md
--- title: "WorkerNavigator: appVersion property" short-title: appVersion slug: Web/API/WorkerNavigator/appVersion page-type: web-api-instance-property status: - deprecated browser-compat: api.WorkerNavigator.appVersion --- {{APIRef("HTML DOM")}} {{Deprecated_Header}} Returns either "`4.0`" or a string representing version information about the browser. > **Note:** Do not rely on this property to return the correct browser version. ## Value Either "`4.0`" or a string representing version information about the browser. ## Examples ```js alert(`Your browser version is reported as ${navigator.appVersion}`); ``` ## Notes The `navigator.userAgent` property may also contain the version number (for example "`Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.2) Gecko/20010725 Netscape 6/6.1`"), but you should be aware of how easy it is to change the user agent string and "spoof" other browsers, platforms, or user agents, and also how cavalier the browser vendor themselves are with these properties. The `navigator.appVersion`, `navigator.appName` and `navigator.userAgent` properties have been used in "browser sniffing" code: scripts that attempt to find out what kind of browser you are using and adjust pages accordingly. This lead to the current situation, where browsers had to return fake values from these properties in order not to be locked out of some websites. ## Specifications {{Specifications}} ## Browser compatibility {{Compat}}
0
data/mdn-content/files/en-us/web/api/workernavigator
data/mdn-content/files/en-us/web/api/workernavigator/useragentdata/index.md
--- title: "WorkerNavigator: userAgentData property" short-title: userAgentData slug: Web/API/WorkerNavigator/userAgentData page-type: web-api-instance-property status: - experimental browser-compat: api.WorkerNavigator.userAgentData --- {{APIRef("User-Agent Client Hints API")}}{{SeeCompatTable}}{{securecontext_header}} The **`userAgentData`** read-only property of the {{domxref("WorkerNavigator")}} interface returns an {{domxref("NavigatorUAData")}} object which can be used to access the {{domxref("User-Agent Client Hints API")}}. ## Value A {{domxref("NavigatorUAData")}} object. ## Examples The following example prints the value of {{domxref("NavigatorUAData.brands")}} to the console. ```js console.log(navigator.userAgentData.brands); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - [Improving user privacy and developer experience with User-Agent Client Hints](https://developer.chrome.com/docs/privacy-security/user-agent-client-hints)
0
data/mdn-content/files/en-us/web/api/workernavigator
data/mdn-content/files/en-us/web/api/workernavigator/mediacapabilities/index.md
--- title: "WorkerNavigator: mediaCapabilities property" short-title: mediaCapabilities slug: Web/API/WorkerNavigator/mediaCapabilities page-type: web-api-instance-property browser-compat: api.WorkerNavigator.mediaCapabilities --- {{APIRef("HTML DOM")}} The read-only **`WorkerNavigator.mediaCapabilities`** property returns a {{domxref("MediaCapabilities")}} object that can expose information about the decoding and encoding capabilities for a given format and output capabilities as defined by the [Media Capabilities API](/en-US/docs/Web/API/Media_Capabilities_API). ## Value A {{domxref("MediaCapabilities")}} object. ## Examples ```js navigator.mediaCapabilities .decodingInfo({ type: "file", audio: { contentType: "audio/mp3", channels: 2, bitrate: 132700, samplerate: 5200, }, }) .then((result) => { console.log( `This configuration is ${result.supported ? "" : "not "}supported,`, ); console.log(`${result.smooth ? "" : "not "}smooth, and`); console.log(`${result.powerEfficient ? "" : "not "}power efficient.`); }); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - [Media Capabilities API](/en-US/docs/Web/API/Media_Capabilities_API) - {{domxref("WorkerNavigator")}}
0
data/mdn-content/files/en-us/web/api/workernavigator
data/mdn-content/files/en-us/web/api/workernavigator/gpu/index.md
--- title: "WorkerNavigator: gpu property" short-title: gpu slug: Web/API/WorkerNavigator/gpu page-type: web-api-instance-property status: - experimental browser-compat: api.WorkerNavigator.gpu --- {{APIRef("Web Workers API")}}{{SeeCompatTable}}{{SecureContext_Header}} The **`gpu`** read-only property of the {{domxref("WorkerNavigator")}} interface returns the {{domxref("GPU")}} object for the current worker context, which is the entry point for the {{domxref("WebGPU_API", "WebGPU API", "", "nocode")}}. ## Value A {{domxref("GPU")}} object. ## Examples ```js // Can be run inside a web worker async function init() { if (!navigator.gpu) { throw Error("WebGPU not supported."); } const adapter = await navigator.gpu.requestAdapter(); if (!adapter) { throw Error("Couldn't request WebGPU adapter."); } const device = await adapter.requestDevice(); //... } ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - {{domxref("WebGPU_API", "WebGPU API", "", "nocode")}}
0
data/mdn-content/files/en-us/web/api/workernavigator
data/mdn-content/files/en-us/web/api/workernavigator/setappbadge/index.md
--- title: "WorkerNavigator: setAppBadge() method" short-title: setAppBadge() slug: Web/API/WorkerNavigator/setAppBadge page-type: web-api-instance-method browser-compat: api.WorkerNavigator.setAppBadge --- {{APIRef("Badging API")}}{{securecontext_header}} The **`setAppBadge()`** method of the {{domxref("WorkerNavigator")}} interface sets a badge on the icon associated with this app. If a value is passed to the method, this will be set as the value of the badge. Otherwise the badge will display as a dot, or other indicator as defined by the platform. ## Syntax ```js-nolint setAppBadge() setAppBadge(contents) ``` ### Parameters - `contents` {{optional_inline}} - : A {{jsxref("number")}} which will be used as the value of the badge. If `contents` is `0` then the badge will be set to `nothing`, indicating a cleared badge. ### Return value A {{jsxref("Promise")}} that resolves with {{jsxref("undefined")}}. ### Exceptions - `InvalidStateError` {{domxref("DOMException")}} - : Thrown if the document is not fully active. - `SecurityError` {{domxref("DOMException")}} - : Thrown if the call was blocked by the [same-origin policy](/en-US/docs/Web/Security/Same-origin_policy). - `NotAllowedError` {{domxref("DOMException")}} - : Thrown if {{domxref('PermissionStatus.state')}} is not `granted`. ## Examples In the example below an unread count is passed to `setAppBadge()`. The badge should then display `30`. ```js const unread = 30; navigator.setAppBadge(unread); ``` ## Specifications {{Specifications}} ## Browser compatibility {{Compat}} ## See also - [Badging for app icons](https://developer.chrome.com/docs/capabilities/web-apis/badging-api/)
0